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