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