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