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/Sema/SemaInternal.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/CXXInheritance.h"
17 #include "clang/AST/DeclCXX.h"
18 #include "clang/AST/DeclObjC.h"
19 #include "clang/AST/DeclTemplate.h"
20 #include "clang/AST/Expr.h"
21 #include "clang/AST/ExprCXX.h"
22 #include "clang/AST/Mangle.h"
23 #include "clang/Basic/CharInfo.h"
24 #include "clang/Basic/SourceManager.h"
25 #include "clang/Basic/TargetInfo.h"
26 #include "clang/Lex/Preprocessor.h"
27 #include "clang/Sema/DeclSpec.h"
28 #include "clang/Sema/DelayedDiagnostic.h"
29 #include "clang/Sema/Lookup.h"
30 #include "clang/Sema/Scope.h"
31 #include "llvm/ADT/StringExtras.h"
32 using namespace clang;
33 using namespace sema;
34 
35 namespace AttributeLangSupport {
36   enum LANG {
37     C,
38     Cpp,
39     ObjC
40   };
41 }
42 
43 //===----------------------------------------------------------------------===//
44 //  Helper functions
45 //===----------------------------------------------------------------------===//
46 
47 /// isFunctionOrMethod - Return true if the given decl has function
48 /// type (function or function-typed variable) or an Objective-C
49 /// method.
50 static bool isFunctionOrMethod(const Decl *D) {
51   return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D);
52 }
53 
54 /// Return true if the given decl has a declarator that should have
55 /// been processed by Sema::GetTypeForDeclarator.
56 static bool hasDeclarator(const Decl *D) {
57   // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
58   return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
59          isa<ObjCPropertyDecl>(D);
60 }
61 
62 /// hasFunctionProto - Return true if the given decl has a argument
63 /// information. This decl should have already passed
64 /// isFunctionOrMethod or isFunctionOrMethodOrBlock.
65 static bool hasFunctionProto(const Decl *D) {
66   if (const FunctionType *FnTy = D->getFunctionType())
67     return isa<FunctionProtoType>(FnTy);
68   return isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D);
69 }
70 
71 /// getFunctionOrMethodNumParams - Return number of function or method
72 /// parameters. It is an error to call this on a K&R function (use
73 /// hasFunctionProto first).
74 static unsigned getFunctionOrMethodNumParams(const Decl *D) {
75   if (const FunctionType *FnTy = D->getFunctionType())
76     return cast<FunctionProtoType>(FnTy)->getNumParams();
77   if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
78     return BD->getNumParams();
79   return cast<ObjCMethodDecl>(D)->param_size();
80 }
81 
82 static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) {
83   if (const FunctionType *FnTy = D->getFunctionType())
84     return cast<FunctionProtoType>(FnTy)->getParamType(Idx);
85   if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
86     return BD->getParamDecl(Idx)->getType();
87 
88   return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
89 }
90 
91 static QualType getFunctionOrMethodResultType(const Decl *D) {
92   if (const FunctionType *FnTy = D->getFunctionType())
93     return cast<FunctionProtoType>(FnTy)->getReturnType();
94   return cast<ObjCMethodDecl>(D)->getReturnType();
95 }
96 
97 static bool isFunctionOrMethodVariadic(const Decl *D) {
98   if (const FunctionType *FnTy = D->getFunctionType()) {
99     const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
100     return proto->isVariadic();
101   } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
102     return BD->isVariadic();
103   else {
104     return cast<ObjCMethodDecl>(D)->isVariadic();
105   }
106 }
107 
108 static bool isInstanceMethod(const Decl *D) {
109   if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
110     return MethodDecl->isInstance();
111   return false;
112 }
113 
114 static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
115   const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
116   if (!PT)
117     return false;
118 
119   ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
120   if (!Cls)
121     return false;
122 
123   IdentifierInfo* ClsName = Cls->getIdentifier();
124 
125   // FIXME: Should we walk the chain of classes?
126   return ClsName == &Ctx.Idents.get("NSString") ||
127          ClsName == &Ctx.Idents.get("NSMutableString");
128 }
129 
130 static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
131   const PointerType *PT = T->getAs<PointerType>();
132   if (!PT)
133     return false;
134 
135   const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
136   if (!RT)
137     return false;
138 
139   const RecordDecl *RD = RT->getDecl();
140   if (RD->getTagKind() != TTK_Struct)
141     return false;
142 
143   return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
144 }
145 
146 static unsigned getNumAttributeArgs(const AttributeList &Attr) {
147   // FIXME: Include the type in the argument list.
148   return Attr.getNumArgs() + Attr.hasParsedType();
149 }
150 
151 /// \brief Check if the attribute has exactly as many args as Num. May
152 /// output an error.
153 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
154                                   unsigned Num) {
155   if (getNumAttributeArgs(Attr) != Num) {
156     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
157       << Attr.getName() << Num;
158     return false;
159   }
160 
161   return true;
162 }
163 
164 /// \brief Check if the attribute has at least as many args as Num. May
165 /// output an error.
166 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
167                                          unsigned Num) {
168   if (getNumAttributeArgs(Attr) < Num) {
169     S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments)
170       << Attr.getName() << Num;
171     return false;
172   }
173 
174   return true;
175 }
176 
177 /// \brief If Expr is a valid integer constant, get the value of the integer
178 /// expression and return success or failure. May output an error.
179 static bool checkUInt32Argument(Sema &S, const AttributeList &Attr,
180                                 const Expr *Expr, uint32_t &Val,
181                                 unsigned Idx = UINT_MAX) {
182   llvm::APSInt I(32);
183   if (Expr->isTypeDependent() || Expr->isValueDependent() ||
184       !Expr->isIntegerConstantExpr(I, S.Context)) {
185     if (Idx != UINT_MAX)
186       S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
187         << Attr.getName() << Idx << AANT_ArgumentIntegerConstant
188         << Expr->getSourceRange();
189     else
190       S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
191         << Attr.getName() << AANT_ArgumentIntegerConstant
192         << Expr->getSourceRange();
193     return false;
194   }
195   Val = (uint32_t)I.getZExtValue();
196   return true;
197 }
198 
199 /// \brief Diagnose mutually exclusive attributes when present on a given
200 /// declaration. Returns true if diagnosed.
201 template <typename AttrTy>
202 static bool checkAttrMutualExclusion(Sema &S, Decl *D,
203                                      const AttributeList &Attr) {
204   if (AttrTy *A = D->getAttr<AttrTy>()) {
205     S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
206       << Attr.getName() << A;
207     return true;
208   }
209   return false;
210 }
211 
212 /// \brief Check if IdxExpr is a valid parameter index for a function or
213 /// instance method D.  May output an error.
214 ///
215 /// \returns true if IdxExpr is a valid index.
216 static bool checkFunctionOrMethodParameterIndex(Sema &S, const Decl *D,
217                                                 const AttributeList &Attr,
218                                                 unsigned AttrArgNum,
219                                                 const Expr *IdxExpr,
220                                                 uint64_t &Idx) {
221   assert(isFunctionOrMethod(D));
222 
223   // In C++ the implicit 'this' function parameter also counts.
224   // Parameters are counted from one.
225   bool HP = hasFunctionProto(D);
226   bool HasImplicitThisParam = isInstanceMethod(D);
227   bool IV = HP && isFunctionOrMethodVariadic(D);
228   unsigned NumParams =
229       (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam;
230 
231   llvm::APSInt IdxInt;
232   if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
233       !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
234     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
235       << Attr.getName() << AttrArgNum << AANT_ArgumentIntegerConstant
236       << IdxExpr->getSourceRange();
237     return false;
238   }
239 
240   Idx = IdxInt.getLimitedValue();
241   if (Idx < 1 || (!IV && Idx > NumParams)) {
242     S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
243       << Attr.getName() << AttrArgNum << IdxExpr->getSourceRange();
244     return false;
245   }
246   Idx--; // Convert to zero-based.
247   if (HasImplicitThisParam) {
248     if (Idx == 0) {
249       S.Diag(Attr.getLoc(),
250              diag::err_attribute_invalid_implicit_this_argument)
251         << Attr.getName() << IdxExpr->getSourceRange();
252       return false;
253     }
254     --Idx;
255   }
256 
257   return true;
258 }
259 
260 /// \brief Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
261 /// If not emit an error and return false. If the argument is an identifier it
262 /// will emit an error with a fixit hint and treat it as if it was a string
263 /// literal.
264 bool Sema::checkStringLiteralArgumentAttr(const AttributeList &Attr,
265                                           unsigned ArgNum, StringRef &Str,
266                                           SourceLocation *ArgLocation) {
267   // Look for identifiers. If we have one emit a hint to fix it to a literal.
268   if (Attr.isArgIdent(ArgNum)) {
269     IdentifierLoc *Loc = Attr.getArgAsIdent(ArgNum);
270     Diag(Loc->Loc, diag::err_attribute_argument_type)
271         << Attr.getName() << AANT_ArgumentString
272         << FixItHint::CreateInsertion(Loc->Loc, "\"")
273         << FixItHint::CreateInsertion(PP.getLocForEndOfToken(Loc->Loc), "\"");
274     Str = Loc->Ident->getName();
275     if (ArgLocation)
276       *ArgLocation = Loc->Loc;
277     return true;
278   }
279 
280   // Now check for an actual string literal.
281   Expr *ArgExpr = Attr.getArgAsExpr(ArgNum);
282   StringLiteral *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
283   if (ArgLocation)
284     *ArgLocation = ArgExpr->getLocStart();
285 
286   if (!Literal || !Literal->isAscii()) {
287     Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
288         << Attr.getName() << AANT_ArgumentString;
289     return false;
290   }
291 
292   Str = Literal->getString();
293   return true;
294 }
295 
296 /// \brief Applies the given attribute to the Decl without performing any
297 /// additional semantic checking.
298 template <typename AttrType>
299 static void handleSimpleAttribute(Sema &S, Decl *D,
300                                   const AttributeList &Attr) {
301   D->addAttr(::new (S.Context) AttrType(Attr.getRange(), S.Context,
302                                         Attr.getAttributeSpellingListIndex()));
303 }
304 
305 /// \brief Check if the passed-in expression is of type int or bool.
306 static bool isIntOrBool(Expr *Exp) {
307   QualType QT = Exp->getType();
308   return QT->isBooleanType() || QT->isIntegerType();
309 }
310 
311 
312 // Check to see if the type is a smart pointer of some kind.  We assume
313 // it's a smart pointer if it defines both operator-> and operator*.
314 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
315   DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
316     S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
317   if (Res1.empty())
318     return false;
319 
320   DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
321     S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
322   if (Res2.empty())
323     return false;
324 
325   return true;
326 }
327 
328 /// \brief Check if passed in Decl is a pointer type.
329 /// Note that this function may produce an error message.
330 /// \return true if the Decl is a pointer type; false otherwise
331 static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
332                                        const AttributeList &Attr) {
333   const ValueDecl *vd = cast<ValueDecl>(D);
334   QualType QT = vd->getType();
335   if (QT->isAnyPointerType())
336     return true;
337 
338   if (const RecordType *RT = QT->getAs<RecordType>()) {
339     // If it's an incomplete type, it could be a smart pointer; skip it.
340     // (We don't want to force template instantiation if we can avoid it,
341     // since that would alter the order in which templates are instantiated.)
342     if (RT->isIncompleteType())
343       return true;
344 
345     if (threadSafetyCheckIsSmartPointer(S, RT))
346       return true;
347   }
348 
349   S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
350     << Attr.getName() << QT;
351   return false;
352 }
353 
354 /// \brief Checks that the passed in QualType either is of RecordType or points
355 /// to RecordType. Returns the relevant RecordType, null if it does not exit.
356 static const RecordType *getRecordType(QualType QT) {
357   if (const RecordType *RT = QT->getAs<RecordType>())
358     return RT;
359 
360   // Now check if we point to record type.
361   if (const PointerType *PT = QT->getAs<PointerType>())
362     return PT->getPointeeType()->getAs<RecordType>();
363 
364   return nullptr;
365 }
366 
367 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) {
368   const RecordType *RT = getRecordType(Ty);
369 
370   if (!RT)
371     return false;
372 
373   // Don't check for the capability if the class hasn't been defined yet.
374   if (RT->isIncompleteType())
375     return true;
376 
377   // Allow smart pointers to be used as capability objects.
378   // FIXME -- Check the type that the smart pointer points to.
379   if (threadSafetyCheckIsSmartPointer(S, RT))
380     return true;
381 
382   // Check if the record itself has a capability.
383   RecordDecl *RD = RT->getDecl();
384   if (RD->hasAttr<CapabilityAttr>())
385     return true;
386 
387   // Else check if any base classes have a capability.
388   if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
389     CXXBasePaths BPaths(false, false);
390     if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &P,
391       void *) {
392       return BS->getType()->getAs<RecordType>()
393         ->getDecl()->hasAttr<CapabilityAttr>();
394     }, nullptr, BPaths))
395       return true;
396   }
397   return false;
398 }
399 
400 static bool checkTypedefTypeForCapability(QualType Ty) {
401   const auto *TD = Ty->getAs<TypedefType>();
402   if (!TD)
403     return false;
404 
405   TypedefNameDecl *TN = TD->getDecl();
406   if (!TN)
407     return false;
408 
409   return TN->hasAttr<CapabilityAttr>();
410 }
411 
412 static bool typeHasCapability(Sema &S, QualType Ty) {
413   if (checkTypedefTypeForCapability(Ty))
414     return true;
415 
416   if (checkRecordTypeForCapability(S, Ty))
417     return true;
418 
419   return false;
420 }
421 
422 static bool isCapabilityExpr(Sema &S, const Expr *Ex) {
423   // Capability expressions are simple expressions involving the boolean logic
424   // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once
425   // a DeclRefExpr is found, its type should be checked to determine whether it
426   // is a capability or not.
427 
428   if (const auto *E = dyn_cast<DeclRefExpr>(Ex))
429     return typeHasCapability(S, E->getType());
430   else if (const auto *E = dyn_cast<CastExpr>(Ex))
431     return isCapabilityExpr(S, E->getSubExpr());
432   else if (const auto *E = dyn_cast<ParenExpr>(Ex))
433     return isCapabilityExpr(S, E->getSubExpr());
434   else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) {
435     if (E->getOpcode() == UO_LNot)
436       return isCapabilityExpr(S, E->getSubExpr());
437     return false;
438   } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) {
439     if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr)
440       return isCapabilityExpr(S, E->getLHS()) &&
441              isCapabilityExpr(S, E->getRHS());
442     return false;
443   }
444 
445   return false;
446 }
447 
448 /// \brief Checks that all attribute arguments, starting from Sidx, resolve to
449 /// a capability object.
450 /// \param Sidx The attribute argument index to start checking with.
451 /// \param ParamIdxOk Whether an argument can be indexing into a function
452 /// parameter list.
453 static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D,
454                                            const AttributeList &Attr,
455                                            SmallVectorImpl<Expr *> &Args,
456                                            int Sidx = 0,
457                                            bool ParamIdxOk = false) {
458   for (unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
459     Expr *ArgExp = Attr.getArgAsExpr(Idx);
460 
461     if (ArgExp->isTypeDependent()) {
462       // FIXME -- need to check this again on template instantiation
463       Args.push_back(ArgExp);
464       continue;
465     }
466 
467     if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
468       if (StrLit->getLength() == 0 ||
469           (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) {
470         // Pass empty strings to the analyzer without warnings.
471         // Treat "*" as the universal lock.
472         Args.push_back(ArgExp);
473         continue;
474       }
475 
476       // We allow constant strings to be used as a placeholder for expressions
477       // that are not valid C++ syntax, but warn that they are ignored.
478       S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
479         Attr.getName();
480       Args.push_back(ArgExp);
481       continue;
482     }
483 
484     QualType ArgTy = ArgExp->getType();
485 
486     // A pointer to member expression of the form  &MyClass::mu is treated
487     // specially -- we need to look at the type of the member.
488     if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
489       if (UOp->getOpcode() == UO_AddrOf)
490         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
491           if (DRE->getDecl()->isCXXInstanceMember())
492             ArgTy = DRE->getDecl()->getType();
493 
494     // First see if we can just cast to record type, or pointer to record type.
495     const RecordType *RT = getRecordType(ArgTy);
496 
497     // Now check if we index into a record type function param.
498     if(!RT && ParamIdxOk) {
499       FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
500       IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
501       if(FD && IL) {
502         unsigned int NumParams = FD->getNumParams();
503         llvm::APInt ArgValue = IL->getValue();
504         uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
505         uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
506         if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
507           S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
508             << Attr.getName() << Idx + 1 << NumParams;
509           continue;
510         }
511         ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
512       }
513     }
514 
515     // If the type does not have a capability, see if the components of the
516     // expression have capabilities. This allows for writing C code where the
517     // capability may be on the type, and the expression is a capability
518     // boolean logic expression. Eg) requires_capability(A || B && !C)
519     if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp))
520       S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
521           << Attr.getName() << ArgTy;
522 
523     Args.push_back(ArgExp);
524   }
525 }
526 
527 //===----------------------------------------------------------------------===//
528 // Attribute Implementations
529 //===----------------------------------------------------------------------===//
530 
531 // FIXME: All this manual attribute parsing code is gross. At the
532 // least add some helper functions to check most argument patterns (#
533 // and types of args).
534 
535 static void handlePtGuardedVarAttr(Sema &S, Decl *D,
536                                    const AttributeList &Attr) {
537   if (!threadSafetyCheckIsPointer(S, D, Attr))
538     return;
539 
540   D->addAttr(::new (S.Context)
541              PtGuardedVarAttr(Attr.getRange(), S.Context,
542                               Attr.getAttributeSpellingListIndex()));
543 }
544 
545 static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
546                                      const AttributeList &Attr,
547                                      Expr* &Arg) {
548   SmallVector<Expr*, 1> Args;
549   // check that all arguments are lockable objects
550   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
551   unsigned Size = Args.size();
552   if (Size != 1)
553     return false;
554 
555   Arg = Args[0];
556 
557   return true;
558 }
559 
560 static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
561   Expr *Arg = nullptr;
562   if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
563     return;
564 
565   D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg,
566                                         Attr.getAttributeSpellingListIndex()));
567 }
568 
569 static void handlePtGuardedByAttr(Sema &S, Decl *D,
570                                   const AttributeList &Attr) {
571   Expr *Arg = nullptr;
572   if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
573     return;
574 
575   if (!threadSafetyCheckIsPointer(S, D, Attr))
576     return;
577 
578   D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
579                                                S.Context, Arg,
580                                         Attr.getAttributeSpellingListIndex()));
581 }
582 
583 static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
584                                         const AttributeList &Attr,
585                                         SmallVectorImpl<Expr *> &Args) {
586   if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
587     return false;
588 
589   // Check that this attribute only applies to lockable types.
590   QualType QT = cast<ValueDecl>(D)->getType();
591   if (!QT->isDependentType()) {
592     const RecordType *RT = getRecordType(QT);
593     if (!RT || !RT->getDecl()->hasAttr<CapabilityAttr>()) {
594       S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
595         << Attr.getName();
596       return false;
597     }
598   }
599 
600   // Check that all arguments are lockable objects.
601   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
602   if (Args.empty())
603     return false;
604 
605   return true;
606 }
607 
608 static void handleAcquiredAfterAttr(Sema &S, Decl *D,
609                                     const AttributeList &Attr) {
610   SmallVector<Expr*, 1> Args;
611   if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
612     return;
613 
614   Expr **StartArg = &Args[0];
615   D->addAttr(::new (S.Context)
616              AcquiredAfterAttr(Attr.getRange(), S.Context,
617                                StartArg, Args.size(),
618                                Attr.getAttributeSpellingListIndex()));
619 }
620 
621 static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
622                                      const AttributeList &Attr) {
623   SmallVector<Expr*, 1> Args;
624   if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
625     return;
626 
627   Expr **StartArg = &Args[0];
628   D->addAttr(::new (S.Context)
629              AcquiredBeforeAttr(Attr.getRange(), S.Context,
630                                 StartArg, Args.size(),
631                                 Attr.getAttributeSpellingListIndex()));
632 }
633 
634 static bool checkLockFunAttrCommon(Sema &S, Decl *D,
635                                    const AttributeList &Attr,
636                                    SmallVectorImpl<Expr *> &Args) {
637   // zero or more arguments ok
638   // check that all arguments are lockable objects
639   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
640 
641   return true;
642 }
643 
644 static void handleAssertSharedLockAttr(Sema &S, Decl *D,
645                                        const AttributeList &Attr) {
646   SmallVector<Expr*, 1> Args;
647   if (!checkLockFunAttrCommon(S, D, Attr, Args))
648     return;
649 
650   unsigned Size = Args.size();
651   Expr **StartArg = Size == 0 ? nullptr : &Args[0];
652   D->addAttr(::new (S.Context)
653              AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
654                                   Attr.getAttributeSpellingListIndex()));
655 }
656 
657 static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
658                                           const AttributeList &Attr) {
659   SmallVector<Expr*, 1> Args;
660   if (!checkLockFunAttrCommon(S, D, Attr, Args))
661     return;
662 
663   unsigned Size = Args.size();
664   Expr **StartArg = Size == 0 ? nullptr : &Args[0];
665   D->addAttr(::new (S.Context)
666              AssertExclusiveLockAttr(Attr.getRange(), S.Context,
667                                      StartArg, Size,
668                                      Attr.getAttributeSpellingListIndex()));
669 }
670 
671 
672 static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
673                                       const AttributeList &Attr,
674                                       SmallVectorImpl<Expr *> &Args) {
675   if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
676     return false;
677 
678   if (!isIntOrBool(Attr.getArgAsExpr(0))) {
679     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
680       << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
681     return false;
682   }
683 
684   // check that all arguments are lockable objects
685   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 1);
686 
687   return true;
688 }
689 
690 static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
691                                             const AttributeList &Attr) {
692   SmallVector<Expr*, 2> Args;
693   if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
694     return;
695 
696   D->addAttr(::new (S.Context)
697              SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
698                                        Attr.getArgAsExpr(0),
699                                        Args.data(), Args.size(),
700                                        Attr.getAttributeSpellingListIndex()));
701 }
702 
703 static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
704                                                const AttributeList &Attr) {
705   SmallVector<Expr*, 2> Args;
706   if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
707     return;
708 
709   D->addAttr(::new (S.Context)
710              ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
711                                           Attr.getArgAsExpr(0),
712                                           Args.data(), Args.size(),
713                                           Attr.getAttributeSpellingListIndex()));
714 }
715 
716 static void handleLockReturnedAttr(Sema &S, Decl *D,
717                                    const AttributeList &Attr) {
718   // check that the argument is lockable object
719   SmallVector<Expr*, 1> Args;
720   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
721   unsigned Size = Args.size();
722   if (Size == 0)
723     return;
724 
725   D->addAttr(::new (S.Context)
726              LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
727                               Attr.getAttributeSpellingListIndex()));
728 }
729 
730 static void handleLocksExcludedAttr(Sema &S, Decl *D,
731                                     const AttributeList &Attr) {
732   if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
733     return;
734 
735   // check that all arguments are lockable objects
736   SmallVector<Expr*, 1> Args;
737   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
738   unsigned Size = Args.size();
739   if (Size == 0)
740     return;
741   Expr **StartArg = &Args[0];
742 
743   D->addAttr(::new (S.Context)
744              LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
745                                Attr.getAttributeSpellingListIndex()));
746 }
747 
748 static void handleEnableIfAttr(Sema &S, Decl *D, const AttributeList &Attr) {
749   Expr *Cond = Attr.getArgAsExpr(0);
750   if (!Cond->isTypeDependent()) {
751     ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
752     if (Converted.isInvalid())
753       return;
754     Cond = Converted.get();
755   }
756 
757   StringRef Msg;
758   if (!S.checkStringLiteralArgumentAttr(Attr, 1, Msg))
759     return;
760 
761   SmallVector<PartialDiagnosticAt, 8> Diags;
762   if (!Cond->isValueDependent() &&
763       !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D),
764                                                 Diags)) {
765     S.Diag(Attr.getLoc(), diag::err_enable_if_never_constant_expr);
766     for (int I = 0, N = Diags.size(); I != N; ++I)
767       S.Diag(Diags[I].first, Diags[I].second);
768     return;
769   }
770 
771   D->addAttr(::new (S.Context)
772              EnableIfAttr(Attr.getRange(), S.Context, Cond, Msg,
773                           Attr.getAttributeSpellingListIndex()));
774 }
775 
776 static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
777   ConsumableAttr::ConsumedState DefaultState;
778 
779   if (Attr.isArgIdent(0)) {
780     IdentifierLoc *IL = Attr.getArgAsIdent(0);
781     if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
782                                                    DefaultState)) {
783       S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
784         << Attr.getName() << IL->Ident;
785       return;
786     }
787   } else {
788     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
789         << Attr.getName() << AANT_ArgumentIdentifier;
790     return;
791   }
792 
793   D->addAttr(::new (S.Context)
794              ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
795                             Attr.getAttributeSpellingListIndex()));
796 }
797 
798 
799 static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
800                                         const AttributeList &Attr) {
801   ASTContext &CurrContext = S.getASTContext();
802   QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
803 
804   if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
805     if (!RD->hasAttr<ConsumableAttr>()) {
806       S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
807         RD->getNameAsString();
808 
809       return false;
810     }
811   }
812 
813   return true;
814 }
815 
816 
817 static void handleCallableWhenAttr(Sema &S, Decl *D,
818                                    const AttributeList &Attr) {
819   if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
820     return;
821 
822   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
823     return;
824 
825   SmallVector<CallableWhenAttr::ConsumedState, 3> States;
826   for (unsigned ArgIndex = 0; ArgIndex < Attr.getNumArgs(); ++ArgIndex) {
827     CallableWhenAttr::ConsumedState CallableState;
828 
829     StringRef StateString;
830     SourceLocation Loc;
831     if (!S.checkStringLiteralArgumentAttr(Attr, ArgIndex, StateString, &Loc))
832       return;
833 
834     if (!CallableWhenAttr::ConvertStrToConsumedState(StateString,
835                                                      CallableState)) {
836       S.Diag(Loc, diag::warn_attribute_type_not_supported)
837         << Attr.getName() << StateString;
838       return;
839     }
840 
841     States.push_back(CallableState);
842   }
843 
844   D->addAttr(::new (S.Context)
845              CallableWhenAttr(Attr.getRange(), S.Context, States.data(),
846                States.size(), Attr.getAttributeSpellingListIndex()));
847 }
848 
849 
850 static void handleParamTypestateAttr(Sema &S, Decl *D,
851                                     const AttributeList &Attr) {
852   if (!checkAttributeNumArgs(S, Attr, 1)) return;
853 
854   ParamTypestateAttr::ConsumedState ParamState;
855 
856   if (Attr.isArgIdent(0)) {
857     IdentifierLoc *Ident = Attr.getArgAsIdent(0);
858     StringRef StateString = Ident->Ident->getName();
859 
860     if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString,
861                                                        ParamState)) {
862       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
863         << Attr.getName() << StateString;
864       return;
865     }
866   } else {
867     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
868       Attr.getName() << AANT_ArgumentIdentifier;
869     return;
870   }
871 
872   // FIXME: This check is currently being done in the analysis.  It can be
873   //        enabled here only after the parser propagates attributes at
874   //        template specialization definition, not declaration.
875   //QualType ReturnType = cast<ParmVarDecl>(D)->getType();
876   //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
877   //
878   //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
879   //    S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
880   //      ReturnType.getAsString();
881   //    return;
882   //}
883 
884   D->addAttr(::new (S.Context)
885              ParamTypestateAttr(Attr.getRange(), S.Context, ParamState,
886                                 Attr.getAttributeSpellingListIndex()));
887 }
888 
889 
890 static void handleReturnTypestateAttr(Sema &S, Decl *D,
891                                       const AttributeList &Attr) {
892   if (!checkAttributeNumArgs(S, Attr, 1)) return;
893 
894   ReturnTypestateAttr::ConsumedState ReturnState;
895 
896   if (Attr.isArgIdent(0)) {
897     IdentifierLoc *IL = Attr.getArgAsIdent(0);
898     if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
899                                                         ReturnState)) {
900       S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
901         << Attr.getName() << IL->Ident;
902       return;
903     }
904   } else {
905     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
906       Attr.getName() << AANT_ArgumentIdentifier;
907     return;
908   }
909 
910   // FIXME: This check is currently being done in the analysis.  It can be
911   //        enabled here only after the parser propagates attributes at
912   //        template specialization definition, not declaration.
913   //QualType ReturnType;
914   //
915   //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) {
916   //  ReturnType = Param->getType();
917   //
918   //} else if (const CXXConstructorDecl *Constructor =
919   //             dyn_cast<CXXConstructorDecl>(D)) {
920   //  ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
921   //
922   //} else {
923   //
924   //  ReturnType = cast<FunctionDecl>(D)->getCallResultType();
925   //}
926   //
927   //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
928   //
929   //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
930   //    S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
931   //      ReturnType.getAsString();
932   //    return;
933   //}
934 
935   D->addAttr(::new (S.Context)
936              ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
937                                  Attr.getAttributeSpellingListIndex()));
938 }
939 
940 
941 static void handleSetTypestateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
942   if (!checkAttributeNumArgs(S, Attr, 1))
943     return;
944 
945   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
946     return;
947 
948   SetTypestateAttr::ConsumedState NewState;
949   if (Attr.isArgIdent(0)) {
950     IdentifierLoc *Ident = Attr.getArgAsIdent(0);
951     StringRef Param = Ident->Ident->getName();
952     if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) {
953       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
954         << Attr.getName() << Param;
955       return;
956     }
957   } else {
958     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
959       Attr.getName() << AANT_ArgumentIdentifier;
960     return;
961   }
962 
963   D->addAttr(::new (S.Context)
964              SetTypestateAttr(Attr.getRange(), S.Context, NewState,
965                               Attr.getAttributeSpellingListIndex()));
966 }
967 
968 static void handleTestTypestateAttr(Sema &S, Decl *D,
969                                     const AttributeList &Attr) {
970   if (!checkAttributeNumArgs(S, Attr, 1))
971     return;
972 
973   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
974     return;
975 
976   TestTypestateAttr::ConsumedState TestState;
977   if (Attr.isArgIdent(0)) {
978     IdentifierLoc *Ident = Attr.getArgAsIdent(0);
979     StringRef Param = Ident->Ident->getName();
980     if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) {
981       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
982         << Attr.getName() << Param;
983       return;
984     }
985   } else {
986     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
987       Attr.getName() << AANT_ArgumentIdentifier;
988     return;
989   }
990 
991   D->addAttr(::new (S.Context)
992              TestTypestateAttr(Attr.getRange(), S.Context, TestState,
993                                 Attr.getAttributeSpellingListIndex()));
994 }
995 
996 static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
997                                     const AttributeList &Attr) {
998   // Remember this typedef decl, we will need it later for diagnostics.
999   S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D));
1000 }
1001 
1002 static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1003   if (TagDecl *TD = dyn_cast<TagDecl>(D))
1004     TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context,
1005                                         Attr.getAttributeSpellingListIndex()));
1006   else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
1007     // If the alignment is less than or equal to 8 bits, the packed attribute
1008     // has no effect.
1009     if (!FD->getType()->isDependentType() &&
1010         !FD->getType()->isIncompleteType() &&
1011         S.Context.getTypeAlign(FD->getType()) <= 8)
1012       S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
1013         << Attr.getName() << FD->getType();
1014     else
1015       FD->addAttr(::new (S.Context)
1016                   PackedAttr(Attr.getRange(), S.Context,
1017                              Attr.getAttributeSpellingListIndex()));
1018   } else
1019     S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1020 }
1021 
1022 static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1023   // The IBOutlet/IBOutletCollection attributes only apply to instance
1024   // variables or properties of Objective-C classes.  The outlet must also
1025   // have an object reference type.
1026   if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1027     if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
1028       S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
1029         << Attr.getName() << VD->getType() << 0;
1030       return false;
1031     }
1032   }
1033   else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1034     if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
1035       S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
1036         << Attr.getName() << PD->getType() << 1;
1037       return false;
1038     }
1039   }
1040   else {
1041     S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1042     return false;
1043   }
1044 
1045   return true;
1046 }
1047 
1048 static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
1049   if (!checkIBOutletCommon(S, D, Attr))
1050     return;
1051 
1052   D->addAttr(::new (S.Context)
1053              IBOutletAttr(Attr.getRange(), S.Context,
1054                           Attr.getAttributeSpellingListIndex()));
1055 }
1056 
1057 static void handleIBOutletCollection(Sema &S, Decl *D,
1058                                      const AttributeList &Attr) {
1059 
1060   // The iboutletcollection attribute can have zero or one arguments.
1061   if (Attr.getNumArgs() > 1) {
1062     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1063       << Attr.getName() << 1;
1064     return;
1065   }
1066 
1067   if (!checkIBOutletCommon(S, D, Attr))
1068     return;
1069 
1070   ParsedType PT;
1071 
1072   if (Attr.hasParsedType())
1073     PT = Attr.getTypeArg();
1074   else {
1075     PT = S.getTypeName(S.Context.Idents.get("NSObject"), Attr.getLoc(),
1076                        S.getScopeForContext(D->getDeclContext()->getParent()));
1077     if (!PT) {
1078       S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << "NSObject";
1079       return;
1080     }
1081   }
1082 
1083   TypeSourceInfo *QTLoc = nullptr;
1084   QualType QT = S.GetTypeFromParser(PT, &QTLoc);
1085   if (!QTLoc)
1086     QTLoc = S.Context.getTrivialTypeSourceInfo(QT, Attr.getLoc());
1087 
1088   // Diagnose use of non-object type in iboutletcollection attribute.
1089   // FIXME. Gnu attribute extension ignores use of builtin types in
1090   // attributes. So, __attribute__((iboutletcollection(char))) will be
1091   // treated as __attribute__((iboutletcollection())).
1092   if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
1093     S.Diag(Attr.getLoc(),
1094            QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype
1095                                : diag::err_iboutletcollection_type) << QT;
1096     return;
1097   }
1098 
1099   D->addAttr(::new (S.Context)
1100              IBOutletCollectionAttr(Attr.getRange(), S.Context, QTLoc,
1101                                     Attr.getAttributeSpellingListIndex()));
1102 }
1103 
1104 static void possibleTransparentUnionPointerType(QualType &T) {
1105   if (const RecordType *UT = T->getAsUnionType())
1106     if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1107       RecordDecl *UD = UT->getDecl();
1108       for (const auto *I : UD->fields()) {
1109         QualType QT = I->getType();
1110         if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1111           T = QT;
1112           return;
1113         }
1114       }
1115     }
1116 }
1117 
1118 static bool attrNonNullArgCheck(Sema &S, QualType T, const AttributeList &Attr,
1119                                 SourceRange R, bool isReturnValue = false) {
1120   T = T.getNonReferenceType();
1121   possibleTransparentUnionPointerType(T);
1122 
1123   if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1124     S.Diag(Attr.getLoc(),
1125            isReturnValue ? diag::warn_attribute_return_pointers_only
1126                          : diag::warn_attribute_pointers_only)
1127       << Attr.getName() << R;
1128     return false;
1129   }
1130   return true;
1131 }
1132 
1133 static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1134   SmallVector<unsigned, 8> NonNullArgs;
1135   for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
1136     Expr *Ex = Attr.getArgAsExpr(i);
1137     uint64_t Idx;
1138     if (!checkFunctionOrMethodParameterIndex(S, D, Attr, i + 1, Ex, Idx))
1139       return;
1140 
1141     // Is the function argument a pointer type?
1142     // FIXME: Should also highlight argument in decl in the diagnostic.
1143     if (!attrNonNullArgCheck(S, getFunctionOrMethodParamType(D, Idx), Attr,
1144                              Ex->getSourceRange()))
1145       continue;
1146 
1147     NonNullArgs.push_back(Idx);
1148   }
1149 
1150   // If no arguments were specified to __attribute__((nonnull)) then all pointer
1151   // arguments have a nonnull attribute.
1152   if (NonNullArgs.empty()) {
1153     for (unsigned i = 0, e = getFunctionOrMethodNumParams(D); i != e; ++i) {
1154       QualType T = getFunctionOrMethodParamType(D, i).getNonReferenceType();
1155       possibleTransparentUnionPointerType(T);
1156       if (T->isAnyPointerType() || T->isBlockPointerType())
1157         NonNullArgs.push_back(i);
1158     }
1159 
1160     // No pointer arguments?
1161     if (NonNullArgs.empty()) {
1162       // Warn the trivial case only if attribute is not coming from a
1163       // macro instantiation.
1164       if (Attr.getLoc().isFileID())
1165         S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
1166       return;
1167     }
1168   }
1169 
1170   unsigned *start = &NonNullArgs[0];
1171   unsigned size = NonNullArgs.size();
1172   llvm::array_pod_sort(start, start + size);
1173   D->addAttr(::new (S.Context)
1174              NonNullAttr(Attr.getRange(), S.Context, start, size,
1175                          Attr.getAttributeSpellingListIndex()));
1176 }
1177 
1178 static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D,
1179                                        const AttributeList &Attr) {
1180   if (Attr.getNumArgs() > 0) {
1181     if (D->getFunctionType()) {
1182       handleNonNullAttr(S, D, Attr);
1183     } else {
1184       S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_parm_no_args)
1185         << D->getSourceRange();
1186     }
1187     return;
1188   }
1189 
1190   // Is the argument a pointer type?
1191   if (!attrNonNullArgCheck(S, D->getType(), Attr, D->getSourceRange()))
1192     return;
1193 
1194   D->addAttr(::new (S.Context)
1195              NonNullAttr(Attr.getRange(), S.Context, nullptr, 0,
1196                          Attr.getAttributeSpellingListIndex()));
1197 }
1198 
1199 static void handleReturnsNonNullAttr(Sema &S, Decl *D,
1200                                      const AttributeList &Attr) {
1201   QualType ResultType = getFunctionOrMethodResultType(D);
1202   if (!attrNonNullArgCheck(S, ResultType, Attr, Attr.getRange(),
1203                            /* isReturnValue */ true))
1204     return;
1205 
1206   D->addAttr(::new (S.Context)
1207             ReturnsNonNullAttr(Attr.getRange(), S.Context,
1208                                Attr.getAttributeSpellingListIndex()));
1209 }
1210 
1211 static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
1212   // This attribute must be applied to a function declaration. The first
1213   // argument to the attribute must be an identifier, the name of the resource,
1214   // for example: malloc. The following arguments must be argument indexes, the
1215   // arguments must be of integer type for Returns, otherwise of pointer type.
1216   // The difference between Holds and Takes is that a pointer may still be used
1217   // after being held. free() should be __attribute((ownership_takes)), whereas
1218   // a list append function may well be __attribute((ownership_holds)).
1219 
1220   if (!AL.isArgIdent(0)) {
1221     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
1222       << AL.getName() << 1 << AANT_ArgumentIdentifier;
1223     return;
1224   }
1225 
1226   // Figure out our Kind.
1227   OwnershipAttr::OwnershipKind K =
1228       OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0,
1229                     AL.getAttributeSpellingListIndex()).getOwnKind();
1230 
1231   // Check arguments.
1232   switch (K) {
1233   case OwnershipAttr::Takes:
1234   case OwnershipAttr::Holds:
1235     if (AL.getNumArgs() < 2) {
1236       S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments)
1237         << AL.getName() << 2;
1238       return;
1239     }
1240     break;
1241   case OwnershipAttr::Returns:
1242     if (AL.getNumArgs() > 2) {
1243       S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments)
1244         << AL.getName() << 1;
1245       return;
1246     }
1247     break;
1248   }
1249 
1250   IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident;
1251 
1252   // Normalize the argument, __foo__ becomes foo.
1253   StringRef ModuleName = Module->getName();
1254   if (ModuleName.startswith("__") && ModuleName.endswith("__") &&
1255       ModuleName.size() > 4) {
1256     ModuleName = ModuleName.drop_front(2).drop_back(2);
1257     Module = &S.PP.getIdentifierTable().get(ModuleName);
1258   }
1259 
1260   SmallVector<unsigned, 8> OwnershipArgs;
1261   for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1262     Expr *Ex = AL.getArgAsExpr(i);
1263     uint64_t Idx;
1264     if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx))
1265       return;
1266 
1267     // Is the function argument a pointer type?
1268     QualType T = getFunctionOrMethodParamType(D, Idx);
1269     int Err = -1;  // No error
1270     switch (K) {
1271       case OwnershipAttr::Takes:
1272       case OwnershipAttr::Holds:
1273         if (!T->isAnyPointerType() && !T->isBlockPointerType())
1274           Err = 0;
1275         break;
1276       case OwnershipAttr::Returns:
1277         if (!T->isIntegerType())
1278           Err = 1;
1279         break;
1280     }
1281     if (-1 != Err) {
1282       S.Diag(AL.getLoc(), diag::err_ownership_type) << AL.getName() << Err
1283         << Ex->getSourceRange();
1284       return;
1285     }
1286 
1287     // Check we don't have a conflict with another ownership attribute.
1288     for (const auto *I : D->specific_attrs<OwnershipAttr>()) {
1289       // FIXME: A returns attribute should conflict with any returns attribute
1290       // with a different index too.
1291       if (I->getOwnKind() != K && I->args_end() !=
1292           std::find(I->args_begin(), I->args_end(), Idx)) {
1293         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1294           << AL.getName() << I;
1295         return;
1296       }
1297     }
1298     OwnershipArgs.push_back(Idx);
1299   }
1300 
1301   unsigned* start = OwnershipArgs.data();
1302   unsigned size = OwnershipArgs.size();
1303   llvm::array_pod_sort(start, start + size);
1304 
1305   D->addAttr(::new (S.Context)
1306              OwnershipAttr(AL.getLoc(), S.Context, Module, start, size,
1307                            AL.getAttributeSpellingListIndex()));
1308 }
1309 
1310 static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1311   // Check the attribute arguments.
1312   if (Attr.getNumArgs() > 1) {
1313     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1314       << Attr.getName() << 1;
1315     return;
1316   }
1317 
1318   NamedDecl *nd = cast<NamedDecl>(D);
1319 
1320   // gcc rejects
1321   // class c {
1322   //   static int a __attribute__((weakref ("v2")));
1323   //   static int b() __attribute__((weakref ("f3")));
1324   // };
1325   // and ignores the attributes of
1326   // void f(void) {
1327   //   static int a __attribute__((weakref ("v2")));
1328   // }
1329   // we reject them
1330   const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
1331   if (!Ctx->isFileContext()) {
1332     S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context)
1333       << nd;
1334     return;
1335   }
1336 
1337   // The GCC manual says
1338   //
1339   // At present, a declaration to which `weakref' is attached can only
1340   // be `static'.
1341   //
1342   // It also says
1343   //
1344   // Without a TARGET,
1345   // given as an argument to `weakref' or to `alias', `weakref' is
1346   // equivalent to `weak'.
1347   //
1348   // gcc 4.4.1 will accept
1349   // int a7 __attribute__((weakref));
1350   // as
1351   // int a7 __attribute__((weak));
1352   // This looks like a bug in gcc. We reject that for now. We should revisit
1353   // it if this behaviour is actually used.
1354 
1355   // GCC rejects
1356   // static ((alias ("y"), weakref)).
1357   // Should we? How to check that weakref is before or after alias?
1358 
1359   // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1360   // of transforming it into an AliasAttr.  The WeakRefAttr never uses the
1361   // StringRef parameter it was given anyway.
1362   StringRef Str;
1363   if (Attr.getNumArgs() && S.checkStringLiteralArgumentAttr(Attr, 0, Str))
1364     // GCC will accept anything as the argument of weakref. Should we
1365     // check for an existing decl?
1366     D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
1367                                         Attr.getAttributeSpellingListIndex()));
1368 
1369   D->addAttr(::new (S.Context)
1370              WeakRefAttr(Attr.getRange(), S.Context,
1371                          Attr.getAttributeSpellingListIndex()));
1372 }
1373 
1374 static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1375   StringRef Str;
1376   if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str))
1377     return;
1378 
1379   if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
1380     S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1381     return;
1382   }
1383 
1384   // FIXME: check if target symbol exists in current file
1385 
1386   D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
1387                                          Attr.getAttributeSpellingListIndex()));
1388 }
1389 
1390 static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1391   if (checkAttrMutualExclusion<HotAttr>(S, D, Attr))
1392     return;
1393 
1394   D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1395                                         Attr.getAttributeSpellingListIndex()));
1396 }
1397 
1398 static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1399   if (checkAttrMutualExclusion<ColdAttr>(S, D, Attr))
1400     return;
1401 
1402   D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1403                                        Attr.getAttributeSpellingListIndex()));
1404 }
1405 
1406 static void handleTLSModelAttr(Sema &S, Decl *D,
1407                                const AttributeList &Attr) {
1408   StringRef Model;
1409   SourceLocation LiteralLoc;
1410   // Check that it is a string.
1411   if (!S.checkStringLiteralArgumentAttr(Attr, 0, Model, &LiteralLoc))
1412     return;
1413 
1414   // Check that the value.
1415   if (Model != "global-dynamic" && Model != "local-dynamic"
1416       && Model != "initial-exec" && Model != "local-exec") {
1417     S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
1418     return;
1419   }
1420 
1421   D->addAttr(::new (S.Context)
1422              TLSModelAttr(Attr.getRange(), S.Context, Model,
1423                           Attr.getAttributeSpellingListIndex()));
1424 }
1425 
1426 static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1427   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1428     QualType RetTy = FD->getReturnType();
1429     if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
1430       D->addAttr(::new (S.Context)
1431                  MallocAttr(Attr.getRange(), S.Context,
1432                             Attr.getAttributeSpellingListIndex()));
1433       return;
1434     }
1435   }
1436 
1437   S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
1438 }
1439 
1440 static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1441   if (S.LangOpts.CPlusPlus) {
1442     S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
1443       << Attr.getName() << AttributeLangSupport::Cpp;
1444     return;
1445   }
1446 
1447   D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context,
1448                                         Attr.getAttributeSpellingListIndex()));
1449 }
1450 
1451 static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
1452   if (hasDeclarator(D)) return;
1453 
1454   if (S.CheckNoReturnAttr(attr)) return;
1455 
1456   if (!isa<ObjCMethodDecl>(D)) {
1457     S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1458       << attr.getName() << ExpectedFunctionOrMethod;
1459     return;
1460   }
1461 
1462   D->addAttr(::new (S.Context)
1463              NoReturnAttr(attr.getRange(), S.Context,
1464                           attr.getAttributeSpellingListIndex()));
1465 }
1466 
1467 bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
1468   if (!checkAttributeNumArgs(*this, attr, 0)) {
1469     attr.setInvalid();
1470     return true;
1471   }
1472 
1473   return false;
1474 }
1475 
1476 static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1477                                        const AttributeList &Attr) {
1478 
1479   // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1480   // because 'analyzer_noreturn' does not impact the type.
1481   if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1482     ValueDecl *VD = dyn_cast<ValueDecl>(D);
1483     if (!VD || (!VD->getType()->isBlockPointerType() &&
1484                 !VD->getType()->isFunctionPointerType())) {
1485       S.Diag(Attr.getLoc(),
1486              Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
1487              : diag::warn_attribute_wrong_decl_type)
1488         << Attr.getName() << ExpectedFunctionMethodOrBlock;
1489       return;
1490     }
1491   }
1492 
1493   D->addAttr(::new (S.Context)
1494              AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1495                                   Attr.getAttributeSpellingListIndex()));
1496 }
1497 
1498 // PS3 PPU-specific.
1499 static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1500 /*
1501   Returning a Vector Class in Registers
1502 
1503   According to the PPU ABI specifications, a class with a single member of
1504   vector type is returned in memory when used as the return value of a function.
1505   This results in inefficient code when implementing vector classes. To return
1506   the value in a single vector register, add the vecreturn attribute to the
1507   class definition. This attribute is also applicable to struct types.
1508 
1509   Example:
1510 
1511   struct Vector
1512   {
1513     __vector float xyzw;
1514   } __attribute__((vecreturn));
1515 
1516   Vector Add(Vector lhs, Vector rhs)
1517   {
1518     Vector result;
1519     result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1520     return result; // This will be returned in a register
1521   }
1522 */
1523   if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) {
1524     S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << A;
1525     return;
1526   }
1527 
1528   RecordDecl *record = cast<RecordDecl>(D);
1529   int count = 0;
1530 
1531   if (!isa<CXXRecordDecl>(record)) {
1532     S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1533     return;
1534   }
1535 
1536   if (!cast<CXXRecordDecl>(record)->isPOD()) {
1537     S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1538     return;
1539   }
1540 
1541   for (const auto *I : record->fields()) {
1542     if ((count == 1) || !I->getType()->isVectorType()) {
1543       S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1544       return;
1545     }
1546     count++;
1547   }
1548 
1549   D->addAttr(::new (S.Context)
1550              VecReturnAttr(Attr.getRange(), S.Context,
1551                            Attr.getAttributeSpellingListIndex()));
1552 }
1553 
1554 static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1555                                  const AttributeList &Attr) {
1556   if (isa<ParmVarDecl>(D)) {
1557     // [[carries_dependency]] can only be applied to a parameter if it is a
1558     // parameter of a function declaration or lambda.
1559     if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1560       S.Diag(Attr.getLoc(),
1561              diag::err_carries_dependency_param_not_function_decl);
1562       return;
1563     }
1564   }
1565 
1566   D->addAttr(::new (S.Context) CarriesDependencyAttr(
1567                                    Attr.getRange(), S.Context,
1568                                    Attr.getAttributeSpellingListIndex()));
1569 }
1570 
1571 static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1572   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1573     if (VD->hasLocalStorage()) {
1574       S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1575       return;
1576     }
1577   } else if (!isFunctionOrMethod(D)) {
1578     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1579       << Attr.getName() << ExpectedVariableOrFunction;
1580     return;
1581   }
1582 
1583   D->addAttr(::new (S.Context)
1584              UsedAttr(Attr.getRange(), S.Context,
1585                       Attr.getAttributeSpellingListIndex()));
1586 }
1587 
1588 static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1589   // check the attribute arguments.
1590   if (Attr.getNumArgs() > 1) {
1591     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
1592       << Attr.getName() << 1;
1593     return;
1594   }
1595 
1596   uint32_t priority = ConstructorAttr::DefaultPriority;
1597   if (Attr.getNumArgs() > 0 &&
1598       !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority))
1599     return;
1600 
1601   D->addAttr(::new (S.Context)
1602              ConstructorAttr(Attr.getRange(), S.Context, priority,
1603                              Attr.getAttributeSpellingListIndex()));
1604 }
1605 
1606 static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1607   // check the attribute arguments.
1608   if (Attr.getNumArgs() > 1) {
1609     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
1610       << Attr.getName() << 1;
1611     return;
1612   }
1613 
1614   uint32_t priority = DestructorAttr::DefaultPriority;
1615   if (Attr.getNumArgs() > 0 &&
1616       !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority))
1617     return;
1618 
1619   D->addAttr(::new (S.Context)
1620              DestructorAttr(Attr.getRange(), S.Context, priority,
1621                             Attr.getAttributeSpellingListIndex()));
1622 }
1623 
1624 template <typename AttrTy>
1625 static void handleAttrWithMessage(Sema &S, Decl *D,
1626                                   const AttributeList &Attr) {
1627   unsigned NumArgs = Attr.getNumArgs();
1628   if (NumArgs > 1) {
1629     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
1630       << Attr.getName() << 1;
1631     return;
1632   }
1633 
1634   // Handle the case where the attribute has a text message.
1635   StringRef Str;
1636   if (NumArgs == 1 && !S.checkStringLiteralArgumentAttr(Attr, 0, Str))
1637     return;
1638 
1639   D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
1640                                       Attr.getAttributeSpellingListIndex()));
1641 }
1642 
1643 static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D,
1644                                           const AttributeList &Attr) {
1645   if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) {
1646     S.Diag(Attr.getLoc(), diag::err_objc_attr_protocol_requires_definition)
1647       << Attr.getName() << Attr.getRange();
1648     return;
1649   }
1650 
1651   D->addAttr(::new (S.Context)
1652           ObjCExplicitProtocolImplAttr(Attr.getRange(), S.Context,
1653                                        Attr.getAttributeSpellingListIndex()));
1654 }
1655 
1656 static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
1657                                   IdentifierInfo *Platform,
1658                                   VersionTuple Introduced,
1659                                   VersionTuple Deprecated,
1660                                   VersionTuple Obsoleted) {
1661   StringRef PlatformName
1662     = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1663   if (PlatformName.empty())
1664     PlatformName = Platform->getName();
1665 
1666   // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
1667   // of these steps are needed).
1668   if (!Introduced.empty() && !Deprecated.empty() &&
1669       !(Introduced <= Deprecated)) {
1670     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1671       << 1 << PlatformName << Deprecated.getAsString()
1672       << 0 << Introduced.getAsString();
1673     return true;
1674   }
1675 
1676   if (!Introduced.empty() && !Obsoleted.empty() &&
1677       !(Introduced <= Obsoleted)) {
1678     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1679       << 2 << PlatformName << Obsoleted.getAsString()
1680       << 0 << Introduced.getAsString();
1681     return true;
1682   }
1683 
1684   if (!Deprecated.empty() && !Obsoleted.empty() &&
1685       !(Deprecated <= Obsoleted)) {
1686     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1687       << 2 << PlatformName << Obsoleted.getAsString()
1688       << 1 << Deprecated.getAsString();
1689     return true;
1690   }
1691 
1692   return false;
1693 }
1694 
1695 /// \brief Check whether the two versions match.
1696 ///
1697 /// If either version tuple is empty, then they are assumed to match. If
1698 /// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
1699 static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
1700                           bool BeforeIsOkay) {
1701   if (X.empty() || Y.empty())
1702     return true;
1703 
1704   if (X == Y)
1705     return true;
1706 
1707   if (BeforeIsOkay && X < Y)
1708     return true;
1709 
1710   return false;
1711 }
1712 
1713 AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
1714                                               IdentifierInfo *Platform,
1715                                               VersionTuple Introduced,
1716                                               VersionTuple Deprecated,
1717                                               VersionTuple Obsoleted,
1718                                               bool IsUnavailable,
1719                                               StringRef Message,
1720                                               bool Override,
1721                                               unsigned AttrSpellingListIndex) {
1722   VersionTuple MergedIntroduced = Introduced;
1723   VersionTuple MergedDeprecated = Deprecated;
1724   VersionTuple MergedObsoleted = Obsoleted;
1725   bool FoundAny = false;
1726 
1727   if (D->hasAttrs()) {
1728     AttrVec &Attrs = D->getAttrs();
1729     for (unsigned i = 0, e = Attrs.size(); i != e;) {
1730       const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
1731       if (!OldAA) {
1732         ++i;
1733         continue;
1734       }
1735 
1736       IdentifierInfo *OldPlatform = OldAA->getPlatform();
1737       if (OldPlatform != Platform) {
1738         ++i;
1739         continue;
1740       }
1741 
1742       FoundAny = true;
1743       VersionTuple OldIntroduced = OldAA->getIntroduced();
1744       VersionTuple OldDeprecated = OldAA->getDeprecated();
1745       VersionTuple OldObsoleted = OldAA->getObsoleted();
1746       bool OldIsUnavailable = OldAA->getUnavailable();
1747 
1748       if (!versionsMatch(OldIntroduced, Introduced, Override) ||
1749           !versionsMatch(Deprecated, OldDeprecated, Override) ||
1750           !versionsMatch(Obsoleted, OldObsoleted, Override) ||
1751           !(OldIsUnavailable == IsUnavailable ||
1752             (Override && !OldIsUnavailable && IsUnavailable))) {
1753         if (Override) {
1754           int Which = -1;
1755           VersionTuple FirstVersion;
1756           VersionTuple SecondVersion;
1757           if (!versionsMatch(OldIntroduced, Introduced, Override)) {
1758             Which = 0;
1759             FirstVersion = OldIntroduced;
1760             SecondVersion = Introduced;
1761           } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
1762             Which = 1;
1763             FirstVersion = Deprecated;
1764             SecondVersion = OldDeprecated;
1765           } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
1766             Which = 2;
1767             FirstVersion = Obsoleted;
1768             SecondVersion = OldObsoleted;
1769           }
1770 
1771           if (Which == -1) {
1772             Diag(OldAA->getLocation(),
1773                  diag::warn_mismatched_availability_override_unavail)
1774               << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1775           } else {
1776             Diag(OldAA->getLocation(),
1777                  diag::warn_mismatched_availability_override)
1778               << Which
1779               << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
1780               << FirstVersion.getAsString() << SecondVersion.getAsString();
1781           }
1782           Diag(Range.getBegin(), diag::note_overridden_method);
1783         } else {
1784           Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
1785           Diag(Range.getBegin(), diag::note_previous_attribute);
1786         }
1787 
1788         Attrs.erase(Attrs.begin() + i);
1789         --e;
1790         continue;
1791       }
1792 
1793       VersionTuple MergedIntroduced2 = MergedIntroduced;
1794       VersionTuple MergedDeprecated2 = MergedDeprecated;
1795       VersionTuple MergedObsoleted2 = MergedObsoleted;
1796 
1797       if (MergedIntroduced2.empty())
1798         MergedIntroduced2 = OldIntroduced;
1799       if (MergedDeprecated2.empty())
1800         MergedDeprecated2 = OldDeprecated;
1801       if (MergedObsoleted2.empty())
1802         MergedObsoleted2 = OldObsoleted;
1803 
1804       if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
1805                                 MergedIntroduced2, MergedDeprecated2,
1806                                 MergedObsoleted2)) {
1807         Attrs.erase(Attrs.begin() + i);
1808         --e;
1809         continue;
1810       }
1811 
1812       MergedIntroduced = MergedIntroduced2;
1813       MergedDeprecated = MergedDeprecated2;
1814       MergedObsoleted = MergedObsoleted2;
1815       ++i;
1816     }
1817   }
1818 
1819   if (FoundAny &&
1820       MergedIntroduced == Introduced &&
1821       MergedDeprecated == Deprecated &&
1822       MergedObsoleted == Obsoleted)
1823     return nullptr;
1824 
1825   // Only create a new attribute if !Override, but we want to do
1826   // the checking.
1827   if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
1828                              MergedDeprecated, MergedObsoleted) &&
1829       !Override) {
1830     return ::new (Context) AvailabilityAttr(Range, Context, Platform,
1831                                             Introduced, Deprecated,
1832                                             Obsoleted, IsUnavailable, Message,
1833                                             AttrSpellingListIndex);
1834   }
1835   return nullptr;
1836 }
1837 
1838 static void handleAvailabilityAttr(Sema &S, Decl *D,
1839                                    const AttributeList &Attr) {
1840   if (!checkAttributeNumArgs(S, Attr, 1))
1841     return;
1842   IdentifierLoc *Platform = Attr.getArgAsIdent(0);
1843   unsigned Index = Attr.getAttributeSpellingListIndex();
1844 
1845   IdentifierInfo *II = Platform->Ident;
1846   if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
1847     S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
1848       << Platform->Ident;
1849 
1850   NamedDecl *ND = dyn_cast<NamedDecl>(D);
1851   if (!ND) {
1852     S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1853     return;
1854   }
1855 
1856   AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1857   AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1858   AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
1859   bool IsUnavailable = Attr.getUnavailableLoc().isValid();
1860   StringRef Str;
1861   if (const StringLiteral *SE =
1862           dyn_cast_or_null<StringLiteral>(Attr.getMessageExpr()))
1863     Str = SE->getString();
1864 
1865   AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
1866                                                       Introduced.Version,
1867                                                       Deprecated.Version,
1868                                                       Obsoleted.Version,
1869                                                       IsUnavailable, Str,
1870                                                       /*Override=*/false,
1871                                                       Index);
1872   if (NewAttr)
1873     D->addAttr(NewAttr);
1874 }
1875 
1876 template <class T>
1877 static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
1878                               typename T::VisibilityType value,
1879                               unsigned attrSpellingListIndex) {
1880   T *existingAttr = D->getAttr<T>();
1881   if (existingAttr) {
1882     typename T::VisibilityType existingValue = existingAttr->getVisibility();
1883     if (existingValue == value)
1884       return nullptr;
1885     S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
1886     S.Diag(range.getBegin(), diag::note_previous_attribute);
1887     D->dropAttr<T>();
1888   }
1889   return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
1890 }
1891 
1892 VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
1893                                           VisibilityAttr::VisibilityType Vis,
1894                                           unsigned AttrSpellingListIndex) {
1895   return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
1896                                                AttrSpellingListIndex);
1897 }
1898 
1899 TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
1900                                       TypeVisibilityAttr::VisibilityType Vis,
1901                                       unsigned AttrSpellingListIndex) {
1902   return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
1903                                                    AttrSpellingListIndex);
1904 }
1905 
1906 static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
1907                                  bool isTypeVisibility) {
1908   // Visibility attributes don't mean anything on a typedef.
1909   if (isa<TypedefNameDecl>(D)) {
1910     S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
1911       << Attr.getName();
1912     return;
1913   }
1914 
1915   // 'type_visibility' can only go on a type or namespace.
1916   if (isTypeVisibility &&
1917       !(isa<TagDecl>(D) ||
1918         isa<ObjCInterfaceDecl>(D) ||
1919         isa<NamespaceDecl>(D))) {
1920     S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
1921       << Attr.getName() << ExpectedTypeOrNamespace;
1922     return;
1923   }
1924 
1925   // Check that the argument is a string literal.
1926   StringRef TypeStr;
1927   SourceLocation LiteralLoc;
1928   if (!S.checkStringLiteralArgumentAttr(Attr, 0, TypeStr, &LiteralLoc))
1929     return;
1930 
1931   VisibilityAttr::VisibilityType type;
1932   if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
1933     S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported)
1934       << Attr.getName() << TypeStr;
1935     return;
1936   }
1937 
1938   // Complain about attempts to use protected visibility on targets
1939   // (like Darwin) that don't support it.
1940   if (type == VisibilityAttr::Protected &&
1941       !S.Context.getTargetInfo().hasProtectedVisibility()) {
1942     S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1943     type = VisibilityAttr::Default;
1944   }
1945 
1946   unsigned Index = Attr.getAttributeSpellingListIndex();
1947   clang::Attr *newAttr;
1948   if (isTypeVisibility) {
1949     newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
1950                                     (TypeVisibilityAttr::VisibilityType) type,
1951                                         Index);
1952   } else {
1953     newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
1954   }
1955   if (newAttr)
1956     D->addAttr(newAttr);
1957 }
1958 
1959 static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1960                                        const AttributeList &Attr) {
1961   ObjCMethodDecl *method = cast<ObjCMethodDecl>(decl);
1962   if (!Attr.isArgIdent(0)) {
1963     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
1964       << Attr.getName() << 1 << AANT_ArgumentIdentifier;
1965     return;
1966   }
1967 
1968   IdentifierLoc *IL = Attr.getArgAsIdent(0);
1969   ObjCMethodFamilyAttr::FamilyKind F;
1970   if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
1971     S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << Attr.getName()
1972       << IL->Ident;
1973     return;
1974   }
1975 
1976   if (F == ObjCMethodFamilyAttr::OMF_init &&
1977       !method->getReturnType()->isObjCObjectPointerType()) {
1978     S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1979         << method->getReturnType();
1980     // Ignore the attribute.
1981     return;
1982   }
1983 
1984   method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
1985                                                        S.Context, F,
1986                                         Attr.getAttributeSpellingListIndex()));
1987 }
1988 
1989 static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
1990   if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1991     QualType T = TD->getUnderlyingType();
1992     if (!T->isCARCBridgableType()) {
1993       S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1994       return;
1995     }
1996   }
1997   else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1998     QualType T = PD->getType();
1999     if (!T->isCARCBridgableType()) {
2000       S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2001       return;
2002     }
2003   }
2004   else {
2005     // It is okay to include this attribute on properties, e.g.:
2006     //
2007     //  @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2008     //
2009     // In this case it follows tradition and suppresses an error in the above
2010     // case.
2011     S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
2012   }
2013   D->addAttr(::new (S.Context)
2014              ObjCNSObjectAttr(Attr.getRange(), S.Context,
2015                               Attr.getAttributeSpellingListIndex()));
2016 }
2017 
2018 static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2019   if (!Attr.isArgIdent(0)) {
2020     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2021       << Attr.getName() << 1 << AANT_ArgumentIdentifier;
2022     return;
2023   }
2024 
2025   IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
2026   BlocksAttr::BlockType type;
2027   if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2028     S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
2029       << Attr.getName() << II;
2030     return;
2031   }
2032 
2033   D->addAttr(::new (S.Context)
2034              BlocksAttr(Attr.getRange(), S.Context, type,
2035                         Attr.getAttributeSpellingListIndex()));
2036 }
2037 
2038 static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2039   // check the attribute arguments.
2040   if (Attr.getNumArgs() > 2) {
2041     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
2042       << Attr.getName() << 2;
2043     return;
2044   }
2045 
2046   unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel;
2047   if (Attr.getNumArgs() > 0) {
2048     Expr *E = Attr.getArgAsExpr(0);
2049     llvm::APSInt Idx(32);
2050     if (E->isTypeDependent() || E->isValueDependent() ||
2051         !E->isIntegerConstantExpr(Idx, S.Context)) {
2052       S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2053         << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
2054         << E->getSourceRange();
2055       return;
2056     }
2057 
2058     if (Idx.isSigned() && Idx.isNegative()) {
2059       S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2060         << E->getSourceRange();
2061       return;
2062     }
2063 
2064     sentinel = Idx.getZExtValue();
2065   }
2066 
2067   unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos;
2068   if (Attr.getNumArgs() > 1) {
2069     Expr *E = Attr.getArgAsExpr(1);
2070     llvm::APSInt Idx(32);
2071     if (E->isTypeDependent() || E->isValueDependent() ||
2072         !E->isIntegerConstantExpr(Idx, S.Context)) {
2073       S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2074         << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
2075         << E->getSourceRange();
2076       return;
2077     }
2078     nullPos = Idx.getZExtValue();
2079 
2080     if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
2081       // FIXME: This error message could be improved, it would be nice
2082       // to say what the bounds actually are.
2083       S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2084         << E->getSourceRange();
2085       return;
2086     }
2087   }
2088 
2089   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2090     const FunctionType *FT = FD->getType()->castAs<FunctionType>();
2091     if (isa<FunctionNoProtoType>(FT)) {
2092       S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2093       return;
2094     }
2095 
2096     if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2097       S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2098       return;
2099     }
2100   } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2101     if (!MD->isVariadic()) {
2102       S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2103       return;
2104     }
2105   } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2106     if (!BD->isVariadic()) {
2107       S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2108       return;
2109     }
2110   } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
2111     QualType Ty = V->getType();
2112     if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
2113       const FunctionType *FT = Ty->isFunctionPointerType()
2114        ? D->getFunctionType()
2115        : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
2116       if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2117         int m = Ty->isFunctionPointerType() ? 0 : 1;
2118         S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
2119         return;
2120       }
2121     } else {
2122       S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2123         << Attr.getName() << ExpectedFunctionMethodOrBlock;
2124       return;
2125     }
2126   } else {
2127     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2128       << Attr.getName() << ExpectedFunctionMethodOrBlock;
2129     return;
2130   }
2131   D->addAttr(::new (S.Context)
2132              SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2133                           Attr.getAttributeSpellingListIndex()));
2134 }
2135 
2136 static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
2137   if (D->getFunctionType() &&
2138       D->getFunctionType()->getReturnType()->isVoidType()) {
2139     S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2140       << Attr.getName() << 0;
2141     return;
2142   }
2143   if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2144     if (MD->getReturnType()->isVoidType()) {
2145       S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2146       << Attr.getName() << 1;
2147       return;
2148     }
2149 
2150   D->addAttr(::new (S.Context)
2151              WarnUnusedResultAttr(Attr.getRange(), S.Context,
2152                                   Attr.getAttributeSpellingListIndex()));
2153 }
2154 
2155 static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2156   // weak_import only applies to variable & function declarations.
2157   bool isDef = false;
2158   if (!D->canBeWeakImported(isDef)) {
2159     if (isDef)
2160       S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2161         << "weak_import";
2162     else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
2163              (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
2164               (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
2165       // Nothing to warn about here.
2166     } else
2167       S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2168         << Attr.getName() << ExpectedVariableOrFunction;
2169 
2170     return;
2171   }
2172 
2173   D->addAttr(::new (S.Context)
2174              WeakImportAttr(Attr.getRange(), S.Context,
2175                             Attr.getAttributeSpellingListIndex()));
2176 }
2177 
2178 // Handles reqd_work_group_size and work_group_size_hint.
2179 template <typename WorkGroupAttr>
2180 static void handleWorkGroupSize(Sema &S, Decl *D,
2181                                 const AttributeList &Attr) {
2182   uint32_t WGSize[3];
2183   for (unsigned i = 0; i < 3; ++i) {
2184     const Expr *E = Attr.getArgAsExpr(i);
2185     if (!checkUInt32Argument(S, Attr, E, WGSize[i], i))
2186       return;
2187     if (WGSize[i] == 0) {
2188       S.Diag(Attr.getLoc(), diag::err_attribute_argument_is_zero)
2189         << Attr.getName() << E->getSourceRange();
2190       return;
2191     }
2192   }
2193 
2194   WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2195   if (Existing && !(Existing->getXDim() == WGSize[0] &&
2196                     Existing->getYDim() == WGSize[1] &&
2197                     Existing->getZDim() == WGSize[2]))
2198     S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2199 
2200   D->addAttr(::new (S.Context) WorkGroupAttr(Attr.getRange(), S.Context,
2201                                              WGSize[0], WGSize[1], WGSize[2],
2202                                        Attr.getAttributeSpellingListIndex()));
2203 }
2204 
2205 static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2206   if (!Attr.hasParsedType()) {
2207     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2208       << Attr.getName() << 1;
2209     return;
2210   }
2211 
2212   TypeSourceInfo *ParmTSI = nullptr;
2213   QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg(), &ParmTSI);
2214   assert(ParmTSI && "no type source info for attribute argument");
2215 
2216   if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2217       (ParmType->isBooleanType() ||
2218        !ParmType->isIntegralType(S.getASTContext()))) {
2219     S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2220         << ParmType;
2221     return;
2222   }
2223 
2224   if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) {
2225     if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) {
2226       S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2227       return;
2228     }
2229   }
2230 
2231   D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2232                                                ParmTSI,
2233                                         Attr.getAttributeSpellingListIndex()));
2234 }
2235 
2236 SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
2237                                     StringRef Name,
2238                                     unsigned AttrSpellingListIndex) {
2239   if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2240     if (ExistingAttr->getName() == Name)
2241       return nullptr;
2242     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2243     Diag(Range.getBegin(), diag::note_previous_attribute);
2244     return nullptr;
2245   }
2246   return ::new (Context) SectionAttr(Range, Context, Name,
2247                                      AttrSpellingListIndex);
2248 }
2249 
2250 static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2251   // Make sure that there is a string literal as the sections's single
2252   // argument.
2253   StringRef Str;
2254   SourceLocation LiteralLoc;
2255   if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &LiteralLoc))
2256     return;
2257 
2258   // If the target wants to validate the section specifier, make it happen.
2259   std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
2260   if (!Error.empty()) {
2261     S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
2262     << Error;
2263     return;
2264   }
2265 
2266   unsigned Index = Attr.getAttributeSpellingListIndex();
2267   SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), Str, Index);
2268   if (NewAttr)
2269     D->addAttr(NewAttr);
2270 }
2271 
2272 
2273 static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2274   VarDecl *VD = cast<VarDecl>(D);
2275   if (!VD->hasLocalStorage()) {
2276     S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2277     return;
2278   }
2279 
2280   Expr *E = Attr.getArgAsExpr(0);
2281   SourceLocation Loc = E->getExprLoc();
2282   FunctionDecl *FD = nullptr;
2283   DeclarationNameInfo NI;
2284 
2285   // gcc only allows for simple identifiers. Since we support more than gcc, we
2286   // will warn the user.
2287   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
2288     if (DRE->hasQualifier())
2289       S.Diag(Loc, diag::warn_cleanup_ext);
2290     FD = dyn_cast<FunctionDecl>(DRE->getDecl());
2291     NI = DRE->getNameInfo();
2292     if (!FD) {
2293       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
2294         << NI.getName();
2295       return;
2296     }
2297   } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
2298     if (ULE->hasExplicitTemplateArgs())
2299       S.Diag(Loc, diag::warn_cleanup_ext);
2300     FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
2301     NI = ULE->getNameInfo();
2302     if (!FD) {
2303       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
2304         << NI.getName();
2305       if (ULE->getType() == S.Context.OverloadTy)
2306         S.NoteAllOverloadCandidates(ULE);
2307       return;
2308     }
2309   } else {
2310     S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
2311     return;
2312   }
2313 
2314   if (FD->getNumParams() != 1) {
2315     S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
2316       << NI.getName();
2317     return;
2318   }
2319 
2320   // We're currently more strict than GCC about what function types we accept.
2321   // If this ever proves to be a problem it should be easy to fix.
2322   QualType Ty = S.Context.getPointerType(VD->getType());
2323   QualType ParamTy = FD->getParamDecl(0)->getType();
2324   if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2325                                    ParamTy, Ty) != Sema::Compatible) {
2326     S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
2327       << NI.getName() << ParamTy << Ty;
2328     return;
2329   }
2330 
2331   D->addAttr(::new (S.Context)
2332              CleanupAttr(Attr.getRange(), S.Context, FD,
2333                          Attr.getAttributeSpellingListIndex()));
2334 }
2335 
2336 /// Handle __attribute__((format_arg((idx)))) attribute based on
2337 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
2338 static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2339   Expr *IdxExpr = Attr.getArgAsExpr(0);
2340   uint64_t Idx;
2341   if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 1, IdxExpr, Idx))
2342     return;
2343 
2344   // make sure the format string is really a string
2345   QualType Ty = getFunctionOrMethodParamType(D, Idx);
2346 
2347   bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2348   if (not_nsstring_type &&
2349       !isCFStringType(Ty, S.Context) &&
2350       (!Ty->isPointerType() ||
2351        !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
2352     // FIXME: Should highlight the actual expression that has the wrong type.
2353     S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2354     << (not_nsstring_type ? "a string type" : "an NSString")
2355        << IdxExpr->getSourceRange();
2356     return;
2357   }
2358   Ty = getFunctionOrMethodResultType(D);
2359   if (!isNSStringType(Ty, S.Context) &&
2360       !isCFStringType(Ty, S.Context) &&
2361       (!Ty->isPointerType() ||
2362        !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
2363     // FIXME: Should highlight the actual expression that has the wrong type.
2364     S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
2365     << (not_nsstring_type ? "string type" : "NSString")
2366        << IdxExpr->getSourceRange();
2367     return;
2368   }
2369 
2370   // We cannot use the Idx returned from checkFunctionOrMethodParameterIndex
2371   // because that has corrected for the implicit this parameter, and is zero-
2372   // based.  The attribute expects what the user wrote explicitly.
2373   llvm::APSInt Val;
2374   IdxExpr->EvaluateAsInt(Val, S.Context);
2375 
2376   D->addAttr(::new (S.Context)
2377              FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
2378                            Attr.getAttributeSpellingListIndex()));
2379 }
2380 
2381 enum FormatAttrKind {
2382   CFStringFormat,
2383   NSStringFormat,
2384   StrftimeFormat,
2385   SupportedFormat,
2386   IgnoredFormat,
2387   InvalidFormat
2388 };
2389 
2390 /// getFormatAttrKind - Map from format attribute names to supported format
2391 /// types.
2392 static FormatAttrKind getFormatAttrKind(StringRef Format) {
2393   return llvm::StringSwitch<FormatAttrKind>(Format)
2394     // Check for formats that get handled specially.
2395     .Case("NSString", NSStringFormat)
2396     .Case("CFString", CFStringFormat)
2397     .Case("strftime", StrftimeFormat)
2398 
2399     // Otherwise, check for supported formats.
2400     .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2401     .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2402     .Case("kprintf", SupportedFormat) // OpenBSD.
2403 
2404     .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2405     .Default(InvalidFormat);
2406 }
2407 
2408 /// Handle __attribute__((init_priority(priority))) attributes based on
2409 /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
2410 static void handleInitPriorityAttr(Sema &S, Decl *D,
2411                                    const AttributeList &Attr) {
2412   if (!S.getLangOpts().CPlusPlus) {
2413     S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2414     return;
2415   }
2416 
2417   if (S.getCurFunctionOrMethodDecl()) {
2418     S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2419     Attr.setInvalid();
2420     return;
2421   }
2422   QualType T = cast<VarDecl>(D)->getType();
2423   if (S.Context.getAsArrayType(T))
2424     T = S.Context.getBaseElementType(T);
2425   if (!T->getAs<RecordType>()) {
2426     S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2427     Attr.setInvalid();
2428     return;
2429   }
2430 
2431   Expr *E = Attr.getArgAsExpr(0);
2432   uint32_t prioritynum;
2433   if (!checkUInt32Argument(S, Attr, E, prioritynum)) {
2434     Attr.setInvalid();
2435     return;
2436   }
2437 
2438   if (prioritynum < 101 || prioritynum > 65535) {
2439     S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2440       << E->getSourceRange();
2441     Attr.setInvalid();
2442     return;
2443   }
2444   D->addAttr(::new (S.Context)
2445              InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
2446                               Attr.getAttributeSpellingListIndex()));
2447 }
2448 
2449 FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
2450                                   IdentifierInfo *Format, int FormatIdx,
2451                                   int FirstArg,
2452                                   unsigned AttrSpellingListIndex) {
2453   // Check whether we already have an equivalent format attribute.
2454   for (auto *F : D->specific_attrs<FormatAttr>()) {
2455     if (F->getType() == Format &&
2456         F->getFormatIdx() == FormatIdx &&
2457         F->getFirstArg() == FirstArg) {
2458       // If we don't have a valid location for this attribute, adopt the
2459       // location.
2460       if (F->getLocation().isInvalid())
2461         F->setRange(Range);
2462       return nullptr;
2463     }
2464   }
2465 
2466   return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
2467                                     FirstArg, AttrSpellingListIndex);
2468 }
2469 
2470 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2471 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
2472 static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2473   if (!Attr.isArgIdent(0)) {
2474     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2475       << Attr.getName() << 1 << AANT_ArgumentIdentifier;
2476     return;
2477   }
2478 
2479   // In C++ the implicit 'this' function parameter also counts, and they are
2480   // counted from one.
2481   bool HasImplicitThisParam = isInstanceMethod(D);
2482   unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam;
2483 
2484   IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
2485   StringRef Format = II->getName();
2486 
2487   // Normalize the argument, __foo__ becomes foo.
2488   if (Format.startswith("__") && Format.endswith("__")) {
2489     Format = Format.substr(2, Format.size() - 4);
2490     // If we've modified the string name, we need a new identifier for it.
2491     II = &S.Context.Idents.get(Format);
2492   }
2493 
2494   // Check for supported formats.
2495   FormatAttrKind Kind = getFormatAttrKind(Format);
2496 
2497   if (Kind == IgnoredFormat)
2498     return;
2499 
2500   if (Kind == InvalidFormat) {
2501     S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
2502       << Attr.getName() << II->getName();
2503     return;
2504   }
2505 
2506   // checks for the 2nd argument
2507   Expr *IdxExpr = Attr.getArgAsExpr(1);
2508   uint32_t Idx;
2509   if (!checkUInt32Argument(S, Attr, IdxExpr, Idx, 2))
2510     return;
2511 
2512   if (Idx < 1 || Idx > NumArgs) {
2513     S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2514       << Attr.getName() << 2 << IdxExpr->getSourceRange();
2515     return;
2516   }
2517 
2518   // FIXME: Do we need to bounds check?
2519   unsigned ArgIdx = Idx - 1;
2520 
2521   if (HasImplicitThisParam) {
2522     if (ArgIdx == 0) {
2523       S.Diag(Attr.getLoc(),
2524              diag::err_format_attribute_implicit_this_format_string)
2525         << IdxExpr->getSourceRange();
2526       return;
2527     }
2528     ArgIdx--;
2529   }
2530 
2531   // make sure the format string is really a string
2532   QualType Ty = getFunctionOrMethodParamType(D, ArgIdx);
2533 
2534   if (Kind == CFStringFormat) {
2535     if (!isCFStringType(Ty, S.Context)) {
2536       S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2537         << "a CFString" << IdxExpr->getSourceRange();
2538       return;
2539     }
2540   } else if (Kind == NSStringFormat) {
2541     // FIXME: do we need to check if the type is NSString*?  What are the
2542     // semantics?
2543     if (!isNSStringType(Ty, S.Context)) {
2544       // FIXME: Should highlight the actual expression that has the wrong type.
2545       S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2546         << "an NSString" << IdxExpr->getSourceRange();
2547       return;
2548     }
2549   } else if (!Ty->isPointerType() ||
2550              !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
2551     // FIXME: Should highlight the actual expression that has the wrong type.
2552     S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2553       << "a string type" << IdxExpr->getSourceRange();
2554     return;
2555   }
2556 
2557   // check the 3rd argument
2558   Expr *FirstArgExpr = Attr.getArgAsExpr(2);
2559   uint32_t FirstArg;
2560   if (!checkUInt32Argument(S, Attr, FirstArgExpr, FirstArg, 3))
2561     return;
2562 
2563   // check if the function is variadic if the 3rd argument non-zero
2564   if (FirstArg != 0) {
2565     if (isFunctionOrMethodVariadic(D)) {
2566       ++NumArgs; // +1 for ...
2567     } else {
2568       S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
2569       return;
2570     }
2571   }
2572 
2573   // strftime requires FirstArg to be 0 because it doesn't read from any
2574   // variable the input is just the current time + the format string.
2575   if (Kind == StrftimeFormat) {
2576     if (FirstArg != 0) {
2577       S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2578         << FirstArgExpr->getSourceRange();
2579       return;
2580     }
2581   // if 0 it disables parameter checking (to use with e.g. va_list)
2582   } else if (FirstArg != 0 && FirstArg != NumArgs) {
2583     S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2584       << Attr.getName() << 3 << FirstArgExpr->getSourceRange();
2585     return;
2586   }
2587 
2588   FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
2589                                           Idx, FirstArg,
2590                                           Attr.getAttributeSpellingListIndex());
2591   if (NewAttr)
2592     D->addAttr(NewAttr);
2593 }
2594 
2595 static void handleTransparentUnionAttr(Sema &S, Decl *D,
2596                                        const AttributeList &Attr) {
2597   // Try to find the underlying union declaration.
2598   RecordDecl *RD = nullptr;
2599   TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
2600   if (TD && TD->getUnderlyingType()->isUnionType())
2601     RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2602   else
2603     RD = dyn_cast<RecordDecl>(D);
2604 
2605   if (!RD || !RD->isUnion()) {
2606     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2607       << Attr.getName() << ExpectedUnion;
2608     return;
2609   }
2610 
2611   if (!RD->isCompleteDefinition()) {
2612     S.Diag(Attr.getLoc(),
2613         diag::warn_transparent_union_attribute_not_definition);
2614     return;
2615   }
2616 
2617   RecordDecl::field_iterator Field = RD->field_begin(),
2618                           FieldEnd = RD->field_end();
2619   if (Field == FieldEnd) {
2620     S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2621     return;
2622   }
2623 
2624   FieldDecl *FirstField = *Field;
2625   QualType FirstType = FirstField->getType();
2626   if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
2627     S.Diag(FirstField->getLocation(),
2628            diag::warn_transparent_union_attribute_floating)
2629       << FirstType->isVectorType() << FirstType;
2630     return;
2631   }
2632 
2633   uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2634   uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2635   for (; Field != FieldEnd; ++Field) {
2636     QualType FieldType = Field->getType();
2637     // FIXME: this isn't fully correct; we also need to test whether the
2638     // members of the union would all have the same calling convention as the
2639     // first member of the union. Checking just the size and alignment isn't
2640     // sufficient (consider structs passed on the stack instead of in registers
2641     // as an example).
2642     if (S.Context.getTypeSize(FieldType) != FirstSize ||
2643         S.Context.getTypeAlign(FieldType) > FirstAlign) {
2644       // Warn if we drop the attribute.
2645       bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
2646       unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
2647                                  : S.Context.getTypeAlign(FieldType);
2648       S.Diag(Field->getLocation(),
2649           diag::warn_transparent_union_attribute_field_size_align)
2650         << isSize << Field->getDeclName() << FieldBits;
2651       unsigned FirstBits = isSize? FirstSize : FirstAlign;
2652       S.Diag(FirstField->getLocation(),
2653              diag::note_transparent_union_first_field_size_align)
2654         << isSize << FirstBits;
2655       return;
2656     }
2657   }
2658 
2659   RD->addAttr(::new (S.Context)
2660               TransparentUnionAttr(Attr.getRange(), S.Context,
2661                                    Attr.getAttributeSpellingListIndex()));
2662 }
2663 
2664 static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2665   // Make sure that there is a string literal as the annotation's single
2666   // argument.
2667   StringRef Str;
2668   if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str))
2669     return;
2670 
2671   // Don't duplicate annotations that are already set.
2672   for (const auto *I : D->specific_attrs<AnnotateAttr>()) {
2673     if (I->getAnnotation() == Str)
2674       return;
2675   }
2676 
2677   D->addAttr(::new (S.Context)
2678              AnnotateAttr(Attr.getRange(), S.Context, Str,
2679                           Attr.getAttributeSpellingListIndex()));
2680 }
2681 
2682 static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2683   // check the attribute arguments.
2684   if (Attr.getNumArgs() > 1) {
2685     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2686       << Attr.getName() << 1;
2687     return;
2688   }
2689 
2690   if (Attr.getNumArgs() == 0) {
2691     D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
2692                true, nullptr, Attr.getAttributeSpellingListIndex()));
2693     return;
2694   }
2695 
2696   Expr *E = Attr.getArgAsExpr(0);
2697   if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
2698     S.Diag(Attr.getEllipsisLoc(),
2699            diag::err_pack_expansion_without_parameter_packs);
2700     return;
2701   }
2702 
2703   if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
2704     return;
2705 
2706   S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
2707                    Attr.isPackExpansion());
2708 }
2709 
2710 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
2711                           unsigned SpellingListIndex, bool IsPackExpansion) {
2712   AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
2713   SourceLocation AttrLoc = AttrRange.getBegin();
2714 
2715   // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
2716   if (TmpAttr.isAlignas()) {
2717     // C++11 [dcl.align]p1:
2718     //   An alignment-specifier may be applied to a variable or to a class
2719     //   data member, but it shall not be applied to a bit-field, a function
2720     //   parameter, the formal parameter of a catch clause, or a variable
2721     //   declared with the register storage class specifier. An
2722     //   alignment-specifier may also be applied to the declaration of a class
2723     //   or enumeration type.
2724     // C11 6.7.5/2:
2725     //   An alignment attribute shall not be specified in a declaration of
2726     //   a typedef, or a bit-field, or a function, or a parameter, or an
2727     //   object declared with the register storage-class specifier.
2728     int DiagKind = -1;
2729     if (isa<ParmVarDecl>(D)) {
2730       DiagKind = 0;
2731     } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
2732       if (VD->getStorageClass() == SC_Register)
2733         DiagKind = 1;
2734       if (VD->isExceptionVariable())
2735         DiagKind = 2;
2736     } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
2737       if (FD->isBitField())
2738         DiagKind = 3;
2739     } else if (!isa<TagDecl>(D)) {
2740       Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr
2741         << (TmpAttr.isC11() ? ExpectedVariableOrField
2742                             : ExpectedVariableFieldOrTag);
2743       return;
2744     }
2745     if (DiagKind != -1) {
2746       Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
2747         << &TmpAttr << DiagKind;
2748       return;
2749     }
2750   }
2751 
2752   if (E->isTypeDependent() || E->isValueDependent()) {
2753     // Save dependent expressions in the AST to be instantiated.
2754     AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
2755     AA->setPackExpansion(IsPackExpansion);
2756     D->addAttr(AA);
2757     return;
2758   }
2759 
2760   // FIXME: Cache the number on the Attr object?
2761   llvm::APSInt Alignment(32);
2762   ExprResult ICE
2763     = VerifyIntegerConstantExpression(E, &Alignment,
2764         diag::err_aligned_attribute_argument_not_int,
2765         /*AllowFold*/ false);
2766   if (ICE.isInvalid())
2767     return;
2768 
2769   // C++11 [dcl.align]p2:
2770   //   -- if the constant expression evaluates to zero, the alignment
2771   //      specifier shall have no effect
2772   // C11 6.7.5p6:
2773   //   An alignment specification of zero has no effect.
2774   if (!(TmpAttr.isAlignas() && !Alignment) &&
2775       !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
2776     Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2777       << E->getSourceRange();
2778     return;
2779   }
2780 
2781   // Alignment calculations can wrap around if it's greater than 2**28.
2782   unsigned MaxValidAlignment = TmpAttr.isDeclspec() ? 8192 : 268435456;
2783   if (Alignment.getZExtValue() > MaxValidAlignment) {
2784     Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment
2785                                                          << E->getSourceRange();
2786     return;
2787   }
2788 
2789   AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
2790                                                 ICE.get(), SpellingListIndex);
2791   AA->setPackExpansion(IsPackExpansion);
2792   D->addAttr(AA);
2793 }
2794 
2795 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
2796                           unsigned SpellingListIndex, bool IsPackExpansion) {
2797   // FIXME: Cache the number on the Attr object if non-dependent?
2798   // FIXME: Perform checking of type validity
2799   AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
2800                                                 SpellingListIndex);
2801   AA->setPackExpansion(IsPackExpansion);
2802   D->addAttr(AA);
2803 }
2804 
2805 void Sema::CheckAlignasUnderalignment(Decl *D) {
2806   assert(D->hasAttrs() && "no attributes on decl");
2807 
2808   QualType Ty;
2809   if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2810     Ty = VD->getType();
2811   else
2812     Ty = Context.getTagDeclType(cast<TagDecl>(D));
2813   if (Ty->isDependentType() || Ty->isIncompleteType())
2814     return;
2815 
2816   // C++11 [dcl.align]p5, C11 6.7.5/4:
2817   //   The combined effect of all alignment attributes in a declaration shall
2818   //   not specify an alignment that is less strict than the alignment that
2819   //   would otherwise be required for the entity being declared.
2820   AlignedAttr *AlignasAttr = nullptr;
2821   unsigned Align = 0;
2822   for (auto *I : D->specific_attrs<AlignedAttr>()) {
2823     if (I->isAlignmentDependent())
2824       return;
2825     if (I->isAlignas())
2826       AlignasAttr = I;
2827     Align = std::max(Align, I->getAlignment(Context));
2828   }
2829 
2830   if (AlignasAttr && Align) {
2831     CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
2832     CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
2833     if (NaturalAlign > RequestedAlign)
2834       Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
2835         << Ty << (unsigned)NaturalAlign.getQuantity();
2836   }
2837 }
2838 
2839 bool Sema::checkMSInheritanceAttrOnDefinition(
2840     CXXRecordDecl *RD, SourceRange Range, bool BestCase,
2841     MSInheritanceAttr::Spelling SemanticSpelling) {
2842   assert(RD->hasDefinition() && "RD has no definition!");
2843 
2844   // We may not have seen base specifiers or any virtual methods yet.  We will
2845   // have to wait until the record is defined to catch any mismatches.
2846   if (!RD->getDefinition()->isCompleteDefinition())
2847     return false;
2848 
2849   // The unspecified model never matches what a definition could need.
2850   if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance)
2851     return false;
2852 
2853   if (BestCase) {
2854     if (RD->calculateInheritanceModel() == SemanticSpelling)
2855       return false;
2856   } else {
2857     if (RD->calculateInheritanceModel() <= SemanticSpelling)
2858       return false;
2859   }
2860 
2861   Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance)
2862       << 0 /*definition*/;
2863   Diag(RD->getDefinition()->getLocation(), diag::note_defined_here)
2864       << RD->getNameAsString();
2865   return true;
2866 }
2867 
2868 /// handleModeAttr - This attribute modifies the width of a decl with primitive
2869 /// type.
2870 ///
2871 /// Despite what would be logical, the mode attribute is a decl attribute, not a
2872 /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2873 /// HImode, not an intermediate pointer.
2874 static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2875   // This attribute isn't documented, but glibc uses it.  It changes
2876   // the width of an int or unsigned int to the specified size.
2877   if (!Attr.isArgIdent(0)) {
2878     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
2879       << AANT_ArgumentIdentifier;
2880     return;
2881   }
2882 
2883   IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
2884   StringRef Str = Name->getName();
2885 
2886   // Normalize the attribute name, __foo__ becomes foo.
2887   if (Str.startswith("__") && Str.endswith("__"))
2888     Str = Str.substr(2, Str.size() - 4);
2889 
2890   unsigned DestWidth = 0;
2891   bool IntegerMode = true;
2892   bool ComplexMode = false;
2893   switch (Str.size()) {
2894   case 2:
2895     switch (Str[0]) {
2896     case 'Q': DestWidth = 8; break;
2897     case 'H': DestWidth = 16; break;
2898     case 'S': DestWidth = 32; break;
2899     case 'D': DestWidth = 64; break;
2900     case 'X': DestWidth = 96; break;
2901     case 'T': DestWidth = 128; break;
2902     }
2903     if (Str[1] == 'F') {
2904       IntegerMode = false;
2905     } else if (Str[1] == 'C') {
2906       IntegerMode = false;
2907       ComplexMode = true;
2908     } else if (Str[1] != 'I') {
2909       DestWidth = 0;
2910     }
2911     break;
2912   case 4:
2913     // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2914     // pointer on PIC16 and other embedded platforms.
2915     if (Str == "word")
2916       DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
2917     else if (Str == "byte")
2918       DestWidth = S.Context.getTargetInfo().getCharWidth();
2919     break;
2920   case 7:
2921     if (Str == "pointer")
2922       DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
2923     break;
2924   case 11:
2925     if (Str == "unwind_word")
2926       DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
2927     break;
2928   }
2929 
2930   QualType OldTy;
2931   if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2932     OldTy = TD->getUnderlyingType();
2933   else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2934     OldTy = VD->getType();
2935   else {
2936     S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2937       << Attr.getName() << Attr.getRange();
2938     return;
2939   }
2940 
2941   if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
2942     S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2943   else if (IntegerMode) {
2944     if (!OldTy->isIntegralOrEnumerationType())
2945       S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2946   } else if (ComplexMode) {
2947     if (!OldTy->isComplexType())
2948       S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2949   } else {
2950     if (!OldTy->isFloatingType())
2951       S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2952   }
2953 
2954   // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2955   // and friends, at least with glibc.
2956   // FIXME: Make sure floating-point mappings are accurate
2957   // FIXME: Support XF and TF types
2958   if (!DestWidth) {
2959     S.Diag(Attr.getLoc(), diag::err_machine_mode) << 0 /*Unknown*/ << Name;
2960     return;
2961   }
2962 
2963   QualType NewTy;
2964 
2965   if (IntegerMode)
2966     NewTy = S.Context.getIntTypeForBitwidth(DestWidth,
2967                                             OldTy->isSignedIntegerType());
2968   else
2969     NewTy = S.Context.getRealTypeForBitwidth(DestWidth);
2970 
2971   if (NewTy.isNull()) {
2972     S.Diag(Attr.getLoc(), diag::err_machine_mode) << 1 /*Unsupported*/ << Name;
2973     return;
2974   }
2975 
2976   if (ComplexMode) {
2977     NewTy = S.Context.getComplexType(NewTy);
2978   }
2979 
2980   // Install the new type.
2981   if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2982     TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
2983   else
2984     cast<ValueDecl>(D)->setType(NewTy);
2985 
2986   D->addAttr(::new (S.Context)
2987              ModeAttr(Attr.getRange(), S.Context, Name,
2988                       Attr.getAttributeSpellingListIndex()));
2989 }
2990 
2991 static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2992   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2993     if (!VD->hasGlobalStorage())
2994       S.Diag(Attr.getLoc(),
2995              diag::warn_attribute_requires_functions_or_static_globals)
2996         << Attr.getName();
2997   } else if (!isFunctionOrMethod(D)) {
2998     S.Diag(Attr.getLoc(),
2999            diag::warn_attribute_requires_functions_or_static_globals)
3000       << Attr.getName();
3001     return;
3002   }
3003 
3004   D->addAttr(::new (S.Context)
3005              NoDebugAttr(Attr.getRange(), S.Context,
3006                          Attr.getAttributeSpellingListIndex()));
3007 }
3008 
3009 static void handleAlwaysInlineAttr(Sema &S, Decl *D,
3010                                    const AttributeList &Attr) {
3011   if (checkAttrMutualExclusion<OptimizeNoneAttr>(S, D, Attr))
3012     return;
3013 
3014   D->addAttr(::new (S.Context)
3015              AlwaysInlineAttr(Attr.getRange(), S.Context,
3016                               Attr.getAttributeSpellingListIndex()));
3017 }
3018 
3019 static void handleOptimizeNoneAttr(Sema &S, Decl *D,
3020                                    const AttributeList &Attr) {
3021   if (checkAttrMutualExclusion<AlwaysInlineAttr>(S, D, Attr))
3022     return;
3023 
3024   D->addAttr(::new (S.Context)
3025              OptimizeNoneAttr(Attr.getRange(), S.Context,
3026                               Attr.getAttributeSpellingListIndex()));
3027 }
3028 
3029 static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3030   FunctionDecl *FD = cast<FunctionDecl>(D);
3031   if (!FD->getReturnType()->isVoidType()) {
3032     TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
3033     if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
3034       S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3035         << FD->getType()
3036         << FixItHint::CreateReplacement(FTL.getReturnLoc().getSourceRange(),
3037                                         "void");
3038     } else {
3039       S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3040         << FD->getType();
3041     }
3042     return;
3043   }
3044 
3045   D->addAttr(::new (S.Context)
3046               CUDAGlobalAttr(Attr.getRange(), S.Context,
3047                             Attr.getAttributeSpellingListIndex()));
3048 }
3049 
3050 static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3051   FunctionDecl *Fn = cast<FunctionDecl>(D);
3052   if (!Fn->isInlineSpecified()) {
3053     S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
3054     return;
3055   }
3056 
3057   D->addAttr(::new (S.Context)
3058              GNUInlineAttr(Attr.getRange(), S.Context,
3059                            Attr.getAttributeSpellingListIndex()));
3060 }
3061 
3062 static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3063   if (hasDeclarator(D)) return;
3064 
3065   const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
3066   // Diagnostic is emitted elsewhere: here we store the (valid) Attr
3067   // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3068   CallingConv CC;
3069   if (S.CheckCallingConvAttr(Attr, CC, FD))
3070     return;
3071 
3072   if (!isa<ObjCMethodDecl>(D)) {
3073     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3074       << Attr.getName() << ExpectedFunctionOrMethod;
3075     return;
3076   }
3077 
3078   switch (Attr.getKind()) {
3079   case AttributeList::AT_FastCall:
3080     D->addAttr(::new (S.Context)
3081                FastCallAttr(Attr.getRange(), S.Context,
3082                             Attr.getAttributeSpellingListIndex()));
3083     return;
3084   case AttributeList::AT_StdCall:
3085     D->addAttr(::new (S.Context)
3086                StdCallAttr(Attr.getRange(), S.Context,
3087                            Attr.getAttributeSpellingListIndex()));
3088     return;
3089   case AttributeList::AT_ThisCall:
3090     D->addAttr(::new (S.Context)
3091                ThisCallAttr(Attr.getRange(), S.Context,
3092                             Attr.getAttributeSpellingListIndex()));
3093     return;
3094   case AttributeList::AT_CDecl:
3095     D->addAttr(::new (S.Context)
3096                CDeclAttr(Attr.getRange(), S.Context,
3097                          Attr.getAttributeSpellingListIndex()));
3098     return;
3099   case AttributeList::AT_Pascal:
3100     D->addAttr(::new (S.Context)
3101                PascalAttr(Attr.getRange(), S.Context,
3102                           Attr.getAttributeSpellingListIndex()));
3103     return;
3104   case AttributeList::AT_MSABI:
3105     D->addAttr(::new (S.Context)
3106                MSABIAttr(Attr.getRange(), S.Context,
3107                          Attr.getAttributeSpellingListIndex()));
3108     return;
3109   case AttributeList::AT_SysVABI:
3110     D->addAttr(::new (S.Context)
3111                SysVABIAttr(Attr.getRange(), S.Context,
3112                            Attr.getAttributeSpellingListIndex()));
3113     return;
3114   case AttributeList::AT_Pcs: {
3115     PcsAttr::PCSType PCS;
3116     switch (CC) {
3117     case CC_AAPCS:
3118       PCS = PcsAttr::AAPCS;
3119       break;
3120     case CC_AAPCS_VFP:
3121       PCS = PcsAttr::AAPCS_VFP;
3122       break;
3123     default:
3124       llvm_unreachable("unexpected calling convention in pcs attribute");
3125     }
3126 
3127     D->addAttr(::new (S.Context)
3128                PcsAttr(Attr.getRange(), S.Context, PCS,
3129                        Attr.getAttributeSpellingListIndex()));
3130     return;
3131   }
3132   case AttributeList::AT_PnaclCall:
3133     D->addAttr(::new (S.Context)
3134                PnaclCallAttr(Attr.getRange(), S.Context,
3135                              Attr.getAttributeSpellingListIndex()));
3136     return;
3137   case AttributeList::AT_IntelOclBicc:
3138     D->addAttr(::new (S.Context)
3139                IntelOclBiccAttr(Attr.getRange(), S.Context,
3140                                 Attr.getAttributeSpellingListIndex()));
3141     return;
3142 
3143   default:
3144     llvm_unreachable("unexpected attribute kind");
3145   }
3146 }
3147 
3148 bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3149                                 const FunctionDecl *FD) {
3150   if (attr.isInvalid())
3151     return true;
3152 
3153   unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3154   if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
3155     attr.setInvalid();
3156     return true;
3157   }
3158 
3159   // TODO: diagnose uses of these conventions on the wrong target.
3160   switch (attr.getKind()) {
3161   case AttributeList::AT_CDecl: CC = CC_C; break;
3162   case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3163   case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3164   case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3165   case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3166   case AttributeList::AT_MSABI:
3167     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
3168                                                              CC_X86_64Win64;
3169     break;
3170   case AttributeList::AT_SysVABI:
3171     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
3172                                                              CC_C;
3173     break;
3174   case AttributeList::AT_Pcs: {
3175     StringRef StrRef;
3176     if (!checkStringLiteralArgumentAttr(attr, 0, StrRef)) {
3177       attr.setInvalid();
3178       return true;
3179     }
3180     if (StrRef == "aapcs") {
3181       CC = CC_AAPCS;
3182       break;
3183     } else if (StrRef == "aapcs-vfp") {
3184       CC = CC_AAPCS_VFP;
3185       break;
3186     }
3187 
3188     attr.setInvalid();
3189     Diag(attr.getLoc(), diag::err_invalid_pcs);
3190     return true;
3191   }
3192   case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
3193   case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
3194   default: llvm_unreachable("unexpected attribute kind");
3195   }
3196 
3197   const TargetInfo &TI = Context.getTargetInfo();
3198   TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3199   if (A == TargetInfo::CCCR_Warning) {
3200     Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
3201 
3202     TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3203     if (FD)
3204       MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3205                                     TargetInfo::CCMT_NonMember;
3206     CC = TI.getDefaultCallingConv(MT);
3207   }
3208 
3209   return false;
3210 }
3211 
3212 /// Checks a regparm attribute, returning true if it is ill-formed and
3213 /// otherwise setting numParams to the appropriate value.
3214 bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3215   if (Attr.isInvalid())
3216     return true;
3217 
3218   if (!checkAttributeNumArgs(*this, Attr, 1)) {
3219     Attr.setInvalid();
3220     return true;
3221   }
3222 
3223   uint32_t NP;
3224   Expr *NumParamsExpr = Attr.getArgAsExpr(0);
3225   if (!checkUInt32Argument(*this, Attr, NumParamsExpr, NP)) {
3226     Attr.setInvalid();
3227     return true;
3228   }
3229 
3230   if (Context.getTargetInfo().getRegParmMax() == 0) {
3231     Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
3232       << NumParamsExpr->getSourceRange();
3233     Attr.setInvalid();
3234     return true;
3235   }
3236 
3237   numParams = NP;
3238   if (numParams > Context.getTargetInfo().getRegParmMax()) {
3239     Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
3240       << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
3241     Attr.setInvalid();
3242     return true;
3243   }
3244 
3245   return false;
3246 }
3247 
3248 static void handleLaunchBoundsAttr(Sema &S, Decl *D,
3249                                    const AttributeList &Attr) {
3250   // check the attribute arguments.
3251   if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
3252     // FIXME: 0 is not okay.
3253     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
3254       << Attr.getName() << 2;
3255     return;
3256   }
3257 
3258   uint32_t MaxThreads, MinBlocks = 0;
3259   if (!checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), MaxThreads, 1))
3260     return;
3261   if (Attr.getNumArgs() > 1 && !checkUInt32Argument(S, Attr,
3262                                                     Attr.getArgAsExpr(1),
3263                                                     MinBlocks, 2))
3264     return;
3265 
3266   D->addAttr(::new (S.Context)
3267               CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
3268                                   MaxThreads, MinBlocks,
3269                                   Attr.getAttributeSpellingListIndex()));
3270 }
3271 
3272 static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
3273                                           const AttributeList &Attr) {
3274   if (!Attr.isArgIdent(0)) {
3275     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
3276       << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
3277     return;
3278   }
3279 
3280   if (!checkAttributeNumArgs(S, Attr, 3))
3281     return;
3282 
3283   IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
3284 
3285   if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
3286     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
3287       << Attr.getName() << ExpectedFunctionOrMethod;
3288     return;
3289   }
3290 
3291   uint64_t ArgumentIdx;
3292   if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 2, Attr.getArgAsExpr(1),
3293                                            ArgumentIdx))
3294     return;
3295 
3296   uint64_t TypeTagIdx;
3297   if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 3, Attr.getArgAsExpr(2),
3298                                            TypeTagIdx))
3299     return;
3300 
3301   bool IsPointer = (Attr.getName()->getName() == "pointer_with_type_tag");
3302   if (IsPointer) {
3303     // Ensure that buffer has a pointer type.
3304     QualType BufferTy = getFunctionOrMethodParamType(D, ArgumentIdx);
3305     if (!BufferTy->isPointerType()) {
3306       S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
3307         << Attr.getName();
3308     }
3309   }
3310 
3311   D->addAttr(::new (S.Context)
3312              ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
3313                                      ArgumentIdx, TypeTagIdx, IsPointer,
3314                                      Attr.getAttributeSpellingListIndex()));
3315 }
3316 
3317 static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
3318                                          const AttributeList &Attr) {
3319   if (!Attr.isArgIdent(0)) {
3320     S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
3321       << Attr.getName() << 1 << AANT_ArgumentIdentifier;
3322     return;
3323   }
3324 
3325   if (!checkAttributeNumArgs(S, Attr, 1))
3326     return;
3327 
3328   if (!isa<VarDecl>(D)) {
3329     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
3330       << Attr.getName() << ExpectedVariable;
3331     return;
3332   }
3333 
3334   IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
3335   TypeSourceInfo *MatchingCTypeLoc = nullptr;
3336   S.GetTypeFromParser(Attr.getMatchingCType(), &MatchingCTypeLoc);
3337   assert(MatchingCTypeLoc && "no type source info for attribute argument");
3338 
3339   D->addAttr(::new (S.Context)
3340              TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
3341                                     MatchingCTypeLoc,
3342                                     Attr.getLayoutCompatible(),
3343                                     Attr.getMustBeNull(),
3344                                     Attr.getAttributeSpellingListIndex()));
3345 }
3346 
3347 //===----------------------------------------------------------------------===//
3348 // Checker-specific attribute handlers.
3349 //===----------------------------------------------------------------------===//
3350 
3351 static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3352   return type->isDependentType() ||
3353          type->isObjCObjectPointerType() ||
3354          S.Context.isObjCNSObjectType(type);
3355 }
3356 static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3357   return type->isDependentType() ||
3358          type->isPointerType() ||
3359          isValidSubjectOfNSAttribute(S, type);
3360 }
3361 
3362 static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3363   ParmVarDecl *param = cast<ParmVarDecl>(D);
3364   bool typeOK, cf;
3365 
3366   if (Attr.getKind() == AttributeList::AT_NSConsumed) {
3367     typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3368     cf = false;
3369   } else {
3370     typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3371     cf = true;
3372   }
3373 
3374   if (!typeOK) {
3375     S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
3376       << Attr.getRange() << Attr.getName() << cf;
3377     return;
3378   }
3379 
3380   if (cf)
3381     param->addAttr(::new (S.Context)
3382                    CFConsumedAttr(Attr.getRange(), S.Context,
3383                                   Attr.getAttributeSpellingListIndex()));
3384   else
3385     param->addAttr(::new (S.Context)
3386                    NSConsumedAttr(Attr.getRange(), S.Context,
3387                                   Attr.getAttributeSpellingListIndex()));
3388 }
3389 
3390 static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3391                                         const AttributeList &Attr) {
3392 
3393   QualType returnType;
3394 
3395   if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
3396     returnType = MD->getReturnType();
3397   else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
3398            (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
3399     return; // ignore: was handled as a type attribute
3400   else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
3401     returnType = PD->getType();
3402   else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
3403     returnType = FD->getReturnType();
3404   else {
3405     S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3406         << Attr.getRange() << Attr.getName()
3407         << ExpectedFunctionOrMethod;
3408     return;
3409   }
3410 
3411   bool typeOK;
3412   bool cf;
3413   switch (Attr.getKind()) {
3414   default: llvm_unreachable("invalid ownership attribute");
3415   case AttributeList::AT_NSReturnsAutoreleased:
3416   case AttributeList::AT_NSReturnsRetained:
3417   case AttributeList::AT_NSReturnsNotRetained:
3418     typeOK = isValidSubjectOfNSAttribute(S, returnType);
3419     cf = false;
3420     break;
3421 
3422   case AttributeList::AT_CFReturnsRetained:
3423   case AttributeList::AT_CFReturnsNotRetained:
3424     typeOK = isValidSubjectOfCFAttribute(S, returnType);
3425     cf = true;
3426     break;
3427   }
3428 
3429   if (!typeOK) {
3430     S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3431       << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
3432     return;
3433   }
3434 
3435   switch (Attr.getKind()) {
3436     default:
3437       llvm_unreachable("invalid ownership attribute");
3438     case AttributeList::AT_NSReturnsAutoreleased:
3439       D->addAttr(::new (S.Context)
3440                  NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
3441                                            Attr.getAttributeSpellingListIndex()));
3442       return;
3443     case AttributeList::AT_CFReturnsNotRetained:
3444       D->addAttr(::new (S.Context)
3445                  CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
3446                                           Attr.getAttributeSpellingListIndex()));
3447       return;
3448     case AttributeList::AT_NSReturnsNotRetained:
3449       D->addAttr(::new (S.Context)
3450                  NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
3451                                           Attr.getAttributeSpellingListIndex()));
3452       return;
3453     case AttributeList::AT_CFReturnsRetained:
3454       D->addAttr(::new (S.Context)
3455                  CFReturnsRetainedAttr(Attr.getRange(), S.Context,
3456                                        Attr.getAttributeSpellingListIndex()));
3457       return;
3458     case AttributeList::AT_NSReturnsRetained:
3459       D->addAttr(::new (S.Context)
3460                  NSReturnsRetainedAttr(Attr.getRange(), S.Context,
3461                                        Attr.getAttributeSpellingListIndex()));
3462       return;
3463   };
3464 }
3465 
3466 static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3467                                               const AttributeList &attr) {
3468   const int EP_ObjCMethod = 1;
3469   const int EP_ObjCProperty = 2;
3470 
3471   SourceLocation loc = attr.getLoc();
3472   QualType resultType;
3473   if (isa<ObjCMethodDecl>(D))
3474     resultType = cast<ObjCMethodDecl>(D)->getReturnType();
3475   else
3476     resultType = cast<ObjCPropertyDecl>(D)->getType();
3477 
3478   if (!resultType->isReferenceType() &&
3479       (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
3480     S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3481       << SourceRange(loc)
3482     << attr.getName()
3483     << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty)
3484     << /*non-retainable pointer*/ 2;
3485 
3486     // Drop the attribute.
3487     return;
3488   }
3489 
3490   D->addAttr(::new (S.Context)
3491                   ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
3492                                               attr.getAttributeSpellingListIndex()));
3493 }
3494 
3495 static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
3496                                         const AttributeList &attr) {
3497   ObjCMethodDecl *method = cast<ObjCMethodDecl>(D);
3498 
3499   DeclContext *DC = method->getDeclContext();
3500   if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
3501     S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
3502     << attr.getName() << 0;
3503     S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
3504     return;
3505   }
3506   if (method->getMethodFamily() == OMF_dealloc) {
3507     S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
3508     << attr.getName() << 1;
3509     return;
3510   }
3511 
3512   method->addAttr(::new (S.Context)
3513                   ObjCRequiresSuperAttr(attr.getRange(), S.Context,
3514                                         attr.getAttributeSpellingListIndex()));
3515 }
3516 
3517 static void handleCFAuditedTransferAttr(Sema &S, Decl *D,
3518                                         const AttributeList &Attr) {
3519   if (checkAttrMutualExclusion<CFUnknownTransferAttr>(S, D, Attr))
3520     return;
3521 
3522   D->addAttr(::new (S.Context)
3523              CFAuditedTransferAttr(Attr.getRange(), S.Context,
3524                                    Attr.getAttributeSpellingListIndex()));
3525 }
3526 
3527 static void handleCFUnknownTransferAttr(Sema &S, Decl *D,
3528                                         const AttributeList &Attr) {
3529   if (checkAttrMutualExclusion<CFAuditedTransferAttr>(S, D, Attr))
3530     return;
3531 
3532   D->addAttr(::new (S.Context)
3533              CFUnknownTransferAttr(Attr.getRange(), S.Context,
3534              Attr.getAttributeSpellingListIndex()));
3535 }
3536 
3537 static void handleObjCBridgeAttr(Sema &S, Scope *Sc, Decl *D,
3538                                 const AttributeList &Attr) {
3539   IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr;
3540 
3541   if (!Parm) {
3542     S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
3543     return;
3544   }
3545 
3546   D->addAttr(::new (S.Context)
3547              ObjCBridgeAttr(Attr.getRange(), S.Context, Parm->Ident,
3548                            Attr.getAttributeSpellingListIndex()));
3549 }
3550 
3551 static void handleObjCBridgeMutableAttr(Sema &S, Scope *Sc, Decl *D,
3552                                         const AttributeList &Attr) {
3553   IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr;
3554 
3555   if (!Parm) {
3556     S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
3557     return;
3558   }
3559 
3560   D->addAttr(::new (S.Context)
3561              ObjCBridgeMutableAttr(Attr.getRange(), S.Context, Parm->Ident,
3562                             Attr.getAttributeSpellingListIndex()));
3563 }
3564 
3565 static void handleObjCBridgeRelatedAttr(Sema &S, Scope *Sc, Decl *D,
3566                                  const AttributeList &Attr) {
3567   IdentifierInfo *RelatedClass =
3568     Attr.isArgIdent(0) ? Attr.getArgAsIdent(0)->Ident : nullptr;
3569   if (!RelatedClass) {
3570     S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
3571     return;
3572   }
3573   IdentifierInfo *ClassMethod =
3574     Attr.getArgAsIdent(1) ? Attr.getArgAsIdent(1)->Ident : nullptr;
3575   IdentifierInfo *InstanceMethod =
3576     Attr.getArgAsIdent(2) ? Attr.getArgAsIdent(2)->Ident : nullptr;
3577   D->addAttr(::new (S.Context)
3578              ObjCBridgeRelatedAttr(Attr.getRange(), S.Context, RelatedClass,
3579                                    ClassMethod, InstanceMethod,
3580                                    Attr.getAttributeSpellingListIndex()));
3581 }
3582 
3583 static void handleObjCDesignatedInitializer(Sema &S, Decl *D,
3584                                             const AttributeList &Attr) {
3585   ObjCInterfaceDecl *IFace;
3586   if (ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(D->getDeclContext()))
3587     IFace = CatDecl->getClassInterface();
3588   else
3589     IFace = cast<ObjCInterfaceDecl>(D->getDeclContext());
3590   IFace->setHasDesignatedInitializers();
3591   D->addAttr(::new (S.Context)
3592                   ObjCDesignatedInitializerAttr(Attr.getRange(), S.Context,
3593                                          Attr.getAttributeSpellingListIndex()));
3594 }
3595 
3596 static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3597                                     const AttributeList &Attr) {
3598   if (hasDeclarator(D)) return;
3599 
3600   S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3601     << Attr.getRange() << Attr.getName() << ExpectedVariable;
3602 }
3603 
3604 static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3605                                           const AttributeList &Attr) {
3606   ValueDecl *vd = cast<ValueDecl>(D);
3607   QualType type = vd->getType();
3608 
3609   if (!type->isDependentType() &&
3610       !type->isObjCLifetimeType()) {
3611     S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
3612       << type;
3613     return;
3614   }
3615 
3616   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3617 
3618   // If we have no lifetime yet, check the lifetime we're presumably
3619   // going to infer.
3620   if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3621     lifetime = type->getObjCARCImplicitLifetime();
3622 
3623   switch (lifetime) {
3624   case Qualifiers::OCL_None:
3625     assert(type->isDependentType() &&
3626            "didn't infer lifetime for non-dependent type?");
3627     break;
3628 
3629   case Qualifiers::OCL_Weak:   // meaningful
3630   case Qualifiers::OCL_Strong: // meaningful
3631     break;
3632 
3633   case Qualifiers::OCL_ExplicitNone:
3634   case Qualifiers::OCL_Autoreleasing:
3635     S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
3636       << (lifetime == Qualifiers::OCL_Autoreleasing);
3637     break;
3638   }
3639 
3640   D->addAttr(::new (S.Context)
3641              ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
3642                                      Attr.getAttributeSpellingListIndex()));
3643 }
3644 
3645 //===----------------------------------------------------------------------===//
3646 // Microsoft specific attribute handlers.
3647 //===----------------------------------------------------------------------===//
3648 
3649 static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3650   if (!S.LangOpts.CPlusPlus) {
3651     S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
3652       << Attr.getName() << AttributeLangSupport::C;
3653     return;
3654   }
3655 
3656   if (!isa<CXXRecordDecl>(D)) {
3657     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3658       << Attr.getName() << ExpectedClass;
3659     return;
3660   }
3661 
3662   StringRef StrRef;
3663   SourceLocation LiteralLoc;
3664   if (!S.checkStringLiteralArgumentAttr(Attr, 0, StrRef, &LiteralLoc))
3665     return;
3666 
3667   // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3668   // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
3669   if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
3670     StrRef = StrRef.drop_front().drop_back();
3671 
3672   // Validate GUID length.
3673   if (StrRef.size() != 36) {
3674     S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
3675     return;
3676   }
3677 
3678   for (unsigned i = 0; i < 36; ++i) {
3679     if (i == 8 || i == 13 || i == 18 || i == 23) {
3680       if (StrRef[i] != '-') {
3681         S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
3682         return;
3683       }
3684     } else if (!isHexDigit(StrRef[i])) {
3685       S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
3686       return;
3687     }
3688   }
3689 
3690   D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
3691                                         Attr.getAttributeSpellingListIndex()));
3692 }
3693 
3694 static void handleMSInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3695   if (!S.LangOpts.CPlusPlus) {
3696     S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
3697       << Attr.getName() << AttributeLangSupport::C;
3698     return;
3699   }
3700   MSInheritanceAttr *IA = S.mergeMSInheritanceAttr(
3701       D, Attr.getRange(), /*BestCase=*/true,
3702       Attr.getAttributeSpellingListIndex(),
3703       (MSInheritanceAttr::Spelling)Attr.getSemanticSpelling());
3704   if (IA)
3705     D->addAttr(IA);
3706 }
3707 
3708 static void handleDeclspecThreadAttr(Sema &S, Decl *D,
3709                                      const AttributeList &Attr) {
3710   VarDecl *VD = cast<VarDecl>(D);
3711   if (!S.Context.getTargetInfo().isTLSSupported()) {
3712     S.Diag(Attr.getLoc(), diag::err_thread_unsupported);
3713     return;
3714   }
3715   if (VD->getTSCSpec() != TSCS_unspecified) {
3716     S.Diag(Attr.getLoc(), diag::err_declspec_thread_on_thread_variable);
3717     return;
3718   }
3719   if (VD->hasLocalStorage()) {
3720     S.Diag(Attr.getLoc(), diag::err_thread_non_global) << "__declspec(thread)";
3721     return;
3722   }
3723   VD->addAttr(::new (S.Context) ThreadAttr(
3724       Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
3725 }
3726 
3727 static void handleARMInterruptAttr(Sema &S, Decl *D,
3728                                    const AttributeList &Attr) {
3729   // Check the attribute arguments.
3730   if (Attr.getNumArgs() > 1) {
3731     S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
3732       << Attr.getName() << 1;
3733     return;
3734   }
3735 
3736   StringRef Str;
3737   SourceLocation ArgLoc;
3738 
3739   if (Attr.getNumArgs() == 0)
3740     Str = "";
3741   else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc))
3742     return;
3743 
3744   ARMInterruptAttr::InterruptType Kind;
3745   if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
3746     S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
3747       << Attr.getName() << Str << ArgLoc;
3748     return;
3749   }
3750 
3751   unsigned Index = Attr.getAttributeSpellingListIndex();
3752   D->addAttr(::new (S.Context)
3753              ARMInterruptAttr(Attr.getLoc(), S.Context, Kind, Index));
3754 }
3755 
3756 static void handleMSP430InterruptAttr(Sema &S, Decl *D,
3757                                       const AttributeList &Attr) {
3758   if (!checkAttributeNumArgs(S, Attr, 1))
3759     return;
3760 
3761   if (!Attr.isArgExpr(0)) {
3762     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3763       << AANT_ArgumentIntegerConstant;
3764     return;
3765   }
3766 
3767   // FIXME: Check for decl - it should be void ()(void).
3768 
3769   Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
3770   llvm::APSInt NumParams(32);
3771   if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
3772     S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3773       << Attr.getName() << AANT_ArgumentIntegerConstant
3774       << NumParamsExpr->getSourceRange();
3775     return;
3776   }
3777 
3778   unsigned Num = NumParams.getLimitedValue(255);
3779   if ((Num & 1) || Num > 30) {
3780     S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
3781       << Attr.getName() << (int)NumParams.getSExtValue()
3782       << NumParamsExpr->getSourceRange();
3783     return;
3784   }
3785 
3786   D->addAttr(::new (S.Context)
3787               MSP430InterruptAttr(Attr.getLoc(), S.Context, Num,
3788                                   Attr.getAttributeSpellingListIndex()));
3789   D->addAttr(UsedAttr::CreateImplicit(S.Context));
3790 }
3791 
3792 static void handleInterruptAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3793   // Dispatch the interrupt attribute based on the current target.
3794   if (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::msp430)
3795     handleMSP430InterruptAttr(S, D, Attr);
3796   else
3797     handleARMInterruptAttr(S, D, Attr);
3798 }
3799 
3800 static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D,
3801                                               const AttributeList& Attr) {
3802   // If we try to apply it to a function pointer, don't warn, but don't
3803   // do anything, either. It doesn't matter anyway, because there's nothing
3804   // special about calling a force_align_arg_pointer function.
3805   ValueDecl *VD = dyn_cast<ValueDecl>(D);
3806   if (VD && VD->getType()->isFunctionPointerType())
3807     return;
3808   // Also don't warn on function pointer typedefs.
3809   TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
3810   if (TD && (TD->getUnderlyingType()->isFunctionPointerType() ||
3811     TD->getUnderlyingType()->isFunctionType()))
3812     return;
3813   // Attribute can only be applied to function types.
3814   if (!isa<FunctionDecl>(D)) {
3815     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3816       << Attr.getName() << /* function */0;
3817     return;
3818   }
3819 
3820   D->addAttr(::new (S.Context)
3821               X86ForceAlignArgPointerAttr(Attr.getRange(), S.Context,
3822                                         Attr.getAttributeSpellingListIndex()));
3823 }
3824 
3825 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range,
3826                                         unsigned AttrSpellingListIndex) {
3827   if (D->hasAttr<DLLExportAttr>()) {
3828     Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'";
3829     return nullptr;
3830   }
3831 
3832   if (D->hasAttr<DLLImportAttr>())
3833     return nullptr;
3834 
3835   return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex);
3836 }
3837 
3838 static void handleDLLImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3839   unsigned Index = Attr.getAttributeSpellingListIndex();
3840   DLLImportAttr *NewAttr = S.mergeDLLImportAttr(D, Attr.getRange(), Index);
3841   if (NewAttr)
3842     D->addAttr(NewAttr);
3843 }
3844 
3845 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range,
3846                                         unsigned AttrSpellingListIndex) {
3847   if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
3848     Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import;
3849     D->dropAttr<DLLImportAttr>();
3850   }
3851 
3852   if (D->hasAttr<DLLExportAttr>())
3853     return nullptr;
3854 
3855   return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex);
3856 }
3857 
3858 static void handleDLLExportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3859   unsigned Index = Attr.getAttributeSpellingListIndex();
3860   DLLExportAttr *NewAttr = S.mergeDLLExportAttr(D, Attr.getRange(), Index);
3861   if (NewAttr)
3862     D->addAttr(NewAttr);
3863 }
3864 
3865 MSInheritanceAttr *
3866 Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase,
3867                              unsigned AttrSpellingListIndex,
3868                              MSInheritanceAttr::Spelling SemanticSpelling) {
3869   if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) {
3870     if (IA->getSemanticSpelling() == SemanticSpelling)
3871       return nullptr;
3872     Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance)
3873         << 1 /*previous declaration*/;
3874     Diag(Range.getBegin(), diag::note_previous_ms_inheritance);
3875     D->dropAttr<MSInheritanceAttr>();
3876   }
3877 
3878   CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
3879   if (RD->hasDefinition()) {
3880     if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase,
3881                                            SemanticSpelling)) {
3882       return nullptr;
3883     }
3884   } else {
3885     if (isa<ClassTemplatePartialSpecializationDecl>(RD)) {
3886       Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
3887           << 1 /*partial specialization*/;
3888       return nullptr;
3889     }
3890     if (RD->getDescribedClassTemplate()) {
3891       Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
3892           << 0 /*primary template*/;
3893       return nullptr;
3894     }
3895   }
3896 
3897   return ::new (Context)
3898       MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex);
3899 }
3900 
3901 static void handleCapabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3902   // The capability attributes take a single string parameter for the name of
3903   // the capability they represent. The lockable attribute does not take any
3904   // parameters. However, semantically, both attributes represent the same
3905   // concept, and so they use the same semantic attribute. Eventually, the
3906   // lockable attribute will be removed.
3907   //
3908   // For backwards compatibility, any capability which has no specified string
3909   // literal will be considered a "mutex."
3910   StringRef N("mutex");
3911   SourceLocation LiteralLoc;
3912   if (Attr.getKind() == AttributeList::AT_Capability &&
3913       !S.checkStringLiteralArgumentAttr(Attr, 0, N, &LiteralLoc))
3914     return;
3915 
3916   // Currently, there are only two names allowed for a capability: role and
3917   // mutex (case insensitive). Diagnose other capability names.
3918   if (!N.equals_lower("mutex") && !N.equals_lower("role"))
3919     S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N;
3920 
3921   D->addAttr(::new (S.Context) CapabilityAttr(Attr.getRange(), S.Context, N,
3922                                         Attr.getAttributeSpellingListIndex()));
3923 }
3924 
3925 static void handleAssertCapabilityAttr(Sema &S, Decl *D,
3926                                        const AttributeList &Attr) {
3927   D->addAttr(::new (S.Context) AssertCapabilityAttr(Attr.getRange(), S.Context,
3928                                                     Attr.getArgAsExpr(0),
3929                                         Attr.getAttributeSpellingListIndex()));
3930 }
3931 
3932 static void handleAcquireCapabilityAttr(Sema &S, Decl *D,
3933                                         const AttributeList &Attr) {
3934   SmallVector<Expr*, 1> Args;
3935   if (!checkLockFunAttrCommon(S, D, Attr, Args))
3936     return;
3937 
3938   D->addAttr(::new (S.Context) AcquireCapabilityAttr(Attr.getRange(),
3939                                                      S.Context,
3940                                                      Args.data(), Args.size(),
3941                                         Attr.getAttributeSpellingListIndex()));
3942 }
3943 
3944 static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D,
3945                                            const AttributeList &Attr) {
3946   SmallVector<Expr*, 2> Args;
3947   if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
3948     return;
3949 
3950   D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(Attr.getRange(),
3951                                                         S.Context,
3952                                                         Attr.getArgAsExpr(0),
3953                                                         Args.data(),
3954                                                         Args.size(),
3955                                         Attr.getAttributeSpellingListIndex()));
3956 }
3957 
3958 static void handleReleaseCapabilityAttr(Sema &S, Decl *D,
3959                                         const AttributeList &Attr) {
3960   // Check that all arguments are lockable objects.
3961   SmallVector<Expr *, 1> Args;
3962   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, true);
3963 
3964   D->addAttr(::new (S.Context) ReleaseCapabilityAttr(
3965       Attr.getRange(), S.Context, Args.data(), Args.size(),
3966       Attr.getAttributeSpellingListIndex()));
3967 }
3968 
3969 static void handleRequiresCapabilityAttr(Sema &S, Decl *D,
3970                                          const AttributeList &Attr) {
3971   if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
3972     return;
3973 
3974   // check that all arguments are lockable objects
3975   SmallVector<Expr*, 1> Args;
3976   checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
3977   if (Args.empty())
3978     return;
3979 
3980   RequiresCapabilityAttr *RCA = ::new (S.Context)
3981     RequiresCapabilityAttr(Attr.getRange(), S.Context, Args.data(),
3982                            Args.size(), Attr.getAttributeSpellingListIndex());
3983 
3984   D->addAttr(RCA);
3985 }
3986 
3987 /// Handles semantic checking for features that are common to all attributes,
3988 /// such as checking whether a parameter was properly specified, or the correct
3989 /// number of arguments were passed, etc.
3990 static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
3991                                           const AttributeList &Attr) {
3992   // Several attributes carry different semantics than the parsing requires, so
3993   // those are opted out of the common handling.
3994   //
3995   // We also bail on unknown and ignored attributes because those are handled
3996   // as part of the target-specific handling logic.
3997   if (Attr.hasCustomParsing() ||
3998       Attr.getKind() == AttributeList::UnknownAttribute)
3999     return false;
4000 
4001   // Check whether the attribute requires specific language extensions to be
4002   // enabled.
4003   if (!Attr.diagnoseLangOpts(S))
4004     return true;
4005 
4006   // If there are no optional arguments, then checking for the argument count
4007   // is trivial.
4008   if (Attr.getMinArgs() == Attr.getMaxArgs() &&
4009       !checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
4010     return true;
4011 
4012   // Check whether the attribute appertains to the given subject.
4013   if (!Attr.diagnoseAppertainsTo(S, D))
4014     return true;
4015 
4016   return false;
4017 }
4018 
4019 //===----------------------------------------------------------------------===//
4020 // Top Level Sema Entry Points
4021 //===----------------------------------------------------------------------===//
4022 
4023 /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4024 /// the attribute applies to decls.  If the attribute is a type attribute, just
4025 /// silently ignore it if a GNU attribute.
4026 static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4027                                  const AttributeList &Attr,
4028                                  bool IncludeCXX11Attributes) {
4029   if (Attr.isInvalid() || Attr.getKind() == AttributeList::IgnoredAttribute)
4030     return;
4031 
4032   // Ignore C++11 attributes on declarator chunks: they appertain to the type
4033   // instead.
4034   if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4035     return;
4036 
4037   // Unknown attributes are automatically warned on. Target-specific attributes
4038   // which do not apply to the current target architecture are treated as
4039   // though they were unknown attributes.
4040   if (Attr.getKind() == AttributeList::UnknownAttribute ||
4041       !Attr.existsInTarget(S.Context.getTargetInfo().getTriple())) {
4042     S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute()
4043                               ? diag::warn_unhandled_ms_attribute_ignored
4044                               : diag::warn_unknown_attribute_ignored)
4045         << Attr.getName();
4046     return;
4047   }
4048 
4049   if (handleCommonAttributeFeatures(S, scope, D, Attr))
4050     return;
4051 
4052   switch (Attr.getKind()) {
4053   default:
4054     // Type attributes are handled elsewhere; silently move on.
4055     assert(Attr.isTypeAttr() && "Non-type attribute not handled");
4056     break;
4057   case AttributeList::AT_Interrupt:
4058     handleInterruptAttr(S, D, Attr);
4059     break;
4060   case AttributeList::AT_X86ForceAlignArgPointer:
4061     handleX86ForceAlignArgPointerAttr(S, D, Attr);
4062     break;
4063   case AttributeList::AT_DLLExport:
4064     handleDLLExportAttr(S, D, Attr);
4065     break;
4066   case AttributeList::AT_DLLImport:
4067     handleDLLImportAttr(S, D, Attr);
4068     break;
4069   case AttributeList::AT_Mips16:
4070     handleSimpleAttribute<Mips16Attr>(S, D, Attr);
4071     break;
4072   case AttributeList::AT_NoMips16:
4073     handleSimpleAttribute<NoMips16Attr>(S, D, Attr);
4074     break;
4075   case AttributeList::AT_IBAction:
4076     handleSimpleAttribute<IBActionAttr>(S, D, Attr);
4077     break;
4078   case AttributeList::AT_IBOutlet:
4079     handleIBOutlet(S, D, Attr);
4080     break;
4081   case AttributeList::AT_IBOutletCollection:
4082     handleIBOutletCollection(S, D, Attr);
4083     break;
4084   case AttributeList::AT_Alias:
4085     handleAliasAttr(S, D, Attr);
4086     break;
4087   case AttributeList::AT_Aligned:
4088     handleAlignedAttr(S, D, Attr);
4089     break;
4090   case AttributeList::AT_AlwaysInline:
4091     handleAlwaysInlineAttr(S, D, Attr);
4092     break;
4093   case AttributeList::AT_AnalyzerNoReturn:
4094     handleAnalyzerNoReturnAttr(S, D, Attr);
4095     break;
4096   case AttributeList::AT_TLSModel:
4097     handleTLSModelAttr(S, D, Attr);
4098     break;
4099   case AttributeList::AT_Annotate:
4100     handleAnnotateAttr(S, D, Attr);
4101     break;
4102   case AttributeList::AT_Availability:
4103     handleAvailabilityAttr(S, D, Attr);
4104     break;
4105   case AttributeList::AT_CarriesDependency:
4106     handleDependencyAttr(S, scope, D, Attr);
4107     break;
4108   case AttributeList::AT_Common:
4109     handleCommonAttr(S, D, Attr);
4110     break;
4111   case AttributeList::AT_CUDAConstant:
4112     handleSimpleAttribute<CUDAConstantAttr>(S, D, Attr);
4113     break;
4114   case AttributeList::AT_Constructor:
4115     handleConstructorAttr(S, D, Attr);
4116     break;
4117   case AttributeList::AT_CXX11NoReturn:
4118     handleSimpleAttribute<CXX11NoReturnAttr>(S, D, Attr);
4119     break;
4120   case AttributeList::AT_Deprecated:
4121     handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
4122     break;
4123   case AttributeList::AT_Destructor:
4124     handleDestructorAttr(S, D, Attr);
4125     break;
4126   case AttributeList::AT_EnableIf:
4127     handleEnableIfAttr(S, D, Attr);
4128     break;
4129   case AttributeList::AT_ExtVectorType:
4130     handleExtVectorTypeAttr(S, scope, D, Attr);
4131     break;
4132   case AttributeList::AT_MinSize:
4133     handleSimpleAttribute<MinSizeAttr>(S, D, Attr);
4134     break;
4135   case AttributeList::AT_OptimizeNone:
4136     handleOptimizeNoneAttr(S, D, Attr);
4137     break;
4138   case AttributeList::AT_Flatten:
4139     handleSimpleAttribute<FlattenAttr>(S, D, Attr);
4140     break;
4141   case AttributeList::AT_Format:
4142     handleFormatAttr(S, D, Attr);
4143     break;
4144   case AttributeList::AT_FormatArg:
4145     handleFormatArgAttr(S, D, Attr);
4146     break;
4147   case AttributeList::AT_CUDAGlobal:
4148     handleGlobalAttr(S, D, Attr);
4149     break;
4150   case AttributeList::AT_CUDADevice:
4151     handleSimpleAttribute<CUDADeviceAttr>(S, D, Attr);
4152     break;
4153   case AttributeList::AT_CUDAHost:
4154     handleSimpleAttribute<CUDAHostAttr>(S, D, Attr);
4155     break;
4156   case AttributeList::AT_GNUInline:
4157     handleGNUInlineAttr(S, D, Attr);
4158     break;
4159   case AttributeList::AT_CUDALaunchBounds:
4160     handleLaunchBoundsAttr(S, D, Attr);
4161     break;
4162   case AttributeList::AT_Malloc:
4163     handleMallocAttr(S, D, Attr);
4164     break;
4165   case AttributeList::AT_MayAlias:
4166     handleSimpleAttribute<MayAliasAttr>(S, D, Attr);
4167     break;
4168   case AttributeList::AT_Mode:
4169     handleModeAttr(S, D, Attr);
4170     break;
4171   case AttributeList::AT_NoCommon:
4172     handleSimpleAttribute<NoCommonAttr>(S, D, Attr);
4173     break;
4174   case AttributeList::AT_NoSplitStack:
4175     handleSimpleAttribute<NoSplitStackAttr>(S, D, Attr);
4176     break;
4177   case AttributeList::AT_NonNull:
4178     if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D))
4179       handleNonNullAttrParameter(S, PVD, Attr);
4180     else
4181       handleNonNullAttr(S, D, Attr);
4182     break;
4183   case AttributeList::AT_ReturnsNonNull:
4184     handleReturnsNonNullAttr(S, D, Attr);
4185     break;
4186   case AttributeList::AT_Overloadable:
4187     handleSimpleAttribute<OverloadableAttr>(S, D, Attr);
4188     break;
4189   case AttributeList::AT_Ownership:
4190     handleOwnershipAttr(S, D, Attr);
4191     break;
4192   case AttributeList::AT_Cold:
4193     handleColdAttr(S, D, Attr);
4194     break;
4195   case AttributeList::AT_Hot:
4196     handleHotAttr(S, D, Attr);
4197     break;
4198   case AttributeList::AT_Naked:
4199     handleSimpleAttribute<NakedAttr>(S, D, Attr);
4200     break;
4201   case AttributeList::AT_NoReturn:
4202     handleNoReturnAttr(S, D, Attr);
4203     break;
4204   case AttributeList::AT_NoThrow:
4205     handleSimpleAttribute<NoThrowAttr>(S, D, Attr);
4206     break;
4207   case AttributeList::AT_CUDAShared:
4208     handleSimpleAttribute<CUDASharedAttr>(S, D, Attr);
4209     break;
4210   case AttributeList::AT_VecReturn:
4211     handleVecReturnAttr(S, D, Attr);
4212     break;
4213 
4214   case AttributeList::AT_ObjCOwnership:
4215     handleObjCOwnershipAttr(S, D, Attr);
4216     break;
4217   case AttributeList::AT_ObjCPreciseLifetime:
4218     handleObjCPreciseLifetimeAttr(S, D, Attr);
4219     break;
4220 
4221   case AttributeList::AT_ObjCReturnsInnerPointer:
4222     handleObjCReturnsInnerPointerAttr(S, D, Attr);
4223     break;
4224 
4225   case AttributeList::AT_ObjCRequiresSuper:
4226     handleObjCRequiresSuperAttr(S, D, Attr);
4227     break;
4228 
4229   case AttributeList::AT_ObjCBridge:
4230     handleObjCBridgeAttr(S, scope, D, Attr);
4231     break;
4232 
4233   case AttributeList::AT_ObjCBridgeMutable:
4234     handleObjCBridgeMutableAttr(S, scope, D, Attr);
4235     break;
4236 
4237   case AttributeList::AT_ObjCBridgeRelated:
4238     handleObjCBridgeRelatedAttr(S, scope, D, Attr);
4239     break;
4240 
4241   case AttributeList::AT_ObjCDesignatedInitializer:
4242     handleObjCDesignatedInitializer(S, D, Attr);
4243     break;
4244 
4245   case AttributeList::AT_CFAuditedTransfer:
4246     handleCFAuditedTransferAttr(S, D, Attr);
4247     break;
4248   case AttributeList::AT_CFUnknownTransfer:
4249     handleCFUnknownTransferAttr(S, D, Attr);
4250     break;
4251 
4252   case AttributeList::AT_CFConsumed:
4253   case AttributeList::AT_NSConsumed:
4254     handleNSConsumedAttr(S, D, Attr);
4255     break;
4256   case AttributeList::AT_NSConsumesSelf:
4257     handleSimpleAttribute<NSConsumesSelfAttr>(S, D, Attr);
4258     break;
4259 
4260   case AttributeList::AT_NSReturnsAutoreleased:
4261   case AttributeList::AT_NSReturnsNotRetained:
4262   case AttributeList::AT_CFReturnsNotRetained:
4263   case AttributeList::AT_NSReturnsRetained:
4264   case AttributeList::AT_CFReturnsRetained:
4265     handleNSReturnsRetainedAttr(S, D, Attr);
4266     break;
4267   case AttributeList::AT_WorkGroupSizeHint:
4268     handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, Attr);
4269     break;
4270   case AttributeList::AT_ReqdWorkGroupSize:
4271     handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, Attr);
4272     break;
4273   case AttributeList::AT_VecTypeHint:
4274     handleVecTypeHint(S, D, Attr);
4275     break;
4276 
4277   case AttributeList::AT_InitPriority:
4278     handleInitPriorityAttr(S, D, Attr);
4279     break;
4280 
4281   case AttributeList::AT_Packed:
4282     handlePackedAttr(S, D, Attr);
4283     break;
4284   case AttributeList::AT_Section:
4285     handleSectionAttr(S, D, Attr);
4286     break;
4287   case AttributeList::AT_Unavailable:
4288     handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
4289     break;
4290   case AttributeList::AT_ArcWeakrefUnavailable:
4291     handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, Attr);
4292     break;
4293   case AttributeList::AT_ObjCRootClass:
4294     handleSimpleAttribute<ObjCRootClassAttr>(S, D, Attr);
4295     break;
4296   case AttributeList::AT_ObjCExplicitProtocolImpl:
4297     handleObjCSuppresProtocolAttr(S, D, Attr);
4298     break;
4299   case AttributeList::AT_ObjCRequiresPropertyDefs:
4300     handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, Attr);
4301     break;
4302   case AttributeList::AT_Unused:
4303     handleSimpleAttribute<UnusedAttr>(S, D, Attr);
4304     break;
4305   case AttributeList::AT_ReturnsTwice:
4306     handleSimpleAttribute<ReturnsTwiceAttr>(S, D, Attr);
4307     break;
4308   case AttributeList::AT_Used:
4309     handleUsedAttr(S, D, Attr);
4310     break;
4311   case AttributeList::AT_Visibility:
4312     handleVisibilityAttr(S, D, Attr, false);
4313     break;
4314   case AttributeList::AT_TypeVisibility:
4315     handleVisibilityAttr(S, D, Attr, true);
4316     break;
4317   case AttributeList::AT_WarnUnused:
4318     handleSimpleAttribute<WarnUnusedAttr>(S, D, Attr);
4319     break;
4320   case AttributeList::AT_WarnUnusedResult:
4321     handleWarnUnusedResult(S, D, Attr);
4322     break;
4323   case AttributeList::AT_Weak:
4324     handleSimpleAttribute<WeakAttr>(S, D, Attr);
4325     break;
4326   case AttributeList::AT_WeakRef:
4327     handleWeakRefAttr(S, D, Attr);
4328     break;
4329   case AttributeList::AT_WeakImport:
4330     handleWeakImportAttr(S, D, Attr);
4331     break;
4332   case AttributeList::AT_TransparentUnion:
4333     handleTransparentUnionAttr(S, D, Attr);
4334     break;
4335   case AttributeList::AT_ObjCException:
4336     handleSimpleAttribute<ObjCExceptionAttr>(S, D, Attr);
4337     break;
4338   case AttributeList::AT_ObjCMethodFamily:
4339     handleObjCMethodFamilyAttr(S, D, Attr);
4340     break;
4341   case AttributeList::AT_ObjCNSObject:
4342     handleObjCNSObject(S, D, Attr);
4343     break;
4344   case AttributeList::AT_Blocks:
4345     handleBlocksAttr(S, D, Attr);
4346     break;
4347   case AttributeList::AT_Sentinel:
4348     handleSentinelAttr(S, D, Attr);
4349     break;
4350   case AttributeList::AT_Const:
4351     handleSimpleAttribute<ConstAttr>(S, D, Attr);
4352     break;
4353   case AttributeList::AT_Pure:
4354     handleSimpleAttribute<PureAttr>(S, D, Attr);
4355     break;
4356   case AttributeList::AT_Cleanup:
4357     handleCleanupAttr(S, D, Attr);
4358     break;
4359   case AttributeList::AT_NoDebug:
4360     handleNoDebugAttr(S, D, Attr);
4361     break;
4362   case AttributeList::AT_NoDuplicate:
4363     handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr);
4364     break;
4365   case AttributeList::AT_NoInline:
4366     handleSimpleAttribute<NoInlineAttr>(S, D, Attr);
4367     break;
4368   case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
4369     handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, Attr);
4370     break;
4371   case AttributeList::AT_StdCall:
4372   case AttributeList::AT_CDecl:
4373   case AttributeList::AT_FastCall:
4374   case AttributeList::AT_ThisCall:
4375   case AttributeList::AT_Pascal:
4376   case AttributeList::AT_MSABI:
4377   case AttributeList::AT_SysVABI:
4378   case AttributeList::AT_Pcs:
4379   case AttributeList::AT_PnaclCall:
4380   case AttributeList::AT_IntelOclBicc:
4381     handleCallConvAttr(S, D, Attr);
4382     break;
4383   case AttributeList::AT_OpenCLKernel:
4384     handleSimpleAttribute<OpenCLKernelAttr>(S, D, Attr);
4385     break;
4386   case AttributeList::AT_OpenCLImageAccess:
4387     handleSimpleAttribute<OpenCLImageAccessAttr>(S, D, Attr);
4388     break;
4389 
4390   // Microsoft attributes:
4391   case AttributeList::AT_MsStruct:
4392     handleSimpleAttribute<MsStructAttr>(S, D, Attr);
4393     break;
4394   case AttributeList::AT_Uuid:
4395     handleUuidAttr(S, D, Attr);
4396     break;
4397   case AttributeList::AT_MSInheritance:
4398     handleMSInheritanceAttr(S, D, Attr);
4399     break;
4400   case AttributeList::AT_SelectAny:
4401     handleSimpleAttribute<SelectAnyAttr>(S, D, Attr);
4402     break;
4403   case AttributeList::AT_Thread:
4404     handleDeclspecThreadAttr(S, D, Attr);
4405     break;
4406 
4407   // Thread safety attributes:
4408   case AttributeList::AT_AssertExclusiveLock:
4409     handleAssertExclusiveLockAttr(S, D, Attr);
4410     break;
4411   case AttributeList::AT_AssertSharedLock:
4412     handleAssertSharedLockAttr(S, D, Attr);
4413     break;
4414   case AttributeList::AT_GuardedVar:
4415     handleSimpleAttribute<GuardedVarAttr>(S, D, Attr);
4416     break;
4417   case AttributeList::AT_PtGuardedVar:
4418     handlePtGuardedVarAttr(S, D, Attr);
4419     break;
4420   case AttributeList::AT_ScopedLockable:
4421     handleSimpleAttribute<ScopedLockableAttr>(S, D, Attr);
4422     break;
4423   case AttributeList::AT_NoSanitizeAddress:
4424     handleSimpleAttribute<NoSanitizeAddressAttr>(S, D, Attr);
4425     break;
4426   case AttributeList::AT_NoThreadSafetyAnalysis:
4427     handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, Attr);
4428     break;
4429   case AttributeList::AT_NoSanitizeThread:
4430     handleSimpleAttribute<NoSanitizeThreadAttr>(S, D, Attr);
4431     break;
4432   case AttributeList::AT_NoSanitizeMemory:
4433     handleSimpleAttribute<NoSanitizeMemoryAttr>(S, D, Attr);
4434     break;
4435   case AttributeList::AT_GuardedBy:
4436     handleGuardedByAttr(S, D, Attr);
4437     break;
4438   case AttributeList::AT_PtGuardedBy:
4439     handlePtGuardedByAttr(S, D, Attr);
4440     break;
4441   case AttributeList::AT_ExclusiveTrylockFunction:
4442     handleExclusiveTrylockFunctionAttr(S, D, Attr);
4443     break;
4444   case AttributeList::AT_LockReturned:
4445     handleLockReturnedAttr(S, D, Attr);
4446     break;
4447   case AttributeList::AT_LocksExcluded:
4448     handleLocksExcludedAttr(S, D, Attr);
4449     break;
4450   case AttributeList::AT_SharedTrylockFunction:
4451     handleSharedTrylockFunctionAttr(S, D, Attr);
4452     break;
4453   case AttributeList::AT_AcquiredBefore:
4454     handleAcquiredBeforeAttr(S, D, Attr);
4455     break;
4456   case AttributeList::AT_AcquiredAfter:
4457     handleAcquiredAfterAttr(S, D, Attr);
4458     break;
4459 
4460   // Capability analysis attributes.
4461   case AttributeList::AT_Capability:
4462   case AttributeList::AT_Lockable:
4463     handleCapabilityAttr(S, D, Attr);
4464     break;
4465   case AttributeList::AT_RequiresCapability:
4466     handleRequiresCapabilityAttr(S, D, Attr);
4467     break;
4468 
4469   case AttributeList::AT_AssertCapability:
4470     handleAssertCapabilityAttr(S, D, Attr);
4471     break;
4472   case AttributeList::AT_AcquireCapability:
4473     handleAcquireCapabilityAttr(S, D, Attr);
4474     break;
4475   case AttributeList::AT_ReleaseCapability:
4476     handleReleaseCapabilityAttr(S, D, Attr);
4477     break;
4478   case AttributeList::AT_TryAcquireCapability:
4479     handleTryAcquireCapabilityAttr(S, D, Attr);
4480     break;
4481 
4482   // Consumed analysis attributes.
4483   case AttributeList::AT_Consumable:
4484     handleConsumableAttr(S, D, Attr);
4485     break;
4486   case AttributeList::AT_ConsumableAutoCast:
4487     handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr);
4488     break;
4489   case AttributeList::AT_ConsumableSetOnRead:
4490     handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr);
4491     break;
4492   case AttributeList::AT_CallableWhen:
4493     handleCallableWhenAttr(S, D, Attr);
4494     break;
4495   case AttributeList::AT_ParamTypestate:
4496     handleParamTypestateAttr(S, D, Attr);
4497     break;
4498   case AttributeList::AT_ReturnTypestate:
4499     handleReturnTypestateAttr(S, D, Attr);
4500     break;
4501   case AttributeList::AT_SetTypestate:
4502     handleSetTypestateAttr(S, D, Attr);
4503     break;
4504   case AttributeList::AT_TestTypestate:
4505     handleTestTypestateAttr(S, D, Attr);
4506     break;
4507 
4508   // Type safety attributes.
4509   case AttributeList::AT_ArgumentWithTypeTag:
4510     handleArgumentWithTypeTagAttr(S, D, Attr);
4511     break;
4512   case AttributeList::AT_TypeTagForDatatype:
4513     handleTypeTagForDatatypeAttr(S, D, Attr);
4514     break;
4515   }
4516 }
4517 
4518 /// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4519 /// attribute list to the specified decl, ignoring any type attributes.
4520 void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
4521                                     const AttributeList *AttrList,
4522                                     bool IncludeCXX11Attributes) {
4523   for (const AttributeList* l = AttrList; l; l = l->getNext())
4524     ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
4525 
4526   // FIXME: We should be able to handle these cases in TableGen.
4527   // GCC accepts
4528   // static int a9 __attribute__((weakref));
4529   // but that looks really pointless. We reject it.
4530   if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
4531     Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias)
4532       << cast<NamedDecl>(D);
4533     D->dropAttr<WeakRefAttr>();
4534     return;
4535   }
4536 
4537   if (!D->hasAttr<OpenCLKernelAttr>()) {
4538     // These attributes cannot be applied to a non-kernel function.
4539     if (Attr *A = D->getAttr<ReqdWorkGroupSizeAttr>()) {
4540       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
4541       D->setInvalidDecl();
4542     }
4543     if (Attr *A = D->getAttr<WorkGroupSizeHintAttr>()) {
4544       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
4545       D->setInvalidDecl();
4546     }
4547     if (Attr *A = D->getAttr<VecTypeHintAttr>()) {
4548       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
4549       D->setInvalidDecl();
4550     }
4551   }
4552 }
4553 
4554 // Annotation attributes are the only attributes allowed after an access
4555 // specifier.
4556 bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4557                                           const AttributeList *AttrList) {
4558   for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4559     if (l->getKind() == AttributeList::AT_Annotate) {
4560       handleAnnotateAttr(*this, ASDecl, *l);
4561     } else {
4562       Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4563       return true;
4564     }
4565   }
4566 
4567   return false;
4568 }
4569 
4570 /// checkUnusedDeclAttributes - Check a list of attributes to see if it
4571 /// contains any decl attributes that we should warn about.
4572 static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4573   for ( ; A; A = A->getNext()) {
4574     // Only warn if the attribute is an unignored, non-type attribute.
4575     if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
4576     if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4577 
4578     if (A->getKind() == AttributeList::UnknownAttribute) {
4579       S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4580         << A->getName() << A->getRange();
4581     } else {
4582       S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4583         << A->getName() << A->getRange();
4584     }
4585   }
4586 }
4587 
4588 /// checkUnusedDeclAttributes - Given a declarator which is not being
4589 /// used to build a declaration, complain about any decl attributes
4590 /// which might be lying around on it.
4591 void Sema::checkUnusedDeclAttributes(Declarator &D) {
4592   ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4593   ::checkUnusedDeclAttributes(*this, D.getAttributes());
4594   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4595     ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4596 }
4597 
4598 /// DeclClonePragmaWeak - clone existing decl (maybe definition),
4599 /// \#pragma weak needs a non-definition decl and source may not have one.
4600 NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4601                                       SourceLocation Loc) {
4602   assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
4603   NamedDecl *NewD = nullptr;
4604   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
4605     FunctionDecl *NewFD;
4606     // FIXME: Missing call to CheckFunctionDeclaration().
4607     // FIXME: Mangling?
4608     // FIXME: Is the qualifier info correct?
4609     // FIXME: Is the DeclContext correct?
4610     NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4611                                  Loc, Loc, DeclarationName(II),
4612                                  FD->getType(), FD->getTypeSourceInfo(),
4613                                  SC_None, false/*isInlineSpecified*/,
4614                                  FD->hasPrototype(),
4615                                  false/*isConstexprSpecified*/);
4616     NewD = NewFD;
4617 
4618     if (FD->getQualifier())
4619       NewFD->setQualifierInfo(FD->getQualifierLoc());
4620 
4621     // Fake up parameter variables; they are declared as if this were
4622     // a typedef.
4623     QualType FDTy = FD->getType();
4624     if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4625       SmallVector<ParmVarDecl*, 16> Params;
4626       for (const auto &AI : FT->param_types()) {
4627         ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
4628         Param->setScopeInfo(0, Params.size());
4629         Params.push_back(Param);
4630       }
4631       NewFD->setParams(Params);
4632     }
4633   } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4634     NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
4635                            VD->getInnerLocStart(), VD->getLocation(), II,
4636                            VD->getType(), VD->getTypeSourceInfo(),
4637                            VD->getStorageClass());
4638     if (VD->getQualifier()) {
4639       VarDecl *NewVD = cast<VarDecl>(NewD);
4640       NewVD->setQualifierInfo(VD->getQualifierLoc());
4641     }
4642   }
4643   return NewD;
4644 }
4645 
4646 /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
4647 /// applied to it, possibly with an alias.
4648 void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
4649   if (W.getUsed()) return; // only do this once
4650   W.setUsed(true);
4651   if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4652     IdentifierInfo *NDId = ND->getIdentifier();
4653     NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
4654     NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(),
4655                                             W.getLocation()));
4656     NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
4657     WeakTopLevelDecl.push_back(NewD);
4658     // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4659     // to insert Decl at TU scope, sorry.
4660     DeclContext *SavedContext = CurContext;
4661     CurContext = Context.getTranslationUnitDecl();
4662     NewD->setDeclContext(CurContext);
4663     NewD->setLexicalDeclContext(CurContext);
4664     PushOnScopeChains(NewD, S);
4665     CurContext = SavedContext;
4666   } else { // just add weak to existing
4667     ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
4668   }
4669 }
4670 
4671 void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
4672   // It's valid to "forward-declare" #pragma weak, in which case we
4673   // have to do this.
4674   LoadExternalWeakUndeclaredIdentifiers();
4675   if (!WeakUndeclaredIdentifiers.empty()) {
4676     NamedDecl *ND = nullptr;
4677     if (VarDecl *VD = dyn_cast<VarDecl>(D))
4678       if (VD->isExternC())
4679         ND = VD;
4680     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
4681       if (FD->isExternC())
4682         ND = FD;
4683     if (ND) {
4684       if (IdentifierInfo *Id = ND->getIdentifier()) {
4685         llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
4686           = WeakUndeclaredIdentifiers.find(Id);
4687         if (I != WeakUndeclaredIdentifiers.end()) {
4688           WeakInfo W = I->second;
4689           DeclApplyPragmaWeak(S, ND, W);
4690           WeakUndeclaredIdentifiers[Id] = W;
4691         }
4692       }
4693     }
4694   }
4695 }
4696 
4697 /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
4698 /// it, apply them to D.  This is a bit tricky because PD can have attributes
4699 /// specified in many different places, and we need to find and apply them all.
4700 void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
4701   // Apply decl attributes from the DeclSpec if present.
4702   if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
4703     ProcessDeclAttributeList(S, D, Attrs);
4704 
4705   // Walk the declarator structure, applying decl attributes that were in a type
4706   // position to the decl itself.  This handles cases like:
4707   //   int *__attr__(x)** D;
4708   // when X is a decl attribute.
4709   for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
4710     if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
4711       ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
4712 
4713   // Finally, apply any attributes on the decl itself.
4714   if (const AttributeList *Attrs = PD.getAttributes())
4715     ProcessDeclAttributeList(S, D, Attrs);
4716 }
4717 
4718 /// Is the given declaration allowed to use a forbidden type?
4719 static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4720   // Private ivars are always okay.  Unfortunately, people don't
4721   // always properly make their ivars private, even in system headers.
4722   // Plus we need to make fields okay, too.
4723   // Function declarations in sys headers will be marked unavailable.
4724   if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4725       !isa<FunctionDecl>(decl))
4726     return false;
4727 
4728   // Require it to be declared in a system header.
4729   return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4730 }
4731 
4732 /// Handle a delayed forbidden-type diagnostic.
4733 static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4734                                        Decl *decl) {
4735   if (decl && isForbiddenTypeAllowed(S, decl)) {
4736     decl->addAttr(UnavailableAttr::CreateImplicit(S.Context,
4737                         "this system declaration uses an unsupported type",
4738                         diag.Loc));
4739     return;
4740   }
4741   if (S.getLangOpts().ObjCAutoRefCount)
4742     if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4743       // FIXME: we may want to suppress diagnostics for all
4744       // kind of forbidden type messages on unavailable functions.
4745       if (FD->hasAttr<UnavailableAttr>() &&
4746           diag.getForbiddenTypeDiagnostic() ==
4747           diag::err_arc_array_param_no_ownership) {
4748         diag.Triggered = true;
4749         return;
4750       }
4751     }
4752 
4753   S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4754     << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4755   diag.Triggered = true;
4756 }
4757 
4758 void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
4759   assert(DelayedDiagnostics.getCurrentPool());
4760   DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
4761   DelayedDiagnostics.popWithoutEmitting(state);
4762 
4763   // When delaying diagnostics to run in the context of a parsed
4764   // declaration, we only want to actually emit anything if parsing
4765   // succeeds.
4766   if (!decl) return;
4767 
4768   // We emit all the active diagnostics in this pool or any of its
4769   // parents.  In general, we'll get one pool for the decl spec
4770   // and a child pool for each declarator; in a decl group like:
4771   //   deprecated_typedef foo, *bar, baz();
4772   // only the declarator pops will be passed decls.  This is correct;
4773   // we really do need to consider delayed diagnostics from the decl spec
4774   // for each of the different declarations.
4775   const DelayedDiagnosticPool *pool = &poppedPool;
4776   do {
4777     for (DelayedDiagnosticPool::pool_iterator
4778            i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
4779       // This const_cast is a bit lame.  Really, Triggered should be mutable.
4780       DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
4781       if (diag.Triggered)
4782         continue;
4783 
4784       switch (diag.Kind) {
4785       case DelayedDiagnostic::Deprecation:
4786       case DelayedDiagnostic::Unavailable:
4787         // Don't bother giving deprecation/unavailable diagnostics if
4788         // the decl is invalid.
4789         if (!decl->isInvalidDecl())
4790           HandleDelayedAvailabilityCheck(diag, decl);
4791         break;
4792 
4793       case DelayedDiagnostic::Access:
4794         HandleDelayedAccessCheck(diag, decl);
4795         break;
4796 
4797       case DelayedDiagnostic::ForbiddenType:
4798         handleDelayedForbiddenType(*this, diag, decl);
4799         break;
4800       }
4801     }
4802   } while ((pool = pool->getParent()));
4803 }
4804 
4805 /// Given a set of delayed diagnostics, re-emit them as if they had
4806 /// been delayed in the current context instead of in the given pool.
4807 /// Essentially, this just moves them to the current pool.
4808 void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
4809   DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
4810   assert(curPool && "re-emitting in undelayed context not supported");
4811   curPool->steal(pool);
4812 }
4813 
4814 static bool isDeclDeprecated(Decl *D) {
4815   do {
4816     if (D->isDeprecated())
4817       return true;
4818     // A category implicitly has the availability of the interface.
4819     if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4820       return CatD->getClassInterface()->isDeprecated();
4821   } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4822   return false;
4823 }
4824 
4825 static bool isDeclUnavailable(Decl *D) {
4826   do {
4827     if (D->isUnavailable())
4828       return true;
4829     // A category implicitly has the availability of the interface.
4830     if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4831       return CatD->getClassInterface()->isUnavailable();
4832   } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4833   return false;
4834 }
4835 
4836 static void
4837 DoEmitAvailabilityWarning(Sema &S,
4838                           DelayedDiagnostic::DDKind K,
4839                           Decl *Ctx,
4840                           const NamedDecl *D,
4841                           StringRef Message,
4842                           SourceLocation Loc,
4843                           const ObjCInterfaceDecl *UnknownObjCClass,
4844                           const ObjCPropertyDecl *ObjCProperty) {
4845 
4846   // Diagnostics for deprecated or unavailable.
4847   unsigned diag, diag_message, diag_fwdclass_message;
4848 
4849   // Matches 'diag::note_property_attribute' options.
4850   unsigned property_note_select;
4851 
4852   // Matches diag::note_availability_specified_here.
4853   unsigned available_here_select_kind;
4854 
4855   // Don't warn if our current context is deprecated or unavailable.
4856   switch (K) {
4857     case DelayedDiagnostic::Deprecation:
4858       if (isDeclDeprecated(Ctx))
4859         return;
4860       diag = diag::warn_deprecated;
4861       diag_message = diag::warn_deprecated_message;
4862       diag_fwdclass_message = diag::warn_deprecated_fwdclass_message;
4863       property_note_select = /* deprecated */ 0;
4864       available_here_select_kind = /* deprecated */ 2;
4865       break;
4866 
4867     case DelayedDiagnostic::Unavailable:
4868       if (isDeclUnavailable(Ctx))
4869         return;
4870       diag = diag::err_unavailable;
4871       diag_message = diag::err_unavailable_message;
4872       diag_fwdclass_message = diag::warn_unavailable_fwdclass_message;
4873       property_note_select = /* unavailable */ 1;
4874       available_here_select_kind = /* unavailable */ 0;
4875       break;
4876 
4877     default:
4878       llvm_unreachable("Neither a deprecation or unavailable kind");
4879   }
4880 
4881   DeclarationName Name = D->getDeclName();
4882   if (!Message.empty()) {
4883     S.Diag(Loc, diag_message) << Name << Message;
4884     if (ObjCProperty)
4885       S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
4886         << ObjCProperty->getDeclName() << property_note_select;
4887   } else if (!UnknownObjCClass) {
4888     S.Diag(Loc, diag) << Name;
4889     if (ObjCProperty)
4890       S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
4891         << ObjCProperty->getDeclName() << property_note_select;
4892   } else {
4893     S.Diag(Loc, diag_fwdclass_message) << Name;
4894     S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4895   }
4896 
4897   S.Diag(D->getLocation(), diag::note_availability_specified_here)
4898     << D << available_here_select_kind;
4899 }
4900 
4901 void Sema::HandleDelayedAvailabilityCheck(DelayedDiagnostic &DD,
4902                                           Decl *Ctx) {
4903   DD.Triggered = true;
4904   DoEmitAvailabilityWarning(*this,
4905                             (DelayedDiagnostic::DDKind) DD.Kind,
4906                             Ctx,
4907                             DD.getDeprecationDecl(),
4908                             DD.getDeprecationMessage(),
4909                             DD.Loc,
4910                             DD.getUnknownObjCClass(),
4911                             DD.getObjCProperty());
4912 }
4913 
4914 void Sema::EmitAvailabilityWarning(AvailabilityDiagnostic AD,
4915                                    NamedDecl *D, StringRef Message,
4916                                    SourceLocation Loc,
4917                                    const ObjCInterfaceDecl *UnknownObjCClass,
4918                                    const ObjCPropertyDecl  *ObjCProperty) {
4919   // Delay if we're currently parsing a declaration.
4920   if (DelayedDiagnostics.shouldDelayDiagnostics()) {
4921     DelayedDiagnostics.add(DelayedDiagnostic::makeAvailability(AD, Loc, D,
4922                                                                UnknownObjCClass,
4923                                                                ObjCProperty,
4924                                                                Message));
4925     return;
4926   }
4927 
4928   Decl *Ctx = cast<Decl>(getCurLexicalContext());
4929   DelayedDiagnostic::DDKind K;
4930   switch (AD) {
4931     case AD_Deprecation:
4932       K = DelayedDiagnostic::Deprecation;
4933       break;
4934     case AD_Unavailable:
4935       K = DelayedDiagnostic::Unavailable;
4936       break;
4937   }
4938 
4939   DoEmitAvailabilityWarning(*this, K, Ctx, D, Message, Loc,
4940                             UnknownObjCClass, ObjCProperty);
4941 }
4942