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