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 handleObjCNonRuntimeProtocolAttr(Sema &S, Decl *D,
2621                                              const ParsedAttr &AL) {
2622   handleSimpleAttribute<ObjCNonRuntimeProtocolAttr>(S, D, AL);
2623 }
2624 
2625 static void handleObjCDirectAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2626   // objc_direct cannot be set on methods declared in the context of a protocol
2627   if (isa<ObjCProtocolDecl>(D->getDeclContext())) {
2628     S.Diag(AL.getLoc(), diag::err_objc_direct_on_protocol) << false;
2629     return;
2630   }
2631 
2632   if (S.getLangOpts().ObjCRuntime.allowsDirectDispatch()) {
2633     handleSimpleAttribute<ObjCDirectAttr>(S, D, AL);
2634   } else {
2635     S.Diag(AL.getLoc(), diag::warn_objc_direct_ignored) << AL;
2636   }
2637 }
2638 
2639 static void handleObjCDirectMembersAttr(Sema &S, Decl *D,
2640                                         const ParsedAttr &AL) {
2641   if (S.getLangOpts().ObjCRuntime.allowsDirectDispatch()) {
2642     handleSimpleAttribute<ObjCDirectMembersAttr>(S, D, AL);
2643   } else {
2644     S.Diag(AL.getLoc(), diag::warn_objc_direct_ignored) << AL;
2645   }
2646 }
2647 
2648 static void handleObjCMethodFamilyAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2649   const auto *M = cast<ObjCMethodDecl>(D);
2650   if (!AL.isArgIdent(0)) {
2651     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2652         << AL << 1 << AANT_ArgumentIdentifier;
2653     return;
2654   }
2655 
2656   IdentifierLoc *IL = AL.getArgAsIdent(0);
2657   ObjCMethodFamilyAttr::FamilyKind F;
2658   if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
2659     S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL << IL->Ident;
2660     return;
2661   }
2662 
2663   if (F == ObjCMethodFamilyAttr::OMF_init &&
2664       !M->getReturnType()->isObjCObjectPointerType()) {
2665     S.Diag(M->getLocation(), diag::err_init_method_bad_return_type)
2666         << M->getReturnType();
2667     // Ignore the attribute.
2668     return;
2669   }
2670 
2671   D->addAttr(new (S.Context) ObjCMethodFamilyAttr(S.Context, AL, F));
2672 }
2673 
2674 static void handleObjCNSObject(Sema &S, Decl *D, const ParsedAttr &AL) {
2675   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
2676     QualType T = TD->getUnderlyingType();
2677     if (!T->isCARCBridgableType()) {
2678       S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2679       return;
2680     }
2681   }
2682   else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2683     QualType T = PD->getType();
2684     if (!T->isCARCBridgableType()) {
2685       S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2686       return;
2687     }
2688   }
2689   else {
2690     // It is okay to include this attribute on properties, e.g.:
2691     //
2692     //  @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2693     //
2694     // In this case it follows tradition and suppresses an error in the above
2695     // case.
2696     S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
2697   }
2698   D->addAttr(::new (S.Context) ObjCNSObjectAttr(S.Context, AL));
2699 }
2700 
2701 static void handleObjCIndependentClass(Sema &S, Decl *D, const ParsedAttr &AL) {
2702   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
2703     QualType T = TD->getUnderlyingType();
2704     if (!T->isObjCObjectPointerType()) {
2705       S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute);
2706       return;
2707     }
2708   } else {
2709     S.Diag(D->getLocation(), diag::warn_independentclass_attribute);
2710     return;
2711   }
2712   D->addAttr(::new (S.Context) ObjCIndependentClassAttr(S.Context, AL));
2713 }
2714 
2715 static void handleBlocksAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2716   if (!AL.isArgIdent(0)) {
2717     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2718         << AL << 1 << AANT_ArgumentIdentifier;
2719     return;
2720   }
2721 
2722   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
2723   BlocksAttr::BlockType type;
2724   if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2725     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
2726     return;
2727   }
2728 
2729   D->addAttr(::new (S.Context) BlocksAttr(S.Context, AL, type));
2730 }
2731 
2732 static void handleSentinelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2733   unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel;
2734   if (AL.getNumArgs() > 0) {
2735     Expr *E = AL.getArgAsExpr(0);
2736     Optional<llvm::APSInt> Idx = llvm::APSInt(32);
2737     if (E->isTypeDependent() || E->isValueDependent() ||
2738         !(Idx = E->getIntegerConstantExpr(S.Context))) {
2739       S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2740           << AL << 1 << AANT_ArgumentIntegerConstant << E->getSourceRange();
2741       return;
2742     }
2743 
2744     if (Idx->isSigned() && Idx->isNegative()) {
2745       S.Diag(AL.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2746         << E->getSourceRange();
2747       return;
2748     }
2749 
2750     sentinel = Idx->getZExtValue();
2751   }
2752 
2753   unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos;
2754   if (AL.getNumArgs() > 1) {
2755     Expr *E = AL.getArgAsExpr(1);
2756     Optional<llvm::APSInt> Idx = llvm::APSInt(32);
2757     if (E->isTypeDependent() || E->isValueDependent() ||
2758         !(Idx = E->getIntegerConstantExpr(S.Context))) {
2759       S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2760           << AL << 2 << AANT_ArgumentIntegerConstant << E->getSourceRange();
2761       return;
2762     }
2763     nullPos = Idx->getZExtValue();
2764 
2765     if ((Idx->isSigned() && Idx->isNegative()) || nullPos > 1) {
2766       // FIXME: This error message could be improved, it would be nice
2767       // to say what the bounds actually are.
2768       S.Diag(AL.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2769         << E->getSourceRange();
2770       return;
2771     }
2772   }
2773 
2774   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2775     const FunctionType *FT = FD->getType()->castAs<FunctionType>();
2776     if (isa<FunctionNoProtoType>(FT)) {
2777       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2778       return;
2779     }
2780 
2781     if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2782       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2783       return;
2784     }
2785   } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
2786     if (!MD->isVariadic()) {
2787       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2788       return;
2789     }
2790   } else if (const auto *BD = dyn_cast<BlockDecl>(D)) {
2791     if (!BD->isVariadic()) {
2792       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2793       return;
2794     }
2795   } else if (const auto *V = dyn_cast<VarDecl>(D)) {
2796     QualType Ty = V->getType();
2797     if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
2798       const FunctionType *FT = Ty->isFunctionPointerType()
2799        ? D->getFunctionType()
2800        : Ty->castAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
2801       if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2802         int m = Ty->isFunctionPointerType() ? 0 : 1;
2803         S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
2804         return;
2805       }
2806     } else {
2807       S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2808           << AL << ExpectedFunctionMethodOrBlock;
2809       return;
2810     }
2811   } else {
2812     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2813         << AL << ExpectedFunctionMethodOrBlock;
2814     return;
2815   }
2816   D->addAttr(::new (S.Context) SentinelAttr(S.Context, AL, sentinel, nullPos));
2817 }
2818 
2819 static void handleWarnUnusedResult(Sema &S, Decl *D, const ParsedAttr &AL) {
2820   if (D->getFunctionType() &&
2821       D->getFunctionType()->getReturnType()->isVoidType() &&
2822       !isa<CXXConstructorDecl>(D)) {
2823     S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 0;
2824     return;
2825   }
2826   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
2827     if (MD->getReturnType()->isVoidType()) {
2828       S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 1;
2829       return;
2830     }
2831 
2832   StringRef Str;
2833   if ((AL.isCXX11Attribute() || AL.isC2xAttribute()) && !AL.getScopeName()) {
2834     // The standard attribute cannot be applied to variable declarations such
2835     // as a function pointer.
2836     if (isa<VarDecl>(D))
2837       S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type_str)
2838           << AL << "functions, classes, or enumerations";
2839 
2840     // If this is spelled as the standard C++17 attribute, but not in C++17,
2841     // warn about using it as an extension. If there are attribute arguments,
2842     // then claim it's a C++2a extension instead.
2843     // FIXME: If WG14 does not seem likely to adopt the same feature, add an
2844     // extension warning for C2x mode.
2845     const LangOptions &LO = S.getLangOpts();
2846     if (AL.getNumArgs() == 1) {
2847       if (LO.CPlusPlus && !LO.CPlusPlus20)
2848         S.Diag(AL.getLoc(), diag::ext_cxx20_attr) << AL;
2849 
2850       // Since this this is spelled [[nodiscard]], get the optional string
2851       // literal. If in C++ mode, but not in C++2a mode, diagnose as an
2852       // extension.
2853       // FIXME: C2x should support this feature as well, even as an extension.
2854       if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, nullptr))
2855         return;
2856     } else if (LO.CPlusPlus && !LO.CPlusPlus17)
2857       S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL;
2858   }
2859 
2860   D->addAttr(::new (S.Context) WarnUnusedResultAttr(S.Context, AL, Str));
2861 }
2862 
2863 static void handleWeakImportAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2864   // weak_import only applies to variable & function declarations.
2865   bool isDef = false;
2866   if (!D->canBeWeakImported(isDef)) {
2867     if (isDef)
2868       S.Diag(AL.getLoc(), diag::warn_attribute_invalid_on_definition)
2869         << "weak_import";
2870     else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
2871              (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
2872               (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
2873       // Nothing to warn about here.
2874     } else
2875       S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2876           << AL << ExpectedVariableOrFunction;
2877 
2878     return;
2879   }
2880 
2881   D->addAttr(::new (S.Context) WeakImportAttr(S.Context, AL));
2882 }
2883 
2884 // Handles reqd_work_group_size and work_group_size_hint.
2885 template <typename WorkGroupAttr>
2886 static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
2887   uint32_t WGSize[3];
2888   for (unsigned i = 0; i < 3; ++i) {
2889     const Expr *E = AL.getArgAsExpr(i);
2890     if (!checkUInt32Argument(S, AL, E, WGSize[i], i,
2891                              /*StrictlyUnsigned=*/true))
2892       return;
2893     if (WGSize[i] == 0) {
2894       S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
2895           << AL << E->getSourceRange();
2896       return;
2897     }
2898   }
2899 
2900   WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2901   if (Existing && !(Existing->getXDim() == WGSize[0] &&
2902                     Existing->getYDim() == WGSize[1] &&
2903                     Existing->getZDim() == WGSize[2]))
2904     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2905 
2906   D->addAttr(::new (S.Context)
2907                  WorkGroupAttr(S.Context, AL, WGSize[0], WGSize[1], WGSize[2]));
2908 }
2909 
2910 // Handles intel_reqd_sub_group_size.
2911 static void handleSubGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
2912   uint32_t SGSize;
2913   const Expr *E = AL.getArgAsExpr(0);
2914   if (!checkUInt32Argument(S, AL, E, SGSize))
2915     return;
2916   if (SGSize == 0) {
2917     S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
2918         << AL << E->getSourceRange();
2919     return;
2920   }
2921 
2922   OpenCLIntelReqdSubGroupSizeAttr *Existing =
2923       D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>();
2924   if (Existing && Existing->getSubGroupSize() != SGSize)
2925     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2926 
2927   D->addAttr(::new (S.Context)
2928                  OpenCLIntelReqdSubGroupSizeAttr(S.Context, AL, SGSize));
2929 }
2930 
2931 static void handleVecTypeHint(Sema &S, Decl *D, const ParsedAttr &AL) {
2932   if (!AL.hasParsedType()) {
2933     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
2934     return;
2935   }
2936 
2937   TypeSourceInfo *ParmTSI = nullptr;
2938   QualType ParmType = S.GetTypeFromParser(AL.getTypeArg(), &ParmTSI);
2939   assert(ParmTSI && "no type source info for attribute argument");
2940 
2941   if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2942       (ParmType->isBooleanType() ||
2943        !ParmType->isIntegralType(S.getASTContext()))) {
2944     S.Diag(AL.getLoc(), diag::err_attribute_invalid_argument) << 2 << AL;
2945     return;
2946   }
2947 
2948   if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) {
2949     if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) {
2950       S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2951       return;
2952     }
2953   }
2954 
2955   D->addAttr(::new (S.Context) VecTypeHintAttr(S.Context, AL, ParmTSI));
2956 }
2957 
2958 SectionAttr *Sema::mergeSectionAttr(Decl *D, const AttributeCommonInfo &CI,
2959                                     StringRef Name) {
2960   // Explicit or partial specializations do not inherit
2961   // the section attribute from the primary template.
2962   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2963     if (CI.getAttributeSpellingListIndex() == SectionAttr::Declspec_allocate &&
2964         FD->isFunctionTemplateSpecialization())
2965       return nullptr;
2966   }
2967   if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2968     if (ExistingAttr->getName() == Name)
2969       return nullptr;
2970     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
2971          << 1 /*section*/;
2972     Diag(CI.getLoc(), diag::note_previous_attribute);
2973     return nullptr;
2974   }
2975   return ::new (Context) SectionAttr(Context, CI, Name);
2976 }
2977 
2978 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) {
2979   std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName);
2980   if (!Error.empty()) {
2981     Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error
2982          << 1 /*'section'*/;
2983     return false;
2984   }
2985   return true;
2986 }
2987 
2988 static void handleSectionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2989   // Make sure that there is a string literal as the sections's single
2990   // argument.
2991   StringRef Str;
2992   SourceLocation LiteralLoc;
2993   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
2994     return;
2995 
2996   if (!S.checkSectionName(LiteralLoc, Str))
2997     return;
2998 
2999   // If the target wants to validate the section specifier, make it happen.
3000   std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
3001   if (!Error.empty()) {
3002     S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
3003     << Error;
3004     return;
3005   }
3006 
3007   SectionAttr *NewAttr = S.mergeSectionAttr(D, AL, Str);
3008   if (NewAttr)
3009     D->addAttr(NewAttr);
3010 }
3011 
3012 // This is used for `__declspec(code_seg("segname"))` on a decl.
3013 // `#pragma code_seg("segname")` uses checkSectionName() instead.
3014 static bool checkCodeSegName(Sema &S, SourceLocation LiteralLoc,
3015                              StringRef CodeSegName) {
3016   std::string Error =
3017       S.Context.getTargetInfo().isValidSectionSpecifier(CodeSegName);
3018   if (!Error.empty()) {
3019     S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
3020         << Error << 0 /*'code-seg'*/;
3021     return false;
3022   }
3023 
3024   return true;
3025 }
3026 
3027 CodeSegAttr *Sema::mergeCodeSegAttr(Decl *D, const AttributeCommonInfo &CI,
3028                                     StringRef Name) {
3029   // Explicit or partial specializations do not inherit
3030   // the code_seg attribute from the primary template.
3031   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
3032     if (FD->isFunctionTemplateSpecialization())
3033       return nullptr;
3034   }
3035   if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3036     if (ExistingAttr->getName() == Name)
3037       return nullptr;
3038     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
3039          << 0 /*codeseg*/;
3040     Diag(CI.getLoc(), diag::note_previous_attribute);
3041     return nullptr;
3042   }
3043   return ::new (Context) CodeSegAttr(Context, CI, Name);
3044 }
3045 
3046 static void handleCodeSegAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3047   StringRef Str;
3048   SourceLocation LiteralLoc;
3049   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
3050     return;
3051   if (!checkCodeSegName(S, LiteralLoc, Str))
3052     return;
3053   if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3054     if (!ExistingAttr->isImplicit()) {
3055       S.Diag(AL.getLoc(),
3056              ExistingAttr->getName() == Str
3057              ? diag::warn_duplicate_codeseg_attribute
3058              : diag::err_conflicting_codeseg_attribute);
3059       return;
3060     }
3061     D->dropAttr<CodeSegAttr>();
3062   }
3063   if (CodeSegAttr *CSA = S.mergeCodeSegAttr(D, AL, Str))
3064     D->addAttr(CSA);
3065 }
3066 
3067 // Check for things we'd like to warn about. Multiversioning issues are
3068 // handled later in the process, once we know how many exist.
3069 bool Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) {
3070   enum FirstParam { Unsupported, Duplicate, Unknown };
3071   enum SecondParam { None, Architecture, Tune };
3072   if (AttrStr.find("fpmath=") != StringRef::npos)
3073     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3074            << Unsupported << None << "fpmath=";
3075 
3076   // Diagnose use of tune if target doesn't support it.
3077   if (!Context.getTargetInfo().supportsTargetAttributeTune() &&
3078       AttrStr.find("tune=") != StringRef::npos)
3079     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3080            << Unsupported << None << "tune=";
3081 
3082   ParsedTargetAttr ParsedAttrs = TargetAttr::parse(AttrStr);
3083 
3084   if (!ParsedAttrs.Architecture.empty() &&
3085       !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Architecture))
3086     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3087            << Unknown << Architecture << ParsedAttrs.Architecture;
3088 
3089   if (!ParsedAttrs.Tune.empty() &&
3090       !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Tune))
3091     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3092            << Unknown << Tune << ParsedAttrs.Tune;
3093 
3094   if (ParsedAttrs.DuplicateArchitecture)
3095     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3096            << Duplicate << None << "arch=";
3097   if (ParsedAttrs.DuplicateTune)
3098     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3099            << Duplicate << None << "tune=";
3100 
3101   for (const auto &Feature : ParsedAttrs.Features) {
3102     auto CurFeature = StringRef(Feature).drop_front(); // remove + or -.
3103     if (!Context.getTargetInfo().isValidFeatureName(CurFeature))
3104       return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3105              << Unsupported << None << CurFeature;
3106   }
3107 
3108   TargetInfo::BranchProtectionInfo BPI;
3109   StringRef Error;
3110   if (!ParsedAttrs.BranchProtection.empty() &&
3111       !Context.getTargetInfo().validateBranchProtection(
3112           ParsedAttrs.BranchProtection, BPI, Error)) {
3113     if (Error.empty())
3114       return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3115              << Unsupported << None << "branch-protection";
3116     else
3117       return Diag(LiteralLoc, diag::err_invalid_branch_protection_spec)
3118              << Error;
3119   }
3120 
3121   return false;
3122 }
3123 
3124 static void handleTargetAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3125   StringRef Str;
3126   SourceLocation LiteralLoc;
3127   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc) ||
3128       S.checkTargetAttr(LiteralLoc, Str))
3129     return;
3130 
3131   TargetAttr *NewAttr = ::new (S.Context) TargetAttr(S.Context, AL, Str);
3132   D->addAttr(NewAttr);
3133 }
3134 
3135 static void handleMinVectorWidthAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3136   Expr *E = AL.getArgAsExpr(0);
3137   uint32_t VecWidth;
3138   if (!checkUInt32Argument(S, AL, E, VecWidth)) {
3139     AL.setInvalid();
3140     return;
3141   }
3142 
3143   MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>();
3144   if (Existing && Existing->getVectorWidth() != VecWidth) {
3145     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
3146     return;
3147   }
3148 
3149   D->addAttr(::new (S.Context) MinVectorWidthAttr(S.Context, AL, VecWidth));
3150 }
3151 
3152 static void handleCleanupAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3153   Expr *E = AL.getArgAsExpr(0);
3154   SourceLocation Loc = E->getExprLoc();
3155   FunctionDecl *FD = nullptr;
3156   DeclarationNameInfo NI;
3157 
3158   // gcc only allows for simple identifiers. Since we support more than gcc, we
3159   // will warn the user.
3160   if (auto *DRE = dyn_cast<DeclRefExpr>(E)) {
3161     if (DRE->hasQualifier())
3162       S.Diag(Loc, diag::warn_cleanup_ext);
3163     FD = dyn_cast<FunctionDecl>(DRE->getDecl());
3164     NI = DRE->getNameInfo();
3165     if (!FD) {
3166       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
3167         << NI.getName();
3168       return;
3169     }
3170   } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
3171     if (ULE->hasExplicitTemplateArgs())
3172       S.Diag(Loc, diag::warn_cleanup_ext);
3173     FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
3174     NI = ULE->getNameInfo();
3175     if (!FD) {
3176       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
3177         << NI.getName();
3178       if (ULE->getType() == S.Context.OverloadTy)
3179         S.NoteAllOverloadCandidates(ULE);
3180       return;
3181     }
3182   } else {
3183     S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
3184     return;
3185   }
3186 
3187   if (FD->getNumParams() != 1) {
3188     S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3189       << NI.getName();
3190     return;
3191   }
3192 
3193   // We're currently more strict than GCC about what function types we accept.
3194   // If this ever proves to be a problem it should be easy to fix.
3195   QualType Ty = S.Context.getPointerType(cast<VarDecl>(D)->getType());
3196   QualType ParamTy = FD->getParamDecl(0)->getType();
3197   if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3198                                    ParamTy, Ty) != Sema::Compatible) {
3199     S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
3200       << NI.getName() << ParamTy << Ty;
3201     return;
3202   }
3203 
3204   D->addAttr(::new (S.Context) CleanupAttr(S.Context, AL, FD));
3205 }
3206 
3207 static void handleEnumExtensibilityAttr(Sema &S, Decl *D,
3208                                         const ParsedAttr &AL) {
3209   if (!AL.isArgIdent(0)) {
3210     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
3211         << AL << 0 << AANT_ArgumentIdentifier;
3212     return;
3213   }
3214 
3215   EnumExtensibilityAttr::Kind ExtensibilityKind;
3216   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
3217   if (!EnumExtensibilityAttr::ConvertStrToKind(II->getName(),
3218                                                ExtensibilityKind)) {
3219     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
3220     return;
3221   }
3222 
3223   D->addAttr(::new (S.Context)
3224                  EnumExtensibilityAttr(S.Context, AL, ExtensibilityKind));
3225 }
3226 
3227 /// Handle __attribute__((format_arg((idx)))) attribute based on
3228 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
3229 static void handleFormatArgAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3230   Expr *IdxExpr = AL.getArgAsExpr(0);
3231   ParamIdx Idx;
3232   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, IdxExpr, Idx))
3233     return;
3234 
3235   // Make sure the format string is really a string.
3236   QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex());
3237 
3238   bool NotNSStringTy = !isNSStringType(Ty, S.Context);
3239   if (NotNSStringTy &&
3240       !isCFStringType(Ty, S.Context) &&
3241       (!Ty->isPointerType() ||
3242        !Ty->castAs<PointerType>()->getPointeeType()->isCharType())) {
3243     S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3244         << "a string type" << IdxExpr->getSourceRange()
3245         << getFunctionOrMethodParamRange(D, 0);
3246     return;
3247   }
3248   Ty = getFunctionOrMethodResultType(D);
3249   if (!isNSStringType(Ty, S.Context) &&
3250       !isCFStringType(Ty, S.Context) &&
3251       (!Ty->isPointerType() ||
3252        !Ty->castAs<PointerType>()->getPointeeType()->isCharType())) {
3253     S.Diag(AL.getLoc(), diag::err_format_attribute_result_not)
3254         << (NotNSStringTy ? "string type" : "NSString")
3255         << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0);
3256     return;
3257   }
3258 
3259   D->addAttr(::new (S.Context) FormatArgAttr(S.Context, AL, Idx));
3260 }
3261 
3262 enum FormatAttrKind {
3263   CFStringFormat,
3264   NSStringFormat,
3265   StrftimeFormat,
3266   SupportedFormat,
3267   IgnoredFormat,
3268   InvalidFormat
3269 };
3270 
3271 /// getFormatAttrKind - Map from format attribute names to supported format
3272 /// types.
3273 static FormatAttrKind getFormatAttrKind(StringRef Format) {
3274   return llvm::StringSwitch<FormatAttrKind>(Format)
3275       // Check for formats that get handled specially.
3276       .Case("NSString", NSStringFormat)
3277       .Case("CFString", CFStringFormat)
3278       .Case("strftime", StrftimeFormat)
3279 
3280       // Otherwise, check for supported formats.
3281       .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3282       .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3283       .Case("kprintf", SupportedFormat)         // OpenBSD.
3284       .Case("freebsd_kprintf", SupportedFormat) // FreeBSD.
3285       .Case("os_trace", SupportedFormat)
3286       .Case("os_log", SupportedFormat)
3287 
3288       .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3289       .Default(InvalidFormat);
3290 }
3291 
3292 /// Handle __attribute__((init_priority(priority))) attributes based on
3293 /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
3294 static void handleInitPriorityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3295   if (!S.getLangOpts().CPlusPlus) {
3296     S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL;
3297     return;
3298   }
3299 
3300   if (S.getCurFunctionOrMethodDecl()) {
3301     S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3302     AL.setInvalid();
3303     return;
3304   }
3305   QualType T = cast<VarDecl>(D)->getType();
3306   if (S.Context.getAsArrayType(T))
3307     T = S.Context.getBaseElementType(T);
3308   if (!T->getAs<RecordType>()) {
3309     S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3310     AL.setInvalid();
3311     return;
3312   }
3313 
3314   Expr *E = AL.getArgAsExpr(0);
3315   uint32_t prioritynum;
3316   if (!checkUInt32Argument(S, AL, E, prioritynum)) {
3317     AL.setInvalid();
3318     return;
3319   }
3320 
3321   // Only perform the priority check if the attribute is outside of a system
3322   // header. Values <= 100 are reserved for the implementation, and libc++
3323   // benefits from being able to specify values in that range.
3324   if ((prioritynum < 101 || prioritynum > 65535) &&
3325       !S.getSourceManager().isInSystemHeader(AL.getLoc())) {
3326     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_range)
3327         << E->getSourceRange() << AL << 101 << 65535;
3328     AL.setInvalid();
3329     return;
3330   }
3331   D->addAttr(::new (S.Context) InitPriorityAttr(S.Context, AL, prioritynum));
3332 }
3333 
3334 FormatAttr *Sema::mergeFormatAttr(Decl *D, const AttributeCommonInfo &CI,
3335                                   IdentifierInfo *Format, int FormatIdx,
3336                                   int FirstArg) {
3337   // Check whether we already have an equivalent format attribute.
3338   for (auto *F : D->specific_attrs<FormatAttr>()) {
3339     if (F->getType() == Format &&
3340         F->getFormatIdx() == FormatIdx &&
3341         F->getFirstArg() == FirstArg) {
3342       // If we don't have a valid location for this attribute, adopt the
3343       // location.
3344       if (F->getLocation().isInvalid())
3345         F->setRange(CI.getRange());
3346       return nullptr;
3347     }
3348   }
3349 
3350   return ::new (Context) FormatAttr(Context, CI, Format, FormatIdx, FirstArg);
3351 }
3352 
3353 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
3354 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
3355 static void handleFormatAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3356   if (!AL.isArgIdent(0)) {
3357     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
3358         << AL << 1 << AANT_ArgumentIdentifier;
3359     return;
3360   }
3361 
3362   // In C++ the implicit 'this' function parameter also counts, and they are
3363   // counted from one.
3364   bool HasImplicitThisParam = isInstanceMethod(D);
3365   unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam;
3366 
3367   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
3368   StringRef Format = II->getName();
3369 
3370   if (normalizeName(Format)) {
3371     // If we've modified the string name, we need a new identifier for it.
3372     II = &S.Context.Idents.get(Format);
3373   }
3374 
3375   // Check for supported formats.
3376   FormatAttrKind Kind = getFormatAttrKind(Format);
3377 
3378   if (Kind == IgnoredFormat)
3379     return;
3380 
3381   if (Kind == InvalidFormat) {
3382     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
3383         << AL << II->getName();
3384     return;
3385   }
3386 
3387   // checks for the 2nd argument
3388   Expr *IdxExpr = AL.getArgAsExpr(1);
3389   uint32_t Idx;
3390   if (!checkUInt32Argument(S, AL, IdxExpr, Idx, 2))
3391     return;
3392 
3393   if (Idx < 1 || Idx > NumArgs) {
3394     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3395         << AL << 2 << IdxExpr->getSourceRange();
3396     return;
3397   }
3398 
3399   // FIXME: Do we need to bounds check?
3400   unsigned ArgIdx = Idx - 1;
3401 
3402   if (HasImplicitThisParam) {
3403     if (ArgIdx == 0) {
3404       S.Diag(AL.getLoc(),
3405              diag::err_format_attribute_implicit_this_format_string)
3406         << IdxExpr->getSourceRange();
3407       return;
3408     }
3409     ArgIdx--;
3410   }
3411 
3412   // make sure the format string is really a string
3413   QualType Ty = getFunctionOrMethodParamType(D, ArgIdx);
3414 
3415   if (Kind == CFStringFormat) {
3416     if (!isCFStringType(Ty, S.Context)) {
3417       S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3418         << "a CFString" << IdxExpr->getSourceRange()
3419         << getFunctionOrMethodParamRange(D, ArgIdx);
3420       return;
3421     }
3422   } else if (Kind == NSStringFormat) {
3423     // FIXME: do we need to check if the type is NSString*?  What are the
3424     // semantics?
3425     if (!isNSStringType(Ty, S.Context)) {
3426       S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3427         << "an NSString" << IdxExpr->getSourceRange()
3428         << getFunctionOrMethodParamRange(D, ArgIdx);
3429       return;
3430     }
3431   } else if (!Ty->isPointerType() ||
3432              !Ty->castAs<PointerType>()->getPointeeType()->isCharType()) {
3433     S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3434       << "a string type" << IdxExpr->getSourceRange()
3435       << getFunctionOrMethodParamRange(D, ArgIdx);
3436     return;
3437   }
3438 
3439   // check the 3rd argument
3440   Expr *FirstArgExpr = AL.getArgAsExpr(2);
3441   uint32_t FirstArg;
3442   if (!checkUInt32Argument(S, AL, FirstArgExpr, FirstArg, 3))
3443     return;
3444 
3445   // check if the function is variadic if the 3rd argument non-zero
3446   if (FirstArg != 0) {
3447     if (isFunctionOrMethodVariadic(D)) {
3448       ++NumArgs; // +1 for ...
3449     } else {
3450       S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
3451       return;
3452     }
3453   }
3454 
3455   // strftime requires FirstArg to be 0 because it doesn't read from any
3456   // variable the input is just the current time + the format string.
3457   if (Kind == StrftimeFormat) {
3458     if (FirstArg != 0) {
3459       S.Diag(AL.getLoc(), diag::err_format_strftime_third_parameter)
3460         << FirstArgExpr->getSourceRange();
3461       return;
3462     }
3463   // if 0 it disables parameter checking (to use with e.g. va_list)
3464   } else if (FirstArg != 0 && FirstArg != NumArgs) {
3465     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3466         << AL << 3 << FirstArgExpr->getSourceRange();
3467     return;
3468   }
3469 
3470   FormatAttr *NewAttr = S.mergeFormatAttr(D, AL, II, Idx, FirstArg);
3471   if (NewAttr)
3472     D->addAttr(NewAttr);
3473 }
3474 
3475 /// Handle __attribute__((callback(CalleeIdx, PayloadIdx0, ...))) attributes.
3476 static void handleCallbackAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3477   // The index that identifies the callback callee is mandatory.
3478   if (AL.getNumArgs() == 0) {
3479     S.Diag(AL.getLoc(), diag::err_callback_attribute_no_callee)
3480         << AL.getRange();
3481     return;
3482   }
3483 
3484   bool HasImplicitThisParam = isInstanceMethod(D);
3485   int32_t NumArgs = getFunctionOrMethodNumParams(D);
3486 
3487   FunctionDecl *FD = D->getAsFunction();
3488   assert(FD && "Expected a function declaration!");
3489 
3490   llvm::StringMap<int> NameIdxMapping;
3491   NameIdxMapping["__"] = -1;
3492 
3493   NameIdxMapping["this"] = 0;
3494 
3495   int Idx = 1;
3496   for (const ParmVarDecl *PVD : FD->parameters())
3497     NameIdxMapping[PVD->getName()] = Idx++;
3498 
3499   auto UnknownName = NameIdxMapping.end();
3500 
3501   SmallVector<int, 8> EncodingIndices;
3502   for (unsigned I = 0, E = AL.getNumArgs(); I < E; ++I) {
3503     SourceRange SR;
3504     int32_t ArgIdx;
3505 
3506     if (AL.isArgIdent(I)) {
3507       IdentifierLoc *IdLoc = AL.getArgAsIdent(I);
3508       auto It = NameIdxMapping.find(IdLoc->Ident->getName());
3509       if (It == UnknownName) {
3510         S.Diag(AL.getLoc(), diag::err_callback_attribute_argument_unknown)
3511             << IdLoc->Ident << IdLoc->Loc;
3512         return;
3513       }
3514 
3515       SR = SourceRange(IdLoc->Loc);
3516       ArgIdx = It->second;
3517     } else if (AL.isArgExpr(I)) {
3518       Expr *IdxExpr = AL.getArgAsExpr(I);
3519 
3520       // If the expression is not parseable as an int32_t we have a problem.
3521       if (!checkUInt32Argument(S, AL, IdxExpr, (uint32_t &)ArgIdx, I + 1,
3522                                false)) {
3523         S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3524             << AL << (I + 1) << IdxExpr->getSourceRange();
3525         return;
3526       }
3527 
3528       // Check oob, excluding the special values, 0 and -1.
3529       if (ArgIdx < -1 || ArgIdx > NumArgs) {
3530         S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3531             << AL << (I + 1) << IdxExpr->getSourceRange();
3532         return;
3533       }
3534 
3535       SR = IdxExpr->getSourceRange();
3536     } else {
3537       llvm_unreachable("Unexpected ParsedAttr argument type!");
3538     }
3539 
3540     if (ArgIdx == 0 && !HasImplicitThisParam) {
3541       S.Diag(AL.getLoc(), diag::err_callback_implicit_this_not_available)
3542           << (I + 1) << SR;
3543       return;
3544     }
3545 
3546     // Adjust for the case we do not have an implicit "this" parameter. In this
3547     // case we decrease all positive values by 1 to get LLVM argument indices.
3548     if (!HasImplicitThisParam && ArgIdx > 0)
3549       ArgIdx -= 1;
3550 
3551     EncodingIndices.push_back(ArgIdx);
3552   }
3553 
3554   int CalleeIdx = EncodingIndices.front();
3555   // Check if the callee index is proper, thus not "this" and not "unknown".
3556   // This means the "CalleeIdx" has to be non-negative if "HasImplicitThisParam"
3557   // is false and positive if "HasImplicitThisParam" is true.
3558   if (CalleeIdx < (int)HasImplicitThisParam) {
3559     S.Diag(AL.getLoc(), diag::err_callback_attribute_invalid_callee)
3560         << AL.getRange();
3561     return;
3562   }
3563 
3564   // Get the callee type, note the index adjustment as the AST doesn't contain
3565   // the this type (which the callee cannot reference anyway!).
3566   const Type *CalleeType =
3567       getFunctionOrMethodParamType(D, CalleeIdx - HasImplicitThisParam)
3568           .getTypePtr();
3569   if (!CalleeType || !CalleeType->isFunctionPointerType()) {
3570     S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3571         << AL.getRange();
3572     return;
3573   }
3574 
3575   const Type *CalleeFnType =
3576       CalleeType->getPointeeType()->getUnqualifiedDesugaredType();
3577 
3578   // TODO: Check the type of the callee arguments.
3579 
3580   const auto *CalleeFnProtoType = dyn_cast<FunctionProtoType>(CalleeFnType);
3581   if (!CalleeFnProtoType) {
3582     S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3583         << AL.getRange();
3584     return;
3585   }
3586 
3587   if (CalleeFnProtoType->getNumParams() > EncodingIndices.size() - 1) {
3588     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3589         << AL << (unsigned)(EncodingIndices.size() - 1);
3590     return;
3591   }
3592 
3593   if (CalleeFnProtoType->getNumParams() < EncodingIndices.size() - 1) {
3594     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3595         << AL << (unsigned)(EncodingIndices.size() - 1);
3596     return;
3597   }
3598 
3599   if (CalleeFnProtoType->isVariadic()) {
3600     S.Diag(AL.getLoc(), diag::err_callback_callee_is_variadic) << AL.getRange();
3601     return;
3602   }
3603 
3604   // Do not allow multiple callback attributes.
3605   if (D->hasAttr<CallbackAttr>()) {
3606     S.Diag(AL.getLoc(), diag::err_callback_attribute_multiple) << AL.getRange();
3607     return;
3608   }
3609 
3610   D->addAttr(::new (S.Context) CallbackAttr(
3611       S.Context, AL, EncodingIndices.data(), EncodingIndices.size()));
3612 }
3613 
3614 static void handleTransparentUnionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3615   // Try to find the underlying union declaration.
3616   RecordDecl *RD = nullptr;
3617   const auto *TD = dyn_cast<TypedefNameDecl>(D);
3618   if (TD && TD->getUnderlyingType()->isUnionType())
3619     RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3620   else
3621     RD = dyn_cast<RecordDecl>(D);
3622 
3623   if (!RD || !RD->isUnion()) {
3624     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL
3625                                                               << ExpectedUnion;
3626     return;
3627   }
3628 
3629   if (!RD->isCompleteDefinition()) {
3630     if (!RD->isBeingDefined())
3631       S.Diag(AL.getLoc(),
3632              diag::warn_transparent_union_attribute_not_definition);
3633     return;
3634   }
3635 
3636   RecordDecl::field_iterator Field = RD->field_begin(),
3637                           FieldEnd = RD->field_end();
3638   if (Field == FieldEnd) {
3639     S.Diag(AL.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3640     return;
3641   }
3642 
3643   FieldDecl *FirstField = *Field;
3644   QualType FirstType = FirstField->getType();
3645   if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
3646     S.Diag(FirstField->getLocation(),
3647            diag::warn_transparent_union_attribute_floating)
3648       << FirstType->isVectorType() << FirstType;
3649     return;
3650   }
3651 
3652   if (FirstType->isIncompleteType())
3653     return;
3654   uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3655   uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3656   for (; Field != FieldEnd; ++Field) {
3657     QualType FieldType = Field->getType();
3658     if (FieldType->isIncompleteType())
3659       return;
3660     // FIXME: this isn't fully correct; we also need to test whether the
3661     // members of the union would all have the same calling convention as the
3662     // first member of the union. Checking just the size and alignment isn't
3663     // sufficient (consider structs passed on the stack instead of in registers
3664     // as an example).
3665     if (S.Context.getTypeSize(FieldType) != FirstSize ||
3666         S.Context.getTypeAlign(FieldType) > FirstAlign) {
3667       // Warn if we drop the attribute.
3668       bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
3669       unsigned FieldBits = isSize ? S.Context.getTypeSize(FieldType)
3670                                   : S.Context.getTypeAlign(FieldType);
3671       S.Diag(Field->getLocation(),
3672              diag::warn_transparent_union_attribute_field_size_align)
3673           << isSize << *Field << FieldBits;
3674       unsigned FirstBits = isSize ? FirstSize : FirstAlign;
3675       S.Diag(FirstField->getLocation(),
3676              diag::note_transparent_union_first_field_size_align)
3677           << isSize << FirstBits;
3678       return;
3679     }
3680   }
3681 
3682   RD->addAttr(::new (S.Context) TransparentUnionAttr(S.Context, AL));
3683 }
3684 
3685 void Sema::AddAnnotationAttr(Decl *D, const AttributeCommonInfo &CI,
3686                              StringRef Str, MutableArrayRef<Expr *> Args) {
3687   auto *Attr = AnnotateAttr::Create(Context, Str, Args.data(), Args.size(), CI);
3688   llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
3689   for (unsigned Idx = 0; Idx < Attr->args_size(); Idx++) {
3690     Expr *&E = Attr->args_begin()[Idx];
3691     assert(E && "error are handled before");
3692     if (E->isValueDependent() || E->isTypeDependent())
3693       continue;
3694 
3695     if (E->getType()->isArrayType())
3696       E = ImpCastExprToType(E, Context.getPointerType(E->getType()),
3697                             clang::CK_ArrayToPointerDecay)
3698               .get();
3699     if (E->getType()->isFunctionType())
3700       E = ImplicitCastExpr::Create(Context,
3701                                    Context.getPointerType(E->getType()),
3702                                    clang::CK_FunctionToPointerDecay, E, nullptr,
3703                                    VK_RValue, FPOptionsOverride());
3704     if (E->isLValue())
3705       E = ImplicitCastExpr::Create(Context, E->getType().getNonReferenceType(),
3706                                    clang::CK_LValueToRValue, E, nullptr,
3707                                    VK_RValue, FPOptionsOverride());
3708 
3709     Expr::EvalResult Eval;
3710     Notes.clear();
3711     Eval.Diag = &Notes;
3712 
3713     bool Result =
3714         E->EvaluateAsConstantExpr(Eval, Context);
3715 
3716     /// Result means the expression can be folded to a constant.
3717     /// Note.empty() means the expression is a valid constant expression in the
3718     /// current language mode.
3719     if (!Result || !Notes.empty()) {
3720       Diag(E->getBeginLoc(), diag::err_attribute_argument_n_type)
3721           << CI << (Idx + 1) << AANT_ArgumentConstantExpr;
3722       for (auto &Note : Notes)
3723         Diag(Note.first, Note.second);
3724       return;
3725     }
3726     assert(Eval.Val.hasValue());
3727     E = ConstantExpr::Create(Context, E, Eval.Val);
3728   }
3729   D->addAttr(Attr);
3730 }
3731 
3732 static void handleAnnotateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3733   // Make sure that there is a string literal as the annotation's first
3734   // argument.
3735   StringRef Str;
3736   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
3737     return;
3738 
3739   llvm::SmallVector<Expr *, 4> Args;
3740   Args.reserve(AL.getNumArgs() - 1);
3741   for (unsigned Idx = 1; Idx < AL.getNumArgs(); Idx++) {
3742     assert(!AL.isArgIdent(Idx));
3743     Args.push_back(AL.getArgAsExpr(Idx));
3744   }
3745 
3746   S.AddAnnotationAttr(D, AL, Str, Args);
3747 }
3748 
3749 static void handleAlignValueAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3750   S.AddAlignValueAttr(D, AL, AL.getArgAsExpr(0));
3751 }
3752 
3753 void Sema::AddAlignValueAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E) {
3754   AlignValueAttr TmpAttr(Context, CI, E);
3755   SourceLocation AttrLoc = CI.getLoc();
3756 
3757   QualType T;
3758   if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
3759     T = TD->getUnderlyingType();
3760   else if (const auto *VD = dyn_cast<ValueDecl>(D))
3761     T = VD->getType();
3762   else
3763     llvm_unreachable("Unknown decl type for align_value");
3764 
3765   if (!T->isDependentType() && !T->isAnyPointerType() &&
3766       !T->isReferenceType() && !T->isMemberPointerType()) {
3767     Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only)
3768       << &TmpAttr << T << D->getSourceRange();
3769     return;
3770   }
3771 
3772   if (!E->isValueDependent()) {
3773     llvm::APSInt Alignment;
3774     ExprResult ICE = VerifyIntegerConstantExpression(
3775         E, &Alignment, diag::err_align_value_attribute_argument_not_int);
3776     if (ICE.isInvalid())
3777       return;
3778 
3779     if (!Alignment.isPowerOf2()) {
3780       Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3781         << E->getSourceRange();
3782       return;
3783     }
3784 
3785     D->addAttr(::new (Context) AlignValueAttr(Context, CI, ICE.get()));
3786     return;
3787   }
3788 
3789   // Save dependent expressions in the AST to be instantiated.
3790   D->addAttr(::new (Context) AlignValueAttr(Context, CI, E));
3791 }
3792 
3793 static void handleAlignedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3794   // check the attribute arguments.
3795   if (AL.getNumArgs() > 1) {
3796     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
3797     return;
3798   }
3799 
3800   if (AL.getNumArgs() == 0) {
3801     D->addAttr(::new (S.Context) AlignedAttr(S.Context, AL, true, nullptr));
3802     return;
3803   }
3804 
3805   Expr *E = AL.getArgAsExpr(0);
3806   if (AL.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3807     S.Diag(AL.getEllipsisLoc(),
3808            diag::err_pack_expansion_without_parameter_packs);
3809     return;
3810   }
3811 
3812   if (!AL.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3813     return;
3814 
3815   S.AddAlignedAttr(D, AL, E, AL.isPackExpansion());
3816 }
3817 
3818 void Sema::AddAlignedAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E,
3819                           bool IsPackExpansion) {
3820   AlignedAttr TmpAttr(Context, CI, true, E);
3821   SourceLocation AttrLoc = CI.getLoc();
3822 
3823   // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
3824   if (TmpAttr.isAlignas()) {
3825     // C++11 [dcl.align]p1:
3826     //   An alignment-specifier may be applied to a variable or to a class
3827     //   data member, but it shall not be applied to a bit-field, a function
3828     //   parameter, the formal parameter of a catch clause, or a variable
3829     //   declared with the register storage class specifier. An
3830     //   alignment-specifier may also be applied to the declaration of a class
3831     //   or enumeration type.
3832     // C11 6.7.5/2:
3833     //   An alignment attribute shall not be specified in a declaration of
3834     //   a typedef, or a bit-field, or a function, or a parameter, or an
3835     //   object declared with the register storage-class specifier.
3836     int DiagKind = -1;
3837     if (isa<ParmVarDecl>(D)) {
3838       DiagKind = 0;
3839     } else if (const auto *VD = dyn_cast<VarDecl>(D)) {
3840       if (VD->getStorageClass() == SC_Register)
3841         DiagKind = 1;
3842       if (VD->isExceptionVariable())
3843         DiagKind = 2;
3844     } else if (const auto *FD = dyn_cast<FieldDecl>(D)) {
3845       if (FD->isBitField())
3846         DiagKind = 3;
3847     } else if (!isa<TagDecl>(D)) {
3848       Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr
3849         << (TmpAttr.isC11() ? ExpectedVariableOrField
3850                             : ExpectedVariableFieldOrTag);
3851       return;
3852     }
3853     if (DiagKind != -1) {
3854       Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
3855         << &TmpAttr << DiagKind;
3856       return;
3857     }
3858   }
3859 
3860   if (E->isValueDependent()) {
3861     // We can't support a dependent alignment on a non-dependent type,
3862     // because we have no way to model that a type is "alignment-dependent"
3863     // but not dependent in any other way.
3864     if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) {
3865       if (!TND->getUnderlyingType()->isDependentType()) {
3866         Diag(AttrLoc, diag::err_alignment_dependent_typedef_name)
3867             << E->getSourceRange();
3868         return;
3869       }
3870     }
3871 
3872     // Save dependent expressions in the AST to be instantiated.
3873     AlignedAttr *AA = ::new (Context) AlignedAttr(Context, CI, true, E);
3874     AA->setPackExpansion(IsPackExpansion);
3875     D->addAttr(AA);
3876     return;
3877   }
3878 
3879   // FIXME: Cache the number on the AL object?
3880   llvm::APSInt Alignment;
3881   ExprResult ICE = VerifyIntegerConstantExpression(
3882       E, &Alignment, diag::err_aligned_attribute_argument_not_int);
3883   if (ICE.isInvalid())
3884     return;
3885 
3886   uint64_t AlignVal = Alignment.getZExtValue();
3887 
3888   // C++11 [dcl.align]p2:
3889   //   -- if the constant expression evaluates to zero, the alignment
3890   //      specifier shall have no effect
3891   // C11 6.7.5p6:
3892   //   An alignment specification of zero has no effect.
3893   if (!(TmpAttr.isAlignas() && !Alignment)) {
3894     if (!llvm::isPowerOf2_64(AlignVal)) {
3895       Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3896         << E->getSourceRange();
3897       return;
3898     }
3899   }
3900 
3901   unsigned MaximumAlignment = Sema::MaximumAlignment;
3902   if (Context.getTargetInfo().getTriple().isOSBinFormatCOFF())
3903     MaximumAlignment = std::min(MaximumAlignment, 8192u);
3904   if (AlignVal > MaximumAlignment) {
3905     Diag(AttrLoc, diag::err_attribute_aligned_too_great)
3906         << MaximumAlignment << E->getSourceRange();
3907     return;
3908   }
3909 
3910   if (Context.getTargetInfo().isTLSSupported()) {
3911     unsigned MaxTLSAlign =
3912         Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign())
3913             .getQuantity();
3914     const auto *VD = dyn_cast<VarDecl>(D);
3915     if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD &&
3916         VD->getTLSKind() != VarDecl::TLS_None) {
3917       Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
3918           << (unsigned)AlignVal << VD << MaxTLSAlign;
3919       return;
3920     }
3921   }
3922 
3923   AlignedAttr *AA = ::new (Context) AlignedAttr(Context, CI, true, ICE.get());
3924   AA->setPackExpansion(IsPackExpansion);
3925   D->addAttr(AA);
3926 }
3927 
3928 void Sema::AddAlignedAttr(Decl *D, const AttributeCommonInfo &CI,
3929                           TypeSourceInfo *TS, bool IsPackExpansion) {
3930   // FIXME: Cache the number on the AL object if non-dependent?
3931   // FIXME: Perform checking of type validity
3932   AlignedAttr *AA = ::new (Context) AlignedAttr(Context, CI, false, TS);
3933   AA->setPackExpansion(IsPackExpansion);
3934   D->addAttr(AA);
3935 }
3936 
3937 void Sema::CheckAlignasUnderalignment(Decl *D) {
3938   assert(D->hasAttrs() && "no attributes on decl");
3939 
3940   QualType UnderlyingTy, DiagTy;
3941   if (const auto *VD = dyn_cast<ValueDecl>(D)) {
3942     UnderlyingTy = DiagTy = VD->getType();
3943   } else {
3944     UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D));
3945     if (const auto *ED = dyn_cast<EnumDecl>(D))
3946       UnderlyingTy = ED->getIntegerType();
3947   }
3948   if (DiagTy->isDependentType() || DiagTy->isIncompleteType())
3949     return;
3950 
3951   // C++11 [dcl.align]p5, C11 6.7.5/4:
3952   //   The combined effect of all alignment attributes in a declaration shall
3953   //   not specify an alignment that is less strict than the alignment that
3954   //   would otherwise be required for the entity being declared.
3955   AlignedAttr *AlignasAttr = nullptr;
3956   AlignedAttr *LastAlignedAttr = nullptr;
3957   unsigned Align = 0;
3958   for (auto *I : D->specific_attrs<AlignedAttr>()) {
3959     if (I->isAlignmentDependent())
3960       return;
3961     if (I->isAlignas())
3962       AlignasAttr = I;
3963     Align = std::max(Align, I->getAlignment(Context));
3964     LastAlignedAttr = I;
3965   }
3966 
3967   if (Align && DiagTy->isSizelessType()) {
3968     Diag(LastAlignedAttr->getLocation(), diag::err_attribute_sizeless_type)
3969         << LastAlignedAttr << DiagTy;
3970   } else if (AlignasAttr && Align) {
3971     CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3972     CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy);
3973     if (NaturalAlign > RequestedAlign)
3974       Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3975         << DiagTy << (unsigned)NaturalAlign.getQuantity();
3976   }
3977 }
3978 
3979 bool Sema::checkMSInheritanceAttrOnDefinition(
3980     CXXRecordDecl *RD, SourceRange Range, bool BestCase,
3981     MSInheritanceModel ExplicitModel) {
3982   assert(RD->hasDefinition() && "RD has no definition!");
3983 
3984   // We may not have seen base specifiers or any virtual methods yet.  We will
3985   // have to wait until the record is defined to catch any mismatches.
3986   if (!RD->getDefinition()->isCompleteDefinition())
3987     return false;
3988 
3989   // The unspecified model never matches what a definition could need.
3990   if (ExplicitModel == MSInheritanceModel::Unspecified)
3991     return false;
3992 
3993   if (BestCase) {
3994     if (RD->calculateInheritanceModel() == ExplicitModel)
3995       return false;
3996   } else {
3997     if (RD->calculateInheritanceModel() <= ExplicitModel)
3998       return false;
3999   }
4000 
4001   Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance)
4002       << 0 /*definition*/;
4003   Diag(RD->getDefinition()->getLocation(), diag::note_defined_here) << RD;
4004   return true;
4005 }
4006 
4007 /// parseModeAttrArg - Parses attribute mode string and returns parsed type
4008 /// attribute.
4009 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth,
4010                              bool &IntegerMode, bool &ComplexMode,
4011                              bool &ExplicitIEEE) {
4012   IntegerMode = true;
4013   ComplexMode = false;
4014   switch (Str.size()) {
4015   case 2:
4016     switch (Str[0]) {
4017     case 'Q':
4018       DestWidth = 8;
4019       break;
4020     case 'H':
4021       DestWidth = 16;
4022       break;
4023     case 'S':
4024       DestWidth = 32;
4025       break;
4026     case 'D':
4027       DestWidth = 64;
4028       break;
4029     case 'X':
4030       DestWidth = 96;
4031       break;
4032     case 'K': // KFmode - IEEE quad precision (__float128)
4033       ExplicitIEEE = true;
4034       DestWidth = Str[1] == 'I' ? 0 : 128;
4035       break;
4036     case 'T':
4037       ExplicitIEEE = false;
4038       DestWidth = 128;
4039       break;
4040     }
4041     if (Str[1] == 'F') {
4042       IntegerMode = false;
4043     } else if (Str[1] == 'C') {
4044       IntegerMode = false;
4045       ComplexMode = true;
4046     } else if (Str[1] != 'I') {
4047       DestWidth = 0;
4048     }
4049     break;
4050   case 4:
4051     // FIXME: glibc uses 'word' to define register_t; this is narrower than a
4052     // pointer on PIC16 and other embedded platforms.
4053     if (Str == "word")
4054       DestWidth = S.Context.getTargetInfo().getRegisterWidth();
4055     else if (Str == "byte")
4056       DestWidth = S.Context.getTargetInfo().getCharWidth();
4057     break;
4058   case 7:
4059     if (Str == "pointer")
4060       DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
4061     break;
4062   case 11:
4063     if (Str == "unwind_word")
4064       DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
4065     break;
4066   }
4067 }
4068 
4069 /// handleModeAttr - This attribute modifies the width of a decl with primitive
4070 /// type.
4071 ///
4072 /// Despite what would be logical, the mode attribute is a decl attribute, not a
4073 /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
4074 /// HImode, not an intermediate pointer.
4075 static void handleModeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4076   // This attribute isn't documented, but glibc uses it.  It changes
4077   // the width of an int or unsigned int to the specified size.
4078   if (!AL.isArgIdent(0)) {
4079     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
4080         << AL << AANT_ArgumentIdentifier;
4081     return;
4082   }
4083 
4084   IdentifierInfo *Name = AL.getArgAsIdent(0)->Ident;
4085 
4086   S.AddModeAttr(D, AL, Name);
4087 }
4088 
4089 void Sema::AddModeAttr(Decl *D, const AttributeCommonInfo &CI,
4090                        IdentifierInfo *Name, bool InInstantiation) {
4091   StringRef Str = Name->getName();
4092   normalizeName(Str);
4093   SourceLocation AttrLoc = CI.getLoc();
4094 
4095   unsigned DestWidth = 0;
4096   bool IntegerMode = true;
4097   bool ComplexMode = false;
4098   bool ExplicitIEEE = false;
4099   llvm::APInt VectorSize(64, 0);
4100   if (Str.size() >= 4 && Str[0] == 'V') {
4101     // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2).
4102     size_t StrSize = Str.size();
4103     size_t VectorStringLength = 0;
4104     while ((VectorStringLength + 1) < StrSize &&
4105            isdigit(Str[VectorStringLength + 1]))
4106       ++VectorStringLength;
4107     if (VectorStringLength &&
4108         !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) &&
4109         VectorSize.isPowerOf2()) {
4110       parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth,
4111                        IntegerMode, ComplexMode, ExplicitIEEE);
4112       // Avoid duplicate warning from template instantiation.
4113       if (!InInstantiation)
4114         Diag(AttrLoc, diag::warn_vector_mode_deprecated);
4115     } else {
4116       VectorSize = 0;
4117     }
4118   }
4119 
4120   if (!VectorSize)
4121     parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode,
4122                      ExplicitIEEE);
4123 
4124   // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
4125   // and friends, at least with glibc.
4126   // FIXME: Make sure floating-point mappings are accurate
4127   // FIXME: Support XF and TF types
4128   if (!DestWidth) {
4129     Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name;
4130     return;
4131   }
4132 
4133   QualType OldTy;
4134   if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
4135     OldTy = TD->getUnderlyingType();
4136   else if (const auto *ED = dyn_cast<EnumDecl>(D)) {
4137     // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'.
4138     // Try to get type from enum declaration, default to int.
4139     OldTy = ED->getIntegerType();
4140     if (OldTy.isNull())
4141       OldTy = Context.IntTy;
4142   } else
4143     OldTy = cast<ValueDecl>(D)->getType();
4144 
4145   if (OldTy->isDependentType()) {
4146     D->addAttr(::new (Context) ModeAttr(Context, CI, Name));
4147     return;
4148   }
4149 
4150   // Base type can also be a vector type (see PR17453).
4151   // Distinguish between base type and base element type.
4152   QualType OldElemTy = OldTy;
4153   if (const auto *VT = OldTy->getAs<VectorType>())
4154     OldElemTy = VT->getElementType();
4155 
4156   // GCC allows 'mode' attribute on enumeration types (even incomplete), except
4157   // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete
4158   // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected.
4159   if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) &&
4160       VectorSize.getBoolValue()) {
4161     Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << CI.getRange();
4162     return;
4163   }
4164   bool IntegralOrAnyEnumType = (OldElemTy->isIntegralOrEnumerationType() &&
4165                                 !OldElemTy->isExtIntType()) ||
4166                                OldElemTy->getAs<EnumType>();
4167 
4168   if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() &&
4169       !IntegralOrAnyEnumType)
4170     Diag(AttrLoc, diag::err_mode_not_primitive);
4171   else if (IntegerMode) {
4172     if (!IntegralOrAnyEnumType)
4173       Diag(AttrLoc, diag::err_mode_wrong_type);
4174   } else if (ComplexMode) {
4175     if (!OldElemTy->isComplexType())
4176       Diag(AttrLoc, diag::err_mode_wrong_type);
4177   } else {
4178     if (!OldElemTy->isFloatingType())
4179       Diag(AttrLoc, diag::err_mode_wrong_type);
4180   }
4181 
4182   QualType NewElemTy;
4183 
4184   if (IntegerMode)
4185     NewElemTy = Context.getIntTypeForBitwidth(DestWidth,
4186                                               OldElemTy->isSignedIntegerType());
4187   else
4188     NewElemTy = Context.getRealTypeForBitwidth(DestWidth, ExplicitIEEE);
4189 
4190   if (NewElemTy.isNull()) {
4191     Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name;
4192     return;
4193   }
4194 
4195   if (ComplexMode) {
4196     NewElemTy = Context.getComplexType(NewElemTy);
4197   }
4198 
4199   QualType NewTy = NewElemTy;
4200   if (VectorSize.getBoolValue()) {
4201     NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(),
4202                                   VectorType::GenericVector);
4203   } else if (const auto *OldVT = OldTy->getAs<VectorType>()) {
4204     // Complex machine mode does not support base vector types.
4205     if (ComplexMode) {
4206       Diag(AttrLoc, diag::err_complex_mode_vector_type);
4207       return;
4208     }
4209     unsigned NumElements = Context.getTypeSize(OldElemTy) *
4210                            OldVT->getNumElements() /
4211                            Context.getTypeSize(NewElemTy);
4212     NewTy =
4213         Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind());
4214   }
4215 
4216   if (NewTy.isNull()) {
4217     Diag(AttrLoc, diag::err_mode_wrong_type);
4218     return;
4219   }
4220 
4221   // Install the new type.
4222   if (auto *TD = dyn_cast<TypedefNameDecl>(D))
4223     TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
4224   else if (auto *ED = dyn_cast<EnumDecl>(D))
4225     ED->setIntegerType(NewTy);
4226   else
4227     cast<ValueDecl>(D)->setType(NewTy);
4228 
4229   D->addAttr(::new (Context) ModeAttr(Context, CI, Name));
4230 }
4231 
4232 static void handleNoDebugAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4233   D->addAttr(::new (S.Context) NoDebugAttr(S.Context, AL));
4234 }
4235 
4236 AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D,
4237                                               const AttributeCommonInfo &CI,
4238                                               const IdentifierInfo *Ident) {
4239   if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4240     Diag(CI.getLoc(), diag::warn_attribute_ignored) << Ident;
4241     Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4242     return nullptr;
4243   }
4244 
4245   if (D->hasAttr<AlwaysInlineAttr>())
4246     return nullptr;
4247 
4248   return ::new (Context) AlwaysInlineAttr(Context, CI);
4249 }
4250 
4251 CommonAttr *Sema::mergeCommonAttr(Decl *D, const ParsedAttr &AL) {
4252   if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
4253     return nullptr;
4254 
4255   return ::new (Context) CommonAttr(Context, AL);
4256 }
4257 
4258 CommonAttr *Sema::mergeCommonAttr(Decl *D, const CommonAttr &AL) {
4259   if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
4260     return nullptr;
4261 
4262   return ::new (Context) CommonAttr(Context, AL);
4263 }
4264 
4265 InternalLinkageAttr *Sema::mergeInternalLinkageAttr(Decl *D,
4266                                                     const ParsedAttr &AL) {
4267   if (const auto *VD = dyn_cast<VarDecl>(D)) {
4268     // Attribute applies to Var but not any subclass of it (like ParmVar,
4269     // ImplicitParm or VarTemplateSpecialization).
4270     if (VD->getKind() != Decl::Var) {
4271       Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
4272           << AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4273                                             : ExpectedVariableOrFunction);
4274       return nullptr;
4275     }
4276     // Attribute does not apply to non-static local variables.
4277     if (VD->hasLocalStorage()) {
4278       Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4279       return nullptr;
4280     }
4281   }
4282 
4283   if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
4284     return nullptr;
4285 
4286   return ::new (Context) InternalLinkageAttr(Context, AL);
4287 }
4288 InternalLinkageAttr *
4289 Sema::mergeInternalLinkageAttr(Decl *D, const InternalLinkageAttr &AL) {
4290   if (const auto *VD = dyn_cast<VarDecl>(D)) {
4291     // Attribute applies to Var but not any subclass of it (like ParmVar,
4292     // ImplicitParm or VarTemplateSpecialization).
4293     if (VD->getKind() != Decl::Var) {
4294       Diag(AL.getLocation(), diag::warn_attribute_wrong_decl_type)
4295           << &AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4296                                              : ExpectedVariableOrFunction);
4297       return nullptr;
4298     }
4299     // Attribute does not apply to non-static local variables.
4300     if (VD->hasLocalStorage()) {
4301       Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4302       return nullptr;
4303     }
4304   }
4305 
4306   if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
4307     return nullptr;
4308 
4309   return ::new (Context) InternalLinkageAttr(Context, AL);
4310 }
4311 
4312 MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, const AttributeCommonInfo &CI) {
4313   if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4314     Diag(CI.getLoc(), diag::warn_attribute_ignored) << "'minsize'";
4315     Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4316     return nullptr;
4317   }
4318 
4319   if (D->hasAttr<MinSizeAttr>())
4320     return nullptr;
4321 
4322   return ::new (Context) MinSizeAttr(Context, CI);
4323 }
4324 
4325 NoSpeculativeLoadHardeningAttr *Sema::mergeNoSpeculativeLoadHardeningAttr(
4326     Decl *D, const NoSpeculativeLoadHardeningAttr &AL) {
4327   if (checkAttrMutualExclusion<SpeculativeLoadHardeningAttr>(*this, D, AL))
4328     return nullptr;
4329 
4330   return ::new (Context) NoSpeculativeLoadHardeningAttr(Context, AL);
4331 }
4332 
4333 SwiftNameAttr *Sema::mergeSwiftNameAttr(Decl *D, const SwiftNameAttr &SNA,
4334                                         StringRef Name) {
4335   if (const auto *PrevSNA = D->getAttr<SwiftNameAttr>()) {
4336     if (PrevSNA->getName() != Name && !PrevSNA->isImplicit()) {
4337       Diag(PrevSNA->getLocation(), diag::err_attributes_are_not_compatible)
4338           << PrevSNA << &SNA;
4339       Diag(SNA.getLoc(), diag::note_conflicting_attribute);
4340     }
4341 
4342     D->dropAttr<SwiftNameAttr>();
4343   }
4344   return ::new (Context) SwiftNameAttr(Context, SNA, Name);
4345 }
4346 
4347 OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D,
4348                                               const AttributeCommonInfo &CI) {
4349   if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) {
4350     Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline;
4351     Diag(CI.getLoc(), diag::note_conflicting_attribute);
4352     D->dropAttr<AlwaysInlineAttr>();
4353   }
4354   if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) {
4355     Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize;
4356     Diag(CI.getLoc(), diag::note_conflicting_attribute);
4357     D->dropAttr<MinSizeAttr>();
4358   }
4359 
4360   if (D->hasAttr<OptimizeNoneAttr>())
4361     return nullptr;
4362 
4363   return ::new (Context) OptimizeNoneAttr(Context, CI);
4364 }
4365 
4366 SpeculativeLoadHardeningAttr *Sema::mergeSpeculativeLoadHardeningAttr(
4367     Decl *D, const SpeculativeLoadHardeningAttr &AL) {
4368   if (checkAttrMutualExclusion<NoSpeculativeLoadHardeningAttr>(*this, D, AL))
4369     return nullptr;
4370 
4371   return ::new (Context) SpeculativeLoadHardeningAttr(Context, AL);
4372 }
4373 
4374 static void handleAlwaysInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4375   if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, AL))
4376     return;
4377 
4378   if (AlwaysInlineAttr *Inline =
4379           S.mergeAlwaysInlineAttr(D, AL, AL.getAttrName()))
4380     D->addAttr(Inline);
4381 }
4382 
4383 static void handleMinSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4384   if (MinSizeAttr *MinSize = S.mergeMinSizeAttr(D, AL))
4385     D->addAttr(MinSize);
4386 }
4387 
4388 static void handleOptimizeNoneAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4389   if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr(D, AL))
4390     D->addAttr(Optnone);
4391 }
4392 
4393 static void handleConstantAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4394   if (checkAttrMutualExclusion<CUDASharedAttr>(S, D, AL))
4395     return;
4396   const auto *VD = cast<VarDecl>(D);
4397   if (VD->hasLocalStorage()) {
4398     S.Diag(AL.getLoc(), diag::err_cuda_nonstatic_constdev);
4399     return;
4400   }
4401   D->addAttr(::new (S.Context) CUDAConstantAttr(S.Context, AL));
4402 }
4403 
4404 static void handleSharedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4405   if (checkAttrMutualExclusion<CUDAConstantAttr>(S, D, AL))
4406     return;
4407   const auto *VD = cast<VarDecl>(D);
4408   // extern __shared__ is only allowed on arrays with no length (e.g.
4409   // "int x[]").
4410   if (!S.getLangOpts().GPURelocatableDeviceCode && VD->hasExternalStorage() &&
4411       !isa<IncompleteArrayType>(VD->getType())) {
4412     S.Diag(AL.getLoc(), diag::err_cuda_extern_shared) << VD;
4413     return;
4414   }
4415   if (S.getLangOpts().CUDA && VD->hasLocalStorage() &&
4416       S.CUDADiagIfHostCode(AL.getLoc(), diag::err_cuda_host_shared)
4417           << S.CurrentCUDATarget())
4418     return;
4419   D->addAttr(::new (S.Context) CUDASharedAttr(S.Context, AL));
4420 }
4421 
4422 static void handleGlobalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4423   if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, AL) ||
4424       checkAttrMutualExclusion<CUDAHostAttr>(S, D, AL)) {
4425     return;
4426   }
4427   const auto *FD = cast<FunctionDecl>(D);
4428   if (!FD->getReturnType()->isVoidType() &&
4429       !FD->getReturnType()->getAs<AutoType>() &&
4430       !FD->getReturnType()->isInstantiationDependentType()) {
4431     SourceRange RTRange = FD->getReturnTypeSourceRange();
4432     S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
4433         << FD->getType()
4434         << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
4435                               : FixItHint());
4436     return;
4437   }
4438   if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) {
4439     if (Method->isInstance()) {
4440       S.Diag(Method->getBeginLoc(), diag::err_kern_is_nonstatic_method)
4441           << Method;
4442       return;
4443     }
4444     S.Diag(Method->getBeginLoc(), diag::warn_kern_is_method) << Method;
4445   }
4446   // Only warn for "inline" when compiling for host, to cut down on noise.
4447   if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice)
4448     S.Diag(FD->getBeginLoc(), diag::warn_kern_is_inline) << FD;
4449 
4450   D->addAttr(::new (S.Context) CUDAGlobalAttr(S.Context, AL));
4451   // In host compilation the kernel is emitted as a stub function, which is
4452   // a helper function for launching the kernel. The instructions in the helper
4453   // function has nothing to do with the source code of the kernel. Do not emit
4454   // debug info for the stub function to avoid confusing the debugger.
4455   if (S.LangOpts.HIP && !S.LangOpts.CUDAIsDevice)
4456     D->addAttr(NoDebugAttr::CreateImplicit(S.Context));
4457 }
4458 
4459 static void handleDeviceAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4460   if (checkAttrMutualExclusion<CUDAGlobalAttr>(S, D, AL)) {
4461     return;
4462   }
4463 
4464   if (const auto *VD = dyn_cast<VarDecl>(D)) {
4465     if (VD->hasLocalStorage()) {
4466       S.Diag(AL.getLoc(), diag::err_cuda_nonstatic_constdev);
4467       return;
4468     }
4469   }
4470   D->addAttr(::new (S.Context) CUDADeviceAttr(S.Context, AL));
4471 }
4472 
4473 static void handleGNUInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4474   const auto *Fn = cast<FunctionDecl>(D);
4475   if (!Fn->isInlineSpecified()) {
4476     S.Diag(AL.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
4477     return;
4478   }
4479 
4480   if (S.LangOpts.CPlusPlus && Fn->getStorageClass() != SC_Extern)
4481     S.Diag(AL.getLoc(), diag::warn_gnu_inline_cplusplus_without_extern);
4482 
4483   D->addAttr(::new (S.Context) GNUInlineAttr(S.Context, AL));
4484 }
4485 
4486 static void handleCallConvAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4487   if (hasDeclarator(D)) return;
4488 
4489   // Diagnostic is emitted elsewhere: here we store the (valid) AL
4490   // in the Decl node for syntactic reasoning, e.g., pretty-printing.
4491   CallingConv CC;
4492   if (S.CheckCallingConvAttr(AL, CC, /*FD*/nullptr))
4493     return;
4494 
4495   if (!isa<ObjCMethodDecl>(D)) {
4496     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
4497         << AL << ExpectedFunctionOrMethod;
4498     return;
4499   }
4500 
4501   switch (AL.getKind()) {
4502   case ParsedAttr::AT_FastCall:
4503     D->addAttr(::new (S.Context) FastCallAttr(S.Context, AL));
4504     return;
4505   case ParsedAttr::AT_StdCall:
4506     D->addAttr(::new (S.Context) StdCallAttr(S.Context, AL));
4507     return;
4508   case ParsedAttr::AT_ThisCall:
4509     D->addAttr(::new (S.Context) ThisCallAttr(S.Context, AL));
4510     return;
4511   case ParsedAttr::AT_CDecl:
4512     D->addAttr(::new (S.Context) CDeclAttr(S.Context, AL));
4513     return;
4514   case ParsedAttr::AT_Pascal:
4515     D->addAttr(::new (S.Context) PascalAttr(S.Context, AL));
4516     return;
4517   case ParsedAttr::AT_SwiftCall:
4518     D->addAttr(::new (S.Context) SwiftCallAttr(S.Context, AL));
4519     return;
4520   case ParsedAttr::AT_VectorCall:
4521     D->addAttr(::new (S.Context) VectorCallAttr(S.Context, AL));
4522     return;
4523   case ParsedAttr::AT_MSABI:
4524     D->addAttr(::new (S.Context) MSABIAttr(S.Context, AL));
4525     return;
4526   case ParsedAttr::AT_SysVABI:
4527     D->addAttr(::new (S.Context) SysVABIAttr(S.Context, AL));
4528     return;
4529   case ParsedAttr::AT_RegCall:
4530     D->addAttr(::new (S.Context) RegCallAttr(S.Context, AL));
4531     return;
4532   case ParsedAttr::AT_Pcs: {
4533     PcsAttr::PCSType PCS;
4534     switch (CC) {
4535     case CC_AAPCS:
4536       PCS = PcsAttr::AAPCS;
4537       break;
4538     case CC_AAPCS_VFP:
4539       PCS = PcsAttr::AAPCS_VFP;
4540       break;
4541     default:
4542       llvm_unreachable("unexpected calling convention in pcs attribute");
4543     }
4544 
4545     D->addAttr(::new (S.Context) PcsAttr(S.Context, AL, PCS));
4546     return;
4547   }
4548   case ParsedAttr::AT_AArch64VectorPcs:
4549     D->addAttr(::new (S.Context) AArch64VectorPcsAttr(S.Context, AL));
4550     return;
4551   case ParsedAttr::AT_IntelOclBicc:
4552     D->addAttr(::new (S.Context) IntelOclBiccAttr(S.Context, AL));
4553     return;
4554   case ParsedAttr::AT_PreserveMost:
4555     D->addAttr(::new (S.Context) PreserveMostAttr(S.Context, AL));
4556     return;
4557   case ParsedAttr::AT_PreserveAll:
4558     D->addAttr(::new (S.Context) PreserveAllAttr(S.Context, AL));
4559     return;
4560   default:
4561     llvm_unreachable("unexpected attribute kind");
4562   }
4563 }
4564 
4565 static void handleSuppressAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4566   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
4567     return;
4568 
4569   std::vector<StringRef> DiagnosticIdentifiers;
4570   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
4571     StringRef RuleName;
4572 
4573     if (!S.checkStringLiteralArgumentAttr(AL, I, RuleName, nullptr))
4574       return;
4575 
4576     // FIXME: Warn if the rule name is unknown. This is tricky because only
4577     // clang-tidy knows about available rules.
4578     DiagnosticIdentifiers.push_back(RuleName);
4579   }
4580   D->addAttr(::new (S.Context)
4581                  SuppressAttr(S.Context, AL, DiagnosticIdentifiers.data(),
4582                               DiagnosticIdentifiers.size()));
4583 }
4584 
4585 static void handleLifetimeCategoryAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4586   TypeSourceInfo *DerefTypeLoc = nullptr;
4587   QualType ParmType;
4588   if (AL.hasParsedType()) {
4589     ParmType = S.GetTypeFromParser(AL.getTypeArg(), &DerefTypeLoc);
4590 
4591     unsigned SelectIdx = ~0U;
4592     if (ParmType->isReferenceType())
4593       SelectIdx = 0;
4594     else if (ParmType->isArrayType())
4595       SelectIdx = 1;
4596 
4597     if (SelectIdx != ~0U) {
4598       S.Diag(AL.getLoc(), diag::err_attribute_invalid_argument)
4599           << SelectIdx << AL;
4600       return;
4601     }
4602   }
4603 
4604   // To check if earlier decl attributes do not conflict the newly parsed ones
4605   // we always add (and check) the attribute to the cannonical decl.
4606   D = D->getCanonicalDecl();
4607   if (AL.getKind() == ParsedAttr::AT_Owner) {
4608     if (checkAttrMutualExclusion<PointerAttr>(S, D, AL))
4609       return;
4610     if (const auto *OAttr = D->getAttr<OwnerAttr>()) {
4611       const Type *ExistingDerefType = OAttr->getDerefTypeLoc()
4612                                           ? OAttr->getDerefType().getTypePtr()
4613                                           : nullptr;
4614       if (ExistingDerefType != ParmType.getTypePtrOrNull()) {
4615         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
4616             << AL << OAttr;
4617         S.Diag(OAttr->getLocation(), diag::note_conflicting_attribute);
4618       }
4619       return;
4620     }
4621     for (Decl *Redecl : D->redecls()) {
4622       Redecl->addAttr(::new (S.Context) OwnerAttr(S.Context, AL, DerefTypeLoc));
4623     }
4624   } else {
4625     if (checkAttrMutualExclusion<OwnerAttr>(S, D, AL))
4626       return;
4627     if (const auto *PAttr = D->getAttr<PointerAttr>()) {
4628       const Type *ExistingDerefType = PAttr->getDerefTypeLoc()
4629                                           ? PAttr->getDerefType().getTypePtr()
4630                                           : nullptr;
4631       if (ExistingDerefType != ParmType.getTypePtrOrNull()) {
4632         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
4633             << AL << PAttr;
4634         S.Diag(PAttr->getLocation(), diag::note_conflicting_attribute);
4635       }
4636       return;
4637     }
4638     for (Decl *Redecl : D->redecls()) {
4639       Redecl->addAttr(::new (S.Context)
4640                           PointerAttr(S.Context, AL, DerefTypeLoc));
4641     }
4642   }
4643 }
4644 
4645 bool Sema::CheckCallingConvAttr(const ParsedAttr &Attrs, CallingConv &CC,
4646                                 const FunctionDecl *FD) {
4647   if (Attrs.isInvalid())
4648     return true;
4649 
4650   if (Attrs.hasProcessingCache()) {
4651     CC = (CallingConv) Attrs.getProcessingCache();
4652     return false;
4653   }
4654 
4655   unsigned ReqArgs = Attrs.getKind() == ParsedAttr::AT_Pcs ? 1 : 0;
4656   if (!checkAttributeNumArgs(*this, Attrs, ReqArgs)) {
4657     Attrs.setInvalid();
4658     return true;
4659   }
4660 
4661   // TODO: diagnose uses of these conventions on the wrong target.
4662   switch (Attrs.getKind()) {
4663   case ParsedAttr::AT_CDecl:
4664     CC = CC_C;
4665     break;
4666   case ParsedAttr::AT_FastCall:
4667     CC = CC_X86FastCall;
4668     break;
4669   case ParsedAttr::AT_StdCall:
4670     CC = CC_X86StdCall;
4671     break;
4672   case ParsedAttr::AT_ThisCall:
4673     CC = CC_X86ThisCall;
4674     break;
4675   case ParsedAttr::AT_Pascal:
4676     CC = CC_X86Pascal;
4677     break;
4678   case ParsedAttr::AT_SwiftCall:
4679     CC = CC_Swift;
4680     break;
4681   case ParsedAttr::AT_VectorCall:
4682     CC = CC_X86VectorCall;
4683     break;
4684   case ParsedAttr::AT_AArch64VectorPcs:
4685     CC = CC_AArch64VectorCall;
4686     break;
4687   case ParsedAttr::AT_RegCall:
4688     CC = CC_X86RegCall;
4689     break;
4690   case ParsedAttr::AT_MSABI:
4691     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
4692                                                              CC_Win64;
4693     break;
4694   case ParsedAttr::AT_SysVABI:
4695     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4696                                                              CC_C;
4697     break;
4698   case ParsedAttr::AT_Pcs: {
4699     StringRef StrRef;
4700     if (!checkStringLiteralArgumentAttr(Attrs, 0, StrRef)) {
4701       Attrs.setInvalid();
4702       return true;
4703     }
4704     if (StrRef == "aapcs") {
4705       CC = CC_AAPCS;
4706       break;
4707     } else if (StrRef == "aapcs-vfp") {
4708       CC = CC_AAPCS_VFP;
4709       break;
4710     }
4711 
4712     Attrs.setInvalid();
4713     Diag(Attrs.getLoc(), diag::err_invalid_pcs);
4714     return true;
4715   }
4716   case ParsedAttr::AT_IntelOclBicc:
4717     CC = CC_IntelOclBicc;
4718     break;
4719   case ParsedAttr::AT_PreserveMost:
4720     CC = CC_PreserveMost;
4721     break;
4722   case ParsedAttr::AT_PreserveAll:
4723     CC = CC_PreserveAll;
4724     break;
4725   default: llvm_unreachable("unexpected attribute kind");
4726   }
4727 
4728   TargetInfo::CallingConvCheckResult A = TargetInfo::CCCR_OK;
4729   const TargetInfo &TI = Context.getTargetInfo();
4730   // CUDA functions may have host and/or device attributes which indicate
4731   // their targeted execution environment, therefore the calling convention
4732   // of functions in CUDA should be checked against the target deduced based
4733   // on their host/device attributes.
4734   if (LangOpts.CUDA) {
4735     auto *Aux = Context.getAuxTargetInfo();
4736     auto CudaTarget = IdentifyCUDATarget(FD);
4737     bool CheckHost = false, CheckDevice = false;
4738     switch (CudaTarget) {
4739     case CFT_HostDevice:
4740       CheckHost = true;
4741       CheckDevice = true;
4742       break;
4743     case CFT_Host:
4744       CheckHost = true;
4745       break;
4746     case CFT_Device:
4747     case CFT_Global:
4748       CheckDevice = true;
4749       break;
4750     case CFT_InvalidTarget:
4751       llvm_unreachable("unexpected cuda target");
4752     }
4753     auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4754     auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;
4755     if (CheckHost && HostTI)
4756       A = HostTI->checkCallingConvention(CC);
4757     if (A == TargetInfo::CCCR_OK && CheckDevice && DeviceTI)
4758       A = DeviceTI->checkCallingConvention(CC);
4759   } else {
4760     A = TI.checkCallingConvention(CC);
4761   }
4762 
4763   switch (A) {
4764   case TargetInfo::CCCR_OK:
4765     break;
4766 
4767   case TargetInfo::CCCR_Ignore:
4768     // Treat an ignored convention as if it was an explicit C calling convention
4769     // attribute. For example, __stdcall on Win x64 functions as __cdecl, so
4770     // that command line flags that change the default convention to
4771     // __vectorcall don't affect declarations marked __stdcall.
4772     CC = CC_C;
4773     break;
4774 
4775   case TargetInfo::CCCR_Error:
4776     Diag(Attrs.getLoc(), diag::error_cconv_unsupported)
4777         << Attrs << (int)CallingConventionIgnoredReason::ForThisTarget;
4778     break;
4779 
4780   case TargetInfo::CCCR_Warning: {
4781     Diag(Attrs.getLoc(), diag::warn_cconv_unsupported)
4782         << Attrs << (int)CallingConventionIgnoredReason::ForThisTarget;
4783 
4784     // This convention is not valid for the target. Use the default function or
4785     // method calling convention.
4786     bool IsCXXMethod = false, IsVariadic = false;
4787     if (FD) {
4788       IsCXXMethod = FD->isCXXInstanceMember();
4789       IsVariadic = FD->isVariadic();
4790     }
4791     CC = Context.getDefaultCallingConvention(IsVariadic, IsCXXMethod);
4792     break;
4793   }
4794   }
4795 
4796   Attrs.setProcessingCache((unsigned) CC);
4797   return false;
4798 }
4799 
4800 /// Pointer-like types in the default address space.
4801 static bool isValidSwiftContextType(QualType Ty) {
4802   if (!Ty->hasPointerRepresentation())
4803     return Ty->isDependentType();
4804   return Ty->getPointeeType().getAddressSpace() == LangAS::Default;
4805 }
4806 
4807 /// Pointers and references in the default address space.
4808 static bool isValidSwiftIndirectResultType(QualType Ty) {
4809   if (const auto *PtrType = Ty->getAs<PointerType>()) {
4810     Ty = PtrType->getPointeeType();
4811   } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4812     Ty = RefType->getPointeeType();
4813   } else {
4814     return Ty->isDependentType();
4815   }
4816   return Ty.getAddressSpace() == LangAS::Default;
4817 }
4818 
4819 /// Pointers and references to pointers in the default address space.
4820 static bool isValidSwiftErrorResultType(QualType Ty) {
4821   if (const auto *PtrType = Ty->getAs<PointerType>()) {
4822     Ty = PtrType->getPointeeType();
4823   } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4824     Ty = RefType->getPointeeType();
4825   } else {
4826     return Ty->isDependentType();
4827   }
4828   if (!Ty.getQualifiers().empty())
4829     return false;
4830   return isValidSwiftContextType(Ty);
4831 }
4832 
4833 void Sema::AddParameterABIAttr(Decl *D, const AttributeCommonInfo &CI,
4834                                ParameterABI abi) {
4835 
4836   QualType type = cast<ParmVarDecl>(D)->getType();
4837 
4838   if (auto existingAttr = D->getAttr<ParameterABIAttr>()) {
4839     if (existingAttr->getABI() != abi) {
4840       Diag(CI.getLoc(), diag::err_attributes_are_not_compatible)
4841           << getParameterABISpelling(abi) << existingAttr;
4842       Diag(existingAttr->getLocation(), diag::note_conflicting_attribute);
4843       return;
4844     }
4845   }
4846 
4847   switch (abi) {
4848   case ParameterABI::Ordinary:
4849     llvm_unreachable("explicit attribute for ordinary parameter ABI?");
4850 
4851   case ParameterABI::SwiftContext:
4852     if (!isValidSwiftContextType(type)) {
4853       Diag(CI.getLoc(), diag::err_swift_abi_parameter_wrong_type)
4854           << getParameterABISpelling(abi) << /*pointer to pointer */ 0 << type;
4855     }
4856     D->addAttr(::new (Context) SwiftContextAttr(Context, CI));
4857     return;
4858 
4859   case ParameterABI::SwiftErrorResult:
4860     if (!isValidSwiftErrorResultType(type)) {
4861       Diag(CI.getLoc(), diag::err_swift_abi_parameter_wrong_type)
4862           << getParameterABISpelling(abi) << /*pointer to pointer */ 1 << type;
4863     }
4864     D->addAttr(::new (Context) SwiftErrorResultAttr(Context, CI));
4865     return;
4866 
4867   case ParameterABI::SwiftIndirectResult:
4868     if (!isValidSwiftIndirectResultType(type)) {
4869       Diag(CI.getLoc(), diag::err_swift_abi_parameter_wrong_type)
4870           << getParameterABISpelling(abi) << /*pointer*/ 0 << type;
4871     }
4872     D->addAttr(::new (Context) SwiftIndirectResultAttr(Context, CI));
4873     return;
4874   }
4875   llvm_unreachable("bad parameter ABI attribute");
4876 }
4877 
4878 /// Checks a regparm attribute, returning true if it is ill-formed and
4879 /// otherwise setting numParams to the appropriate value.
4880 bool Sema::CheckRegparmAttr(const ParsedAttr &AL, unsigned &numParams) {
4881   if (AL.isInvalid())
4882     return true;
4883 
4884   if (!checkAttributeNumArgs(*this, AL, 1)) {
4885     AL.setInvalid();
4886     return true;
4887   }
4888 
4889   uint32_t NP;
4890   Expr *NumParamsExpr = AL.getArgAsExpr(0);
4891   if (!checkUInt32Argument(*this, AL, NumParamsExpr, NP)) {
4892     AL.setInvalid();
4893     return true;
4894   }
4895 
4896   if (Context.getTargetInfo().getRegParmMax() == 0) {
4897     Diag(AL.getLoc(), diag::err_attribute_regparm_wrong_platform)
4898       << NumParamsExpr->getSourceRange();
4899     AL.setInvalid();
4900     return true;
4901   }
4902 
4903   numParams = NP;
4904   if (numParams > Context.getTargetInfo().getRegParmMax()) {
4905     Diag(AL.getLoc(), diag::err_attribute_regparm_invalid_number)
4906       << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
4907     AL.setInvalid();
4908     return true;
4909   }
4910 
4911   return false;
4912 }
4913 
4914 // Checks whether an argument of launch_bounds attribute is
4915 // acceptable, performs implicit conversion to Rvalue, and returns
4916 // non-nullptr Expr result on success. Otherwise, it returns nullptr
4917 // and may output an error.
4918 static Expr *makeLaunchBoundsArgExpr(Sema &S, Expr *E,
4919                                      const CUDALaunchBoundsAttr &AL,
4920                                      const unsigned Idx) {
4921   if (S.DiagnoseUnexpandedParameterPack(E))
4922     return nullptr;
4923 
4924   // Accept template arguments for now as they depend on something else.
4925   // We'll get to check them when they eventually get instantiated.
4926   if (E->isValueDependent())
4927     return E;
4928 
4929   Optional<llvm::APSInt> I = llvm::APSInt(64);
4930   if (!(I = E->getIntegerConstantExpr(S.Context))) {
4931     S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type)
4932         << &AL << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange();
4933     return nullptr;
4934   }
4935   // Make sure we can fit it in 32 bits.
4936   if (!I->isIntN(32)) {
4937     S.Diag(E->getExprLoc(), diag::err_ice_too_large)
4938         << I->toString(10, false) << 32 << /* Unsigned */ 1;
4939     return nullptr;
4940   }
4941   if (*I < 0)
4942     S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative)
4943         << &AL << Idx << E->getSourceRange();
4944 
4945   // We may need to perform implicit conversion of the argument.
4946   InitializedEntity Entity = InitializedEntity::InitializeParameter(
4947       S.Context, S.Context.getConstType(S.Context.IntTy), /*consume*/ false);
4948   ExprResult ValArg = S.PerformCopyInitialization(Entity, SourceLocation(), E);
4949   assert(!ValArg.isInvalid() &&
4950          "Unexpected PerformCopyInitialization() failure.");
4951 
4952   return ValArg.getAs<Expr>();
4953 }
4954 
4955 void Sema::AddLaunchBoundsAttr(Decl *D, const AttributeCommonInfo &CI,
4956                                Expr *MaxThreads, Expr *MinBlocks) {
4957   CUDALaunchBoundsAttr TmpAttr(Context, CI, MaxThreads, MinBlocks);
4958   MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0);
4959   if (MaxThreads == nullptr)
4960     return;
4961 
4962   if (MinBlocks) {
4963     MinBlocks = makeLaunchBoundsArgExpr(*this, MinBlocks, TmpAttr, 1);
4964     if (MinBlocks == nullptr)
4965       return;
4966   }
4967 
4968   D->addAttr(::new (Context)
4969                  CUDALaunchBoundsAttr(Context, CI, MaxThreads, MinBlocks));
4970 }
4971 
4972 static void handleLaunchBoundsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4973   if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
4974       !checkAttributeAtMostNumArgs(S, AL, 2))
4975     return;
4976 
4977   S.AddLaunchBoundsAttr(D, AL, AL.getArgAsExpr(0),
4978                         AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr);
4979 }
4980 
4981 static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4982                                           const ParsedAttr &AL) {
4983   if (!AL.isArgIdent(0)) {
4984     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
4985         << AL << /* arg num = */ 1 << AANT_ArgumentIdentifier;
4986     return;
4987   }
4988 
4989   ParamIdx ArgumentIdx;
4990   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 2, AL.getArgAsExpr(1),
4991                                            ArgumentIdx))
4992     return;
4993 
4994   ParamIdx TypeTagIdx;
4995   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 3, AL.getArgAsExpr(2),
4996                                            TypeTagIdx))
4997     return;
4998 
4999   bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag";
5000   if (IsPointer) {
5001     // Ensure that buffer has a pointer type.
5002     unsigned ArgumentIdxAST = ArgumentIdx.getASTIndex();
5003     if (ArgumentIdxAST >= getFunctionOrMethodNumParams(D) ||
5004         !getFunctionOrMethodParamType(D, ArgumentIdxAST)->isPointerType())
5005       S.Diag(AL.getLoc(), diag::err_attribute_pointers_only) << AL << 0;
5006   }
5007 
5008   D->addAttr(::new (S.Context) ArgumentWithTypeTagAttr(
5009       S.Context, AL, AL.getArgAsIdent(0)->Ident, ArgumentIdx, TypeTagIdx,
5010       IsPointer));
5011 }
5012 
5013 static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
5014                                          const ParsedAttr &AL) {
5015   if (!AL.isArgIdent(0)) {
5016     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
5017         << AL << 1 << AANT_ArgumentIdentifier;
5018     return;
5019   }
5020 
5021   if (!checkAttributeNumArgs(S, AL, 1))
5022     return;
5023 
5024   if (!isa<VarDecl>(D)) {
5025     S.Diag(AL.getLoc(), diag::err_attribute_wrong_decl_type)
5026         << AL << ExpectedVariable;
5027     return;
5028   }
5029 
5030   IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident;
5031   TypeSourceInfo *MatchingCTypeLoc = nullptr;
5032   S.GetTypeFromParser(AL.getMatchingCType(), &MatchingCTypeLoc);
5033   assert(MatchingCTypeLoc && "no type source info for attribute argument");
5034 
5035   D->addAttr(::new (S.Context) TypeTagForDatatypeAttr(
5036       S.Context, AL, PointerKind, MatchingCTypeLoc, AL.getLayoutCompatible(),
5037       AL.getMustBeNull()));
5038 }
5039 
5040 static void handleXRayLogArgsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5041   ParamIdx ArgCount;
5042 
5043   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, AL.getArgAsExpr(0),
5044                                            ArgCount,
5045                                            true /* CanIndexImplicitThis */))
5046     return;
5047 
5048   // ArgCount isn't a parameter index [0;n), it's a count [1;n]
5049   D->addAttr(::new (S.Context)
5050                  XRayLogArgsAttr(S.Context, AL, ArgCount.getSourceIndex()));
5051 }
5052 
5053 static void handlePatchableFunctionEntryAttr(Sema &S, Decl *D,
5054                                              const ParsedAttr &AL) {
5055   uint32_t Count = 0, Offset = 0;
5056   if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), Count, 0, true))
5057     return;
5058   if (AL.getNumArgs() == 2) {
5059     Expr *Arg = AL.getArgAsExpr(1);
5060     if (!checkUInt32Argument(S, AL, Arg, Offset, 1, true))
5061       return;
5062     if (Count < Offset) {
5063       S.Diag(getAttrLoc(AL), diag::err_attribute_argument_out_of_range)
5064           << &AL << 0 << Count << Arg->getBeginLoc();
5065       return;
5066     }
5067   }
5068   D->addAttr(::new (S.Context)
5069                  PatchableFunctionEntryAttr(S.Context, AL, Count, Offset));
5070 }
5071 
5072 namespace {
5073 struct IntrinToName {
5074   uint32_t Id;
5075   int32_t FullName;
5076   int32_t ShortName;
5077 };
5078 } // unnamed namespace
5079 
5080 static bool ArmBuiltinAliasValid(unsigned BuiltinID, StringRef AliasName,
5081                                  ArrayRef<IntrinToName> Map,
5082                                  const char *IntrinNames) {
5083   if (AliasName.startswith("__arm_"))
5084     AliasName = AliasName.substr(6);
5085   const IntrinToName *It = std::lower_bound(
5086       Map.begin(), Map.end(), BuiltinID,
5087       [](const IntrinToName &L, unsigned Id) { return L.Id < Id; });
5088   if (It == Map.end() || It->Id != BuiltinID)
5089     return false;
5090   StringRef FullName(&IntrinNames[It->FullName]);
5091   if (AliasName == FullName)
5092     return true;
5093   if (It->ShortName == -1)
5094     return false;
5095   StringRef ShortName(&IntrinNames[It->ShortName]);
5096   return AliasName == ShortName;
5097 }
5098 
5099 static bool ArmMveAliasValid(unsigned BuiltinID, StringRef AliasName) {
5100 #include "clang/Basic/arm_mve_builtin_aliases.inc"
5101   // The included file defines:
5102   // - ArrayRef<IntrinToName> Map
5103   // - const char IntrinNames[]
5104   return ArmBuiltinAliasValid(BuiltinID, AliasName, Map, IntrinNames);
5105 }
5106 
5107 static bool ArmCdeAliasValid(unsigned BuiltinID, StringRef AliasName) {
5108 #include "clang/Basic/arm_cde_builtin_aliases.inc"
5109   return ArmBuiltinAliasValid(BuiltinID, AliasName, Map, IntrinNames);
5110 }
5111 
5112 static bool ArmSveAliasValid(unsigned BuiltinID, StringRef AliasName) {
5113   switch (BuiltinID) {
5114   default:
5115     return false;
5116 #define GET_SVE_BUILTINS
5117 #define BUILTIN(name, types, attr) case SVE::BI##name:
5118 #include "clang/Basic/arm_sve_builtins.inc"
5119     return true;
5120   }
5121 }
5122 
5123 static void handleArmBuiltinAliasAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5124   if (!AL.isArgIdent(0)) {
5125     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
5126         << AL << 1 << AANT_ArgumentIdentifier;
5127     return;
5128   }
5129 
5130   IdentifierInfo *Ident = AL.getArgAsIdent(0)->Ident;
5131   unsigned BuiltinID = Ident->getBuiltinID();
5132   StringRef AliasName = cast<FunctionDecl>(D)->getIdentifier()->getName();
5133 
5134   bool IsAArch64 = S.Context.getTargetInfo().getTriple().isAArch64();
5135   if ((IsAArch64 && !ArmSveAliasValid(BuiltinID, AliasName)) ||
5136       (!IsAArch64 && !ArmMveAliasValid(BuiltinID, AliasName) &&
5137        !ArmCdeAliasValid(BuiltinID, AliasName))) {
5138     S.Diag(AL.getLoc(), diag::err_attribute_arm_builtin_alias);
5139     return;
5140   }
5141 
5142   D->addAttr(::new (S.Context) ArmBuiltinAliasAttr(S.Context, AL, Ident));
5143 }
5144 
5145 //===----------------------------------------------------------------------===//
5146 // Checker-specific attribute handlers.
5147 //===----------------------------------------------------------------------===//
5148 static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType QT) {
5149   return QT->isDependentType() || QT->isObjCRetainableType();
5150 }
5151 
5152 static bool isValidSubjectOfNSAttribute(QualType QT) {
5153   return QT->isDependentType() || QT->isObjCObjectPointerType() ||
5154          QT->isObjCNSObjectType();
5155 }
5156 
5157 static bool isValidSubjectOfCFAttribute(QualType QT) {
5158   return QT->isDependentType() || QT->isPointerType() ||
5159          isValidSubjectOfNSAttribute(QT);
5160 }
5161 
5162 static bool isValidSubjectOfOSAttribute(QualType QT) {
5163   if (QT->isDependentType())
5164     return true;
5165   QualType PT = QT->getPointeeType();
5166   return !PT.isNull() && PT->getAsCXXRecordDecl() != nullptr;
5167 }
5168 
5169 void Sema::AddXConsumedAttr(Decl *D, const AttributeCommonInfo &CI,
5170                             RetainOwnershipKind K,
5171                             bool IsTemplateInstantiation) {
5172   ValueDecl *VD = cast<ValueDecl>(D);
5173   switch (K) {
5174   case RetainOwnershipKind::OS:
5175     handleSimpleAttributeOrDiagnose<OSConsumedAttr>(
5176         *this, VD, CI, isValidSubjectOfOSAttribute(VD->getType()),
5177         diag::warn_ns_attribute_wrong_parameter_type,
5178         /*ExtraArgs=*/CI.getRange(), "os_consumed", /*pointers*/ 1);
5179     return;
5180   case RetainOwnershipKind::NS:
5181     handleSimpleAttributeOrDiagnose<NSConsumedAttr>(
5182         *this, VD, CI, isValidSubjectOfNSAttribute(VD->getType()),
5183 
5184         // These attributes are normally just advisory, but in ARC, ns_consumed
5185         // is significant.  Allow non-dependent code to contain inappropriate
5186         // attributes even in ARC, but require template instantiations to be
5187         // set up correctly.
5188         ((IsTemplateInstantiation && getLangOpts().ObjCAutoRefCount)
5189              ? diag::err_ns_attribute_wrong_parameter_type
5190              : diag::warn_ns_attribute_wrong_parameter_type),
5191         /*ExtraArgs=*/CI.getRange(), "ns_consumed", /*objc pointers*/ 0);
5192     return;
5193   case RetainOwnershipKind::CF:
5194     handleSimpleAttributeOrDiagnose<CFConsumedAttr>(
5195         *this, VD, CI, isValidSubjectOfCFAttribute(VD->getType()),
5196         diag::warn_ns_attribute_wrong_parameter_type,
5197         /*ExtraArgs=*/CI.getRange(), "cf_consumed", /*pointers*/ 1);
5198     return;
5199   }
5200 }
5201 
5202 static Sema::RetainOwnershipKind
5203 parsedAttrToRetainOwnershipKind(const ParsedAttr &AL) {
5204   switch (AL.getKind()) {
5205   case ParsedAttr::AT_CFConsumed:
5206   case ParsedAttr::AT_CFReturnsRetained:
5207   case ParsedAttr::AT_CFReturnsNotRetained:
5208     return Sema::RetainOwnershipKind::CF;
5209   case ParsedAttr::AT_OSConsumesThis:
5210   case ParsedAttr::AT_OSConsumed:
5211   case ParsedAttr::AT_OSReturnsRetained:
5212   case ParsedAttr::AT_OSReturnsNotRetained:
5213   case ParsedAttr::AT_OSReturnsRetainedOnZero:
5214   case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
5215     return Sema::RetainOwnershipKind::OS;
5216   case ParsedAttr::AT_NSConsumesSelf:
5217   case ParsedAttr::AT_NSConsumed:
5218   case ParsedAttr::AT_NSReturnsRetained:
5219   case ParsedAttr::AT_NSReturnsNotRetained:
5220   case ParsedAttr::AT_NSReturnsAutoreleased:
5221     return Sema::RetainOwnershipKind::NS;
5222   default:
5223     llvm_unreachable("Wrong argument supplied");
5224   }
5225 }
5226 
5227 bool Sema::checkNSReturnsRetainedReturnType(SourceLocation Loc, QualType QT) {
5228   if (isValidSubjectOfNSReturnsRetainedAttribute(QT))
5229     return false;
5230 
5231   Diag(Loc, diag::warn_ns_attribute_wrong_return_type)
5232       << "'ns_returns_retained'" << 0 << 0;
5233   return true;
5234 }
5235 
5236 /// \return whether the parameter is a pointer to OSObject pointer.
5237 static bool isValidOSObjectOutParameter(const Decl *D) {
5238   const auto *PVD = dyn_cast<ParmVarDecl>(D);
5239   if (!PVD)
5240     return false;
5241   QualType QT = PVD->getType();
5242   QualType PT = QT->getPointeeType();
5243   return !PT.isNull() && isValidSubjectOfOSAttribute(PT);
5244 }
5245 
5246 static void handleXReturnsXRetainedAttr(Sema &S, Decl *D,
5247                                         const ParsedAttr &AL) {
5248   QualType ReturnType;
5249   Sema::RetainOwnershipKind K = parsedAttrToRetainOwnershipKind(AL);
5250 
5251   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
5252     ReturnType = MD->getReturnType();
5253   } else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
5254              (AL.getKind() == ParsedAttr::AT_NSReturnsRetained)) {
5255     return; // ignore: was handled as a type attribute
5256   } else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
5257     ReturnType = PD->getType();
5258   } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
5259     ReturnType = FD->getReturnType();
5260   } else if (const auto *Param = dyn_cast<ParmVarDecl>(D)) {
5261     // Attributes on parameters are used for out-parameters,
5262     // passed as pointers-to-pointers.
5263     unsigned DiagID = K == Sema::RetainOwnershipKind::CF
5264             ? /*pointer-to-CF-pointer*/2
5265             : /*pointer-to-OSObject-pointer*/3;
5266     ReturnType = Param->getType()->getPointeeType();
5267     if (ReturnType.isNull()) {
5268       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
5269           << AL << DiagID << AL.getRange();
5270       return;
5271     }
5272   } else if (AL.isUsedAsTypeAttr()) {
5273     return;
5274   } else {
5275     AttributeDeclKind ExpectedDeclKind;
5276     switch (AL.getKind()) {
5277     default: llvm_unreachable("invalid ownership attribute");
5278     case ParsedAttr::AT_NSReturnsRetained:
5279     case ParsedAttr::AT_NSReturnsAutoreleased:
5280     case ParsedAttr::AT_NSReturnsNotRetained:
5281       ExpectedDeclKind = ExpectedFunctionOrMethod;
5282       break;
5283 
5284     case ParsedAttr::AT_OSReturnsRetained:
5285     case ParsedAttr::AT_OSReturnsNotRetained:
5286     case ParsedAttr::AT_CFReturnsRetained:
5287     case ParsedAttr::AT_CFReturnsNotRetained:
5288       ExpectedDeclKind = ExpectedFunctionMethodOrParameter;
5289       break;
5290     }
5291     S.Diag(D->getBeginLoc(), diag::warn_attribute_wrong_decl_type)
5292         << AL.getRange() << AL << ExpectedDeclKind;
5293     return;
5294   }
5295 
5296   bool TypeOK;
5297   bool Cf;
5298   unsigned ParmDiagID = 2; // Pointer-to-CF-pointer
5299   switch (AL.getKind()) {
5300   default: llvm_unreachable("invalid ownership attribute");
5301   case ParsedAttr::AT_NSReturnsRetained:
5302     TypeOK = isValidSubjectOfNSReturnsRetainedAttribute(ReturnType);
5303     Cf = false;
5304     break;
5305 
5306   case ParsedAttr::AT_NSReturnsAutoreleased:
5307   case ParsedAttr::AT_NSReturnsNotRetained:
5308     TypeOK = isValidSubjectOfNSAttribute(ReturnType);
5309     Cf = false;
5310     break;
5311 
5312   case ParsedAttr::AT_CFReturnsRetained:
5313   case ParsedAttr::AT_CFReturnsNotRetained:
5314     TypeOK = isValidSubjectOfCFAttribute(ReturnType);
5315     Cf = true;
5316     break;
5317 
5318   case ParsedAttr::AT_OSReturnsRetained:
5319   case ParsedAttr::AT_OSReturnsNotRetained:
5320     TypeOK = isValidSubjectOfOSAttribute(ReturnType);
5321     Cf = true;
5322     ParmDiagID = 3; // Pointer-to-OSObject-pointer
5323     break;
5324   }
5325 
5326   if (!TypeOK) {
5327     if (AL.isUsedAsTypeAttr())
5328       return;
5329 
5330     if (isa<ParmVarDecl>(D)) {
5331       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
5332           << AL << ParmDiagID << AL.getRange();
5333     } else {
5334       // Needs to be kept in sync with warn_ns_attribute_wrong_return_type.
5335       enum : unsigned {
5336         Function,
5337         Method,
5338         Property
5339       } SubjectKind = Function;
5340       if (isa<ObjCMethodDecl>(D))
5341         SubjectKind = Method;
5342       else if (isa<ObjCPropertyDecl>(D))
5343         SubjectKind = Property;
5344       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
5345           << AL << SubjectKind << Cf << AL.getRange();
5346     }
5347     return;
5348   }
5349 
5350   switch (AL.getKind()) {
5351     default:
5352       llvm_unreachable("invalid ownership attribute");
5353     case ParsedAttr::AT_NSReturnsAutoreleased:
5354       handleSimpleAttribute<NSReturnsAutoreleasedAttr>(S, D, AL);
5355       return;
5356     case ParsedAttr::AT_CFReturnsNotRetained:
5357       handleSimpleAttribute<CFReturnsNotRetainedAttr>(S, D, AL);
5358       return;
5359     case ParsedAttr::AT_NSReturnsNotRetained:
5360       handleSimpleAttribute<NSReturnsNotRetainedAttr>(S, D, AL);
5361       return;
5362     case ParsedAttr::AT_CFReturnsRetained:
5363       handleSimpleAttribute<CFReturnsRetainedAttr>(S, D, AL);
5364       return;
5365     case ParsedAttr::AT_NSReturnsRetained:
5366       handleSimpleAttribute<NSReturnsRetainedAttr>(S, D, AL);
5367       return;
5368     case ParsedAttr::AT_OSReturnsRetained:
5369       handleSimpleAttribute<OSReturnsRetainedAttr>(S, D, AL);
5370       return;
5371     case ParsedAttr::AT_OSReturnsNotRetained:
5372       handleSimpleAttribute<OSReturnsNotRetainedAttr>(S, D, AL);
5373       return;
5374   };
5375 }
5376 
5377 static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
5378                                               const ParsedAttr &Attrs) {
5379   const int EP_ObjCMethod = 1;
5380   const int EP_ObjCProperty = 2;
5381 
5382   SourceLocation loc = Attrs.getLoc();
5383   QualType resultType;
5384   if (isa<ObjCMethodDecl>(D))
5385     resultType = cast<ObjCMethodDecl>(D)->getReturnType();
5386   else
5387     resultType = cast<ObjCPropertyDecl>(D)->getType();
5388 
5389   if (!resultType->isReferenceType() &&
5390       (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
5391     S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
5392         << SourceRange(loc) << Attrs
5393         << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty)
5394         << /*non-retainable pointer*/ 2;
5395 
5396     // Drop the attribute.
5397     return;
5398   }
5399 
5400   D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr(S.Context, Attrs));
5401 }
5402 
5403 static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
5404                                         const ParsedAttr &Attrs) {
5405   const auto *Method = cast<ObjCMethodDecl>(D);
5406 
5407   const DeclContext *DC = Method->getDeclContext();
5408   if (const auto *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
5409     S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
5410                                                                       << 0;
5411     S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
5412     return;
5413   }
5414   if (Method->getMethodFamily() == OMF_dealloc) {
5415     S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
5416                                                                       << 1;
5417     return;
5418   }
5419 
5420   D->addAttr(::new (S.Context) ObjCRequiresSuperAttr(S.Context, Attrs));
5421 }
5422 
5423 static void handleNSErrorDomain(Sema &S, Decl *D, const ParsedAttr &AL) {
5424   auto *E = AL.getArgAsExpr(0);
5425   auto Loc = E ? E->getBeginLoc() : AL.getLoc();
5426 
5427   auto *DRE = dyn_cast<DeclRefExpr>(AL.getArgAsExpr(0));
5428   if (!DRE) {
5429     S.Diag(Loc, diag::err_nserrordomain_invalid_decl) << 0;
5430     return;
5431   }
5432 
5433   auto *VD = dyn_cast<VarDecl>(DRE->getDecl());
5434   if (!VD) {
5435     S.Diag(Loc, diag::err_nserrordomain_invalid_decl) << 1 << DRE->getDecl();
5436     return;
5437   }
5438 
5439   if (!isNSStringType(VD->getType(), S.Context) &&
5440       !isCFStringType(VD->getType(), S.Context)) {
5441     S.Diag(Loc, diag::err_nserrordomain_wrong_type) << VD;
5442     return;
5443   }
5444 
5445   D->addAttr(::new (S.Context) NSErrorDomainAttr(S.Context, AL, VD));
5446 }
5447 
5448 static void handleObjCBridgeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5449   IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
5450 
5451   if (!Parm) {
5452     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5453     return;
5454   }
5455 
5456   // Typedefs only allow objc_bridge(id) and have some additional checking.
5457   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
5458     if (!Parm->Ident->isStr("id")) {
5459       S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_id) << AL;
5460       return;
5461     }
5462 
5463     // Only allow 'cv void *'.
5464     QualType T = TD->getUnderlyingType();
5465     if (!T->isVoidPointerType()) {
5466       S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_void_pointer);
5467       return;
5468     }
5469   }
5470 
5471   D->addAttr(::new (S.Context) ObjCBridgeAttr(S.Context, AL, Parm->Ident));
5472 }
5473 
5474 static void handleObjCBridgeMutableAttr(Sema &S, Decl *D,
5475                                         const ParsedAttr &AL) {
5476   IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
5477 
5478   if (!Parm) {
5479     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5480     return;
5481   }
5482 
5483   D->addAttr(::new (S.Context)
5484                  ObjCBridgeMutableAttr(S.Context, AL, Parm->Ident));
5485 }
5486 
5487 static void handleObjCBridgeRelatedAttr(Sema &S, Decl *D,
5488                                         const ParsedAttr &AL) {
5489   IdentifierInfo *RelatedClass =
5490       AL.isArgIdent(0) ? AL.getArgAsIdent(0)->Ident : nullptr;
5491   if (!RelatedClass) {
5492     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5493     return;
5494   }
5495   IdentifierInfo *ClassMethod =
5496     AL.getArgAsIdent(1) ? AL.getArgAsIdent(1)->Ident : nullptr;
5497   IdentifierInfo *InstanceMethod =
5498     AL.getArgAsIdent(2) ? AL.getArgAsIdent(2)->Ident : nullptr;
5499   D->addAttr(::new (S.Context) ObjCBridgeRelatedAttr(
5500       S.Context, AL, RelatedClass, ClassMethod, InstanceMethod));
5501 }
5502 
5503 static void handleObjCDesignatedInitializer(Sema &S, Decl *D,
5504                                             const ParsedAttr &AL) {
5505   DeclContext *Ctx = D->getDeclContext();
5506 
5507   // This attribute can only be applied to methods in interfaces or class
5508   // extensions.
5509   if (!isa<ObjCInterfaceDecl>(Ctx) &&
5510       !(isa<ObjCCategoryDecl>(Ctx) &&
5511         cast<ObjCCategoryDecl>(Ctx)->IsClassExtension())) {
5512     S.Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
5513     return;
5514   }
5515 
5516   ObjCInterfaceDecl *IFace;
5517   if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(Ctx))
5518     IFace = CatDecl->getClassInterface();
5519   else
5520     IFace = cast<ObjCInterfaceDecl>(Ctx);
5521 
5522   if (!IFace)
5523     return;
5524 
5525   IFace->setHasDesignatedInitializers();
5526   D->addAttr(::new (S.Context) ObjCDesignatedInitializerAttr(S.Context, AL));
5527 }
5528 
5529 static void handleObjCRuntimeName(Sema &S, Decl *D, const ParsedAttr &AL) {
5530   StringRef MetaDataName;
5531   if (!S.checkStringLiteralArgumentAttr(AL, 0, MetaDataName))
5532     return;
5533   D->addAttr(::new (S.Context)
5534                  ObjCRuntimeNameAttr(S.Context, AL, MetaDataName));
5535 }
5536 
5537 // When a user wants to use objc_boxable with a union or struct
5538 // but they don't have access to the declaration (legacy/third-party code)
5539 // then they can 'enable' this feature with a typedef:
5540 // typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct;
5541 static void handleObjCBoxable(Sema &S, Decl *D, const ParsedAttr &AL) {
5542   bool notify = false;
5543 
5544   auto *RD = dyn_cast<RecordDecl>(D);
5545   if (RD && RD->getDefinition()) {
5546     RD = RD->getDefinition();
5547     notify = true;
5548   }
5549 
5550   if (RD) {
5551     ObjCBoxableAttr *BoxableAttr =
5552         ::new (S.Context) ObjCBoxableAttr(S.Context, AL);
5553     RD->addAttr(BoxableAttr);
5554     if (notify) {
5555       // we need to notify ASTReader/ASTWriter about
5556       // modification of existing declaration
5557       if (ASTMutationListener *L = S.getASTMutationListener())
5558         L->AddedAttributeToRecord(BoxableAttr, RD);
5559     }
5560   }
5561 }
5562 
5563 static void handleObjCOwnershipAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5564   if (hasDeclarator(D)) return;
5565 
5566   S.Diag(D->getBeginLoc(), diag::err_attribute_wrong_decl_type)
5567       << AL.getRange() << AL << ExpectedVariable;
5568 }
5569 
5570 static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
5571                                           const ParsedAttr &AL) {
5572   const auto *VD = cast<ValueDecl>(D);
5573   QualType QT = VD->getType();
5574 
5575   if (!QT->isDependentType() &&
5576       !QT->isObjCLifetimeType()) {
5577     S.Diag(AL.getLoc(), diag::err_objc_precise_lifetime_bad_type)
5578       << QT;
5579     return;
5580   }
5581 
5582   Qualifiers::ObjCLifetime Lifetime = QT.getObjCLifetime();
5583 
5584   // If we have no lifetime yet, check the lifetime we're presumably
5585   // going to infer.
5586   if (Lifetime == Qualifiers::OCL_None && !QT->isDependentType())
5587     Lifetime = QT->getObjCARCImplicitLifetime();
5588 
5589   switch (Lifetime) {
5590   case Qualifiers::OCL_None:
5591     assert(QT->isDependentType() &&
5592            "didn't infer lifetime for non-dependent type?");
5593     break;
5594 
5595   case Qualifiers::OCL_Weak:   // meaningful
5596   case Qualifiers::OCL_Strong: // meaningful
5597     break;
5598 
5599   case Qualifiers::OCL_ExplicitNone:
5600   case Qualifiers::OCL_Autoreleasing:
5601     S.Diag(AL.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
5602         << (Lifetime == Qualifiers::OCL_Autoreleasing);
5603     break;
5604   }
5605 
5606   D->addAttr(::new (S.Context) ObjCPreciseLifetimeAttr(S.Context, AL));
5607 }
5608 
5609 static void handleSwiftBridge(Sema &S, Decl *D, const ParsedAttr &AL) {
5610   // Make sure that there is a string literal as the annotation's single
5611   // argument.
5612   StringRef BT;
5613   if (!S.checkStringLiteralArgumentAttr(AL, 0, BT))
5614     return;
5615 
5616   // Don't duplicate annotations that are already set.
5617   if (D->hasAttr<SwiftBridgeAttr>()) {
5618     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
5619     return;
5620   }
5621 
5622   D->addAttr(::new (S.Context) SwiftBridgeAttr(S.Context, AL, BT));
5623 }
5624 
5625 static bool isErrorParameter(Sema &S, QualType QT) {
5626   const auto *PT = QT->getAs<PointerType>();
5627   if (!PT)
5628     return false;
5629 
5630   QualType Pointee = PT->getPointeeType();
5631 
5632   // Check for NSError**.
5633   if (const auto *OPT = Pointee->getAs<ObjCObjectPointerType>())
5634     if (const auto *ID = OPT->getInterfaceDecl())
5635       if (ID->getIdentifier() == S.getNSErrorIdent())
5636         return true;
5637 
5638   // Check for CFError**.
5639   if (const auto *PT = Pointee->getAs<PointerType>())
5640     if (const auto *RT = PT->getPointeeType()->getAs<RecordType>())
5641       if (S.isCFError(RT->getDecl()))
5642         return true;
5643 
5644   return false;
5645 }
5646 
5647 static void handleSwiftError(Sema &S, Decl *D, const ParsedAttr &AL) {
5648   auto hasErrorParameter = [](Sema &S, Decl *D, const ParsedAttr &AL) -> bool {
5649     for (unsigned I = 0, E = getFunctionOrMethodNumParams(D); I != E; ++I) {
5650       if (isErrorParameter(S, getFunctionOrMethodParamType(D, I)))
5651         return true;
5652     }
5653 
5654     S.Diag(AL.getLoc(), diag::err_attr_swift_error_no_error_parameter)
5655         << AL << isa<ObjCMethodDecl>(D);
5656     return false;
5657   };
5658 
5659   auto hasPointerResult = [](Sema &S, Decl *D, const ParsedAttr &AL) -> bool {
5660     // - C, ObjC, and block pointers are definitely okay.
5661     // - References are definitely not okay.
5662     // - nullptr_t is weird, but acceptable.
5663     QualType RT = getFunctionOrMethodResultType(D);
5664     if (RT->hasPointerRepresentation() && !RT->isReferenceType())
5665       return true;
5666 
5667     S.Diag(AL.getLoc(), diag::err_attr_swift_error_return_type)
5668         << AL << AL.getArgAsIdent(0)->Ident->getName() << isa<ObjCMethodDecl>(D)
5669         << /*pointer*/ 1;
5670     return false;
5671   };
5672 
5673   auto hasIntegerResult = [](Sema &S, Decl *D, const ParsedAttr &AL) -> bool {
5674     QualType RT = getFunctionOrMethodResultType(D);
5675     if (RT->isIntegralType(S.Context))
5676       return true;
5677 
5678     S.Diag(AL.getLoc(), diag::err_attr_swift_error_return_type)
5679         << AL << AL.getArgAsIdent(0)->Ident->getName() << isa<ObjCMethodDecl>(D)
5680         << /*integral*/ 0;
5681     return false;
5682   };
5683 
5684   if (D->isInvalidDecl())
5685     return;
5686 
5687   IdentifierLoc *Loc = AL.getArgAsIdent(0);
5688   SwiftErrorAttr::ConventionKind Convention;
5689   if (!SwiftErrorAttr::ConvertStrToConventionKind(Loc->Ident->getName(),
5690                                                   Convention)) {
5691     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
5692         << AL << Loc->Ident;
5693     return;
5694   }
5695 
5696   switch (Convention) {
5697   case SwiftErrorAttr::None:
5698     // No additional validation required.
5699     break;
5700 
5701   case SwiftErrorAttr::NonNullError:
5702     if (!hasErrorParameter(S, D, AL))
5703       return;
5704     break;
5705 
5706   case SwiftErrorAttr::NullResult:
5707     if (!hasErrorParameter(S, D, AL) || !hasPointerResult(S, D, AL))
5708       return;
5709     break;
5710 
5711   case SwiftErrorAttr::NonZeroResult:
5712   case SwiftErrorAttr::ZeroResult:
5713     if (!hasErrorParameter(S, D, AL) || !hasIntegerResult(S, D, AL))
5714       return;
5715     break;
5716   }
5717 
5718   D->addAttr(::new (S.Context) SwiftErrorAttr(S.Context, AL, Convention));
5719 }
5720 
5721 // For a function, this will validate a compound Swift name, e.g.
5722 // <code>init(foo:bar:baz:)</code> or <code>controllerForName(_:)</code>, and
5723 // the function will output the number of parameter names, and whether this is a
5724 // single-arg initializer.
5725 //
5726 // For a type, enum constant, property, or variable declaration, this will
5727 // validate either a simple identifier, or a qualified
5728 // <code>context.identifier</code> name.
5729 static bool
5730 validateSwiftFunctionName(Sema &S, const ParsedAttr &AL, SourceLocation Loc,
5731                           StringRef Name, unsigned &SwiftParamCount,
5732                           bool &IsSingleParamInit) {
5733   SwiftParamCount = 0;
5734   IsSingleParamInit = false;
5735 
5736   // Check whether this will be mapped to a getter or setter of a property.
5737   bool IsGetter = false, IsSetter = false;
5738   if (Name.startswith("getter:")) {
5739     IsGetter = true;
5740     Name = Name.substr(7);
5741   } else if (Name.startswith("setter:")) {
5742     IsSetter = true;
5743     Name = Name.substr(7);
5744   }
5745 
5746   if (Name.back() != ')') {
5747     S.Diag(Loc, diag::warn_attr_swift_name_function) << AL;
5748     return false;
5749   }
5750 
5751   bool IsMember = false;
5752   StringRef ContextName, BaseName, Parameters;
5753 
5754   std::tie(BaseName, Parameters) = Name.split('(');
5755 
5756   // Split at the first '.', if it exists, which separates the context name
5757   // from the base name.
5758   std::tie(ContextName, BaseName) = BaseName.split('.');
5759   if (BaseName.empty()) {
5760     BaseName = ContextName;
5761     ContextName = StringRef();
5762   } else if (ContextName.empty() || !isValidIdentifier(ContextName)) {
5763     S.Diag(Loc, diag::warn_attr_swift_name_invalid_identifier)
5764         << AL << /*context*/ 1;
5765     return false;
5766   } else {
5767     IsMember = true;
5768   }
5769 
5770   if (!isValidIdentifier(BaseName) || BaseName == "_") {
5771     S.Diag(Loc, diag::warn_attr_swift_name_invalid_identifier)
5772         << AL << /*basename*/ 0;
5773     return false;
5774   }
5775 
5776   bool IsSubscript = BaseName == "subscript";
5777   // A subscript accessor must be a getter or setter.
5778   if (IsSubscript && !IsGetter && !IsSetter) {
5779     S.Diag(Loc, diag::warn_attr_swift_name_subscript_invalid_parameter)
5780         << AL << /* getter or setter */ 0;
5781     return false;
5782   }
5783 
5784   if (Parameters.empty()) {
5785     S.Diag(Loc, diag::warn_attr_swift_name_missing_parameters) << AL;
5786     return false;
5787   }
5788 
5789   assert(Parameters.back() == ')' && "expected ')'");
5790   Parameters = Parameters.drop_back(); // ')'
5791 
5792   if (Parameters.empty()) {
5793     // Setters and subscripts must have at least one parameter.
5794     if (IsSubscript) {
5795       S.Diag(Loc, diag::warn_attr_swift_name_subscript_invalid_parameter)
5796           << AL << /* have at least one parameter */1;
5797       return false;
5798     }
5799 
5800     if (IsSetter) {
5801       S.Diag(Loc, diag::warn_attr_swift_name_setter_parameters) << AL;
5802       return false;
5803     }
5804 
5805     return true;
5806   }
5807 
5808   if (Parameters.back() != ':') {
5809     S.Diag(Loc, diag::warn_attr_swift_name_function) << AL;
5810     return false;
5811   }
5812 
5813   StringRef CurrentParam;
5814   llvm::Optional<unsigned> SelfLocation;
5815   unsigned NewValueCount = 0;
5816   llvm::Optional<unsigned> NewValueLocation;
5817   do {
5818     std::tie(CurrentParam, Parameters) = Parameters.split(':');
5819 
5820     if (!isValidIdentifier(CurrentParam)) {
5821       S.Diag(Loc, diag::warn_attr_swift_name_invalid_identifier)
5822           << AL << /*parameter*/2;
5823       return false;
5824     }
5825 
5826     if (IsMember && CurrentParam == "self") {
5827       // "self" indicates the "self" argument for a member.
5828 
5829       // More than one "self"?
5830       if (SelfLocation) {
5831         S.Diag(Loc, diag::warn_attr_swift_name_multiple_selfs) << AL;
5832         return false;
5833       }
5834 
5835       // The "self" location is the current parameter.
5836       SelfLocation = SwiftParamCount;
5837     } else if (CurrentParam == "newValue") {
5838       // "newValue" indicates the "newValue" argument for a setter.
5839 
5840       // There should only be one 'newValue', but it's only significant for
5841       // subscript accessors, so don't error right away.
5842       ++NewValueCount;
5843 
5844       NewValueLocation = SwiftParamCount;
5845     }
5846 
5847     ++SwiftParamCount;
5848   } while (!Parameters.empty());
5849 
5850   // Only instance subscripts are currently supported.
5851   if (IsSubscript && !SelfLocation) {
5852     S.Diag(Loc, diag::warn_attr_swift_name_subscript_invalid_parameter)
5853         << AL << /*have a 'self:' parameter*/2;
5854     return false;
5855   }
5856 
5857   IsSingleParamInit =
5858         SwiftParamCount == 1 && BaseName == "init" && CurrentParam != "_";
5859 
5860   // Check the number of parameters for a getter/setter.
5861   if (IsGetter || IsSetter) {
5862     // Setters have one parameter for the new value.
5863     unsigned NumExpectedParams = IsGetter ? 0 : 1;
5864     unsigned ParamDiag =
5865         IsGetter ? diag::warn_attr_swift_name_getter_parameters
5866                  : diag::warn_attr_swift_name_setter_parameters;
5867 
5868     // Instance methods have one parameter for "self".
5869     if (SelfLocation)
5870       ++NumExpectedParams;
5871 
5872     // Subscripts may have additional parameters beyond the expected params for
5873     // the index.
5874     if (IsSubscript) {
5875       if (SwiftParamCount < NumExpectedParams) {
5876         S.Diag(Loc, ParamDiag) << AL;
5877         return false;
5878       }
5879 
5880       // A subscript setter must explicitly label its newValue parameter to
5881       // distinguish it from index parameters.
5882       if (IsSetter) {
5883         if (!NewValueLocation) {
5884           S.Diag(Loc, diag::warn_attr_swift_name_subscript_setter_no_newValue)
5885               << AL;
5886           return false;
5887         }
5888         if (NewValueCount > 1) {
5889           S.Diag(Loc, diag::warn_attr_swift_name_subscript_setter_multiple_newValues)
5890               << AL;
5891           return false;
5892         }
5893       } else {
5894         // Subscript getters should have no 'newValue:' parameter.
5895         if (NewValueLocation) {
5896           S.Diag(Loc, diag::warn_attr_swift_name_subscript_getter_newValue)
5897               << AL;
5898           return false;
5899         }
5900       }
5901     } else {
5902       // Property accessors must have exactly the number of expected params.
5903       if (SwiftParamCount != NumExpectedParams) {
5904         S.Diag(Loc, ParamDiag) << AL;
5905         return false;
5906       }
5907     }
5908   }
5909 
5910   return true;
5911 }
5912 
5913 bool Sema::DiagnoseSwiftName(Decl *D, StringRef Name, SourceLocation Loc,
5914                              const ParsedAttr &AL) {
5915   if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) {
5916     ArrayRef<ParmVarDecl*> Params;
5917     unsigned ParamCount;
5918 
5919     if (const auto *Method = dyn_cast<ObjCMethodDecl>(D)) {
5920       ParamCount = Method->getSelector().getNumArgs();
5921       Params = Method->parameters().slice(0, ParamCount);
5922     } else {
5923       const auto *F = cast<FunctionDecl>(D);
5924 
5925       ParamCount = F->getNumParams();
5926       Params = F->parameters();
5927 
5928       if (!F->hasWrittenPrototype()) {
5929         Diag(Loc, diag::warn_attribute_wrong_decl_type) << AL
5930             << ExpectedFunctionWithProtoType;
5931         return false;
5932       }
5933     }
5934 
5935     unsigned SwiftParamCount;
5936     bool IsSingleParamInit;
5937     if (!validateSwiftFunctionName(*this, AL, Loc, Name,
5938                                    SwiftParamCount, IsSingleParamInit))
5939       return false;
5940 
5941     bool ParamCountValid;
5942     if (SwiftParamCount == ParamCount) {
5943       ParamCountValid = true;
5944     } else if (SwiftParamCount > ParamCount) {
5945       ParamCountValid = IsSingleParamInit && ParamCount == 0;
5946     } else {
5947       // We have fewer Swift parameters than Objective-C parameters, but that
5948       // might be because we've transformed some of them. Check for potential
5949       // "out" parameters and err on the side of not warning.
5950       unsigned MaybeOutParamCount =
5951           std::count_if(Params.begin(), Params.end(),
5952                         [](const ParmVarDecl *Param) -> bool {
5953         QualType ParamTy = Param->getType();
5954         if (ParamTy->isReferenceType() || ParamTy->isPointerType())
5955           return !ParamTy->getPointeeType().isConstQualified();
5956         return false;
5957       });
5958 
5959       ParamCountValid = SwiftParamCount + MaybeOutParamCount >= ParamCount;
5960     }
5961 
5962     if (!ParamCountValid) {
5963       Diag(Loc, diag::warn_attr_swift_name_num_params)
5964           << (SwiftParamCount > ParamCount) << AL << ParamCount
5965           << SwiftParamCount;
5966       return false;
5967     }
5968   } else if (isa<EnumConstantDecl>(D) || isa<ObjCProtocolDecl>(D) ||
5969              isa<ObjCInterfaceDecl>(D) || isa<ObjCPropertyDecl>(D) ||
5970              isa<VarDecl>(D) || isa<TypedefNameDecl>(D) || isa<TagDecl>(D) ||
5971              isa<IndirectFieldDecl>(D) || isa<FieldDecl>(D)) {
5972     StringRef ContextName, BaseName;
5973 
5974     std::tie(ContextName, BaseName) = Name.split('.');
5975     if (BaseName.empty()) {
5976       BaseName = ContextName;
5977       ContextName = StringRef();
5978     } else if (!isValidIdentifier(ContextName)) {
5979       Diag(Loc, diag::warn_attr_swift_name_invalid_identifier) << AL
5980           << /*context*/1;
5981       return false;
5982     }
5983 
5984     if (!isValidIdentifier(BaseName)) {
5985       Diag(Loc, diag::warn_attr_swift_name_invalid_identifier) << AL
5986           << /*basename*/0;
5987       return false;
5988     }
5989   } else {
5990     Diag(Loc, diag::warn_attr_swift_name_decl_kind) << AL;
5991     return false;
5992   }
5993   return true;
5994 }
5995 
5996 static void handleSwiftName(Sema &S, Decl *D, const ParsedAttr &AL) {
5997   StringRef Name;
5998   SourceLocation Loc;
5999   if (!S.checkStringLiteralArgumentAttr(AL, 0, Name, &Loc))
6000     return;
6001 
6002   if (!S.DiagnoseSwiftName(D, Name, Loc, AL))
6003     return;
6004 
6005   D->addAttr(::new (S.Context) SwiftNameAttr(S.Context, AL, Name));
6006 }
6007 
6008 static void handleSwiftNewType(Sema &S, Decl *D, const ParsedAttr &AL) {
6009   // Make sure that there is an identifier as the annotation's single argument.
6010   if (!checkAttributeNumArgs(S, AL, 1))
6011     return;
6012 
6013   if (!AL.isArgIdent(0)) {
6014     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
6015         << AL << AANT_ArgumentIdentifier;
6016     return;
6017   }
6018 
6019   SwiftNewTypeAttr::NewtypeKind Kind;
6020   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
6021   if (!SwiftNewTypeAttr::ConvertStrToNewtypeKind(II->getName(), Kind)) {
6022     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
6023     return;
6024   }
6025 
6026   if (!isa<TypedefNameDecl>(D)) {
6027     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type_str)
6028         << AL << "typedefs";
6029     return;
6030   }
6031 
6032   D->addAttr(::new (S.Context) SwiftNewTypeAttr(S.Context, AL, Kind));
6033 }
6034 
6035 //===----------------------------------------------------------------------===//
6036 // Microsoft specific attribute handlers.
6037 //===----------------------------------------------------------------------===//
6038 
6039 UuidAttr *Sema::mergeUuidAttr(Decl *D, const AttributeCommonInfo &CI,
6040                               StringRef UuidAsWritten, MSGuidDecl *GuidDecl) {
6041   if (const auto *UA = D->getAttr<UuidAttr>()) {
6042     if (declaresSameEntity(UA->getGuidDecl(), GuidDecl))
6043       return nullptr;
6044     if (!UA->getGuid().empty()) {
6045       Diag(UA->getLocation(), diag::err_mismatched_uuid);
6046       Diag(CI.getLoc(), diag::note_previous_uuid);
6047       D->dropAttr<UuidAttr>();
6048     }
6049   }
6050 
6051   return ::new (Context) UuidAttr(Context, CI, UuidAsWritten, GuidDecl);
6052 }
6053 
6054 static void handleUuidAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6055   if (!S.LangOpts.CPlusPlus) {
6056     S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
6057         << AL << AttributeLangSupport::C;
6058     return;
6059   }
6060 
6061   StringRef OrigStrRef;
6062   SourceLocation LiteralLoc;
6063   if (!S.checkStringLiteralArgumentAttr(AL, 0, OrigStrRef, &LiteralLoc))
6064     return;
6065 
6066   // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
6067   // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
6068   StringRef StrRef = OrigStrRef;
6069   if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
6070     StrRef = StrRef.drop_front().drop_back();
6071 
6072   // Validate GUID length.
6073   if (StrRef.size() != 36) {
6074     S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
6075     return;
6076   }
6077 
6078   for (unsigned i = 0; i < 36; ++i) {
6079     if (i == 8 || i == 13 || i == 18 || i == 23) {
6080       if (StrRef[i] != '-') {
6081         S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
6082         return;
6083       }
6084     } else if (!isHexDigit(StrRef[i])) {
6085       S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
6086       return;
6087     }
6088   }
6089 
6090   // Convert to our parsed format and canonicalize.
6091   MSGuidDecl::Parts Parsed;
6092   StrRef.substr(0, 8).getAsInteger(16, Parsed.Part1);
6093   StrRef.substr(9, 4).getAsInteger(16, Parsed.Part2);
6094   StrRef.substr(14, 4).getAsInteger(16, Parsed.Part3);
6095   for (unsigned i = 0; i != 8; ++i)
6096     StrRef.substr(19 + 2 * i + (i >= 2 ? 1 : 0), 2)
6097         .getAsInteger(16, Parsed.Part4And5[i]);
6098   MSGuidDecl *Guid = S.Context.getMSGuidDecl(Parsed);
6099 
6100   // FIXME: It'd be nice to also emit a fixit removing uuid(...) (and, if it's
6101   // the only thing in the [] list, the [] too), and add an insertion of
6102   // __declspec(uuid(...)).  But sadly, neither the SourceLocs of the commas
6103   // separating attributes nor of the [ and the ] are in the AST.
6104   // Cf "SourceLocations of attribute list delimiters - [[ ... , ... ]] etc"
6105   // on cfe-dev.
6106   if (AL.isMicrosoftAttribute()) // Check for [uuid(...)] spelling.
6107     S.Diag(AL.getLoc(), diag::warn_atl_uuid_deprecated);
6108 
6109   UuidAttr *UA = S.mergeUuidAttr(D, AL, OrigStrRef, Guid);
6110   if (UA)
6111     D->addAttr(UA);
6112 }
6113 
6114 static void handleMSInheritanceAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6115   if (!S.LangOpts.CPlusPlus) {
6116     S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
6117         << AL << AttributeLangSupport::C;
6118     return;
6119   }
6120   MSInheritanceAttr *IA = S.mergeMSInheritanceAttr(
6121       D, AL, /*BestCase=*/true, (MSInheritanceModel)AL.getSemanticSpelling());
6122   if (IA) {
6123     D->addAttr(IA);
6124     S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
6125   }
6126 }
6127 
6128 static void handleDeclspecThreadAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6129   const auto *VD = cast<VarDecl>(D);
6130   if (!S.Context.getTargetInfo().isTLSSupported()) {
6131     S.Diag(AL.getLoc(), diag::err_thread_unsupported);
6132     return;
6133   }
6134   if (VD->getTSCSpec() != TSCS_unspecified) {
6135     S.Diag(AL.getLoc(), diag::err_declspec_thread_on_thread_variable);
6136     return;
6137   }
6138   if (VD->hasLocalStorage()) {
6139     S.Diag(AL.getLoc(), diag::err_thread_non_global) << "__declspec(thread)";
6140     return;
6141   }
6142   D->addAttr(::new (S.Context) ThreadAttr(S.Context, AL));
6143 }
6144 
6145 static void handleAbiTagAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6146   SmallVector<StringRef, 4> Tags;
6147   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
6148     StringRef Tag;
6149     if (!S.checkStringLiteralArgumentAttr(AL, I, Tag))
6150       return;
6151     Tags.push_back(Tag);
6152   }
6153 
6154   if (const auto *NS = dyn_cast<NamespaceDecl>(D)) {
6155     if (!NS->isInline()) {
6156       S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 0;
6157       return;
6158     }
6159     if (NS->isAnonymousNamespace()) {
6160       S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 1;
6161       return;
6162     }
6163     if (AL.getNumArgs() == 0)
6164       Tags.push_back(NS->getName());
6165   } else if (!checkAttributeAtLeastNumArgs(S, AL, 1))
6166     return;
6167 
6168   // Store tags sorted and without duplicates.
6169   llvm::sort(Tags);
6170   Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end());
6171 
6172   D->addAttr(::new (S.Context)
6173                  AbiTagAttr(S.Context, AL, Tags.data(), Tags.size()));
6174 }
6175 
6176 static void handleARMInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6177   // Check the attribute arguments.
6178   if (AL.getNumArgs() > 1) {
6179     S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
6180     return;
6181   }
6182 
6183   StringRef Str;
6184   SourceLocation ArgLoc;
6185 
6186   if (AL.getNumArgs() == 0)
6187     Str = "";
6188   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6189     return;
6190 
6191   ARMInterruptAttr::InterruptType Kind;
6192   if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
6193     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
6194                                                                  << ArgLoc;
6195     return;
6196   }
6197 
6198   D->addAttr(::new (S.Context) ARMInterruptAttr(S.Context, AL, Kind));
6199 }
6200 
6201 static void handleMSP430InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6202   // MSP430 'interrupt' attribute is applied to
6203   // a function with no parameters and void return type.
6204   if (!isFunctionOrMethod(D)) {
6205     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6206         << "'interrupt'" << ExpectedFunctionOrMethod;
6207     return;
6208   }
6209 
6210   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
6211     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6212         << /*MSP430*/ 1 << 0;
6213     return;
6214   }
6215 
6216   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
6217     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6218         << /*MSP430*/ 1 << 1;
6219     return;
6220   }
6221 
6222   // The attribute takes one integer argument.
6223   if (!checkAttributeNumArgs(S, AL, 1))
6224     return;
6225 
6226   if (!AL.isArgExpr(0)) {
6227     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
6228         << AL << AANT_ArgumentIntegerConstant;
6229     return;
6230   }
6231 
6232   Expr *NumParamsExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
6233   Optional<llvm::APSInt> NumParams = llvm::APSInt(32);
6234   if (!(NumParams = NumParamsExpr->getIntegerConstantExpr(S.Context))) {
6235     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
6236         << AL << AANT_ArgumentIntegerConstant
6237         << NumParamsExpr->getSourceRange();
6238     return;
6239   }
6240   // The argument should be in range 0..63.
6241   unsigned Num = NumParams->getLimitedValue(255);
6242   if (Num > 63) {
6243     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
6244         << AL << (int)NumParams->getSExtValue()
6245         << NumParamsExpr->getSourceRange();
6246     return;
6247   }
6248 
6249   D->addAttr(::new (S.Context) MSP430InterruptAttr(S.Context, AL, Num));
6250   D->addAttr(UsedAttr::CreateImplicit(S.Context));
6251 }
6252 
6253 static void handleMipsInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6254   // Only one optional argument permitted.
6255   if (AL.getNumArgs() > 1) {
6256     S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
6257     return;
6258   }
6259 
6260   StringRef Str;
6261   SourceLocation ArgLoc;
6262 
6263   if (AL.getNumArgs() == 0)
6264     Str = "";
6265   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6266     return;
6267 
6268   // Semantic checks for a function with the 'interrupt' attribute for MIPS:
6269   // a) Must be a function.
6270   // b) Must have no parameters.
6271   // c) Must have the 'void' return type.
6272   // d) Cannot have the 'mips16' attribute, as that instruction set
6273   //    lacks the 'eret' instruction.
6274   // e) The attribute itself must either have no argument or one of the
6275   //    valid interrupt types, see [MipsInterruptDocs].
6276 
6277   if (!isFunctionOrMethod(D)) {
6278     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6279         << "'interrupt'" << ExpectedFunctionOrMethod;
6280     return;
6281   }
6282 
6283   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
6284     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6285         << /*MIPS*/ 0 << 0;
6286     return;
6287   }
6288 
6289   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
6290     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6291         << /*MIPS*/ 0 << 1;
6292     return;
6293   }
6294 
6295   if (checkAttrMutualExclusion<Mips16Attr>(S, D, AL))
6296     return;
6297 
6298   MipsInterruptAttr::InterruptType Kind;
6299   if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
6300     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
6301         << AL << "'" + std::string(Str) + "'";
6302     return;
6303   }
6304 
6305   D->addAttr(::new (S.Context) MipsInterruptAttr(S.Context, AL, Kind));
6306 }
6307 
6308 static void handleAnyX86InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6309   // Semantic checks for a function with the 'interrupt' attribute.
6310   // a) Must be a function.
6311   // b) Must have the 'void' return type.
6312   // c) Must take 1 or 2 arguments.
6313   // d) The 1st argument must be a pointer.
6314   // e) The 2nd argument (if any) must be an unsigned integer.
6315   if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) ||
6316       CXXMethodDecl::isStaticOverloadedOperator(
6317           cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) {
6318     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
6319         << AL << ExpectedFunctionWithProtoType;
6320     return;
6321   }
6322   // Interrupt handler must have void return type.
6323   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
6324     S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(),
6325            diag::err_anyx86_interrupt_attribute)
6326         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
6327                 ? 0
6328                 : 1)
6329         << 0;
6330     return;
6331   }
6332   // Interrupt handler must have 1 or 2 parameters.
6333   unsigned NumParams = getFunctionOrMethodNumParams(D);
6334   if (NumParams < 1 || NumParams > 2) {
6335     S.Diag(D->getBeginLoc(), diag::err_anyx86_interrupt_attribute)
6336         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
6337                 ? 0
6338                 : 1)
6339         << 1;
6340     return;
6341   }
6342   // The first argument must be a pointer.
6343   if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) {
6344     S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(),
6345            diag::err_anyx86_interrupt_attribute)
6346         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
6347                 ? 0
6348                 : 1)
6349         << 2;
6350     return;
6351   }
6352   // The second argument, if present, must be an unsigned integer.
6353   unsigned TypeSize =
6354       S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64
6355           ? 64
6356           : 32;
6357   if (NumParams == 2 &&
6358       (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() ||
6359        S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) {
6360     S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(),
6361            diag::err_anyx86_interrupt_attribute)
6362         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
6363                 ? 0
6364                 : 1)
6365         << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false);
6366     return;
6367   }
6368   D->addAttr(::new (S.Context) AnyX86InterruptAttr(S.Context, AL));
6369   D->addAttr(UsedAttr::CreateImplicit(S.Context));
6370 }
6371 
6372 static void handleAVRInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6373   if (!isFunctionOrMethod(D)) {
6374     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6375         << "'interrupt'" << ExpectedFunction;
6376     return;
6377   }
6378 
6379   if (!checkAttributeNumArgs(S, AL, 0))
6380     return;
6381 
6382   handleSimpleAttribute<AVRInterruptAttr>(S, D, AL);
6383 }
6384 
6385 static void handleAVRSignalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6386   if (!isFunctionOrMethod(D)) {
6387     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6388         << "'signal'" << ExpectedFunction;
6389     return;
6390   }
6391 
6392   if (!checkAttributeNumArgs(S, AL, 0))
6393     return;
6394 
6395   handleSimpleAttribute<AVRSignalAttr>(S, D, AL);
6396 }
6397 
6398 static void handleBPFPreserveAIRecord(Sema &S, RecordDecl *RD) {
6399   // Add preserve_access_index attribute to all fields and inner records.
6400   for (auto D : RD->decls()) {
6401     if (D->hasAttr<BPFPreserveAccessIndexAttr>())
6402       continue;
6403 
6404     D->addAttr(BPFPreserveAccessIndexAttr::CreateImplicit(S.Context));
6405     if (auto *Rec = dyn_cast<RecordDecl>(D))
6406       handleBPFPreserveAIRecord(S, Rec);
6407   }
6408 }
6409 
6410 static void handleBPFPreserveAccessIndexAttr(Sema &S, Decl *D,
6411     const ParsedAttr &AL) {
6412   auto *Rec = cast<RecordDecl>(D);
6413   handleBPFPreserveAIRecord(S, Rec);
6414   Rec->addAttr(::new (S.Context) BPFPreserveAccessIndexAttr(S.Context, AL));
6415 }
6416 
6417 static void handleWebAssemblyExportNameAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6418   if (!isFunctionOrMethod(D)) {
6419     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6420         << "'export_name'" << ExpectedFunction;
6421     return;
6422   }
6423 
6424   auto *FD = cast<FunctionDecl>(D);
6425   if (FD->isThisDeclarationADefinition()) {
6426     S.Diag(D->getLocation(), diag::err_alias_is_definition) << FD << 0;
6427     return;
6428   }
6429 
6430   StringRef Str;
6431   SourceLocation ArgLoc;
6432   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6433     return;
6434 
6435   D->addAttr(::new (S.Context) WebAssemblyExportNameAttr(S.Context, AL, Str));
6436   D->addAttr(UsedAttr::CreateImplicit(S.Context));
6437 }
6438 
6439 WebAssemblyImportModuleAttr *
6440 Sema::mergeImportModuleAttr(Decl *D, const WebAssemblyImportModuleAttr &AL) {
6441   auto *FD = cast<FunctionDecl>(D);
6442 
6443   if (const auto *ExistingAttr = FD->getAttr<WebAssemblyImportModuleAttr>()) {
6444     if (ExistingAttr->getImportModule() == AL.getImportModule())
6445       return nullptr;
6446     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_import) << 0
6447       << ExistingAttr->getImportModule() << AL.getImportModule();
6448     Diag(AL.getLoc(), diag::note_previous_attribute);
6449     return nullptr;
6450   }
6451   if (FD->hasBody()) {
6452     Diag(AL.getLoc(), diag::warn_import_on_definition) << 0;
6453     return nullptr;
6454   }
6455   return ::new (Context) WebAssemblyImportModuleAttr(Context, AL,
6456                                                      AL.getImportModule());
6457 }
6458 
6459 WebAssemblyImportNameAttr *
6460 Sema::mergeImportNameAttr(Decl *D, const WebAssemblyImportNameAttr &AL) {
6461   auto *FD = cast<FunctionDecl>(D);
6462 
6463   if (const auto *ExistingAttr = FD->getAttr<WebAssemblyImportNameAttr>()) {
6464     if (ExistingAttr->getImportName() == AL.getImportName())
6465       return nullptr;
6466     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_import) << 1
6467       << ExistingAttr->getImportName() << AL.getImportName();
6468     Diag(AL.getLoc(), diag::note_previous_attribute);
6469     return nullptr;
6470   }
6471   if (FD->hasBody()) {
6472     Diag(AL.getLoc(), diag::warn_import_on_definition) << 1;
6473     return nullptr;
6474   }
6475   return ::new (Context) WebAssemblyImportNameAttr(Context, AL,
6476                                                    AL.getImportName());
6477 }
6478 
6479 static void
6480 handleWebAssemblyImportModuleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6481   auto *FD = cast<FunctionDecl>(D);
6482 
6483   StringRef Str;
6484   SourceLocation ArgLoc;
6485   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6486     return;
6487   if (FD->hasBody()) {
6488     S.Diag(AL.getLoc(), diag::warn_import_on_definition) << 0;
6489     return;
6490   }
6491 
6492   FD->addAttr(::new (S.Context)
6493                   WebAssemblyImportModuleAttr(S.Context, AL, Str));
6494 }
6495 
6496 static void
6497 handleWebAssemblyImportNameAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6498   auto *FD = cast<FunctionDecl>(D);
6499 
6500   StringRef Str;
6501   SourceLocation ArgLoc;
6502   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6503     return;
6504   if (FD->hasBody()) {
6505     S.Diag(AL.getLoc(), diag::warn_import_on_definition) << 1;
6506     return;
6507   }
6508 
6509   FD->addAttr(::new (S.Context) WebAssemblyImportNameAttr(S.Context, AL, Str));
6510 }
6511 
6512 static void handleRISCVInterruptAttr(Sema &S, Decl *D,
6513                                      const ParsedAttr &AL) {
6514   // Warn about repeated attributes.
6515   if (const auto *A = D->getAttr<RISCVInterruptAttr>()) {
6516     S.Diag(AL.getRange().getBegin(),
6517       diag::warn_riscv_repeated_interrupt_attribute);
6518     S.Diag(A->getLocation(), diag::note_riscv_repeated_interrupt_attribute);
6519     return;
6520   }
6521 
6522   // Check the attribute argument. Argument is optional.
6523   if (!checkAttributeAtMostNumArgs(S, AL, 1))
6524     return;
6525 
6526   StringRef Str;
6527   SourceLocation ArgLoc;
6528 
6529   // 'machine'is the default interrupt mode.
6530   if (AL.getNumArgs() == 0)
6531     Str = "machine";
6532   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
6533     return;
6534 
6535   // Semantic checks for a function with the 'interrupt' attribute:
6536   // - Must be a function.
6537   // - Must have no parameters.
6538   // - Must have the 'void' return type.
6539   // - The attribute itself must either have no argument or one of the
6540   //   valid interrupt types, see [RISCVInterruptDocs].
6541 
6542   if (D->getFunctionType() == nullptr) {
6543     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
6544       << "'interrupt'" << ExpectedFunction;
6545     return;
6546   }
6547 
6548   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
6549     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6550       << /*RISC-V*/ 2 << 0;
6551     return;
6552   }
6553 
6554   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
6555     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
6556       << /*RISC-V*/ 2 << 1;
6557     return;
6558   }
6559 
6560   RISCVInterruptAttr::InterruptType Kind;
6561   if (!RISCVInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
6562     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
6563                                                                  << ArgLoc;
6564     return;
6565   }
6566 
6567   D->addAttr(::new (S.Context) RISCVInterruptAttr(S.Context, AL, Kind));
6568 }
6569 
6570 static void handleInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6571   // Dispatch the interrupt attribute based on the current target.
6572   switch (S.Context.getTargetInfo().getTriple().getArch()) {
6573   case llvm::Triple::msp430:
6574     handleMSP430InterruptAttr(S, D, AL);
6575     break;
6576   case llvm::Triple::mipsel:
6577   case llvm::Triple::mips:
6578     handleMipsInterruptAttr(S, D, AL);
6579     break;
6580   case llvm::Triple::x86:
6581   case llvm::Triple::x86_64:
6582     handleAnyX86InterruptAttr(S, D, AL);
6583     break;
6584   case llvm::Triple::avr:
6585     handleAVRInterruptAttr(S, D, AL);
6586     break;
6587   case llvm::Triple::riscv32:
6588   case llvm::Triple::riscv64:
6589     handleRISCVInterruptAttr(S, D, AL);
6590     break;
6591   default:
6592     handleARMInterruptAttr(S, D, AL);
6593     break;
6594   }
6595 }
6596 
6597 static bool
6598 checkAMDGPUFlatWorkGroupSizeArguments(Sema &S, Expr *MinExpr, Expr *MaxExpr,
6599                                       const AMDGPUFlatWorkGroupSizeAttr &Attr) {
6600   // Accept template arguments for now as they depend on something else.
6601   // We'll get to check them when they eventually get instantiated.
6602   if (MinExpr->isValueDependent() || MaxExpr->isValueDependent())
6603     return false;
6604 
6605   uint32_t Min = 0;
6606   if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
6607     return true;
6608 
6609   uint32_t Max = 0;
6610   if (!checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
6611     return true;
6612 
6613   if (Min == 0 && Max != 0) {
6614     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6615         << &Attr << 0;
6616     return true;
6617   }
6618   if (Min > Max) {
6619     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6620         << &Attr << 1;
6621     return true;
6622   }
6623 
6624   return false;
6625 }
6626 
6627 void Sema::addAMDGPUFlatWorkGroupSizeAttr(Decl *D,
6628                                           const AttributeCommonInfo &CI,
6629                                           Expr *MinExpr, Expr *MaxExpr) {
6630   AMDGPUFlatWorkGroupSizeAttr TmpAttr(Context, CI, MinExpr, MaxExpr);
6631 
6632   if (checkAMDGPUFlatWorkGroupSizeArguments(*this, MinExpr, MaxExpr, TmpAttr))
6633     return;
6634 
6635   D->addAttr(::new (Context)
6636                  AMDGPUFlatWorkGroupSizeAttr(Context, CI, MinExpr, MaxExpr));
6637 }
6638 
6639 static void handleAMDGPUFlatWorkGroupSizeAttr(Sema &S, Decl *D,
6640                                               const ParsedAttr &AL) {
6641   Expr *MinExpr = AL.getArgAsExpr(0);
6642   Expr *MaxExpr = AL.getArgAsExpr(1);
6643 
6644   S.addAMDGPUFlatWorkGroupSizeAttr(D, AL, MinExpr, MaxExpr);
6645 }
6646 
6647 static bool checkAMDGPUWavesPerEUArguments(Sema &S, Expr *MinExpr,
6648                                            Expr *MaxExpr,
6649                                            const AMDGPUWavesPerEUAttr &Attr) {
6650   if (S.DiagnoseUnexpandedParameterPack(MinExpr) ||
6651       (MaxExpr && S.DiagnoseUnexpandedParameterPack(MaxExpr)))
6652     return true;
6653 
6654   // Accept template arguments for now as they depend on something else.
6655   // We'll get to check them when they eventually get instantiated.
6656   if (MinExpr->isValueDependent() || (MaxExpr && MaxExpr->isValueDependent()))
6657     return false;
6658 
6659   uint32_t Min = 0;
6660   if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
6661     return true;
6662 
6663   uint32_t Max = 0;
6664   if (MaxExpr && !checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
6665     return true;
6666 
6667   if (Min == 0 && Max != 0) {
6668     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6669         << &Attr << 0;
6670     return true;
6671   }
6672   if (Max != 0 && Min > Max) {
6673     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6674         << &Attr << 1;
6675     return true;
6676   }
6677 
6678   return false;
6679 }
6680 
6681 void Sema::addAMDGPUWavesPerEUAttr(Decl *D, const AttributeCommonInfo &CI,
6682                                    Expr *MinExpr, Expr *MaxExpr) {
6683   AMDGPUWavesPerEUAttr TmpAttr(Context, CI, MinExpr, MaxExpr);
6684 
6685   if (checkAMDGPUWavesPerEUArguments(*this, MinExpr, MaxExpr, TmpAttr))
6686     return;
6687 
6688   D->addAttr(::new (Context)
6689                  AMDGPUWavesPerEUAttr(Context, CI, MinExpr, MaxExpr));
6690 }
6691 
6692 static void handleAMDGPUWavesPerEUAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6693   if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
6694       !checkAttributeAtMostNumArgs(S, AL, 2))
6695     return;
6696 
6697   Expr *MinExpr = AL.getArgAsExpr(0);
6698   Expr *MaxExpr = (AL.getNumArgs() > 1) ? AL.getArgAsExpr(1) : nullptr;
6699 
6700   S.addAMDGPUWavesPerEUAttr(D, AL, MinExpr, MaxExpr);
6701 }
6702 
6703 static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6704   uint32_t NumSGPR = 0;
6705   Expr *NumSGPRExpr = AL.getArgAsExpr(0);
6706   if (!checkUInt32Argument(S, AL, NumSGPRExpr, NumSGPR))
6707     return;
6708 
6709   D->addAttr(::new (S.Context) AMDGPUNumSGPRAttr(S.Context, AL, NumSGPR));
6710 }
6711 
6712 static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6713   uint32_t NumVGPR = 0;
6714   Expr *NumVGPRExpr = AL.getArgAsExpr(0);
6715   if (!checkUInt32Argument(S, AL, NumVGPRExpr, NumVGPR))
6716     return;
6717 
6718   D->addAttr(::new (S.Context) AMDGPUNumVGPRAttr(S.Context, AL, NumVGPR));
6719 }
6720 
6721 static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D,
6722                                               const ParsedAttr &AL) {
6723   // If we try to apply it to a function pointer, don't warn, but don't
6724   // do anything, either. It doesn't matter anyway, because there's nothing
6725   // special about calling a force_align_arg_pointer function.
6726   const auto *VD = dyn_cast<ValueDecl>(D);
6727   if (VD && VD->getType()->isFunctionPointerType())
6728     return;
6729   // Also don't warn on function pointer typedefs.
6730   const auto *TD = dyn_cast<TypedefNameDecl>(D);
6731   if (TD && (TD->getUnderlyingType()->isFunctionPointerType() ||
6732     TD->getUnderlyingType()->isFunctionType()))
6733     return;
6734   // Attribute can only be applied to function types.
6735   if (!isa<FunctionDecl>(D)) {
6736     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
6737         << AL << ExpectedFunction;
6738     return;
6739   }
6740 
6741   D->addAttr(::new (S.Context) X86ForceAlignArgPointerAttr(S.Context, AL));
6742 }
6743 
6744 static void handleLayoutVersion(Sema &S, Decl *D, const ParsedAttr &AL) {
6745   uint32_t Version;
6746   Expr *VersionExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
6747   if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), Version))
6748     return;
6749 
6750   // TODO: Investigate what happens with the next major version of MSVC.
6751   if (Version != LangOptions::MSVC2015 / 100) {
6752     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
6753         << AL << Version << VersionExpr->getSourceRange();
6754     return;
6755   }
6756 
6757   // The attribute expects a "major" version number like 19, but new versions of
6758   // MSVC have moved to updating the "minor", or less significant numbers, so we
6759   // have to multiply by 100 now.
6760   Version *= 100;
6761 
6762   D->addAttr(::new (S.Context) LayoutVersionAttr(S.Context, AL, Version));
6763 }
6764 
6765 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D,
6766                                         const AttributeCommonInfo &CI) {
6767   if (D->hasAttr<DLLExportAttr>()) {
6768     Diag(CI.getLoc(), diag::warn_attribute_ignored) << "'dllimport'";
6769     return nullptr;
6770   }
6771 
6772   if (D->hasAttr<DLLImportAttr>())
6773     return nullptr;
6774 
6775   return ::new (Context) DLLImportAttr(Context, CI);
6776 }
6777 
6778 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D,
6779                                         const AttributeCommonInfo &CI) {
6780   if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
6781     Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import;
6782     D->dropAttr<DLLImportAttr>();
6783   }
6784 
6785   if (D->hasAttr<DLLExportAttr>())
6786     return nullptr;
6787 
6788   return ::new (Context) DLLExportAttr(Context, CI);
6789 }
6790 
6791 static void handleDLLAttr(Sema &S, Decl *D, const ParsedAttr &A) {
6792   if (isa<ClassTemplatePartialSpecializationDecl>(D) &&
6793       (S.Context.getTargetInfo().getCXXABI().isMicrosoft() ||
6794        S.Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
6795     S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored) << A;
6796     return;
6797   }
6798 
6799   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
6800     if (FD->isInlined() && A.getKind() == ParsedAttr::AT_DLLImport &&
6801         !(S.Context.getTargetInfo().getCXXABI().isMicrosoft() ||
6802           S.Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment())) {
6803       // MinGW doesn't allow dllimport on inline functions.
6804       S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline)
6805           << A;
6806       return;
6807     }
6808   }
6809 
6810   if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
6811     if ((S.Context.getTargetInfo().getCXXABI().isMicrosoft() ||
6812          S.Context.getTargetInfo().getTriple().isWindowsItaniumEnvironment()) &&
6813         MD->getParent()->isLambda()) {
6814       S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A;
6815       return;
6816     }
6817   }
6818 
6819   Attr *NewAttr = A.getKind() == ParsedAttr::AT_DLLExport
6820                       ? (Attr *)S.mergeDLLExportAttr(D, A)
6821                       : (Attr *)S.mergeDLLImportAttr(D, A);
6822   if (NewAttr)
6823     D->addAttr(NewAttr);
6824 }
6825 
6826 MSInheritanceAttr *
6827 Sema::mergeMSInheritanceAttr(Decl *D, const AttributeCommonInfo &CI,
6828                              bool BestCase,
6829                              MSInheritanceModel Model) {
6830   if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) {
6831     if (IA->getInheritanceModel() == Model)
6832       return nullptr;
6833     Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance)
6834         << 1 /*previous declaration*/;
6835     Diag(CI.getLoc(), diag::note_previous_ms_inheritance);
6836     D->dropAttr<MSInheritanceAttr>();
6837   }
6838 
6839   auto *RD = cast<CXXRecordDecl>(D);
6840   if (RD->hasDefinition()) {
6841     if (checkMSInheritanceAttrOnDefinition(RD, CI.getRange(), BestCase,
6842                                            Model)) {
6843       return nullptr;
6844     }
6845   } else {
6846     if (isa<ClassTemplatePartialSpecializationDecl>(RD)) {
6847       Diag(CI.getLoc(), diag::warn_ignored_ms_inheritance)
6848           << 1 /*partial specialization*/;
6849       return nullptr;
6850     }
6851     if (RD->getDescribedClassTemplate()) {
6852       Diag(CI.getLoc(), diag::warn_ignored_ms_inheritance)
6853           << 0 /*primary template*/;
6854       return nullptr;
6855     }
6856   }
6857 
6858   return ::new (Context) MSInheritanceAttr(Context, CI, BestCase);
6859 }
6860 
6861 static void handleCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6862   // The capability attributes take a single string parameter for the name of
6863   // the capability they represent. The lockable attribute does not take any
6864   // parameters. However, semantically, both attributes represent the same
6865   // concept, and so they use the same semantic attribute. Eventually, the
6866   // lockable attribute will be removed.
6867   //
6868   // For backward compatibility, any capability which has no specified string
6869   // literal will be considered a "mutex."
6870   StringRef N("mutex");
6871   SourceLocation LiteralLoc;
6872   if (AL.getKind() == ParsedAttr::AT_Capability &&
6873       !S.checkStringLiteralArgumentAttr(AL, 0, N, &LiteralLoc))
6874     return;
6875 
6876   D->addAttr(::new (S.Context) CapabilityAttr(S.Context, AL, N));
6877 }
6878 
6879 static void handleAssertCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6880   SmallVector<Expr*, 1> Args;
6881   if (!checkLockFunAttrCommon(S, D, AL, Args))
6882     return;
6883 
6884   D->addAttr(::new (S.Context)
6885                  AssertCapabilityAttr(S.Context, AL, Args.data(), Args.size()));
6886 }
6887 
6888 static void handleAcquireCapabilityAttr(Sema &S, Decl *D,
6889                                         const ParsedAttr &AL) {
6890   SmallVector<Expr*, 1> Args;
6891   if (!checkLockFunAttrCommon(S, D, AL, Args))
6892     return;
6893 
6894   D->addAttr(::new (S.Context) AcquireCapabilityAttr(S.Context, AL, Args.data(),
6895                                                      Args.size()));
6896 }
6897 
6898 static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D,
6899                                            const ParsedAttr &AL) {
6900   SmallVector<Expr*, 2> Args;
6901   if (!checkTryLockFunAttrCommon(S, D, AL, Args))
6902     return;
6903 
6904   D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(
6905       S.Context, AL, AL.getArgAsExpr(0), Args.data(), Args.size()));
6906 }
6907 
6908 static void handleReleaseCapabilityAttr(Sema &S, Decl *D,
6909                                         const ParsedAttr &AL) {
6910   // Check that all arguments are lockable objects.
6911   SmallVector<Expr *, 1> Args;
6912   checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, true);
6913 
6914   D->addAttr(::new (S.Context) ReleaseCapabilityAttr(S.Context, AL, Args.data(),
6915                                                      Args.size()));
6916 }
6917 
6918 static void handleRequiresCapabilityAttr(Sema &S, Decl *D,
6919                                          const ParsedAttr &AL) {
6920   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
6921     return;
6922 
6923   // check that all arguments are lockable objects
6924   SmallVector<Expr*, 1> Args;
6925   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
6926   if (Args.empty())
6927     return;
6928 
6929   RequiresCapabilityAttr *RCA = ::new (S.Context)
6930       RequiresCapabilityAttr(S.Context, AL, Args.data(), Args.size());
6931 
6932   D->addAttr(RCA);
6933 }
6934 
6935 static void handleDeprecatedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6936   if (const auto *NSD = dyn_cast<NamespaceDecl>(D)) {
6937     if (NSD->isAnonymousNamespace()) {
6938       S.Diag(AL.getLoc(), diag::warn_deprecated_anonymous_namespace);
6939       // Do not want to attach the attribute to the namespace because that will
6940       // cause confusing diagnostic reports for uses of declarations within the
6941       // namespace.
6942       return;
6943     }
6944   }
6945 
6946   // Handle the cases where the attribute has a text message.
6947   StringRef Str, Replacement;
6948   if (AL.isArgExpr(0) && AL.getArgAsExpr(0) &&
6949       !S.checkStringLiteralArgumentAttr(AL, 0, Str))
6950     return;
6951 
6952   // Only support a single optional message for Declspec and CXX11.
6953   if (AL.isDeclspecAttribute() || AL.isCXX11Attribute())
6954     checkAttributeAtMostNumArgs(S, AL, 1);
6955   else if (AL.isArgExpr(1) && AL.getArgAsExpr(1) &&
6956            !S.checkStringLiteralArgumentAttr(AL, 1, Replacement))
6957     return;
6958 
6959   if (!S.getLangOpts().CPlusPlus14 && AL.isCXX11Attribute() && !AL.isGNUScope())
6960     S.Diag(AL.getLoc(), diag::ext_cxx14_attr) << AL;
6961 
6962   D->addAttr(::new (S.Context) DeprecatedAttr(S.Context, AL, Str, Replacement));
6963 }
6964 
6965 static bool isGlobalVar(const Decl *D) {
6966   if (const auto *S = dyn_cast<VarDecl>(D))
6967     return S->hasGlobalStorage();
6968   return false;
6969 }
6970 
6971 static void handleNoSanitizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6972   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
6973     return;
6974 
6975   std::vector<StringRef> Sanitizers;
6976 
6977   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
6978     StringRef SanitizerName;
6979     SourceLocation LiteralLoc;
6980 
6981     if (!S.checkStringLiteralArgumentAttr(AL, I, SanitizerName, &LiteralLoc))
6982       return;
6983 
6984     if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) ==
6985         SanitizerMask())
6986       S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName;
6987     else if (isGlobalVar(D) && SanitizerName != "address")
6988       S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6989           << AL << ExpectedFunctionOrMethod;
6990     Sanitizers.push_back(SanitizerName);
6991   }
6992 
6993   D->addAttr(::new (S.Context) NoSanitizeAttr(S.Context, AL, Sanitizers.data(),
6994                                               Sanitizers.size()));
6995 }
6996 
6997 static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D,
6998                                          const ParsedAttr &AL) {
6999   StringRef AttrName = AL.getAttrName()->getName();
7000   normalizeName(AttrName);
7001   StringRef SanitizerName = llvm::StringSwitch<StringRef>(AttrName)
7002                                 .Case("no_address_safety_analysis", "address")
7003                                 .Case("no_sanitize_address", "address")
7004                                 .Case("no_sanitize_thread", "thread")
7005                                 .Case("no_sanitize_memory", "memory");
7006   if (isGlobalVar(D) && SanitizerName != "address")
7007     S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7008         << AL << ExpectedFunction;
7009 
7010   // FIXME: Rather than create a NoSanitizeSpecificAttr, this creates a
7011   // NoSanitizeAttr object; but we need to calculate the correct spelling list
7012   // index rather than incorrectly assume the index for NoSanitizeSpecificAttr
7013   // has the same spellings as the index for NoSanitizeAttr. We don't have a
7014   // general way to "translate" between the two, so this hack attempts to work
7015   // around the issue with hard-coded indicies. This is critical for calling
7016   // getSpelling() or prettyPrint() on the resulting semantic attribute object
7017   // without failing assertions.
7018   unsigned TranslatedSpellingIndex = 0;
7019   if (AL.isC2xAttribute() || AL.isCXX11Attribute())
7020     TranslatedSpellingIndex = 1;
7021 
7022   AttributeCommonInfo Info = AL;
7023   Info.setAttributeSpellingListIndex(TranslatedSpellingIndex);
7024   D->addAttr(::new (S.Context)
7025                  NoSanitizeAttr(S.Context, Info, &SanitizerName, 1));
7026 }
7027 
7028 static void handleInternalLinkageAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7029   if (InternalLinkageAttr *Internal = S.mergeInternalLinkageAttr(D, AL))
7030     D->addAttr(Internal);
7031 }
7032 
7033 static void handleOpenCLNoSVMAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7034   if (S.LangOpts.OpenCLVersion != 200)
7035     S.Diag(AL.getLoc(), diag::err_attribute_requires_opencl_version)
7036         << AL << "2.0" << 0;
7037   else
7038     S.Diag(AL.getLoc(), diag::warn_opencl_attr_deprecated_ignored) << AL
7039                                                                    << "2.0";
7040 }
7041 
7042 /// Handles semantic checking for features that are common to all attributes,
7043 /// such as checking whether a parameter was properly specified, or the correct
7044 /// number of arguments were passed, etc.
7045 static bool handleCommonAttributeFeatures(Sema &S, Decl *D,
7046                                           const ParsedAttr &AL) {
7047   // Several attributes carry different semantics than the parsing requires, so
7048   // those are opted out of the common argument checks.
7049   //
7050   // We also bail on unknown and ignored attributes because those are handled
7051   // as part of the target-specific handling logic.
7052   if (AL.getKind() == ParsedAttr::UnknownAttribute)
7053     return false;
7054   // Check whether the attribute requires specific language extensions to be
7055   // enabled.
7056   if (!AL.diagnoseLangOpts(S))
7057     return true;
7058   // Check whether the attribute appertains to the given subject.
7059   if (!AL.diagnoseAppertainsTo(S, D))
7060     return true;
7061   if (AL.hasCustomParsing())
7062     return false;
7063 
7064   if (AL.getMinArgs() == AL.getMaxArgs()) {
7065     // If there are no optional arguments, then checking for the argument count
7066     // is trivial.
7067     if (!checkAttributeNumArgs(S, AL, AL.getMinArgs()))
7068       return true;
7069   } else {
7070     // There are optional arguments, so checking is slightly more involved.
7071     if (AL.getMinArgs() &&
7072         !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs()))
7073       return true;
7074     else if (!AL.hasVariadicArg() && AL.getMaxArgs() &&
7075              !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs()))
7076       return true;
7077   }
7078 
7079   if (S.CheckAttrTarget(AL))
7080     return true;
7081 
7082   return false;
7083 }
7084 
7085 static void handleOpenCLAccessAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7086   if (D->isInvalidDecl())
7087     return;
7088 
7089   // Check if there is only one access qualifier.
7090   if (D->hasAttr<OpenCLAccessAttr>()) {
7091     if (D->getAttr<OpenCLAccessAttr>()->getSemanticSpelling() ==
7092         AL.getSemanticSpelling()) {
7093       S.Diag(AL.getLoc(), diag::warn_duplicate_declspec)
7094           << AL.getAttrName()->getName() << AL.getRange();
7095     } else {
7096       S.Diag(AL.getLoc(), diag::err_opencl_multiple_access_qualifiers)
7097           << D->getSourceRange();
7098       D->setInvalidDecl(true);
7099       return;
7100     }
7101   }
7102 
7103   // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an
7104   // image object can be read and written.
7105   // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe
7106   // object. Using the read_write (or __read_write) qualifier with the pipe
7107   // qualifier is a compilation error.
7108   if (const auto *PDecl = dyn_cast<ParmVarDecl>(D)) {
7109     const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr();
7110     if (AL.getAttrName()->getName().find("read_write") != StringRef::npos) {
7111       if ((!S.getLangOpts().OpenCLCPlusPlus &&
7112            S.getLangOpts().OpenCLVersion < 200) ||
7113           DeclTy->isPipeType()) {
7114         S.Diag(AL.getLoc(), diag::err_opencl_invalid_read_write)
7115             << AL << PDecl->getType() << DeclTy->isImageType();
7116         D->setInvalidDecl(true);
7117         return;
7118       }
7119     }
7120   }
7121 
7122   D->addAttr(::new (S.Context) OpenCLAccessAttr(S.Context, AL));
7123 }
7124 
7125 static void handleSYCLKernelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7126   // The 'sycl_kernel' attribute applies only to function templates.
7127   const auto *FD = cast<FunctionDecl>(D);
7128   const FunctionTemplateDecl *FT = FD->getDescribedFunctionTemplate();
7129   assert(FT && "Function template is expected");
7130 
7131   // Function template must have at least two template parameters.
7132   const TemplateParameterList *TL = FT->getTemplateParameters();
7133   if (TL->size() < 2) {
7134     S.Diag(FT->getLocation(), diag::warn_sycl_kernel_num_of_template_params);
7135     return;
7136   }
7137 
7138   // Template parameters must be typenames.
7139   for (unsigned I = 0; I < 2; ++I) {
7140     const NamedDecl *TParam = TL->getParam(I);
7141     if (isa<NonTypeTemplateParmDecl>(TParam)) {
7142       S.Diag(FT->getLocation(),
7143              diag::warn_sycl_kernel_invalid_template_param_type);
7144       return;
7145     }
7146   }
7147 
7148   // Function must have at least one argument.
7149   if (getFunctionOrMethodNumParams(D) != 1) {
7150     S.Diag(FT->getLocation(), diag::warn_sycl_kernel_num_of_function_params);
7151     return;
7152   }
7153 
7154   // Function must return void.
7155   QualType RetTy = getFunctionOrMethodResultType(D);
7156   if (!RetTy->isVoidType()) {
7157     S.Diag(FT->getLocation(), diag::warn_sycl_kernel_return_type);
7158     return;
7159   }
7160 
7161   handleSimpleAttribute<SYCLKernelAttr>(S, D, AL);
7162 }
7163 
7164 static void handleDestroyAttr(Sema &S, Decl *D, const ParsedAttr &A) {
7165   if (!cast<VarDecl>(D)->hasGlobalStorage()) {
7166     S.Diag(D->getLocation(), diag::err_destroy_attr_on_non_static_var)
7167         << (A.getKind() == ParsedAttr::AT_AlwaysDestroy);
7168     return;
7169   }
7170 
7171   if (A.getKind() == ParsedAttr::AT_AlwaysDestroy)
7172     handleSimpleAttributeWithExclusions<AlwaysDestroyAttr, NoDestroyAttr>(S, D, A);
7173   else
7174     handleSimpleAttributeWithExclusions<NoDestroyAttr, AlwaysDestroyAttr>(S, D, A);
7175 }
7176 
7177 static void handleUninitializedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7178   assert(cast<VarDecl>(D)->getStorageDuration() == SD_Automatic &&
7179          "uninitialized is only valid on automatic duration variables");
7180   D->addAttr(::new (S.Context) UninitializedAttr(S.Context, AL));
7181 }
7182 
7183 static bool tryMakeVariablePseudoStrong(Sema &S, VarDecl *VD,
7184                                         bool DiagnoseFailure) {
7185   QualType Ty = VD->getType();
7186   if (!Ty->isObjCRetainableType()) {
7187     if (DiagnoseFailure) {
7188       S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
7189           << 0;
7190     }
7191     return false;
7192   }
7193 
7194   Qualifiers::ObjCLifetime LifetimeQual = Ty.getQualifiers().getObjCLifetime();
7195 
7196   // Sema::inferObjCARCLifetime must run after processing decl attributes
7197   // (because __block lowers to an attribute), so if the lifetime hasn't been
7198   // explicitly specified, infer it locally now.
7199   if (LifetimeQual == Qualifiers::OCL_None)
7200     LifetimeQual = Ty->getObjCARCImplicitLifetime();
7201 
7202   // The attributes only really makes sense for __strong variables; ignore any
7203   // attempts to annotate a parameter with any other lifetime qualifier.
7204   if (LifetimeQual != Qualifiers::OCL_Strong) {
7205     if (DiagnoseFailure) {
7206       S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
7207           << 1;
7208     }
7209     return false;
7210   }
7211 
7212   // Tampering with the type of a VarDecl here is a bit of a hack, but we need
7213   // to ensure that the variable is 'const' so that we can error on
7214   // modification, which can otherwise over-release.
7215   VD->setType(Ty.withConst());
7216   VD->setARCPseudoStrong(true);
7217   return true;
7218 }
7219 
7220 static void handleObjCExternallyRetainedAttr(Sema &S, Decl *D,
7221                                              const ParsedAttr &AL) {
7222   if (auto *VD = dyn_cast<VarDecl>(D)) {
7223     assert(!isa<ParmVarDecl>(VD) && "should be diagnosed automatically");
7224     if (!VD->hasLocalStorage()) {
7225       S.Diag(D->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
7226           << 0;
7227       return;
7228     }
7229 
7230     if (!tryMakeVariablePseudoStrong(S, VD, /*DiagnoseFailure=*/true))
7231       return;
7232 
7233     handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
7234     return;
7235   }
7236 
7237   // If D is a function-like declaration (method, block, or function), then we
7238   // make every parameter psuedo-strong.
7239   unsigned NumParams =
7240       hasFunctionProto(D) ? getFunctionOrMethodNumParams(D) : 0;
7241   for (unsigned I = 0; I != NumParams; ++I) {
7242     auto *PVD = const_cast<ParmVarDecl *>(getFunctionOrMethodParam(D, I));
7243     QualType Ty = PVD->getType();
7244 
7245     // If a user wrote a parameter with __strong explicitly, then assume they
7246     // want "real" strong semantics for that parameter. This works because if
7247     // the parameter was written with __strong, then the strong qualifier will
7248     // be non-local.
7249     if (Ty.getLocalUnqualifiedType().getQualifiers().getObjCLifetime() ==
7250         Qualifiers::OCL_Strong)
7251       continue;
7252 
7253     tryMakeVariablePseudoStrong(S, PVD, /*DiagnoseFailure=*/false);
7254   }
7255   handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
7256 }
7257 
7258 static void handleMIGServerRoutineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7259   // Check that the return type is a `typedef int kern_return_t` or a typedef
7260   // around it, because otherwise MIG convention checks make no sense.
7261   // BlockDecl doesn't store a return type, so it's annoying to check,
7262   // so let's skip it for now.
7263   if (!isa<BlockDecl>(D)) {
7264     QualType T = getFunctionOrMethodResultType(D);
7265     bool IsKernReturnT = false;
7266     while (const auto *TT = T->getAs<TypedefType>()) {
7267       IsKernReturnT = (TT->getDecl()->getName() == "kern_return_t");
7268       T = TT->desugar();
7269     }
7270     if (!IsKernReturnT || T.getCanonicalType() != S.getASTContext().IntTy) {
7271       S.Diag(D->getBeginLoc(),
7272              diag::warn_mig_server_routine_does_not_return_kern_return_t);
7273       return;
7274     }
7275   }
7276 
7277   handleSimpleAttribute<MIGServerRoutineAttr>(S, D, AL);
7278 }
7279 
7280 static void handleMSAllocatorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7281   // Warn if the return type is not a pointer or reference type.
7282   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
7283     QualType RetTy = FD->getReturnType();
7284     if (!RetTy->isPointerType() && !RetTy->isReferenceType()) {
7285       S.Diag(AL.getLoc(), diag::warn_declspec_allocator_nonpointer)
7286           << AL.getRange() << RetTy;
7287       return;
7288     }
7289   }
7290 
7291   handleSimpleAttribute<MSAllocatorAttr>(S, D, AL);
7292 }
7293 
7294 static void handleAcquireHandleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7295   if (AL.isUsedAsTypeAttr())
7296     return;
7297   // Warn if the parameter is definitely not an output parameter.
7298   if (const auto *PVD = dyn_cast<ParmVarDecl>(D)) {
7299     if (PVD->getType()->isIntegerType()) {
7300       S.Diag(AL.getLoc(), diag::err_attribute_output_parameter)
7301           << AL.getRange();
7302       return;
7303     }
7304   }
7305   StringRef Argument;
7306   if (!S.checkStringLiteralArgumentAttr(AL, 0, Argument))
7307     return;
7308   D->addAttr(AcquireHandleAttr::Create(S.Context, Argument, AL));
7309 }
7310 
7311 template<typename Attr>
7312 static void handleHandleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7313   StringRef Argument;
7314   if (!S.checkStringLiteralArgumentAttr(AL, 0, Argument))
7315     return;
7316   D->addAttr(Attr::Create(S.Context, Argument, AL));
7317 }
7318 
7319 static void handleCFGuardAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
7320   // The guard attribute takes a single identifier argument.
7321 
7322   if (!AL.isArgIdent(0)) {
7323     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
7324         << AL << AANT_ArgumentIdentifier;
7325     return;
7326   }
7327 
7328   CFGuardAttr::GuardArg Arg;
7329   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
7330   if (!CFGuardAttr::ConvertStrToGuardArg(II->getName(), Arg)) {
7331     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
7332     return;
7333   }
7334 
7335   D->addAttr(::new (S.Context) CFGuardAttr(S.Context, AL, Arg));
7336 }
7337 
7338 //===----------------------------------------------------------------------===//
7339 // Top Level Sema Entry Points
7340 //===----------------------------------------------------------------------===//
7341 
7342 /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
7343 /// the attribute applies to decls.  If the attribute is a type attribute, just
7344 /// silently ignore it if a GNU attribute.
7345 static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
7346                                  const ParsedAttr &AL,
7347                                  bool IncludeCXX11Attributes) {
7348   if (AL.isInvalid() || AL.getKind() == ParsedAttr::IgnoredAttribute)
7349     return;
7350 
7351   // Ignore C++11 attributes on declarator chunks: they appertain to the type
7352   // instead.
7353   if (AL.isCXX11Attribute() && !IncludeCXX11Attributes)
7354     return;
7355 
7356   // Unknown attributes are automatically warned on. Target-specific attributes
7357   // which do not apply to the current target architecture are treated as
7358   // though they were unknown attributes.
7359   if (AL.getKind() == ParsedAttr::UnknownAttribute ||
7360       !AL.existsInTarget(S.Context.getTargetInfo())) {
7361     S.Diag(AL.getLoc(),
7362            AL.isDeclspecAttribute()
7363                ? (unsigned)diag::warn_unhandled_ms_attribute_ignored
7364                : (unsigned)diag::warn_unknown_attribute_ignored)
7365         << AL;
7366     return;
7367   }
7368 
7369   if (handleCommonAttributeFeatures(S, D, AL))
7370     return;
7371 
7372   switch (AL.getKind()) {
7373   default:
7374     if (AL.getInfo().handleDeclAttribute(S, D, AL) != ParsedAttrInfo::NotHandled)
7375       break;
7376     if (!AL.isStmtAttr()) {
7377       // Type attributes are handled elsewhere; silently move on.
7378       assert(AL.isTypeAttr() && "Non-type attribute not handled");
7379       break;
7380     }
7381     S.Diag(AL.getLoc(), diag::err_stmt_attribute_invalid_on_decl)
7382         << AL << D->getLocation();
7383     break;
7384   case ParsedAttr::AT_Interrupt:
7385     handleInterruptAttr(S, D, AL);
7386     break;
7387   case ParsedAttr::AT_X86ForceAlignArgPointer:
7388     handleX86ForceAlignArgPointerAttr(S, D, AL);
7389     break;
7390   case ParsedAttr::AT_DLLExport:
7391   case ParsedAttr::AT_DLLImport:
7392     handleDLLAttr(S, D, AL);
7393     break;
7394   case ParsedAttr::AT_Mips16:
7395     handleSimpleAttributeWithExclusions<Mips16Attr, MicroMipsAttr,
7396                                         MipsInterruptAttr>(S, D, AL);
7397     break;
7398   case ParsedAttr::AT_MicroMips:
7399     handleSimpleAttributeWithExclusions<MicroMipsAttr, Mips16Attr>(S, D, AL);
7400     break;
7401   case ParsedAttr::AT_MipsLongCall:
7402     handleSimpleAttributeWithExclusions<MipsLongCallAttr, MipsShortCallAttr>(
7403         S, D, AL);
7404     break;
7405   case ParsedAttr::AT_MipsShortCall:
7406     handleSimpleAttributeWithExclusions<MipsShortCallAttr, MipsLongCallAttr>(
7407         S, D, AL);
7408     break;
7409   case ParsedAttr::AT_AMDGPUFlatWorkGroupSize:
7410     handleAMDGPUFlatWorkGroupSizeAttr(S, D, AL);
7411     break;
7412   case ParsedAttr::AT_AMDGPUWavesPerEU:
7413     handleAMDGPUWavesPerEUAttr(S, D, AL);
7414     break;
7415   case ParsedAttr::AT_AMDGPUNumSGPR:
7416     handleAMDGPUNumSGPRAttr(S, D, AL);
7417     break;
7418   case ParsedAttr::AT_AMDGPUNumVGPR:
7419     handleAMDGPUNumVGPRAttr(S, D, AL);
7420     break;
7421   case ParsedAttr::AT_AVRSignal:
7422     handleAVRSignalAttr(S, D, AL);
7423     break;
7424   case ParsedAttr::AT_BPFPreserveAccessIndex:
7425     handleBPFPreserveAccessIndexAttr(S, D, AL);
7426     break;
7427   case ParsedAttr::AT_WebAssemblyExportName:
7428     handleWebAssemblyExportNameAttr(S, D, AL);
7429     break;
7430   case ParsedAttr::AT_WebAssemblyImportModule:
7431     handleWebAssemblyImportModuleAttr(S, D, AL);
7432     break;
7433   case ParsedAttr::AT_WebAssemblyImportName:
7434     handleWebAssemblyImportNameAttr(S, D, AL);
7435     break;
7436   case ParsedAttr::AT_IBOutlet:
7437     handleIBOutlet(S, D, AL);
7438     break;
7439   case ParsedAttr::AT_IBOutletCollection:
7440     handleIBOutletCollection(S, D, AL);
7441     break;
7442   case ParsedAttr::AT_IFunc:
7443     handleIFuncAttr(S, D, AL);
7444     break;
7445   case ParsedAttr::AT_Alias:
7446     handleAliasAttr(S, D, AL);
7447     break;
7448   case ParsedAttr::AT_Aligned:
7449     handleAlignedAttr(S, D, AL);
7450     break;
7451   case ParsedAttr::AT_AlignValue:
7452     handleAlignValueAttr(S, D, AL);
7453     break;
7454   case ParsedAttr::AT_AllocSize:
7455     handleAllocSizeAttr(S, D, AL);
7456     break;
7457   case ParsedAttr::AT_AlwaysInline:
7458     handleAlwaysInlineAttr(S, D, AL);
7459     break;
7460   case ParsedAttr::AT_AnalyzerNoReturn:
7461     handleAnalyzerNoReturnAttr(S, D, AL);
7462     break;
7463   case ParsedAttr::AT_TLSModel:
7464     handleTLSModelAttr(S, D, AL);
7465     break;
7466   case ParsedAttr::AT_Annotate:
7467     handleAnnotateAttr(S, D, AL);
7468     break;
7469   case ParsedAttr::AT_Availability:
7470     handleAvailabilityAttr(S, D, AL);
7471     break;
7472   case ParsedAttr::AT_CarriesDependency:
7473     handleDependencyAttr(S, scope, D, AL);
7474     break;
7475   case ParsedAttr::AT_CPUDispatch:
7476   case ParsedAttr::AT_CPUSpecific:
7477     handleCPUSpecificAttr(S, D, AL);
7478     break;
7479   case ParsedAttr::AT_Common:
7480     handleCommonAttr(S, D, AL);
7481     break;
7482   case ParsedAttr::AT_CUDAConstant:
7483     handleConstantAttr(S, D, AL);
7484     break;
7485   case ParsedAttr::AT_PassObjectSize:
7486     handlePassObjectSizeAttr(S, D, AL);
7487     break;
7488   case ParsedAttr::AT_Constructor:
7489     if (S.Context.getTargetInfo().getTriple().isOSAIX())
7490       llvm::report_fatal_error(
7491           "'constructor' attribute is not yet supported on AIX");
7492     else
7493       handleConstructorAttr(S, D, AL);
7494     break;
7495   case ParsedAttr::AT_Deprecated:
7496     handleDeprecatedAttr(S, D, AL);
7497     break;
7498   case ParsedAttr::AT_Destructor:
7499     if (S.Context.getTargetInfo().getTriple().isOSAIX())
7500       llvm::report_fatal_error("'destructor' attribute is not yet supported on AIX");
7501     else
7502       handleDestructorAttr(S, D, AL);
7503     break;
7504   case ParsedAttr::AT_EnableIf:
7505     handleEnableIfAttr(S, D, AL);
7506     break;
7507   case ParsedAttr::AT_DiagnoseIf:
7508     handleDiagnoseIfAttr(S, D, AL);
7509     break;
7510   case ParsedAttr::AT_NoBuiltin:
7511     handleNoBuiltinAttr(S, D, AL);
7512     break;
7513   case ParsedAttr::AT_ExtVectorType:
7514     handleExtVectorTypeAttr(S, D, AL);
7515     break;
7516   case ParsedAttr::AT_ExternalSourceSymbol:
7517     handleExternalSourceSymbolAttr(S, D, AL);
7518     break;
7519   case ParsedAttr::AT_MinSize:
7520     handleMinSizeAttr(S, D, AL);
7521     break;
7522   case ParsedAttr::AT_OptimizeNone:
7523     handleOptimizeNoneAttr(S, D, AL);
7524     break;
7525   case ParsedAttr::AT_EnumExtensibility:
7526     handleEnumExtensibilityAttr(S, D, AL);
7527     break;
7528   case ParsedAttr::AT_SYCLKernel:
7529     handleSYCLKernelAttr(S, D, AL);
7530     break;
7531   case ParsedAttr::AT_Format:
7532     handleFormatAttr(S, D, AL);
7533     break;
7534   case ParsedAttr::AT_FormatArg:
7535     handleFormatArgAttr(S, D, AL);
7536     break;
7537   case ParsedAttr::AT_Callback:
7538     handleCallbackAttr(S, D, AL);
7539     break;
7540   case ParsedAttr::AT_CUDAGlobal:
7541     handleGlobalAttr(S, D, AL);
7542     break;
7543   case ParsedAttr::AT_CUDADevice:
7544     handleDeviceAttr(S, D, AL);
7545     break;
7546   case ParsedAttr::AT_CUDAHost:
7547     handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D, AL);
7548     break;
7549   case ParsedAttr::AT_CUDADeviceBuiltinSurfaceType:
7550     handleSimpleAttributeWithExclusions<CUDADeviceBuiltinSurfaceTypeAttr,
7551                                         CUDADeviceBuiltinTextureTypeAttr>(S, D,
7552                                                                           AL);
7553     break;
7554   case ParsedAttr::AT_CUDADeviceBuiltinTextureType:
7555     handleSimpleAttributeWithExclusions<CUDADeviceBuiltinTextureTypeAttr,
7556                                         CUDADeviceBuiltinSurfaceTypeAttr>(S, D,
7557                                                                           AL);
7558     break;
7559   case ParsedAttr::AT_GNUInline:
7560     handleGNUInlineAttr(S, D, AL);
7561     break;
7562   case ParsedAttr::AT_CUDALaunchBounds:
7563     handleLaunchBoundsAttr(S, D, AL);
7564     break;
7565   case ParsedAttr::AT_Restrict:
7566     handleRestrictAttr(S, D, AL);
7567     break;
7568   case ParsedAttr::AT_Mode:
7569     handleModeAttr(S, D, AL);
7570     break;
7571   case ParsedAttr::AT_NonNull:
7572     if (auto *PVD = dyn_cast<ParmVarDecl>(D))
7573       handleNonNullAttrParameter(S, PVD, AL);
7574     else
7575       handleNonNullAttr(S, D, AL);
7576     break;
7577   case ParsedAttr::AT_ReturnsNonNull:
7578     handleReturnsNonNullAttr(S, D, AL);
7579     break;
7580   case ParsedAttr::AT_NoEscape:
7581     handleNoEscapeAttr(S, D, AL);
7582     break;
7583   case ParsedAttr::AT_AssumeAligned:
7584     handleAssumeAlignedAttr(S, D, AL);
7585     break;
7586   case ParsedAttr::AT_AllocAlign:
7587     handleAllocAlignAttr(S, D, AL);
7588     break;
7589   case ParsedAttr::AT_Ownership:
7590     handleOwnershipAttr(S, D, AL);
7591     break;
7592   case ParsedAttr::AT_Cold:
7593     handleSimpleAttributeWithExclusions<ColdAttr, HotAttr>(S, D, AL);
7594     break;
7595   case ParsedAttr::AT_Hot:
7596     handleSimpleAttributeWithExclusions<HotAttr, ColdAttr>(S, D, AL);
7597     break;
7598   case ParsedAttr::AT_Naked:
7599     handleNakedAttr(S, D, AL);
7600     break;
7601   case ParsedAttr::AT_NoReturn:
7602     handleNoReturnAttr(S, D, AL);
7603     break;
7604   case ParsedAttr::AT_AnyX86NoCfCheck:
7605     handleNoCfCheckAttr(S, D, AL);
7606     break;
7607   case ParsedAttr::AT_NoThrow:
7608     if (!AL.isUsedAsTypeAttr())
7609       handleSimpleAttribute<NoThrowAttr>(S, D, AL);
7610     break;
7611   case ParsedAttr::AT_CUDAShared:
7612     handleSharedAttr(S, D, AL);
7613     break;
7614   case ParsedAttr::AT_VecReturn:
7615     handleVecReturnAttr(S, D, AL);
7616     break;
7617   case ParsedAttr::AT_ObjCOwnership:
7618     handleObjCOwnershipAttr(S, D, AL);
7619     break;
7620   case ParsedAttr::AT_ObjCPreciseLifetime:
7621     handleObjCPreciseLifetimeAttr(S, D, AL);
7622     break;
7623   case ParsedAttr::AT_ObjCReturnsInnerPointer:
7624     handleObjCReturnsInnerPointerAttr(S, D, AL);
7625     break;
7626   case ParsedAttr::AT_ObjCRequiresSuper:
7627     handleObjCRequiresSuperAttr(S, D, AL);
7628     break;
7629   case ParsedAttr::AT_ObjCBridge:
7630     handleObjCBridgeAttr(S, D, AL);
7631     break;
7632   case ParsedAttr::AT_ObjCBridgeMutable:
7633     handleObjCBridgeMutableAttr(S, D, AL);
7634     break;
7635   case ParsedAttr::AT_ObjCBridgeRelated:
7636     handleObjCBridgeRelatedAttr(S, D, AL);
7637     break;
7638   case ParsedAttr::AT_ObjCDesignatedInitializer:
7639     handleObjCDesignatedInitializer(S, D, AL);
7640     break;
7641   case ParsedAttr::AT_ObjCRuntimeName:
7642     handleObjCRuntimeName(S, D, AL);
7643     break;
7644   case ParsedAttr::AT_ObjCBoxable:
7645     handleObjCBoxable(S, D, AL);
7646     break;
7647   case ParsedAttr::AT_NSErrorDomain:
7648     handleNSErrorDomain(S, D, AL);
7649     break;
7650   case ParsedAttr::AT_CFAuditedTransfer:
7651     handleSimpleAttributeWithExclusions<CFAuditedTransferAttr,
7652                                         CFUnknownTransferAttr>(S, D, AL);
7653     break;
7654   case ParsedAttr::AT_CFUnknownTransfer:
7655     handleSimpleAttributeWithExclusions<CFUnknownTransferAttr,
7656                                         CFAuditedTransferAttr>(S, D, AL);
7657     break;
7658   case ParsedAttr::AT_CFConsumed:
7659   case ParsedAttr::AT_NSConsumed:
7660   case ParsedAttr::AT_OSConsumed:
7661     S.AddXConsumedAttr(D, AL, parsedAttrToRetainOwnershipKind(AL),
7662                        /*IsTemplateInstantiation=*/false);
7663     break;
7664   case ParsedAttr::AT_OSReturnsRetainedOnZero:
7665     handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnZeroAttr>(
7666         S, D, AL, isValidOSObjectOutParameter(D),
7667         diag::warn_ns_attribute_wrong_parameter_type,
7668         /*Extra Args=*/AL, /*pointer-to-OSObject-pointer*/ 3, AL.getRange());
7669     break;
7670   case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
7671     handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnNonZeroAttr>(
7672         S, D, AL, isValidOSObjectOutParameter(D),
7673         diag::warn_ns_attribute_wrong_parameter_type,
7674         /*Extra Args=*/AL, /*pointer-to-OSObject-poointer*/ 3, AL.getRange());
7675     break;
7676   case ParsedAttr::AT_NSReturnsAutoreleased:
7677   case ParsedAttr::AT_NSReturnsNotRetained:
7678   case ParsedAttr::AT_NSReturnsRetained:
7679   case ParsedAttr::AT_CFReturnsNotRetained:
7680   case ParsedAttr::AT_CFReturnsRetained:
7681   case ParsedAttr::AT_OSReturnsNotRetained:
7682   case ParsedAttr::AT_OSReturnsRetained:
7683     handleXReturnsXRetainedAttr(S, D, AL);
7684     break;
7685   case ParsedAttr::AT_WorkGroupSizeHint:
7686     handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, AL);
7687     break;
7688   case ParsedAttr::AT_ReqdWorkGroupSize:
7689     handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, AL);
7690     break;
7691   case ParsedAttr::AT_OpenCLIntelReqdSubGroupSize:
7692     handleSubGroupSize(S, D, AL);
7693     break;
7694   case ParsedAttr::AT_VecTypeHint:
7695     handleVecTypeHint(S, D, AL);
7696     break;
7697   case ParsedAttr::AT_InitPriority:
7698     if (S.Context.getTargetInfo().getTriple().isOSAIX())
7699       llvm::report_fatal_error(
7700           "'init_priority' attribute is not yet supported on AIX");
7701     else
7702       handleInitPriorityAttr(S, D, AL);
7703     break;
7704   case ParsedAttr::AT_Packed:
7705     handlePackedAttr(S, D, AL);
7706     break;
7707   case ParsedAttr::AT_Section:
7708     handleSectionAttr(S, D, AL);
7709     break;
7710   case ParsedAttr::AT_SpeculativeLoadHardening:
7711     handleSimpleAttributeWithExclusions<SpeculativeLoadHardeningAttr,
7712                                         NoSpeculativeLoadHardeningAttr>(S, D,
7713                                                                         AL);
7714     break;
7715   case ParsedAttr::AT_NoSpeculativeLoadHardening:
7716     handleSimpleAttributeWithExclusions<NoSpeculativeLoadHardeningAttr,
7717                                         SpeculativeLoadHardeningAttr>(S, D, AL);
7718     break;
7719   case ParsedAttr::AT_CodeSeg:
7720     handleCodeSegAttr(S, D, AL);
7721     break;
7722   case ParsedAttr::AT_Target:
7723     handleTargetAttr(S, D, AL);
7724     break;
7725   case ParsedAttr::AT_MinVectorWidth:
7726     handleMinVectorWidthAttr(S, D, AL);
7727     break;
7728   case ParsedAttr::AT_Unavailable:
7729     handleAttrWithMessage<UnavailableAttr>(S, D, AL);
7730     break;
7731   case ParsedAttr::AT_ObjCDirect:
7732     handleObjCDirectAttr(S, D, AL);
7733     break;
7734   case ParsedAttr::AT_ObjCNonRuntimeProtocol:
7735     handleObjCNonRuntimeProtocolAttr(S, D, AL);
7736     break;
7737   case ParsedAttr::AT_ObjCDirectMembers:
7738     handleObjCDirectMembersAttr(S, D, AL);
7739     handleSimpleAttribute<ObjCDirectMembersAttr>(S, D, AL);
7740     break;
7741   case ParsedAttr::AT_ObjCExplicitProtocolImpl:
7742     handleObjCSuppresProtocolAttr(S, D, AL);
7743     break;
7744   case ParsedAttr::AT_Unused:
7745     handleUnusedAttr(S, D, AL);
7746     break;
7747   case ParsedAttr::AT_NotTailCalled:
7748     handleSimpleAttributeWithExclusions<NotTailCalledAttr, AlwaysInlineAttr>(
7749         S, D, AL);
7750     break;
7751   case ParsedAttr::AT_DisableTailCalls:
7752     handleSimpleAttributeWithExclusions<DisableTailCallsAttr, NakedAttr>(S, D,
7753                                                                          AL);
7754     break;
7755   case ParsedAttr::AT_Visibility:
7756     handleVisibilityAttr(S, D, AL, false);
7757     break;
7758   case ParsedAttr::AT_TypeVisibility:
7759     handleVisibilityAttr(S, D, AL, true);
7760     break;
7761   case ParsedAttr::AT_WarnUnusedResult:
7762     handleWarnUnusedResult(S, D, AL);
7763     break;
7764   case ParsedAttr::AT_WeakRef:
7765     handleWeakRefAttr(S, D, AL);
7766     break;
7767   case ParsedAttr::AT_WeakImport:
7768     handleWeakImportAttr(S, D, AL);
7769     break;
7770   case ParsedAttr::AT_TransparentUnion:
7771     handleTransparentUnionAttr(S, D, AL);
7772     break;
7773   case ParsedAttr::AT_ObjCMethodFamily:
7774     handleObjCMethodFamilyAttr(S, D, AL);
7775     break;
7776   case ParsedAttr::AT_ObjCNSObject:
7777     handleObjCNSObject(S, D, AL);
7778     break;
7779   case ParsedAttr::AT_ObjCIndependentClass:
7780     handleObjCIndependentClass(S, D, AL);
7781     break;
7782   case ParsedAttr::AT_Blocks:
7783     handleBlocksAttr(S, D, AL);
7784     break;
7785   case ParsedAttr::AT_Sentinel:
7786     handleSentinelAttr(S, D, AL);
7787     break;
7788   case ParsedAttr::AT_Cleanup:
7789     handleCleanupAttr(S, D, AL);
7790     break;
7791   case ParsedAttr::AT_NoDebug:
7792     handleNoDebugAttr(S, D, AL);
7793     break;
7794   case ParsedAttr::AT_CmseNSEntry:
7795     handleCmseNSEntryAttr(S, D, AL);
7796     break;
7797   case ParsedAttr::AT_StdCall:
7798   case ParsedAttr::AT_CDecl:
7799   case ParsedAttr::AT_FastCall:
7800   case ParsedAttr::AT_ThisCall:
7801   case ParsedAttr::AT_Pascal:
7802   case ParsedAttr::AT_RegCall:
7803   case ParsedAttr::AT_SwiftCall:
7804   case ParsedAttr::AT_VectorCall:
7805   case ParsedAttr::AT_MSABI:
7806   case ParsedAttr::AT_SysVABI:
7807   case ParsedAttr::AT_Pcs:
7808   case ParsedAttr::AT_IntelOclBicc:
7809   case ParsedAttr::AT_PreserveMost:
7810   case ParsedAttr::AT_PreserveAll:
7811   case ParsedAttr::AT_AArch64VectorPcs:
7812     handleCallConvAttr(S, D, AL);
7813     break;
7814   case ParsedAttr::AT_Suppress:
7815     handleSuppressAttr(S, D, AL);
7816     break;
7817   case ParsedAttr::AT_Owner:
7818   case ParsedAttr::AT_Pointer:
7819     handleLifetimeCategoryAttr(S, D, AL);
7820     break;
7821   case ParsedAttr::AT_OpenCLAccess:
7822     handleOpenCLAccessAttr(S, D, AL);
7823     break;
7824   case ParsedAttr::AT_OpenCLNoSVM:
7825     handleOpenCLNoSVMAttr(S, D, AL);
7826     break;
7827   case ParsedAttr::AT_SwiftContext:
7828     S.AddParameterABIAttr(D, AL, ParameterABI::SwiftContext);
7829     break;
7830   case ParsedAttr::AT_SwiftErrorResult:
7831     S.AddParameterABIAttr(D, AL, ParameterABI::SwiftErrorResult);
7832     break;
7833   case ParsedAttr::AT_SwiftIndirectResult:
7834     S.AddParameterABIAttr(D, AL, ParameterABI::SwiftIndirectResult);
7835     break;
7836   case ParsedAttr::AT_InternalLinkage:
7837     handleInternalLinkageAttr(S, D, AL);
7838     break;
7839 
7840   // Microsoft attributes:
7841   case ParsedAttr::AT_LayoutVersion:
7842     handleLayoutVersion(S, D, AL);
7843     break;
7844   case ParsedAttr::AT_Uuid:
7845     handleUuidAttr(S, D, AL);
7846     break;
7847   case ParsedAttr::AT_MSInheritance:
7848     handleMSInheritanceAttr(S, D, AL);
7849     break;
7850   case ParsedAttr::AT_Thread:
7851     handleDeclspecThreadAttr(S, D, AL);
7852     break;
7853 
7854   case ParsedAttr::AT_AbiTag:
7855     handleAbiTagAttr(S, D, AL);
7856     break;
7857   case ParsedAttr::AT_CFGuard:
7858     handleCFGuardAttr(S, D, AL);
7859     break;
7860 
7861   // Thread safety attributes:
7862   case ParsedAttr::AT_AssertExclusiveLock:
7863     handleAssertExclusiveLockAttr(S, D, AL);
7864     break;
7865   case ParsedAttr::AT_AssertSharedLock:
7866     handleAssertSharedLockAttr(S, D, AL);
7867     break;
7868   case ParsedAttr::AT_PtGuardedVar:
7869     handlePtGuardedVarAttr(S, D, AL);
7870     break;
7871   case ParsedAttr::AT_NoSanitize:
7872     handleNoSanitizeAttr(S, D, AL);
7873     break;
7874   case ParsedAttr::AT_NoSanitizeSpecific:
7875     handleNoSanitizeSpecificAttr(S, D, AL);
7876     break;
7877   case ParsedAttr::AT_GuardedBy:
7878     handleGuardedByAttr(S, D, AL);
7879     break;
7880   case ParsedAttr::AT_PtGuardedBy:
7881     handlePtGuardedByAttr(S, D, AL);
7882     break;
7883   case ParsedAttr::AT_ExclusiveTrylockFunction:
7884     handleExclusiveTrylockFunctionAttr(S, D, AL);
7885     break;
7886   case ParsedAttr::AT_LockReturned:
7887     handleLockReturnedAttr(S, D, AL);
7888     break;
7889   case ParsedAttr::AT_LocksExcluded:
7890     handleLocksExcludedAttr(S, D, AL);
7891     break;
7892   case ParsedAttr::AT_SharedTrylockFunction:
7893     handleSharedTrylockFunctionAttr(S, D, AL);
7894     break;
7895   case ParsedAttr::AT_AcquiredBefore:
7896     handleAcquiredBeforeAttr(S, D, AL);
7897     break;
7898   case ParsedAttr::AT_AcquiredAfter:
7899     handleAcquiredAfterAttr(S, D, AL);
7900     break;
7901 
7902   // Capability analysis attributes.
7903   case ParsedAttr::AT_Capability:
7904   case ParsedAttr::AT_Lockable:
7905     handleCapabilityAttr(S, D, AL);
7906     break;
7907   case ParsedAttr::AT_RequiresCapability:
7908     handleRequiresCapabilityAttr(S, D, AL);
7909     break;
7910 
7911   case ParsedAttr::AT_AssertCapability:
7912     handleAssertCapabilityAttr(S, D, AL);
7913     break;
7914   case ParsedAttr::AT_AcquireCapability:
7915     handleAcquireCapabilityAttr(S, D, AL);
7916     break;
7917   case ParsedAttr::AT_ReleaseCapability:
7918     handleReleaseCapabilityAttr(S, D, AL);
7919     break;
7920   case ParsedAttr::AT_TryAcquireCapability:
7921     handleTryAcquireCapabilityAttr(S, D, AL);
7922     break;
7923 
7924   // Consumed analysis attributes.
7925   case ParsedAttr::AT_Consumable:
7926     handleConsumableAttr(S, D, AL);
7927     break;
7928   case ParsedAttr::AT_CallableWhen:
7929     handleCallableWhenAttr(S, D, AL);
7930     break;
7931   case ParsedAttr::AT_ParamTypestate:
7932     handleParamTypestateAttr(S, D, AL);
7933     break;
7934   case ParsedAttr::AT_ReturnTypestate:
7935     handleReturnTypestateAttr(S, D, AL);
7936     break;
7937   case ParsedAttr::AT_SetTypestate:
7938     handleSetTypestateAttr(S, D, AL);
7939     break;
7940   case ParsedAttr::AT_TestTypestate:
7941     handleTestTypestateAttr(S, D, AL);
7942     break;
7943 
7944   // Type safety attributes.
7945   case ParsedAttr::AT_ArgumentWithTypeTag:
7946     handleArgumentWithTypeTagAttr(S, D, AL);
7947     break;
7948   case ParsedAttr::AT_TypeTagForDatatype:
7949     handleTypeTagForDatatypeAttr(S, D, AL);
7950     break;
7951 
7952   // Swift attributes.
7953   case ParsedAttr::AT_SwiftBridge:
7954     handleSwiftBridge(S, D, AL);
7955     break;
7956   case ParsedAttr::AT_SwiftBridgedTypedef:
7957     handleSimpleAttribute<SwiftBridgedTypedefAttr>(S, D, AL);
7958     break;
7959   case ParsedAttr::AT_SwiftError:
7960     handleSwiftError(S, D, AL);
7961     break;
7962   case ParsedAttr::AT_SwiftName:
7963     handleSwiftName(S, D, AL);
7964     break;
7965   case ParsedAttr::AT_SwiftNewType:
7966     handleSwiftNewType(S, D, AL);
7967     break;
7968   case ParsedAttr::AT_SwiftObjCMembers:
7969     handleSimpleAttribute<SwiftObjCMembersAttr>(S, D, AL);
7970     break;
7971   case ParsedAttr::AT_SwiftPrivate:
7972     handleSimpleAttribute<SwiftPrivateAttr>(S, D, AL);
7973     break;
7974 
7975   // XRay attributes.
7976   case ParsedAttr::AT_XRayLogArgs:
7977     handleXRayLogArgsAttr(S, D, AL);
7978     break;
7979 
7980   case ParsedAttr::AT_PatchableFunctionEntry:
7981     handlePatchableFunctionEntryAttr(S, D, AL);
7982     break;
7983 
7984   case ParsedAttr::AT_AlwaysDestroy:
7985   case ParsedAttr::AT_NoDestroy:
7986     handleDestroyAttr(S, D, AL);
7987     break;
7988 
7989   case ParsedAttr::AT_Uninitialized:
7990     handleUninitializedAttr(S, D, AL);
7991     break;
7992 
7993   case ParsedAttr::AT_LoaderUninitialized:
7994     handleSimpleAttribute<LoaderUninitializedAttr>(S, D, AL);
7995     break;
7996 
7997   case ParsedAttr::AT_ObjCExternallyRetained:
7998     handleObjCExternallyRetainedAttr(S, D, AL);
7999     break;
8000 
8001   case ParsedAttr::AT_MIGServerRoutine:
8002     handleMIGServerRoutineAttr(S, D, AL);
8003     break;
8004 
8005   case ParsedAttr::AT_MSAllocator:
8006     handleMSAllocatorAttr(S, D, AL);
8007     break;
8008 
8009   case ParsedAttr::AT_ArmBuiltinAlias:
8010     handleArmBuiltinAliasAttr(S, D, AL);
8011     break;
8012 
8013   case ParsedAttr::AT_AcquireHandle:
8014     handleAcquireHandleAttr(S, D, AL);
8015     break;
8016 
8017   case ParsedAttr::AT_ReleaseHandle:
8018     handleHandleAttr<ReleaseHandleAttr>(S, D, AL);
8019     break;
8020 
8021   case ParsedAttr::AT_UseHandle:
8022     handleHandleAttr<UseHandleAttr>(S, D, AL);
8023     break;
8024   }
8025 }
8026 
8027 /// ProcessDeclAttributeList - Apply all the decl attributes in the specified
8028 /// attribute list to the specified decl, ignoring any type attributes.
8029 void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
8030                                     const ParsedAttributesView &AttrList,
8031                                     bool IncludeCXX11Attributes) {
8032   if (AttrList.empty())
8033     return;
8034 
8035   for (const ParsedAttr &AL : AttrList)
8036     ProcessDeclAttribute(*this, S, D, AL, IncludeCXX11Attributes);
8037 
8038   // FIXME: We should be able to handle these cases in TableGen.
8039   // GCC accepts
8040   // static int a9 __attribute__((weakref));
8041   // but that looks really pointless. We reject it.
8042   if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
8043     Diag(AttrList.begin()->getLoc(), diag::err_attribute_weakref_without_alias)
8044         << cast<NamedDecl>(D);
8045     D->dropAttr<WeakRefAttr>();
8046     return;
8047   }
8048 
8049   // FIXME: We should be able to handle this in TableGen as well. It would be
8050   // good to have a way to specify "these attributes must appear as a group",
8051   // for these. Additionally, it would be good to have a way to specify "these
8052   // attribute must never appear as a group" for attributes like cold and hot.
8053   if (!D->hasAttr<OpenCLKernelAttr>()) {
8054     // These attributes cannot be applied to a non-kernel function.
8055     if (const auto *A = D->getAttr<ReqdWorkGroupSizeAttr>()) {
8056       // FIXME: This emits a different error message than
8057       // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction.
8058       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
8059       D->setInvalidDecl();
8060     } else if (const auto *A = D->getAttr<WorkGroupSizeHintAttr>()) {
8061       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
8062       D->setInvalidDecl();
8063     } else if (const auto *A = D->getAttr<VecTypeHintAttr>()) {
8064       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
8065       D->setInvalidDecl();
8066     } else if (const auto *A = D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>()) {
8067       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
8068       D->setInvalidDecl();
8069     } else if (!D->hasAttr<CUDAGlobalAttr>()) {
8070       if (const auto *A = D->getAttr<AMDGPUFlatWorkGroupSizeAttr>()) {
8071         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
8072             << A << ExpectedKernelFunction;
8073         D->setInvalidDecl();
8074       } else if (const auto *A = D->getAttr<AMDGPUWavesPerEUAttr>()) {
8075         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
8076             << A << ExpectedKernelFunction;
8077         D->setInvalidDecl();
8078       } else if (const auto *A = D->getAttr<AMDGPUNumSGPRAttr>()) {
8079         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
8080             << A << ExpectedKernelFunction;
8081         D->setInvalidDecl();
8082       } else if (const auto *A = D->getAttr<AMDGPUNumVGPRAttr>()) {
8083         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
8084             << A << ExpectedKernelFunction;
8085         D->setInvalidDecl();
8086       }
8087     }
8088   }
8089 
8090   // Do this check after processing D's attributes because the attribute
8091   // objc_method_family can change whether the given method is in the init
8092   // family, and it can be applied after objc_designated_initializer. This is a
8093   // bit of a hack, but we need it to be compatible with versions of clang that
8094   // processed the attribute list in the wrong order.
8095   if (D->hasAttr<ObjCDesignatedInitializerAttr>() &&
8096       cast<ObjCMethodDecl>(D)->getMethodFamily() != OMF_init) {
8097     Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
8098     D->dropAttr<ObjCDesignatedInitializerAttr>();
8099   }
8100 }
8101 
8102 // Helper for delayed processing TransparentUnion or BPFPreserveAccessIndexAttr
8103 // attribute.
8104 void Sema::ProcessDeclAttributeDelayed(Decl *D,
8105                                        const ParsedAttributesView &AttrList) {
8106   for (const ParsedAttr &AL : AttrList)
8107     if (AL.getKind() == ParsedAttr::AT_TransparentUnion) {
8108       handleTransparentUnionAttr(*this, D, AL);
8109       break;
8110     }
8111 
8112   // For BPFPreserveAccessIndexAttr, we want to populate the attributes
8113   // to fields and inner records as well.
8114   if (D && D->hasAttr<BPFPreserveAccessIndexAttr>())
8115     handleBPFPreserveAIRecord(*this, cast<RecordDecl>(D));
8116 }
8117 
8118 // Annotation attributes are the only attributes allowed after an access
8119 // specifier.
8120 bool Sema::ProcessAccessDeclAttributeList(
8121     AccessSpecDecl *ASDecl, const ParsedAttributesView &AttrList) {
8122   for (const ParsedAttr &AL : AttrList) {
8123     if (AL.getKind() == ParsedAttr::AT_Annotate) {
8124       ProcessDeclAttribute(*this, nullptr, ASDecl, AL, AL.isCXX11Attribute());
8125     } else {
8126       Diag(AL.getLoc(), diag::err_only_annotate_after_access_spec);
8127       return true;
8128     }
8129   }
8130   return false;
8131 }
8132 
8133 /// checkUnusedDeclAttributes - Check a list of attributes to see if it
8134 /// contains any decl attributes that we should warn about.
8135 static void checkUnusedDeclAttributes(Sema &S, const ParsedAttributesView &A) {
8136   for (const ParsedAttr &AL : A) {
8137     // Only warn if the attribute is an unignored, non-type attribute.
8138     if (AL.isUsedAsTypeAttr() || AL.isInvalid())
8139       continue;
8140     if (AL.getKind() == ParsedAttr::IgnoredAttribute)
8141       continue;
8142 
8143     if (AL.getKind() == ParsedAttr::UnknownAttribute) {
8144       S.Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored)
8145           << AL << AL.getRange();
8146     } else {
8147       S.Diag(AL.getLoc(), diag::warn_attribute_not_on_decl) << AL
8148                                                             << AL.getRange();
8149     }
8150   }
8151 }
8152 
8153 /// checkUnusedDeclAttributes - Given a declarator which is not being
8154 /// used to build a declaration, complain about any decl attributes
8155 /// which might be lying around on it.
8156 void Sema::checkUnusedDeclAttributes(Declarator &D) {
8157   ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes());
8158   ::checkUnusedDeclAttributes(*this, D.getAttributes());
8159   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
8160     ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
8161 }
8162 
8163 /// DeclClonePragmaWeak - clone existing decl (maybe definition),
8164 /// \#pragma weak needs a non-definition decl and source may not have one.
8165 NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
8166                                       SourceLocation Loc) {
8167   assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
8168   NamedDecl *NewD = nullptr;
8169   if (auto *FD = dyn_cast<FunctionDecl>(ND)) {
8170     FunctionDecl *NewFD;
8171     // FIXME: Missing call to CheckFunctionDeclaration().
8172     // FIXME: Mangling?
8173     // FIXME: Is the qualifier info correct?
8174     // FIXME: Is the DeclContext correct?
8175     NewFD = FunctionDecl::Create(
8176         FD->getASTContext(), FD->getDeclContext(), Loc, Loc,
8177         DeclarationName(II), FD->getType(), FD->getTypeSourceInfo(), SC_None,
8178         false /*isInlineSpecified*/, FD->hasPrototype(), CSK_unspecified,
8179         FD->getTrailingRequiresClause());
8180     NewD = NewFD;
8181 
8182     if (FD->getQualifier())
8183       NewFD->setQualifierInfo(FD->getQualifierLoc());
8184 
8185     // Fake up parameter variables; they are declared as if this were
8186     // a typedef.
8187     QualType FDTy = FD->getType();
8188     if (const auto *FT = FDTy->getAs<FunctionProtoType>()) {
8189       SmallVector<ParmVarDecl*, 16> Params;
8190       for (const auto &AI : FT->param_types()) {
8191         ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
8192         Param->setScopeInfo(0, Params.size());
8193         Params.push_back(Param);
8194       }
8195       NewFD->setParams(Params);
8196     }
8197   } else if (auto *VD = dyn_cast<VarDecl>(ND)) {
8198     NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
8199                            VD->getInnerLocStart(), VD->getLocation(), II,
8200                            VD->getType(), VD->getTypeSourceInfo(),
8201                            VD->getStorageClass());
8202     if (VD->getQualifier())
8203       cast<VarDecl>(NewD)->setQualifierInfo(VD->getQualifierLoc());
8204   }
8205   return NewD;
8206 }
8207 
8208 /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
8209 /// applied to it, possibly with an alias.
8210 void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
8211   if (W.getUsed()) return; // only do this once
8212   W.setUsed(true);
8213   if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
8214     IdentifierInfo *NDId = ND->getIdentifier();
8215     NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
8216     NewD->addAttr(
8217         AliasAttr::CreateImplicit(Context, NDId->getName(), W.getLocation()));
8218     NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation(),
8219                                            AttributeCommonInfo::AS_Pragma));
8220     WeakTopLevelDecl.push_back(NewD);
8221     // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
8222     // to insert Decl at TU scope, sorry.
8223     DeclContext *SavedContext = CurContext;
8224     CurContext = Context.getTranslationUnitDecl();
8225     NewD->setDeclContext(CurContext);
8226     NewD->setLexicalDeclContext(CurContext);
8227     PushOnScopeChains(NewD, S);
8228     CurContext = SavedContext;
8229   } else { // just add weak to existing
8230     ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation(),
8231                                          AttributeCommonInfo::AS_Pragma));
8232   }
8233 }
8234 
8235 void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
8236   // It's valid to "forward-declare" #pragma weak, in which case we
8237   // have to do this.
8238   LoadExternalWeakUndeclaredIdentifiers();
8239   if (!WeakUndeclaredIdentifiers.empty()) {
8240     NamedDecl *ND = nullptr;
8241     if (auto *VD = dyn_cast<VarDecl>(D))
8242       if (VD->isExternC())
8243         ND = VD;
8244     if (auto *FD = dyn_cast<FunctionDecl>(D))
8245       if (FD->isExternC())
8246         ND = FD;
8247     if (ND) {
8248       if (IdentifierInfo *Id = ND->getIdentifier()) {
8249         auto I = WeakUndeclaredIdentifiers.find(Id);
8250         if (I != WeakUndeclaredIdentifiers.end()) {
8251           WeakInfo W = I->second;
8252           DeclApplyPragmaWeak(S, ND, W);
8253           WeakUndeclaredIdentifiers[Id] = W;
8254         }
8255       }
8256     }
8257   }
8258 }
8259 
8260 /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
8261 /// it, apply them to D.  This is a bit tricky because PD can have attributes
8262 /// specified in many different places, and we need to find and apply them all.
8263 void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
8264   // Apply decl attributes from the DeclSpec if present.
8265   if (!PD.getDeclSpec().getAttributes().empty())
8266     ProcessDeclAttributeList(S, D, PD.getDeclSpec().getAttributes());
8267 
8268   // Walk the declarator structure, applying decl attributes that were in a type
8269   // position to the decl itself.  This handles cases like:
8270   //   int *__attr__(x)** D;
8271   // when X is a decl attribute.
8272   for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
8273     ProcessDeclAttributeList(S, D, PD.getTypeObject(i).getAttrs(),
8274                              /*IncludeCXX11Attributes=*/false);
8275 
8276   // Finally, apply any attributes on the decl itself.
8277   ProcessDeclAttributeList(S, D, PD.getAttributes());
8278 
8279   // Apply additional attributes specified by '#pragma clang attribute'.
8280   AddPragmaAttributes(S, D);
8281 }
8282 
8283 /// Is the given declaration allowed to use a forbidden type?
8284 /// If so, it'll still be annotated with an attribute that makes it
8285 /// illegal to actually use.
8286 static bool isForbiddenTypeAllowed(Sema &S, Decl *D,
8287                                    const DelayedDiagnostic &diag,
8288                                    UnavailableAttr::ImplicitReason &reason) {
8289   // Private ivars are always okay.  Unfortunately, people don't
8290   // always properly make their ivars private, even in system headers.
8291   // Plus we need to make fields okay, too.
8292   if (!isa<FieldDecl>(D) && !isa<ObjCPropertyDecl>(D) &&
8293       !isa<FunctionDecl>(D))
8294     return false;
8295 
8296   // Silently accept unsupported uses of __weak in both user and system
8297   // declarations when it's been disabled, for ease of integration with
8298   // -fno-objc-arc files.  We do have to take some care against attempts
8299   // to define such things;  for now, we've only done that for ivars
8300   // and properties.
8301   if ((isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
8302     if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled ||
8303         diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) {
8304       reason = UnavailableAttr::IR_ForbiddenWeak;
8305       return true;
8306     }
8307   }
8308 
8309   // Allow all sorts of things in system headers.
8310   if (S.Context.getSourceManager().isInSystemHeader(D->getLocation())) {
8311     // Currently, all the failures dealt with this way are due to ARC
8312     // restrictions.
8313     reason = UnavailableAttr::IR_ARCForbiddenType;
8314     return true;
8315   }
8316 
8317   return false;
8318 }
8319 
8320 /// Handle a delayed forbidden-type diagnostic.
8321 static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &DD,
8322                                        Decl *D) {
8323   auto Reason = UnavailableAttr::IR_None;
8324   if (D && isForbiddenTypeAllowed(S, D, DD, Reason)) {
8325     assert(Reason && "didn't set reason?");
8326     D->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", Reason, DD.Loc));
8327     return;
8328   }
8329   if (S.getLangOpts().ObjCAutoRefCount)
8330     if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
8331       // FIXME: we may want to suppress diagnostics for all
8332       // kind of forbidden type messages on unavailable functions.
8333       if (FD->hasAttr<UnavailableAttr>() &&
8334           DD.getForbiddenTypeDiagnostic() ==
8335               diag::err_arc_array_param_no_ownership) {
8336         DD.Triggered = true;
8337         return;
8338       }
8339     }
8340 
8341   S.Diag(DD.Loc, DD.getForbiddenTypeDiagnostic())
8342       << DD.getForbiddenTypeOperand() << DD.getForbiddenTypeArgument();
8343   DD.Triggered = true;
8344 }
8345 
8346 
8347 void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
8348   assert(DelayedDiagnostics.getCurrentPool());
8349   DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
8350   DelayedDiagnostics.popWithoutEmitting(state);
8351 
8352   // When delaying diagnostics to run in the context of a parsed
8353   // declaration, we only want to actually emit anything if parsing
8354   // succeeds.
8355   if (!decl) return;
8356 
8357   // We emit all the active diagnostics in this pool or any of its
8358   // parents.  In general, we'll get one pool for the decl spec
8359   // and a child pool for each declarator; in a decl group like:
8360   //   deprecated_typedef foo, *bar, baz();
8361   // only the declarator pops will be passed decls.  This is correct;
8362   // we really do need to consider delayed diagnostics from the decl spec
8363   // for each of the different declarations.
8364   const DelayedDiagnosticPool *pool = &poppedPool;
8365   do {
8366     bool AnyAccessFailures = false;
8367     for (DelayedDiagnosticPool::pool_iterator
8368            i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
8369       // This const_cast is a bit lame.  Really, Triggered should be mutable.
8370       DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
8371       if (diag.Triggered)
8372         continue;
8373 
8374       switch (diag.Kind) {
8375       case DelayedDiagnostic::Availability:
8376         // Don't bother giving deprecation/unavailable diagnostics if
8377         // the decl is invalid.
8378         if (!decl->isInvalidDecl())
8379           handleDelayedAvailabilityCheck(diag, decl);
8380         break;
8381 
8382       case DelayedDiagnostic::Access:
8383         // Only produce one access control diagnostic for a structured binding
8384         // declaration: we don't need to tell the user that all the fields are
8385         // inaccessible one at a time.
8386         if (AnyAccessFailures && isa<DecompositionDecl>(decl))
8387           continue;
8388         HandleDelayedAccessCheck(diag, decl);
8389         if (diag.Triggered)
8390           AnyAccessFailures = true;
8391         break;
8392 
8393       case DelayedDiagnostic::ForbiddenType:
8394         handleDelayedForbiddenType(*this, diag, decl);
8395         break;
8396       }
8397     }
8398   } while ((pool = pool->getParent()));
8399 }
8400 
8401 /// Given a set of delayed diagnostics, re-emit them as if they had
8402 /// been delayed in the current context instead of in the given pool.
8403 /// Essentially, this just moves them to the current pool.
8404 void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
8405   DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
8406   assert(curPool && "re-emitting in undelayed context not supported");
8407   curPool->steal(pool);
8408 }
8409