blob: 4a8006ab1a80d31eb1f4feb4ecac8fe240c67328 [file] [log] [blame]
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Chris Lattner2c6fcf52008-06-26 18:38:35 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements decl-related attribute processing.
10//
11//===----------------------------------------------------------------------===//
12
David Majnemer929025d2016-01-26 19:30:26 +000013#include "clang/AST/ASTConsumer.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000014#include "clang/AST/ASTContext.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000015#include "clang/AST/ASTMutationListener.h"
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +000016#include "clang/AST/CXXInheritance.h"
John McCall28a0cf72010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000018#include "clang/AST/DeclObjC.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000020#include "clang/AST/Expr.h"
Benjamin Kramerf3ca26982014-05-10 16:31:55 +000021#include "clang/AST/ExprCXX.h"
Rafael Espindoladb77c4a2013-02-26 19:13:56 +000022#include "clang/AST/Mangle.h"
Erik Pilkington5cd57172016-08-16 17:44:11 +000023#include "clang/AST/RecursiveASTVisitor.h"
Jordan Rosea7d03842013-02-08 22:30:41 +000024#include "clang/Basic/CharInfo.h"
John McCall31168b02011-06-15 23:02:42 +000025#include "clang/Basic/SourceManager.h"
Chris Lattneracbc2d22008-06-27 22:18:37 +000026#include "clang/Basic/TargetInfo.h"
Benjamin Kramer6ee15622013-09-13 15:35:43 +000027#include "clang/Lex/Preprocessor.h"
John McCall8b0666c2010-08-20 18:27:03 +000028#include "clang/Sema/DeclSpec.h"
John McCallb45a1e72010-08-26 02:13:20 +000029#include "clang/Sema/DelayedDiagnostic.h"
Artem Belevichbcec9da2016-06-06 22:54:57 +000030#include "clang/Sema/Initialization.h"
John McCallf1e8b342011-09-29 07:17:38 +000031#include "clang/Sema/Lookup.h"
Richard Smithe233fbf2013-01-28 22:42:45 +000032#include "clang/Sema/Scope.h"
Reid Kleckner04f9bca2018-03-07 22:48:35 +000033#include "clang/Sema/ScopeInfo.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000034#include "clang/Sema/SemaInternal.h"
George Burgess IV177399e2017-01-09 04:12:14 +000035#include "llvm/ADT/STLExtras.h"
Chris Lattner30ba6742009-08-10 19:03:04 +000036#include "llvm/ADT/StringExtras.h"
Hal Finkelee90a222014-09-26 05:04:30 +000037#include "llvm/Support/MathExtras.h"
Eugene Zelenko1ced5092016-02-12 22:53:10 +000038
Chris Lattner2c6fcf52008-06-26 18:38:35 +000039using namespace clang;
John McCallb45a1e72010-08-26 02:13:20 +000040using namespace sema;
Chris Lattner2c6fcf52008-06-26 18:38:35 +000041
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +000042namespace AttributeLangSupport {
NAKAMURA Takumi01d27f92013-11-25 00:52:29 +000043 enum LANG {
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +000044 C,
45 Cpp,
46 ObjC
47 };
Eugene Zelenko1ced5092016-02-12 22:53:10 +000048} // end namespace AttributeLangSupport
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +000049
Chris Lattner58418ff2008-06-29 00:16:31 +000050//===----------------------------------------------------------------------===//
51// Helper functions
52//===----------------------------------------------------------------------===//
53
Ted Kremenek527042b2009-08-14 20:49:40 +000054/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000055/// type (function or function-typed variable) or an Objective-C
56/// method.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000057static bool isFunctionOrMethod(const Decl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +000058 return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D);
Fariborz Jahanian4447e172009-05-15 23:15:03 +000059}
Eugene Zelenko1ced5092016-02-12 22:53:10 +000060
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000061/// Return true if the given decl has function type (function or
David Majnemer06864812015-04-07 06:01:53 +000062/// function-typed variable) or an Objective-C method or a block.
63static bool isFunctionOrMethodOrBlock(const Decl *D) {
64 return isFunctionOrMethod(D) || isa<BlockDecl>(D);
65}
Fariborz Jahanian4447e172009-05-15 23:15:03 +000066
John McCall3882ace2011-01-05 12:14:39 +000067/// Return true if the given decl has a declarator that should have
68/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000069static bool hasDeclarator(const Decl *D) {
John McCall31168b02011-06-15 23:02:42 +000070 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000071 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
72 isa<ObjCPropertyDecl>(D);
John McCall3882ace2011-01-05 12:14:39 +000073}
74
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000075/// hasFunctionProto - Return true if the given decl has a argument
76/// information. This decl should have already passed
Fariborz Jahanian4447e172009-05-15 23:15:03 +000077/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000078static bool hasFunctionProto(const Decl *D) {
Aaron Ballman12b9f652014-01-16 13:55:42 +000079 if (const FunctionType *FnTy = D->getFunctionType())
Douglas Gregordeaad8c2009-02-26 23:50:07 +000080 return isa<FunctionProtoType>(FnTy);
Aaron Ballman12b9f652014-01-16 13:55:42 +000081 return isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D);
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000082}
83
Alp Toker601b22c2014-01-21 23:35:24 +000084/// getFunctionOrMethodNumParams - Return number of function or method
85/// parameters. It is an error to call this on a K&R function (use
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000086/// hasFunctionProto first).
Alp Toker601b22c2014-01-21 23:35:24 +000087static unsigned getFunctionOrMethodNumParams(const Decl *D) {
Aaron Ballman12b9f652014-01-16 13:55:42 +000088 if (const FunctionType *FnTy = D->getFunctionType())
Alp Toker9cacbab2014-01-20 20:26:09 +000089 return cast<FunctionProtoType>(FnTy)->getNumParams();
Aaron Ballmana70c6b52018-02-15 16:20:20 +000090 if (const auto *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +000091 return BD->getNumParams();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000092 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000093}
94
Erik Pilkington1e368822019-01-04 18:33:06 +000095static const ParmVarDecl *getFunctionOrMethodParam(const Decl *D,
96 unsigned Idx) {
97 if (const auto *FD = dyn_cast<FunctionDecl>(D))
98 return FD->getParamDecl(Idx);
99 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
100 return MD->getParamDecl(Idx);
101 if (const auto *BD = dyn_cast<BlockDecl>(D))
102 return BD->getParamDecl(Idx);
103 return nullptr;
104}
105
Alp Toker601b22c2014-01-21 23:35:24 +0000106static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) {
Aaron Ballman12b9f652014-01-16 13:55:42 +0000107 if (const FunctionType *FnTy = D->getFunctionType())
Alp Toker9cacbab2014-01-20 20:26:09 +0000108 return cast<FunctionProtoType>(FnTy)->getParamType(Idx);
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000109 if (const auto *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000110 return BD->getParamDecl(Idx)->getType();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000111
Alp Toker03376dc2014-07-07 09:02:20 +0000112 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000113}
114
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000115static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) {
Erik Pilkington1e368822019-01-04 18:33:06 +0000116 if (auto *PVD = getFunctionOrMethodParam(D, Idx))
117 return PVD->getSourceRange();
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000118 return SourceRange();
119}
120
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000121static QualType getFunctionOrMethodResultType(const Decl *D) {
Aaron Ballman12b9f652014-01-16 13:55:42 +0000122 if (const FunctionType *FnTy = D->getFunctionType())
George Burgess IV00f70bd2018-03-01 05:43:23 +0000123 return FnTy->getReturnType();
Alp Toker314cc812014-01-25 16:55:45 +0000124 return cast<ObjCMethodDecl>(D)->getReturnType();
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000125}
126
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000127static SourceRange getFunctionOrMethodResultSourceRange(const Decl *D) {
128 if (const auto *FD = dyn_cast<FunctionDecl>(D))
129 return FD->getReturnTypeSourceRange();
Aaron Ballmane13d0092014-08-01 17:02:34 +0000130 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000131 return MD->getReturnTypeSourceRange();
132 return SourceRange();
133}
134
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000135static bool isFunctionOrMethodVariadic(const Decl *D) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000136 if (const FunctionType *FnTy = D->getFunctionType())
137 return cast<FunctionProtoType>(FnTy)->isVariadic();
138 if (const auto *BD = dyn_cast<BlockDecl>(D))
Aaron Ballmane13d0092014-08-01 17:02:34 +0000139 return BD->isVariadic();
Aaron Ballmane13d0092014-08-01 17:02:34 +0000140 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000141}
142
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000143static bool isInstanceMethod(const Decl *D) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000144 if (const auto *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth743682b2010-11-16 08:35:43 +0000145 return MethodDecl->isInstance();
146 return false;
147}
148
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000149static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000150 const auto *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattner574dee62008-07-26 22:17:49 +0000151 if (!PT)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000152 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000153
John McCall96fa4842010-05-17 21:00:27 +0000154 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
155 if (!Cls)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000156 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000157
John McCall96fa4842010-05-17 21:00:27 +0000158 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000159
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000160 // FIXME: Should we walk the chain of classes?
161 return ClsName == &Ctx.Idents.get("NSString") ||
162 ClsName == &Ctx.Idents.get("NSMutableString");
163}
164
Daniel Dunbar980c6692008-09-26 03:32:58 +0000165static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000166 const auto *PT = T->getAs<PointerType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000167 if (!PT)
168 return false;
169
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000170 const auto *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000171 if (!RT)
172 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000173
Daniel Dunbar980c6692008-09-26 03:32:58 +0000174 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara6150c882010-05-11 21:36:43 +0000175 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar980c6692008-09-26 03:32:58 +0000176 return false;
177
178 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
179}
180
Erich Keanee891aa92018-07-13 15:07:47 +0000181static unsigned getNumAttributeArgs(const ParsedAttr &AL) {
Richard Smithb87c4652013-10-31 21:23:20 +0000182 // FIXME: Include the type in the argument list.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000183 return AL.getNumArgs() + AL.hasParsedType();
Richard Smithb87c4652013-10-31 21:23:20 +0000184}
185
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000186template <typename Compare>
Erich Keanee891aa92018-07-13 15:07:47 +0000187static bool checkAttributeNumArgsImpl(Sema &S, const ParsedAttr &AL,
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000188 unsigned Num, unsigned Diag,
189 Compare Comp) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000190 if (Comp(getNumAttributeArgs(AL), Num)) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000191 S.Diag(AL.getLoc(), Diag) << AL << Num;
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000192 return false;
193 }
194
195 return true;
196}
197
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000198/// Check if the attribute has exactly as many args as Num. May
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000199/// output an error.
Erich Keanee891aa92018-07-13 15:07:47 +0000200static bool checkAttributeNumArgs(Sema &S, const ParsedAttr &AL, unsigned Num) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000201 return checkAttributeNumArgsImpl(S, AL, Num,
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000202 diag::err_attribute_wrong_number_arguments,
203 std::not_equal_to<unsigned>());
204}
205
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000206/// Check if the attribute has at least as many args as Num. May
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000207/// output an error.
Erich Keanee891aa92018-07-13 15:07:47 +0000208static bool checkAttributeAtLeastNumArgs(Sema &S, const ParsedAttr &AL,
Richard Smithb87c4652013-10-31 21:23:20 +0000209 unsigned Num) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000210 return checkAttributeNumArgsImpl(S, AL, Num,
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000211 diag::err_attribute_too_few_arguments,
212 std::less<unsigned>());
213}
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000214
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000215/// Check if the attribute has at most as many args as Num. May
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000216/// output an error.
Erich Keanee891aa92018-07-13 15:07:47 +0000217static bool checkAttributeAtMostNumArgs(Sema &S, const ParsedAttr &AL,
218 unsigned Num) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000219 return checkAttributeNumArgsImpl(S, AL, Num,
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000220 diag::err_attribute_too_many_arguments,
221 std::greater<unsigned>());
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000222}
223
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000224/// A helper function to provide Attribute Location for the Attr types
Erich Keanee891aa92018-07-13 15:07:47 +0000225/// AND the ParsedAttr.
Erich Keane623efd82017-03-30 21:48:55 +0000226template <typename AttrInfo>
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000227static typename std::enable_if<std::is_base_of<Attr, AttrInfo>::value,
Erich Keane623efd82017-03-30 21:48:55 +0000228 SourceLocation>::type
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000229getAttrLoc(const AttrInfo &AL) {
230 return AL.getLocation();
Erich Keane623efd82017-03-30 21:48:55 +0000231}
Erich Keanee891aa92018-07-13 15:07:47 +0000232static SourceLocation getAttrLoc(const ParsedAttr &AL) { return AL.getLoc(); }
Erich Keane623efd82017-03-30 21:48:55 +0000233
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000234/// If Expr is a valid integer constant, get the value of the integer
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000235/// expression and return success or failure. May output an error.
Andrew Savonichevd353e6d2018-09-06 11:54:09 +0000236///
237/// Negative argument is implicitly converted to unsigned, unless
238/// \p StrictlyUnsigned is true.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000239template <typename AttrInfo>
240static bool checkUInt32Argument(Sema &S, const AttrInfo &AI, const Expr *Expr,
Andrew Savonichevd353e6d2018-09-06 11:54:09 +0000241 uint32_t &Val, unsigned Idx = UINT_MAX,
242 bool StrictlyUnsigned = false) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000243 llvm::APSInt I(32);
244 if (Expr->isTypeDependent() || Expr->isValueDependent() ||
245 !Expr->isIntegerConstantExpr(I, S.Context)) {
246 if (Idx != UINT_MAX)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000247 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type)
Michael Liao7557afa2019-02-26 18:49:36 +0000248 << &AI << Idx << AANT_ArgumentIntegerConstant
Erich Keane44bacdf2018-08-09 13:21:32 +0000249 << Expr->getSourceRange();
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000250 else
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000251 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_type)
Michael Liao7557afa2019-02-26 18:49:36 +0000252 << &AI << AANT_ArgumentIntegerConstant << Expr->getSourceRange();
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000253 return false;
254 }
Aaron Ballmanadfdde52014-07-22 14:09:34 +0000255
256 if (!I.isIntN(32)) {
Aaron Ballman31f42312014-07-24 14:51:23 +0000257 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large)
258 << I.toString(10, false) << 32 << /* Unsigned */ 1;
Aaron Ballmanadfdde52014-07-22 14:09:34 +0000259 return false;
260 }
261
Andrew Savonichevd353e6d2018-09-06 11:54:09 +0000262 if (StrictlyUnsigned && I.isSigned() && I.isNegative()) {
Andrew Savonichev1a5623482018-09-17 10:39:46 +0000263 S.Diag(getAttrLoc(AI), diag::err_attribute_requires_positive_integer)
Michael Liao7557afa2019-02-26 18:49:36 +0000264 << &AI << /*non-negative*/ 1;
Andrew Savonichevd353e6d2018-09-06 11:54:09 +0000265 return false;
266 }
267
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000268 Val = (uint32_t)I.getZExtValue();
269 return true;
270}
271
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000272/// Wrapper around checkUInt32Argument, with an extra check to be sure
George Burgess IVe3763372016-12-22 02:50:20 +0000273/// that the result will fit into a regular (signed) int. All args have the same
274/// purpose as they do in checkUInt32Argument.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000275template <typename AttrInfo>
276static bool checkPositiveIntArgument(Sema &S, const AttrInfo &AI, const Expr *Expr,
Erich Keane623efd82017-03-30 21:48:55 +0000277 int &Val, unsigned Idx = UINT_MAX) {
George Burgess IVe3763372016-12-22 02:50:20 +0000278 uint32_t UVal;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000279 if (!checkUInt32Argument(S, AI, Expr, UVal, Idx))
George Burgess IVe3763372016-12-22 02:50:20 +0000280 return false;
281
George Burgess IVa8049572016-12-22 19:00:31 +0000282 if (UVal > (uint32_t)std::numeric_limits<int>::max()) {
George Burgess IVe3763372016-12-22 02:50:20 +0000283 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000294/// Diagnose mutually exclusive attributes when present on a given
Aaron Ballmanfb763042013-12-02 18:05:46 +0000295/// declaration. Returns true if diagnosed.
296template <typename AttrTy>
Erich Keane44bacdf2018-08-09 13:21:32 +0000297static bool checkAttrMutualExclusion(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000298 if (const auto *A = D->getAttr<AttrTy>()) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000299 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
306template <typename AttrTy>
307static 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
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +0000310 << A;
311 S.Diag(A->getLocation(), diag::note_conflicting_attribute);
Aaron Ballmanfb763042013-12-02 18:05:46 +0000312 return true;
313 }
314 return false;
315}
316
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000317/// Check if IdxExpr is a valid parameter index for a function or
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000318/// instance method D. May output an error.
319///
320/// \returns true if IdxExpr is a valid index.
Erich Keane623efd82017-03-30 21:48:55 +0000321template <typename AttrInfo>
322static bool checkFunctionOrMethodParameterIndex(
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000323 Sema &S, const Decl *D, const AttrInfo &AI, unsigned AttrArgNum,
Joel E. Denny81508102018-03-13 14:51:22 +0000324 const Expr *IdxExpr, ParamIdx &Idx, bool CanIndexImplicitThis = false) {
David Majnemer06864812015-04-07 06:01:53 +0000325 assert(isFunctionOrMethodOrBlock(D));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000326
327 // In C++ the implicit 'this' function parameter also counts.
328 // Parameters are counted from one.
Aaron Ballmanbe50eb82013-07-30 00:48:57 +0000329 bool HP = hasFunctionProto(D);
330 bool HasImplicitThisParam = isInstanceMethod(D);
331 bool IV = HP && isFunctionOrMethodVariadic(D);
Alp Toker601b22c2014-01-21 23:35:24 +0000332 unsigned NumParams =
333 (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000334
335 llvm::APSInt IdxInt;
336 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
337 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000338 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +0000339 << &AI << AttrArgNum << AANT_ArgumentIntegerConstant
340 << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000341 return false;
342 }
343
Joel E. Denny81508102018-03-13 14:51:22 +0000344 unsigned IdxSource = IdxInt.getLimitedValue(UINT_MAX);
345 if (IdxSource < 1 || (!IV && IdxSource > NumParams)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000346 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_out_of_bounds)
Erich Keane44bacdf2018-08-09 13:21:32 +0000347 << &AI << AttrArgNum << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000348 return false;
349 }
Joel E. Denny81508102018-03-13 14:51:22 +0000350 if (HasImplicitThisParam && !CanIndexImplicitThis) {
351 if (IdxSource == 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000352 S.Diag(getAttrLoc(AI), diag::err_attribute_invalid_implicit_this_argument)
353 << &AI << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000354 return false;
355 }
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000356 }
357
Joel E. Denny81508102018-03-13 14:51:22 +0000358 Idx = ParamIdx(IdxSource, D);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000359 return true;
360}
361
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000362/// Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000363/// 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.
Erich Keanee891aa92018-07-13 15:07:47 +0000366bool Sema::checkStringLiteralArgumentAttr(const ParsedAttr &AL, unsigned ArgNum,
367 StringRef &Str,
Tim Northovera484bc02013-10-01 14:34:25 +0000368 SourceLocation *ArgLocation) {
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000369 // Look for identifiers. If we have one emit a hint to fix it to a literal.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000370 if (AL.isArgIdent(ArgNum)) {
371 IdentifierLoc *Loc = AL.getArgAsIdent(ArgNum);
Tim Northover6a6b63b2013-10-01 14:34:18 +0000372 Diag(Loc->Loc, diag::err_attribute_argument_type)
Erich Keane44bacdf2018-08-09 13:21:32 +0000373 << AL << AANT_ArgumentString
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000374 << FixItHint::CreateInsertion(Loc->Loc, "\"")
Craig Topper07fa1762015-11-15 02:31:46 +0000375 << FixItHint::CreateInsertion(getLocForEndOfToken(Loc->Loc), "\"");
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000376 Str = Loc->Ident->getName();
377 if (ArgLocation)
378 *ArgLocation = Loc->Loc;
379 return true;
380 }
381
382 // Now check for an actual string literal.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000383 Expr *ArgExpr = AL.getArgAsExpr(ArgNum);
384 const auto *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000385 if (ArgLocation)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000386 *ArgLocation = ArgExpr->getBeginLoc();
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000387
388 if (!Literal || !Literal->isAscii()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000389 Diag(ArgExpr->getBeginLoc(), diag::err_attribute_argument_type)
Erich Keane44bacdf2018-08-09 13:21:32 +0000390 << AL << AANT_ArgumentString;
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000391 return false;
392 }
393
394 Str = Literal->getString();
395 return true;
396}
397
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000398/// Applies the given attribute to the Decl without performing any
Aaron Ballman6f9165a2013-11-27 15:24:06 +0000399/// additional semantic checking.
400template <typename AttrType>
George Karpenkov1657f362018-11-30 02:18:37 +0000401static void handleSimpleAttribute(Sema &S, Decl *D, SourceRange SR,
402 unsigned SpellingIndex) {
403 D->addAttr(::new (S.Context) AttrType(SR, S.Context, SpellingIndex));
404}
405
406template <typename AttrType>
Erich Keanee891aa92018-07-13 15:07:47 +0000407static void handleSimpleAttribute(Sema &S, Decl *D, const ParsedAttr &AL) {
George Karpenkov1657f362018-11-30 02:18:37 +0000408 handleSimpleAttribute<AttrType>(S, D, AL.getRange(),
409 AL.getAttributeSpellingListIndex());
410}
411
412
413template <typename... DiagnosticArgs>
414static const Sema::SemaDiagnosticBuilder&
415appendDiagnostics(const Sema::SemaDiagnosticBuilder &Bldr) {
416 return Bldr;
417}
418
419template <typename T, typename... DiagnosticArgs>
420static const Sema::SemaDiagnosticBuilder&
421appendDiagnostics(const Sema::SemaDiagnosticBuilder &Bldr, T &&ExtraArg,
422 DiagnosticArgs &&... ExtraArgs) {
423 return appendDiagnostics(Bldr << std::forward<T>(ExtraArg),
424 std::forward<DiagnosticArgs>(ExtraArgs)...);
425}
426
George Karpenkov3a50a9f2019-01-11 18:02:08 +0000427/// Add an attribute {@code AttrType} to declaration {@code D}, provided that
428/// {@code PassesCheck} is true.
429/// Otherwise, emit diagnostic {@code DiagID}, passing in all parameters
430/// specified in {@code ExtraArgs}.
George Karpenkov1657f362018-11-30 02:18:37 +0000431template <typename AttrType, typename... DiagnosticArgs>
432static void
George Karpenkov3a50a9f2019-01-11 18:02:08 +0000433handleSimpleAttributeOrDiagnose(Sema &S, Decl *D, SourceRange SR,
George Karpenkov1657f362018-11-30 02:18:37 +0000434 unsigned SpellingIndex,
George Karpenkov3a50a9f2019-01-11 18:02:08 +0000435 bool PassesCheck,
436 unsigned DiagID, DiagnosticArgs&&... ExtraArgs) {
437 if (!PassesCheck) {
George Karpenkov1657f362018-11-30 02:18:37 +0000438 Sema::SemaDiagnosticBuilder DB = S.Diag(D->getBeginLoc(), DiagID);
439 appendDiagnostics(DB, std::forward<DiagnosticArgs>(ExtraArgs)...);
440 return;
441 }
442 handleSimpleAttribute<AttrType>(S, D, SR, SpellingIndex);
Aaron Ballman6f9165a2013-11-27 15:24:06 +0000443}
444
George Karpenkov3a50a9f2019-01-11 18:02:08 +0000445template <typename AttrType, typename... DiagnosticArgs>
446static void
447handleSimpleAttributeOrDiagnose(Sema &S, Decl *D, const ParsedAttr &AL,
448 bool PassesCheck,
449 unsigned DiagID,
450 DiagnosticArgs&&... ExtraArgs) {
451 return handleSimpleAttributeOrDiagnose<AttrType>(
452 S, D, AL.getRange(), AL.getAttributeSpellingListIndex(), PassesCheck,
453 DiagID, std::forward<DiagnosticArgs>(ExtraArgs)...);
454}
455
Justin Lebar3eaaf862016-01-13 01:07:35 +0000456template <typename AttrType>
457static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000458 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000459 handleSimpleAttribute<AttrType>(S, D, AL);
Justin Lebar3eaaf862016-01-13 01:07:35 +0000460}
461
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000462/// Applies the given attribute to the Decl so long as the Decl doesn't
Justin Lebar3eaaf862016-01-13 01:07:35 +0000463/// already have one of the given incompatible attributes.
464template <typename AttrType, typename IncompatibleAttrType,
465 typename... IncompatibleAttrTypes>
466static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000467 const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000468 if (checkAttrMutualExclusion<IncompatibleAttrType>(S, D, AL))
Justin Lebar3eaaf862016-01-13 01:07:35 +0000469 return;
470 handleSimpleAttributeWithExclusions<AttrType, IncompatibleAttrTypes...>(S, D,
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000471 AL);
Justin Lebar3eaaf862016-01-13 01:07:35 +0000472}
473
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000474/// Check if the passed-in expression is of type int or bool.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000475static bool isIntOrBool(Expr *Exp) {
476 QualType QT = Exp->getType();
477 return QT->isBooleanType() || QT->isIntegerType();
478}
479
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000480
481// Check to see if the type is a smart pointer of some kind. We assume
482// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000483static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
Richard Trieu8d3fa392018-09-22 01:50:52 +0000484 auto IsOverloadedOperatorPresent = [&S](const RecordDecl *Record,
485 OverloadedOperatorKind Op) {
486 DeclContextLookupResult Result =
487 Record->lookup(S.Context.DeclarationNames.getCXXOperatorName(Op));
488 return !Result.empty();
489 };
490
491 const RecordDecl *Record = RT->getDecl();
492 bool foundStarOperator = IsOverloadedOperatorPresent(Record, OO_Star);
493 bool foundArrowOperator = IsOverloadedOperatorPresent(Record, OO_Arrow);
494 if (foundStarOperator && foundArrowOperator)
495 return true;
496
497 const CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record);
498 if (!CXXRecord)
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000499 return false;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000500
Richard Trieu8d3fa392018-09-22 01:50:52 +0000501 for (auto BaseSpecifier : CXXRecord->bases()) {
502 if (!foundStarOperator)
503 foundStarOperator = IsOverloadedOperatorPresent(
504 BaseSpecifier.getType()->getAsRecordDecl(), OO_Star);
505 if (!foundArrowOperator)
506 foundArrowOperator = IsOverloadedOperatorPresent(
507 BaseSpecifier.getType()->getAsRecordDecl(), OO_Arrow);
508 }
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000509
Richard Trieu8d3fa392018-09-22 01:50:52 +0000510 if (foundStarOperator && foundArrowOperator)
511 return true;
512
513 return false;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000514}
515
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000516/// Check if passed in Decl is a pointer type.
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000517/// Note that this function may produce an error message.
518/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000519static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000520 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000521 const auto *VD = cast<ValueDecl>(D);
522 QualType QT = VD->getType();
Aaron Ballman553e6812013-12-26 14:54:11 +0000523 if (QT->isAnyPointerType())
524 return true;
525
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000526 if (const auto *RT = QT->getAs<RecordType>()) {
Aaron Ballman553e6812013-12-26 14:54:11 +0000527 // If it's an incomplete type, it could be a smart pointer; skip it.
528 // (We don't want to force template instantiation if we can avoid it,
529 // since that would alter the order in which templates are instantiated.)
530 if (RT->isIncompleteType())
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000531 return true;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000532
Aaron Ballman553e6812013-12-26 14:54:11 +0000533 if (threadSafetyCheckIsSmartPointer(S, RT))
534 return true;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000535 }
Aaron Ballman553e6812013-12-26 14:54:11 +0000536
Erich Keane44bacdf2018-08-09 13:21:32 +0000537 S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_pointer) << AL << QT;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000538 return false;
539}
540
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000541/// Checks that the passed in QualType either is of RecordType or points
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000542/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000543static const RecordType *getRecordType(QualType QT) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000544 if (const auto *RT = QT->getAs<RecordType>())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000545 return RT;
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000546
547 // Now check if we point to record type.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000548 if (const auto *PT = QT->getAs<PointerType>())
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000549 return PT->getPointeeType()->getAs<RecordType>();
550
Craig Topperc3ec1492014-05-26 06:22:03 +0000551 return nullptr;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000552}
553
Aaron Puchert7ba1ab72018-09-20 00:39:27 +0000554template <typename AttrType>
555static bool checkRecordDeclForAttr(const RecordDecl *RD) {
556 // Check if the record itself has the attribute.
557 if (RD->hasAttr<AttrType>())
558 return true;
559
560 // Else check if any base classes have the attribute.
561 if (const auto *CRD = dyn_cast<CXXRecordDecl>(RD)) {
562 CXXBasePaths BPaths(false, false);
563 if (CRD->lookupInBases(
564 [](const CXXBaseSpecifier *BS, CXXBasePath &) {
565 const auto &Ty = *BS->getType();
566 // If it's type-dependent, we assume it could have the attribute.
567 if (Ty.isDependentType())
568 return true;
569 return Ty.getAs<RecordType>()->getDecl()->hasAttr<AttrType>();
570 },
571 BPaths, true))
572 return true;
573 }
574 return false;
575}
576
Josh Gao55afa752017-08-11 07:54:35 +0000577static bool checkRecordTypeForCapability(Sema &S, QualType Ty) {
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000578 const RecordType *RT = getRecordType(Ty);
Michael Hana9171bc2012-08-03 17:40:43 +0000579
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000580 if (!RT)
581 return false;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000582
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000583 // Don't check for the capability if the class hasn't been defined yet.
DeLesley Hutchins3509f292012-02-16 17:15:51 +0000584 if (RT->isIncompleteType())
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000585 return true;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000586
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000587 // Allow smart pointers to be used as capability objects.
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000588 // FIXME -- Check the type that the smart pointer points to.
589 if (threadSafetyCheckIsSmartPointer(S, RT))
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000590 return true;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000591
Aaron Puchert7ba1ab72018-09-20 00:39:27 +0000592 return checkRecordDeclForAttr<CapabilityAttr>(RT->getDecl());
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000593}
594
Josh Gao55afa752017-08-11 07:54:35 +0000595static bool checkTypedefTypeForCapability(QualType Ty) {
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000596 const auto *TD = Ty->getAs<TypedefType>();
597 if (!TD)
598 return false;
599
600 TypedefNameDecl *TN = TD->getDecl();
601 if (!TN)
602 return false;
603
Josh Gao55afa752017-08-11 07:54:35 +0000604 return TN->hasAttr<CapabilityAttr>();
Aaron Ballman76050722014-04-04 15:13:57 +0000605}
606
Josh Gaob40c1772017-08-08 19:44:35 +0000607static bool typeHasCapability(Sema &S, QualType Ty) {
Josh Gao55afa752017-08-11 07:54:35 +0000608 if (checkTypedefTypeForCapability(Ty))
609 return true;
Josh Gaob40c1772017-08-08 19:44:35 +0000610
Josh Gao55afa752017-08-11 07:54:35 +0000611 if (checkRecordTypeForCapability(S, Ty))
612 return true;
613
614 return false;
Josh Gaob40c1772017-08-08 19:44:35 +0000615}
616
Aaron Ballman76050722014-04-04 15:13:57 +0000617static bool isCapabilityExpr(Sema &S, const Expr *Ex) {
618 // Capability expressions are simple expressions involving the boolean logic
619 // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once
620 // a DeclRefExpr is found, its type should be checked to determine whether it
621 // is a capability or not.
622
Yi Kong2d58d192017-12-14 22:24:45 +0000623 if (const auto *E = dyn_cast<CastExpr>(Ex))
Aaron Ballman76050722014-04-04 15:13:57 +0000624 return isCapabilityExpr(S, E->getSubExpr());
625 else if (const auto *E = dyn_cast<ParenExpr>(Ex))
626 return isCapabilityExpr(S, E->getSubExpr());
627 else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) {
Yi Kong2d58d192017-12-14 22:24:45 +0000628 if (E->getOpcode() == UO_LNot || E->getOpcode() == UO_AddrOf ||
629 E->getOpcode() == UO_Deref)
Aaron Ballman76050722014-04-04 15:13:57 +0000630 return isCapabilityExpr(S, E->getSubExpr());
631 return false;
632 } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) {
633 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr)
634 return isCapabilityExpr(S, E->getLHS()) &&
635 isCapabilityExpr(S, E->getRHS());
636 return false;
637 }
638
Yi Kong2d58d192017-12-14 22:24:45 +0000639 return typeHasCapability(S, Ex->getType());
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000640}
641
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000642/// Checks that all attribute arguments, starting from Sidx, resolve to
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000643/// a capability object.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000644/// \param Sidx The attribute argument index to start checking with.
645/// \param ParamIdxOk Whether an argument can be indexing into a function
646/// parameter list.
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000647static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000648 const ParsedAttr &AL,
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000649 SmallVectorImpl<Expr *> &Args,
Aaron Puchert7ba1ab72018-09-20 00:39:27 +0000650 unsigned Sidx = 0,
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000651 bool ParamIdxOk = false) {
Aaron Puchert7ba1ab72018-09-20 00:39:27 +0000652 if (Sidx == AL.getNumArgs()) {
653 // If we don't have any capability arguments, the attribute implicitly
654 // refers to 'this'. So we need to make sure that 'this' exists, i.e. we're
655 // a non-static method, and that the class is a (scoped) capability.
656 const auto *MD = dyn_cast<const CXXMethodDecl>(D);
657 if (MD && !MD->isStatic()) {
658 const CXXRecordDecl *RD = MD->getParent();
659 // FIXME -- need to check this again on template instantiation
660 if (!checkRecordDeclForAttr<CapabilityAttr>(RD) &&
661 !checkRecordDeclForAttr<ScopedLockableAttr>(RD))
662 S.Diag(AL.getLoc(),
663 diag::warn_thread_attribute_not_on_capability_member)
664 << AL << MD->getParent();
665 } else {
666 S.Diag(AL.getLoc(), diag::warn_thread_attribute_not_on_non_static_member)
667 << AL;
668 }
669 }
670
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000671 for (unsigned Idx = Sidx; Idx < AL.getNumArgs(); ++Idx) {
672 Expr *ArgExp = AL.getArgAsExpr(Idx);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000673
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000674 if (ArgExp->isTypeDependent()) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000675 // FIXME -- need to check this again on template instantiation
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000676 Args.push_back(ArgExp);
677 continue;
678 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000679
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000680 if (const auto *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchinsa5a00e82012-09-07 17:34:53 +0000681 if (StrLit->getLength() == 0 ||
Benjamin Kramerca9fe142013-09-13 16:30:12 +0000682 (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) {
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000683 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchinsa5a00e82012-09-07 17:34:53 +0000684 // Treat "*" as the universal lock.
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000685 Args.push_back(ArgExp);
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000686 continue;
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000687 }
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000688
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000689 // We allow constant strings to be used as a placeholder for expressions
690 // that are not valid C++ syntax, but warn that they are ignored.
Erich Keane44bacdf2018-08-09 13:21:32 +0000691 S.Diag(AL.getLoc(), diag::warn_thread_attribute_ignored) << AL;
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000692 Args.push_back(ArgExp);
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000693 continue;
694 }
695
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000696 QualType ArgTy = ArgExp->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000697
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000698 // A pointer to member expression of the form &MyClass::mu is treated
699 // specially -- we need to look at the type of the member.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000700 if (const auto *UOp = dyn_cast<UnaryOperator>(ArgExp))
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000701 if (UOp->getOpcode() == UO_AddrOf)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000702 if (const auto *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000703 if (DRE->getDecl()->isCXXInstanceMember())
704 ArgTy = DRE->getDecl()->getType();
705
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000706 // First see if we can just cast to record type, or pointer to record type.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000707 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000708
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000709 // Now check if we index into a record type function param.
Josh Gao55afa752017-08-11 07:54:35 +0000710 if(!RT && ParamIdxOk) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000711 const auto *FD = dyn_cast<FunctionDecl>(D);
712 const auto *IL = dyn_cast<IntegerLiteral>(ArgExp);
Josh Gao55afa752017-08-11 07:54:35 +0000713 if(FD && IL) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000714 unsigned int NumParams = FD->getNumParams();
715 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000716 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
717 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000718 if (!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Aaron Ballmance667f62019-02-12 13:19:02 +0000719 S.Diag(AL.getLoc(),
720 diag::err_attribute_argument_out_of_bounds_extra_info)
Erich Keane44bacdf2018-08-09 13:21:32 +0000721 << AL << Idx + 1 << NumParams;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000722 continue;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000723 }
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000724 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000725 }
726 }
727
Aaron Ballman76050722014-04-04 15:13:57 +0000728 // If the type does not have a capability, see if the components of the
729 // expression have capabilities. This allows for writing C code where the
730 // capability may be on the type, and the expression is a capability
731 // boolean logic expression. Eg) requires_capability(A || B && !C)
732 if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp))
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000733 S.Diag(AL.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
Erich Keane44bacdf2018-08-09 13:21:32 +0000734 << AL << ArgTy;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000735
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000736 Args.push_back(ArgExp);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000737 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000738}
739
Chris Lattner58418ff2008-06-29 00:16:31 +0000740//===----------------------------------------------------------------------===//
Chris Lattner58418ff2008-06-29 00:16:31 +0000741// Attribute Implementations
742//===----------------------------------------------------------------------===//
743
Erich Keanee891aa92018-07-13 15:07:47 +0000744static void handlePtGuardedVarAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000745 if (!threadSafetyCheckIsPointer(S, D, AL))
Michael Han3be3b442012-07-23 18:48:41 +0000746 return;
747
Michael Han99315932013-01-24 16:46:58 +0000748 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000749 PtGuardedVarAttr(AL.getRange(), S.Context,
750 AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000751}
752
Erich Keanee891aa92018-07-13 15:07:47 +0000753static bool checkGuardedByAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000754 Expr *&Arg) {
755 SmallVector<Expr *, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000756 // check that all arguments are lockable objects
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000757 checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000758 unsigned Size = Args.size();
759 if (Size != 1)
Michael Han3be3b442012-07-23 18:48:41 +0000760 return false;
Michael Hana9171bc2012-08-03 17:40:43 +0000761
Michael Han3be3b442012-07-23 18:48:41 +0000762 Arg = Args[0];
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000763
Michael Han3be3b442012-07-23 18:48:41 +0000764 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000765}
766
Erich Keanee891aa92018-07-13 15:07:47 +0000767static void handleGuardedByAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000768 Expr *Arg = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000769 if (!checkGuardedByAttrCommon(S, D, AL, Arg))
Michael Han3be3b442012-07-23 18:48:41 +0000770 return;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000771
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000772 D->addAttr(::new (S.Context) GuardedByAttr(
773 AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000774}
775
Erich Keanee891aa92018-07-13 15:07:47 +0000776static void handlePtGuardedByAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000777 Expr *Arg = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000778 if (!checkGuardedByAttrCommon(S, D, AL, Arg))
Michael Han3be3b442012-07-23 18:48:41 +0000779 return;
780
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000781 if (!threadSafetyCheckIsPointer(S, D, AL))
Michael Han3be3b442012-07-23 18:48:41 +0000782 return;
783
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000784 D->addAttr(::new (S.Context) PtGuardedByAttr(
785 AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000786}
787
Erich Keanee891aa92018-07-13 15:07:47 +0000788static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
Craig Topper5603df42013-07-05 19:34:19 +0000789 SmallVectorImpl<Expr *> &Args) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000790 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Michael Han3be3b442012-07-23 18:48:41 +0000791 return false;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000792
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000793 // Check that this attribute only applies to lockable types.
Aaron Ballmane61b8b82013-12-02 15:02:49 +0000794 QualType QT = cast<ValueDecl>(D)->getType();
DeLesley Hutchins2b504dc2015-09-29 16:24:18 +0000795 if (!QT->isDependentType() && !typeHasCapability(S, QT)) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000796 S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_lockable) << AL;
DeLesley Hutchins2b504dc2015-09-29 16:24:18 +0000797 return false;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000798 }
799
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000800 // Check that all arguments are lockable objects.
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000801 checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000802 if (Args.empty())
Michael Han3be3b442012-07-23 18:48:41 +0000803 return false;
Michael Hana9171bc2012-08-03 17:40:43 +0000804
Michael Han3be3b442012-07-23 18:48:41 +0000805 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000806}
807
Erich Keanee891aa92018-07-13 15:07:47 +0000808static void handleAcquiredAfterAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000809 SmallVector<Expr *, 1> Args;
810 if (!checkAcquireOrderAttrCommon(S, D, AL, Args))
Michael Han3be3b442012-07-23 18:48:41 +0000811 return;
812
813 Expr **StartArg = &Args[0];
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000814 D->addAttr(::new (S.Context) AcquiredAfterAttr(
815 AL.getRange(), S.Context, StartArg, Args.size(),
816 AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000817}
818
Erich Keanee891aa92018-07-13 15:07:47 +0000819static void handleAcquiredBeforeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000820 SmallVector<Expr *, 1> Args;
821 if (!checkAcquireOrderAttrCommon(S, D, AL, Args))
Michael Han3be3b442012-07-23 18:48:41 +0000822 return;
823
824 Expr **StartArg = &Args[0];
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000825 D->addAttr(::new (S.Context) AcquiredBeforeAttr(
826 AL.getRange(), S.Context, StartArg, Args.size(),
827 AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000828}
829
Erich Keanee891aa92018-07-13 15:07:47 +0000830static bool checkLockFunAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
Craig Topper5603df42013-07-05 19:34:19 +0000831 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000832 // zero or more arguments ok
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000833 // check that all arguments are lockable objects
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000834 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000835
Michael Han3be3b442012-07-23 18:48:41 +0000836 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000837}
838
Erich Keanee891aa92018-07-13 15:07:47 +0000839static void handleAssertSharedLockAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000840 SmallVector<Expr *, 1> Args;
841 if (!checkLockFunAttrCommon(S, D, AL, Args))
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000842 return;
843
844 unsigned Size = Args.size();
Craig Topperc3ec1492014-05-26 06:22:03 +0000845 Expr **StartArg = Size == 0 ? nullptr : &Args[0];
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000846 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000847 AssertSharedLockAttr(AL.getRange(), S.Context, StartArg, Size,
848 AL.getAttributeSpellingListIndex()));
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000849}
850
851static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000852 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000853 SmallVector<Expr *, 1> Args;
854 if (!checkLockFunAttrCommon(S, D, AL, Args))
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000855 return;
856
857 unsigned Size = Args.size();
Craig Topperc3ec1492014-05-26 06:22:03 +0000858 Expr **StartArg = Size == 0 ? nullptr : &Args[0];
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000859 D->addAttr(::new (S.Context) AssertExclusiveLockAttr(
860 AL.getRange(), S.Context, StartArg, Size,
861 AL.getAttributeSpellingListIndex()));
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000862}
863
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000864/// Checks to be sure that the given parameter number is in bounds, and
Aaron Ballman836684a2018-02-25 20:40:06 +0000865/// is an integral type. Will emit appropriate diagnostics if this returns
George Burgess IVe3763372016-12-22 02:50:20 +0000866/// false.
867///
Aaron Ballman836684a2018-02-25 20:40:06 +0000868/// AttrArgNo is used to actually retrieve the argument, so it's base-0.
Erich Keane623efd82017-03-30 21:48:55 +0000869template <typename AttrInfo>
870static bool checkParamIsIntegerType(Sema &S, const FunctionDecl *FD,
Joel E. Denny81508102018-03-13 14:51:22 +0000871 const AttrInfo &AI, unsigned AttrArgNo) {
Aaron Ballman836684a2018-02-25 20:40:06 +0000872 assert(AI.isArgExpr(AttrArgNo) && "Expected expression argument");
873 Expr *AttrArg = AI.getArgAsExpr(AttrArgNo);
Joel E. Denny81508102018-03-13 14:51:22 +0000874 ParamIdx Idx;
Aaron Ballman836684a2018-02-25 20:40:06 +0000875 if (!checkFunctionOrMethodParameterIndex(S, FD, AI, AttrArgNo + 1, AttrArg,
Erich Keane623efd82017-03-30 21:48:55 +0000876 Idx))
877 return false;
878
Joel E. Denny81508102018-03-13 14:51:22 +0000879 const ParmVarDecl *Param = FD->getParamDecl(Idx.getASTIndex());
Erich Keane623efd82017-03-30 21:48:55 +0000880 if (!Param->getType()->isIntegerType() && !Param->getType()->isCharType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000881 SourceLocation SrcLoc = AttrArg->getBeginLoc();
Erich Keane623efd82017-03-30 21:48:55 +0000882 S.Diag(SrcLoc, diag::err_attribute_integers_only)
Erich Keane44bacdf2018-08-09 13:21:32 +0000883 << AI << Param->getSourceRange();
Erich Keane623efd82017-03-30 21:48:55 +0000884 return false;
885 }
886 return true;
887}
888
Erich Keanee891aa92018-07-13 15:07:47 +0000889static void handleAllocSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000890 if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
891 !checkAttributeAtMostNumArgs(S, AL, 2))
George Burgess IVe3763372016-12-22 02:50:20 +0000892 return;
893
894 const auto *FD = cast<FunctionDecl>(D);
895 if (!FD->getReturnType()->isPointerType()) {
Erich Keane44bacdf2018-08-09 13:21:32 +0000896 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only) << AL;
George Burgess IVe3763372016-12-22 02:50:20 +0000897 return;
898 }
899
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000900 const Expr *SizeExpr = AL.getArgAsExpr(0);
Joel E. Denny81508102018-03-13 14:51:22 +0000901 int SizeArgNoVal;
Simon Pilgrim27cc0542017-02-15 15:12:06 +0000902 // Parameter indices are 1-indexed, hence Index=1
Joel E. Denny81508102018-03-13 14:51:22 +0000903 if (!checkPositiveIntArgument(S, AL, SizeExpr, SizeArgNoVal, /*Index=*/1))
George Burgess IVe3763372016-12-22 02:50:20 +0000904 return;
Aaron Ballman836684a2018-02-25 20:40:06 +0000905 if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/0))
George Burgess IVe3763372016-12-22 02:50:20 +0000906 return;
Joel E. Denny81508102018-03-13 14:51:22 +0000907 ParamIdx SizeArgNo(SizeArgNoVal, D);
George Burgess IVe3763372016-12-22 02:50:20 +0000908
Joel E. Denny81508102018-03-13 14:51:22 +0000909 ParamIdx NumberArgNo;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000910 if (AL.getNumArgs() == 2) {
911 const Expr *NumberExpr = AL.getArgAsExpr(1);
Joel E. Denny81508102018-03-13 14:51:22 +0000912 int Val;
Simon Pilgrim27cc0542017-02-15 15:12:06 +0000913 // Parameter indices are 1-based, hence Index=2
Joel E. Denny81508102018-03-13 14:51:22 +0000914 if (!checkPositiveIntArgument(S, AL, NumberExpr, Val, /*Index=*/2))
George Burgess IVe3763372016-12-22 02:50:20 +0000915 return;
Aaron Ballman836684a2018-02-25 20:40:06 +0000916 if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/1))
George Burgess IVe3763372016-12-22 02:50:20 +0000917 return;
Joel E. Denny81508102018-03-13 14:51:22 +0000918 NumberArgNo = ParamIdx(Val, D);
George Burgess IVe3763372016-12-22 02:50:20 +0000919 }
920
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000921 D->addAttr(::new (S.Context)
922 AllocSizeAttr(AL.getRange(), S.Context, SizeArgNo, NumberArgNo,
923 AL.getAttributeSpellingListIndex()));
George Burgess IVe3763372016-12-22 02:50:20 +0000924}
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000925
Erich Keanee891aa92018-07-13 15:07:47 +0000926static bool checkTryLockFunAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
Craig Topper5603df42013-07-05 19:34:19 +0000927 SmallVectorImpl<Expr *> &Args) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000928 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Michael Han3be3b442012-07-23 18:48:41 +0000929 return false;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000930
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000931 if (!isIntOrBool(AL.getArgAsExpr(0))) {
932 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +0000933 << AL << 1 << AANT_ArgumentIntOrBool;
Michael Han3be3b442012-07-23 18:48:41 +0000934 return false;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000935 }
936
937 // check that all arguments are lockable objects
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000938 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 1);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000939
Michael Han3be3b442012-07-23 18:48:41 +0000940 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000941}
942
Michael Hana9171bc2012-08-03 17:40:43 +0000943static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000944 const ParsedAttr &AL) {
Michael Han3be3b442012-07-23 18:48:41 +0000945 SmallVector<Expr*, 2> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000946 if (!checkTryLockFunAttrCommon(S, D, AL, Args))
Michael Han3be3b442012-07-23 18:48:41 +0000947 return;
948
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000949 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(
950 AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(), Args.size(),
951 AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000952}
953
Michael Hana9171bc2012-08-03 17:40:43 +0000954static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +0000955 const ParsedAttr &AL) {
Michael Han3be3b442012-07-23 18:48:41 +0000956 SmallVector<Expr*, 2> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000957 if (!checkTryLockFunAttrCommon(S, D, AL, Args))
Michael Han3be3b442012-07-23 18:48:41 +0000958 return;
959
Nico Weber462fd1e2015-01-07 23:50:05 +0000960 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000961 AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(),
962 Args.size(), AL.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000963}
964
Erich Keanee891aa92018-07-13 15:07:47 +0000965static void handleLockReturnedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000966 // check that the argument is lockable object
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000967 SmallVector<Expr*, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000968 checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000969 unsigned Size = Args.size();
970 if (Size == 0)
971 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000972
Michael Han99315932013-01-24 16:46:58 +0000973 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000974 LockReturnedAttr(AL.getRange(), S.Context, Args[0],
975 AL.getAttributeSpellingListIndex()));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000976}
977
Erich Keanee891aa92018-07-13 15:07:47 +0000978static void handleLocksExcludedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000979 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000980 return;
981
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000982 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000983 SmallVector<Expr*, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000984 checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000985 unsigned Size = Args.size();
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000986 if (Size == 0)
987 return;
988 Expr **StartArg = &Args[0];
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000989
Michael Han99315932013-01-24 16:46:58 +0000990 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000991 LocksExcludedAttr(AL.getRange(), S.Context, StartArg, Size,
992 AL.getAttributeSpellingListIndex()));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000993}
994
Erich Keanee891aa92018-07-13 15:07:47 +0000995static bool checkFunctionConditionAttr(Sema &S, Decl *D, const ParsedAttr &AL,
George Burgess IV177399e2017-01-09 04:12:14 +0000996 Expr *&Cond, StringRef &Msg) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +0000997 Cond = AL.getArgAsExpr(0);
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000998 if (!Cond->isTypeDependent()) {
999 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
1000 if (Converted.isInvalid())
George Burgess IV177399e2017-01-09 04:12:14 +00001001 return false;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001002 Cond = Converted.get();
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001003 }
1004
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001005 if (!S.checkStringLiteralArgumentAttr(AL, 1, Msg))
George Burgess IV177399e2017-01-09 04:12:14 +00001006 return false;
1007
1008 if (Msg.empty())
1009 Msg = "<no message provided>";
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001010
1011 SmallVector<PartialDiagnosticAt, 8> Diags;
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001012 if (isa<FunctionDecl>(D) && !Cond->isValueDependent() &&
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001013 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D),
1014 Diags)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001015 S.Diag(AL.getLoc(), diag::err_attr_cond_never_constant_expr) << AL;
George Burgess IV0d546532016-11-10 21:47:12 +00001016 for (const PartialDiagnosticAt &PDiag : Diags)
1017 S.Diag(PDiag.first, PDiag.second);
George Burgess IV177399e2017-01-09 04:12:14 +00001018 return false;
1019 }
1020 return true;
1021}
1022
Erich Keanee891aa92018-07-13 15:07:47 +00001023static void handleEnableIfAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001024 S.Diag(AL.getLoc(), diag::ext_clang_enable_if);
George Burgess IV177399e2017-01-09 04:12:14 +00001025
1026 Expr *Cond;
1027 StringRef Msg;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001028 if (checkFunctionConditionAttr(S, D, AL, Cond, Msg))
George Burgess IV177399e2017-01-09 04:12:14 +00001029 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001030 EnableIfAttr(AL.getRange(), S.Context, Cond, Msg,
1031 AL.getAttributeSpellingListIndex()));
George Burgess IV177399e2017-01-09 04:12:14 +00001032}
1033
1034namespace {
1035/// Determines if a given Expr references any of the given function's
1036/// ParmVarDecls, or the function's implicit `this` parameter (if applicable).
1037class ArgumentDependenceChecker
1038 : public RecursiveASTVisitor<ArgumentDependenceChecker> {
1039#ifndef NDEBUG
1040 const CXXRecordDecl *ClassType;
1041#endif
1042 llvm::SmallPtrSet<const ParmVarDecl *, 16> Parms;
1043 bool Result;
1044
1045public:
1046 ArgumentDependenceChecker(const FunctionDecl *FD) {
1047#ifndef NDEBUG
1048 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
1049 ClassType = MD->getParent();
1050 else
1051 ClassType = nullptr;
1052#endif
1053 Parms.insert(FD->param_begin(), FD->param_end());
1054 }
1055
1056 bool referencesArgs(Expr *E) {
1057 Result = false;
1058 TraverseStmt(E);
1059 return Result;
1060 }
1061
1062 bool VisitCXXThisExpr(CXXThisExpr *E) {
1063 assert(E->getType()->getPointeeCXXRecordDecl() == ClassType &&
1064 "`this` doesn't refer to the enclosing class?");
1065 Result = true;
1066 return false;
1067 }
1068
1069 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
1070 if (const auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
1071 if (Parms.count(PVD)) {
1072 Result = true;
1073 return false;
1074 }
1075 return true;
1076 }
1077};
1078}
1079
Erich Keanee891aa92018-07-13 15:07:47 +00001080static void handleDiagnoseIfAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001081 S.Diag(AL.getLoc(), diag::ext_clang_diagnose_if);
George Burgess IV177399e2017-01-09 04:12:14 +00001082
1083 Expr *Cond;
1084 StringRef Msg;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001085 if (!checkFunctionConditionAttr(S, D, AL, Cond, Msg))
George Burgess IV177399e2017-01-09 04:12:14 +00001086 return;
1087
1088 StringRef DiagTypeStr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001089 if (!S.checkStringLiteralArgumentAttr(AL, 2, DiagTypeStr))
George Burgess IV177399e2017-01-09 04:12:14 +00001090 return;
1091
1092 DiagnoseIfAttr::DiagnosticType DiagType;
1093 if (!DiagnoseIfAttr::ConvertStrToDiagnosticType(DiagTypeStr, DiagType)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001094 S.Diag(AL.getArgAsExpr(2)->getBeginLoc(),
George Burgess IV177399e2017-01-09 04:12:14 +00001095 diag::err_diagnose_if_invalid_diagnostic_type);
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001096 return;
1097 }
1098
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001099 bool ArgDependent = false;
Argyrios Kyrtzidis5f0c0aa2017-05-24 18:35:01 +00001100 if (const auto *FD = dyn_cast<FunctionDecl>(D))
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001101 ArgDependent = ArgumentDependenceChecker(FD).referencesArgs(Cond);
George Burgess IV177399e2017-01-09 04:12:14 +00001102 D->addAttr(::new (S.Context) DiagnoseIfAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001103 AL.getRange(), S.Context, Cond, Msg, DiagType, ArgDependent,
1104 cast<NamedDecl>(D), AL.getAttributeSpellingListIndex()));
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001105}
1106
Erich Keanee891aa92018-07-13 15:07:47 +00001107static void handlePassObjectSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001108 if (D->hasAttr<PassObjectSizeAttr>()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001109 S.Diag(D->getBeginLoc(), diag::err_attribute_only_once_per_parameter) << AL;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001110 return;
1111 }
1112
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001113 Expr *E = AL.getArgAsExpr(0);
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001114 uint32_t Type;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001115 if (!checkUInt32Argument(S, AL, E, Type, /*Idx=*/1))
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001116 return;
1117
1118 // pass_object_size's argument is passed in as the second argument of
1119 // __builtin_object_size. So, it has the same constraints as that second
1120 // argument; namely, it must be in the range [0, 3].
1121 if (Type > 3) {
Aaron Ballman52c9ad22019-02-12 13:04:11 +00001122 S.Diag(E->getBeginLoc(), diag::err_attribute_argument_out_of_range)
Erich Keane44bacdf2018-08-09 13:21:32 +00001123 << AL << 0 << 3 << E->getSourceRange();
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001124 return;
1125 }
1126
1127 // pass_object_size is only supported on constant pointer parameters; as a
1128 // kindness to users, we allow the parameter to be non-const for declarations.
1129 // At this point, we have no clue if `D` belongs to a function declaration or
1130 // definition, so we defer the constness check until later.
1131 if (!cast<ParmVarDecl>(D)->getType()->isPointerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001132 S.Diag(D->getBeginLoc(), diag::err_attribute_pointers_only) << AL << 1;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001133 return;
1134 }
1135
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001136 D->addAttr(::new (S.Context) PassObjectSizeAttr(
1137 AL.getRange(), S.Context, (int)Type, AL.getAttributeSpellingListIndex()));
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001138}
1139
Erich Keanee891aa92018-07-13 15:07:47 +00001140static void handleConsumableAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
David Blaikie16f76d22013-09-06 01:28:43 +00001141 ConsumableAttr::ConsumedState DefaultState;
1142
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001143 if (AL.isArgIdent(0)) {
1144 IdentifierLoc *IL = AL.getArgAsIdent(0);
Aaron Ballman682ee422013-09-11 19:47:58 +00001145 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1146 DefaultState)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001147 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL
1148 << IL->Ident;
David Blaikie16f76d22013-09-06 01:28:43 +00001149 return;
1150 }
David Blaikie16f76d22013-09-06 01:28:43 +00001151 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001152 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001153 << AL << AANT_ArgumentIdentifier;
David Blaikie16f76d22013-09-06 01:28:43 +00001154 return;
1155 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001156
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001157 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001158 ConsumableAttr(AL.getRange(), S.Context, DefaultState,
1159 AL.getAttributeSpellingListIndex()));
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001160}
1161
1162static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
Erich Keanee891aa92018-07-13 15:07:47 +00001163 const ParsedAttr &AL) {
Brian Gesiak5488ab42019-01-11 01:54:53 +00001164 QualType ThisType = MD->getThisType()->getPointeeType();
Fangrui Song6907ce22018-07-30 19:24:48 +00001165
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001166 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
1167 if (!RD->hasAttr<ConsumableAttr>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001168 S.Diag(AL.getLoc(), diag::warn_attr_on_unconsumable_class) <<
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001169 RD->getNameAsString();
Fangrui Song6907ce22018-07-30 19:24:48 +00001170
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001171 return false;
1172 }
1173 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001174
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001175 return true;
1176}
1177
Erich Keanee891aa92018-07-13 15:07:47 +00001178static void handleCallableWhenAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001179 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Aaron Ballmandbd586f2013-10-14 23:26:04 +00001180 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00001181
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001182 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001183 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00001184
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001185 SmallVector<CallableWhenAttr::ConsumedState, 3> States;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001186 for (unsigned ArgIndex = 0; ArgIndex < AL.getNumArgs(); ++ArgIndex) {
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001187 CallableWhenAttr::ConsumedState CallableState;
Fangrui Song6907ce22018-07-30 19:24:48 +00001188
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001189 StringRef StateString;
1190 SourceLocation Loc;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001191 if (AL.isArgIdent(ArgIndex)) {
1192 IdentifierLoc *Ident = AL.getArgAsIdent(ArgIndex);
Aaron Ballman55ef1512014-12-19 16:42:04 +00001193 StateString = Ident->Ident->getName();
1194 Loc = Ident->Loc;
1195 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001196 if (!S.checkStringLiteralArgumentAttr(AL, ArgIndex, StateString, &Loc))
Aaron Ballman55ef1512014-12-19 16:42:04 +00001197 return;
1198 }
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001199
1200 if (!CallableWhenAttr::ConvertStrToConsumedState(StateString,
DeLesley Hutchins69391772013-10-17 23:23:53 +00001201 CallableState)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001202 S.Diag(Loc, diag::warn_attribute_type_not_supported) << AL << StateString;
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001203 return;
1204 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001205
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001206 States.push_back(CallableState);
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001207 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001208
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001209 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001210 CallableWhenAttr(AL.getRange(), S.Context, States.data(),
1211 States.size(), AL.getAttributeSpellingListIndex()));
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001212}
1213
Erich Keanee891aa92018-07-13 15:07:47 +00001214static void handleParamTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
DeLesley Hutchins69391772013-10-17 23:23:53 +00001215 ParamTypestateAttr::ConsumedState ParamState;
Fangrui Song6907ce22018-07-30 19:24:48 +00001216
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001217 if (AL.isArgIdent(0)) {
1218 IdentifierLoc *Ident = AL.getArgAsIdent(0);
DeLesley Hutchins69391772013-10-17 23:23:53 +00001219 StringRef StateString = Ident->Ident->getName();
1220
1221 if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString,
1222 ParamState)) {
1223 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
Erich Keane44bacdf2018-08-09 13:21:32 +00001224 << AL << StateString;
DeLesley Hutchins69391772013-10-17 23:23:53 +00001225 return;
1226 }
1227 } else {
Erich Keane44bacdf2018-08-09 13:21:32 +00001228 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1229 << AL << AANT_ArgumentIdentifier;
DeLesley Hutchins69391772013-10-17 23:23:53 +00001230 return;
1231 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001232
DeLesley Hutchins69391772013-10-17 23:23:53 +00001233 // FIXME: This check is currently being done in the analysis. It can be
1234 // enabled here only after the parser propagates attributes at
1235 // template specialization definition, not declaration.
1236 //QualType ReturnType = cast<ParmVarDecl>(D)->getType();
1237 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1238 //
1239 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001240 // S.Diag(AL.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
DeLesley Hutchins69391772013-10-17 23:23:53 +00001241 // ReturnType.getAsString();
1242 // return;
1243 //}
Fangrui Song6907ce22018-07-30 19:24:48 +00001244
DeLesley Hutchins69391772013-10-17 23:23:53 +00001245 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001246 ParamTypestateAttr(AL.getRange(), S.Context, ParamState,
1247 AL.getAttributeSpellingListIndex()));
DeLesley Hutchins69391772013-10-17 23:23:53 +00001248}
1249
Erich Keanee891aa92018-07-13 15:07:47 +00001250static void handleReturnTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001251 ReturnTypestateAttr::ConsumedState ReturnState;
Fangrui Song6907ce22018-07-30 19:24:48 +00001252
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001253 if (AL.isArgIdent(0)) {
1254 IdentifierLoc *IL = AL.getArgAsIdent(0);
Aaron Ballman682ee422013-09-11 19:47:58 +00001255 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1256 ReturnState)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001257 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL
1258 << IL->Ident;
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001259 return;
1260 }
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001261 } else {
Erich Keane44bacdf2018-08-09 13:21:32 +00001262 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1263 << AL << AANT_ArgumentIdentifier;
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001264 return;
1265 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001266
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001267 // FIXME: This check is currently being done in the analysis. It can be
1268 // enabled here only after the parser propagates attributes at
1269 // template specialization definition, not declaration.
1270 //QualType ReturnType;
1271 //
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001272 //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) {
1273 // ReturnType = Param->getType();
1274 //
1275 //} else if (const CXXConstructorDecl *Constructor =
1276 // dyn_cast<CXXConstructorDecl>(D)) {
Brian Gesiak5488ab42019-01-11 01:54:53 +00001277 // ReturnType = Constructor->getThisType()->getPointeeType();
Fangrui Song6907ce22018-07-30 19:24:48 +00001278 //
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001279 //} else {
Fangrui Song6907ce22018-07-30 19:24:48 +00001280 //
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001281 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1282 //}
1283 //
1284 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1285 //
1286 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1287 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1288 // ReturnType.getAsString();
1289 // return;
1290 //}
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001291
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001292 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001293 ReturnTypestateAttr(AL.getRange(), S.Context, ReturnState,
1294 AL.getAttributeSpellingListIndex()));
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001295}
1296
Erich Keanee891aa92018-07-13 15:07:47 +00001297static void handleSetTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001298 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001299 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00001300
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001301 SetTypestateAttr::ConsumedState NewState;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001302 if (AL.isArgIdent(0)) {
1303 IdentifierLoc *Ident = AL.getArgAsIdent(0);
Aaron Ballman91c98e12013-10-14 23:22:37 +00001304 StringRef Param = Ident->Ident->getName();
1305 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001306 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) << AL
1307 << Param;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001308 return;
1309 }
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001310 } else {
Erich Keane44bacdf2018-08-09 13:21:32 +00001311 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1312 << AL << AANT_ArgumentIdentifier;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001313 return;
1314 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001315
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001316 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001317 SetTypestateAttr(AL.getRange(), S.Context, NewState,
1318 AL.getAttributeSpellingListIndex()));
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001319}
1320
Erich Keanee891aa92018-07-13 15:07:47 +00001321static void handleTestTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001322 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001323 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00001324
1325 TestTypestateAttr::ConsumedState TestState;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001326 if (AL.isArgIdent(0)) {
1327 IdentifierLoc *Ident = AL.getArgAsIdent(0);
Aaron Ballman91c98e12013-10-14 23:22:37 +00001328 StringRef Param = Ident->Ident->getName();
Chris Wailes9385f9f2013-10-29 20:28:41 +00001329 if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001330 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) << AL
1331 << Param;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001332 return;
1333 }
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001334 } else {
Erich Keane44bacdf2018-08-09 13:21:32 +00001335 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1336 << AL << AANT_ArgumentIdentifier;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001337 return;
1338 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001339
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001340 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001341 TestTypestateAttr(AL.getRange(), S.Context, TestState,
1342 AL.getAttributeSpellingListIndex()));
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001343}
1344
Erich Keanee891aa92018-07-13 15:07:47 +00001345static void handleExtVectorTypeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Richard Smith1f5a4322013-01-13 02:11:23 +00001346 // Remember this typedef decl, we will need it later for diagnostics.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00001347 S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001348}
1349
Erich Keanee891aa92018-07-13 15:07:47 +00001350static void handlePackedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001351 if (auto *TD = dyn_cast<TagDecl>(D))
1352 TD->addAttr(::new (S.Context) PackedAttr(AL.getRange(), S.Context,
1353 AL.getAttributeSpellingListIndex()));
1354 else if (auto *FD = dyn_cast<FieldDecl>(D)) {
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001355 bool BitfieldByteAligned = (!FD->getType()->isDependentType() &&
1356 !FD->getType()->isIncompleteType() &&
1357 FD->isBitField() &&
1358 S.Context.getTypeAlign(FD->getType()) <= 8);
Alexey Bataev830dfcc2015-12-03 09:34:49 +00001359
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001360 if (S.getASTContext().getTargetInfo().getTriple().isPS4()) {
1361 if (BitfieldByteAligned)
1362 // The PS4 target needs to maintain ABI backwards compatibility.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001363 S.Diag(AL.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001364 << AL << FD->getType();
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001365 else
1366 FD->addAttr(::new (S.Context) PackedAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001367 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001368 } else {
1369 // Report warning about changed offset in the newer compiler versions.
1370 if (BitfieldByteAligned)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001371 S.Diag(AL.getLoc(), diag::warn_attribute_packed_for_bitfield);
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001372
1373 FD->addAttr(::new (S.Context) PackedAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001374 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Aaron Ballmanb6fd7262017-08-08 18:07:17 +00001375 }
1376
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001377 } else
Erich Keane44bacdf2018-08-09 13:21:32 +00001378 S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001379}
1380
Erich Keanee891aa92018-07-13 15:07:47 +00001381static bool checkIBOutletCommon(Sema &S, Decl *D, const ParsedAttr &AL) {
Ted Kremenek7fd17232011-09-29 07:02:25 +00001382 // The IBOutlet/IBOutletCollection attributes only apply to instance
1383 // variables or properties of Objective-C classes. The outlet must also
1384 // have an object reference type.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001385 if (const auto *VD = dyn_cast<ObjCIvarDecl>(D)) {
Ted Kremenek7fd17232011-09-29 07:02:25 +00001386 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001387 S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001388 << AL << VD->getType() << 0;
Ted Kremenek7fd17232011-09-29 07:02:25 +00001389 return false;
1390 }
1391 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001392 else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
Ted Kremenek7fd17232011-09-29 07:02:25 +00001393 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001394 S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001395 << AL << PD->getType() << 1;
Ted Kremenek7fd17232011-09-29 07:02:25 +00001396 return false;
1397 }
1398 }
1399 else {
Erich Keane44bacdf2018-08-09 13:21:32 +00001400 S.Diag(AL.getLoc(), diag::warn_attribute_iboutlet) << AL;
Ted Kremenek7fd17232011-09-29 07:02:25 +00001401 return false;
1402 }
Douglas Gregor5c3cc422012-03-14 16:55:17 +00001403
Ted Kremenek7fd17232011-09-29 07:02:25 +00001404 return true;
1405}
1406
Erich Keanee891aa92018-07-13 15:07:47 +00001407static void handleIBOutlet(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001408 if (!checkIBOutletCommon(S, D, AL))
Ted Kremenek1f672822010-02-18 03:08:58 +00001409 return;
Ted Kremenek1f672822010-02-18 03:08:58 +00001410
Michael Han99315932013-01-24 16:46:58 +00001411 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001412 IBOutletAttr(AL.getRange(), S.Context,
1413 AL.getAttributeSpellingListIndex()));
Ted Kremenek8e3704d2008-07-15 22:26:48 +00001414}
1415
Erich Keanee891aa92018-07-13 15:07:47 +00001416static void handleIBOutletCollection(Sema &S, Decl *D, const ParsedAttr &AL) {
Ted Kremenek26bde772010-05-19 17:38:06 +00001417
1418 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001419 if (AL.getNumArgs() > 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001420 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
Ted Kremenek26bde772010-05-19 17:38:06 +00001421 return;
1422 }
1423
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001424 if (!checkIBOutletCommon(S, D, AL))
Ted Kremenek26bde772010-05-19 17:38:06 +00001425 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +00001426
Richard Smithb1f9a282013-10-31 01:56:18 +00001427 ParsedType PT;
1428
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001429 if (AL.hasParsedType())
1430 PT = AL.getTypeArg();
Richard Smithb1f9a282013-10-31 01:56:18 +00001431 else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001432 PT = S.getTypeName(S.Context.Idents.get("NSObject"), AL.getLoc(),
Richard Smithb1f9a282013-10-31 01:56:18 +00001433 S.getScopeForContext(D->getDeclContext()->getParent()));
1434 if (!PT) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001435 S.Diag(AL.getLoc(), diag::err_iboutletcollection_type) << "NSObject";
Richard Smithb1f9a282013-10-31 01:56:18 +00001436 return;
1437 }
Aaron Ballman00e99962013-08-31 01:11:41 +00001438 }
Richard Smithb1f9a282013-10-31 01:56:18 +00001439
Craig Topperc3ec1492014-05-26 06:22:03 +00001440 TypeSourceInfo *QTLoc = nullptr;
Richard Smithb87c4652013-10-31 21:23:20 +00001441 QualType QT = S.GetTypeFromParser(PT, &QTLoc);
1442 if (!QTLoc)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001443 QTLoc = S.Context.getTrivialTypeSourceInfo(QT, AL.getLoc());
Richard Smithb1f9a282013-10-31 01:56:18 +00001444
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +00001445 // Diagnose use of non-object type in iboutletcollection attribute.
1446 // FIXME. Gnu attribute extension ignores use of builtin types in
1447 // attributes. So, __attribute__((iboutletcollection(char))) will be
1448 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanian2f31b332011-10-18 19:54:31 +00001449 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001450 S.Diag(AL.getLoc(),
Richard Smithb1f9a282013-10-31 01:56:18 +00001451 QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype
1452 : diag::err_iboutletcollection_type) << QT;
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +00001453 return;
1454 }
Richard Smithb1f9a282013-10-31 01:56:18 +00001455
Michael Han99315932013-01-24 16:46:58 +00001456 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001457 IBOutletCollectionAttr(AL.getRange(), S.Context, QTLoc,
1458 AL.getAttributeSpellingListIndex()));
Ted Kremenek26bde772010-05-19 17:38:06 +00001459}
1460
Hal Finkelee90a222014-09-26 05:04:30 +00001461bool Sema::isValidPointerAttrType(QualType T, bool RefOkay) {
1462 if (RefOkay) {
1463 if (T->isReferenceType())
1464 return true;
1465 } else {
1466 T = T.getNonReferenceType();
1467 }
Richard Smith588bd9b2014-08-27 04:59:42 +00001468
Hal Finkelee90a222014-09-26 05:04:30 +00001469 // The nonnull attribute, and other similar attributes, can be applied to a
1470 // transparent union that contains a pointer type.
Richard Smith588bd9b2014-08-27 04:59:42 +00001471 if (const RecordType *UT = T->getAsUnionType()) {
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001472 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1473 RecordDecl *UD = UT->getDecl();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001474 for (const auto *I : UD->fields()) {
1475 QualType QT = I->getType();
Richard Smith588bd9b2014-08-27 04:59:42 +00001476 if (QT->isAnyPointerType() || QT->isBlockPointerType())
1477 return true;
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001478 }
1479 }
Richard Smith588bd9b2014-08-27 04:59:42 +00001480 }
1481
1482 return T->isAnyPointerType() || T->isBlockPointerType();
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001483}
1484
Erich Keanee891aa92018-07-13 15:07:47 +00001485static bool attrNonNullArgCheck(Sema &S, QualType T, const ParsedAttr &AL,
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001486 SourceRange AttrParmRange,
Hal Finkelee90a222014-09-26 05:04:30 +00001487 SourceRange TypeRange,
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001488 bool isReturnValue = false) {
Hal Finkelee90a222014-09-26 05:04:30 +00001489 if (!S.isValidPointerAttrType(T)) {
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001490 if (isReturnValue)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001491 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only)
Erich Keane44bacdf2018-08-09 13:21:32 +00001492 << AL << AttrParmRange << TypeRange;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001493 else
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001494 S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only)
Erich Keane44bacdf2018-08-09 13:21:32 +00001495 << AL << AttrParmRange << TypeRange << 0;
Ted Kremenek9aedc152014-01-17 06:24:56 +00001496 return false;
1497 }
1498 return true;
1499}
1500
Erich Keanee891aa92018-07-13 15:07:47 +00001501static void handleNonNullAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Joel E. Denny81508102018-03-13 14:51:22 +00001502 SmallVector<ParamIdx, 8> NonNullArgs;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001503 for (unsigned I = 0; I < AL.getNumArgs(); ++I) {
1504 Expr *Ex = AL.getArgAsExpr(I);
Joel E. Denny81508102018-03-13 14:51:22 +00001505 ParamIdx Idx;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001506 if (!checkFunctionOrMethodParameterIndex(S, D, AL, I + 1, Ex, Idx))
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001507 return;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001508
1509 // Is the function argument a pointer type?
Joel E. Denny81508102018-03-13 14:51:22 +00001510 if (Idx.getASTIndex() < getFunctionOrMethodNumParams(D) &&
1511 !attrNonNullArgCheck(
1512 S, getFunctionOrMethodParamType(D, Idx.getASTIndex()), AL,
1513 Ex->getSourceRange(),
1514 getFunctionOrMethodParamRange(D, Idx.getASTIndex())))
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001515 continue;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001516
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001517 NonNullArgs.push_back(Idx);
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001518 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001519
1520 // If no arguments were specified to __attribute__((nonnull)) then all pointer
Richard Smith588bd9b2014-08-27 04:59:42 +00001521 // arguments have a nonnull attribute; warn if there aren't any. Skip this
1522 // check if the attribute came from a macro expansion or a template
1523 // instantiation.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001524 if (NonNullArgs.empty() && AL.getLoc().isFileID() &&
Richard Smith51ec0cf2017-02-21 01:17:38 +00001525 !S.inTemplateInstantiation()) {
Richard Smith588bd9b2014-08-27 04:59:42 +00001526 bool AnyPointers = isFunctionOrMethodVariadic(D);
1527 for (unsigned I = 0, E = getFunctionOrMethodNumParams(D);
1528 I != E && !AnyPointers; ++I) {
1529 QualType T = getFunctionOrMethodParamType(D, I);
Hal Finkelee90a222014-09-26 05:04:30 +00001530 if (T->isDependentType() || S.isValidPointerAttrType(T))
Richard Smith588bd9b2014-08-27 04:59:42 +00001531 AnyPointers = true;
Ted Kremenek5fa50522008-11-18 06:52:58 +00001532 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001533
Richard Smith588bd9b2014-08-27 04:59:42 +00001534 if (!AnyPointers)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001535 S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001536 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001537
Joel E. Denny81508102018-03-13 14:51:22 +00001538 ParamIdx *Start = NonNullArgs.data();
Richard Smith588bd9b2014-08-27 04:59:42 +00001539 unsigned Size = NonNullArgs.size();
1540 llvm::array_pod_sort(Start, Start + Size);
Michael Han99315932013-01-24 16:46:58 +00001541 D->addAttr(::new (S.Context)
Joel E. Denny81508102018-03-13 14:51:22 +00001542 NonNullAttr(AL.getRange(), S.Context, Start, Size,
1543 AL.getAttributeSpellingListIndex()));
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001544}
1545
Jordan Rosec9399072014-02-11 17:27:59 +00001546static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00001547 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001548 if (AL.getNumArgs() > 0) {
Jordan Rosec9399072014-02-11 17:27:59 +00001549 if (D->getFunctionType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001550 handleNonNullAttr(S, D, AL);
Jordan Rosec9399072014-02-11 17:27:59 +00001551 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001552 S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_parm_no_args)
Jordan Rosec9399072014-02-11 17:27:59 +00001553 << D->getSourceRange();
1554 }
1555 return;
1556 }
1557
1558 // Is the argument a pointer type?
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001559 if (!attrNonNullArgCheck(S, D->getType(), AL, SourceRange(),
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001560 D->getSourceRange()))
Jordan Rosec9399072014-02-11 17:27:59 +00001561 return;
1562
1563 D->addAttr(::new (S.Context)
Joel E. Denny81508102018-03-13 14:51:22 +00001564 NonNullAttr(AL.getRange(), S.Context, nullptr, 0,
1565 AL.getAttributeSpellingListIndex()));
Jordan Rosec9399072014-02-11 17:27:59 +00001566}
1567
Erich Keanee891aa92018-07-13 15:07:47 +00001568static void handleReturnsNonNullAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanfc1951c2014-01-20 14:19:44 +00001569 QualType ResultType = getFunctionOrMethodResultType(D);
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001570 SourceRange SR = getFunctionOrMethodResultSourceRange(D);
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001571 if (!attrNonNullArgCheck(S, ResultType, AL, SourceRange(), SR,
Ted Kremenekdbf62e32014-01-20 05:50:47 +00001572 /* isReturnValue */ true))
1573 return;
1574
1575 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001576 ReturnsNonNullAttr(AL.getRange(), S.Context,
1577 AL.getAttributeSpellingListIndex()));
Ted Kremenekdbf62e32014-01-20 05:50:47 +00001578}
1579
Erich Keanee891aa92018-07-13 15:07:47 +00001580static void handleNoEscapeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Akira Hatanaka98a49332017-09-22 00:41:05 +00001581 if (D->isInvalidDecl())
1582 return;
1583
1584 // noescape only applies to pointer types.
1585 QualType T = cast<ParmVarDecl>(D)->getType();
1586 if (!S.isValidPointerAttrType(T, /* RefOkay */ true)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001587 S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only)
Erich Keane44bacdf2018-08-09 13:21:32 +00001588 << AL << AL.getRange() << 0;
Akira Hatanaka98a49332017-09-22 00:41:05 +00001589 return;
1590 }
1591
1592 D->addAttr(::new (S.Context) NoEscapeAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001593 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Akira Hatanaka98a49332017-09-22 00:41:05 +00001594}
1595
Erich Keanee891aa92018-07-13 15:07:47 +00001596static void handleAssumeAlignedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001597 Expr *E = AL.getArgAsExpr(0),
1598 *OE = AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr;
1599 S.AddAssumeAlignedAttr(AL.getRange(), D, E, OE,
1600 AL.getAttributeSpellingListIndex());
Hal Finkelee90a222014-09-26 05:04:30 +00001601}
1602
Erich Keanee891aa92018-07-13 15:07:47 +00001603static void handleAllocAlignAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001604 S.AddAllocAlignAttr(AL.getRange(), D, AL.getArgAsExpr(0),
1605 AL.getAttributeSpellingListIndex());
Erich Keane623efd82017-03-30 21:48:55 +00001606}
1607
Hal Finkelee90a222014-09-26 05:04:30 +00001608void Sema::AddAssumeAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
1609 Expr *OE, unsigned SpellingListIndex) {
1610 QualType ResultType = getFunctionOrMethodResultType(D);
1611 SourceRange SR = getFunctionOrMethodResultSourceRange(D);
1612
1613 AssumeAlignedAttr TmpAttr(AttrRange, Context, E, OE, SpellingListIndex);
1614 SourceLocation AttrLoc = AttrRange.getBegin();
1615
1616 if (!isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1617 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1618 << &TmpAttr << AttrRange << SR;
1619 return;
1620 }
1621
1622 if (!E->isValueDependent()) {
1623 llvm::APSInt I(64);
1624 if (!E->isIntegerConstantExpr(I, Context)) {
1625 if (OE)
1626 Diag(AttrLoc, diag::err_attribute_argument_n_type)
1627 << &TmpAttr << 1 << AANT_ArgumentIntegerConstant
1628 << E->getSourceRange();
1629 else
1630 Diag(AttrLoc, diag::err_attribute_argument_type)
1631 << &TmpAttr << AANT_ArgumentIntegerConstant
1632 << E->getSourceRange();
1633 return;
1634 }
1635
1636 if (!I.isPowerOf2()) {
1637 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
1638 << E->getSourceRange();
1639 return;
1640 }
1641 }
1642
1643 if (OE) {
1644 if (!OE->isValueDependent()) {
1645 llvm::APSInt I(64);
1646 if (!OE->isIntegerConstantExpr(I, Context)) {
1647 Diag(AttrLoc, diag::err_attribute_argument_n_type)
1648 << &TmpAttr << 2 << AANT_ArgumentIntegerConstant
1649 << OE->getSourceRange();
1650 return;
1651 }
1652 }
1653 }
1654
1655 D->addAttr(::new (Context)
1656 AssumeAlignedAttr(AttrRange, Context, E, OE, SpellingListIndex));
1657}
1658
Erich Keane623efd82017-03-30 21:48:55 +00001659void Sema::AddAllocAlignAttr(SourceRange AttrRange, Decl *D, Expr *ParamExpr,
1660 unsigned SpellingListIndex) {
1661 QualType ResultType = getFunctionOrMethodResultType(D);
1662
Joel E. Denny81508102018-03-13 14:51:22 +00001663 AllocAlignAttr TmpAttr(AttrRange, Context, ParamIdx(), SpellingListIndex);
Erich Keane623efd82017-03-30 21:48:55 +00001664 SourceLocation AttrLoc = AttrRange.getBegin();
1665
1666 if (!ResultType->isDependentType() &&
1667 !isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1668 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1669 << &TmpAttr << AttrRange << getFunctionOrMethodResultSourceRange(D);
1670 return;
1671 }
1672
Joel E. Denny81508102018-03-13 14:51:22 +00001673 ParamIdx Idx;
Erich Keane623efd82017-03-30 21:48:55 +00001674 const auto *FuncDecl = cast<FunctionDecl>(D);
1675 if (!checkFunctionOrMethodParameterIndex(*this, FuncDecl, TmpAttr,
Joel E. Denny81508102018-03-13 14:51:22 +00001676 /*AttrArgNo=*/1, ParamExpr, Idx))
Erich Keane623efd82017-03-30 21:48:55 +00001677 return;
1678
Joel E. Denny81508102018-03-13 14:51:22 +00001679 QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex());
Erich Keane623efd82017-03-30 21:48:55 +00001680 if (!Ty->isDependentType() && !Ty->isIntegralType(Context)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001681 Diag(ParamExpr->getBeginLoc(), diag::err_attribute_integers_only)
Joel E. Denny81508102018-03-13 14:51:22 +00001682 << &TmpAttr
1683 << FuncDecl->getParamDecl(Idx.getASTIndex())->getSourceRange();
Erich Keane623efd82017-03-30 21:48:55 +00001684 return;
1685 }
1686
Joel E. Denny81508102018-03-13 14:51:22 +00001687 D->addAttr(::new (Context)
1688 AllocAlignAttr(AttrRange, Context, Idx, SpellingListIndex));
Erich Keane623efd82017-03-30 21:48:55 +00001689}
1690
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001691/// Normalize the attribute, __foo__ becomes foo.
1692/// Returns true if normalization was applied.
1693static bool normalizeName(StringRef &AttrName) {
Aaron Ballman62692362015-10-09 13:53:24 +00001694 if (AttrName.size() > 4 && AttrName.startswith("__") &&
1695 AttrName.endswith("__")) {
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001696 AttrName = AttrName.drop_front(2).drop_back(2);
1697 return true;
1698 }
1699 return false;
1700}
1701
Erich Keanee891aa92018-07-13 15:07:47 +00001702static void handleOwnershipAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001703 // This attribute must be applied to a function declaration. The first
1704 // argument to the attribute must be an identifier, the name of the resource,
1705 // for example: malloc. The following arguments must be argument indexes, the
1706 // arguments must be of integer type for Returns, otherwise of pointer type.
Ted Kremenekd21139a2010-07-31 01:52:11 +00001707 // The difference between Holds and Takes is that a pointer may still be used
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001708 // after being held. free() should be __attribute((ownership_takes)), whereas
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001709 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekd21139a2010-07-31 01:52:11 +00001710
Aaron Ballman00e99962013-08-31 01:11:41 +00001711 if (!AL.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00001712 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001713 << AL << 1 << AANT_ArgumentIdentifier;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001714 return;
1715 }
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001716
Richard Smith852e9ce2013-11-27 01:46:48 +00001717 // Figure out our Kind.
1718 OwnershipAttr::OwnershipKind K =
Craig Topperc3ec1492014-05-26 06:22:03 +00001719 OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0,
Richard Smith852e9ce2013-11-27 01:46:48 +00001720 AL.getAttributeSpellingListIndex()).getOwnKind();
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001721
Richard Smith852e9ce2013-11-27 01:46:48 +00001722 // Check arguments.
1723 switch (K) {
1724 case OwnershipAttr::Takes:
1725 case OwnershipAttr::Holds:
1726 if (AL.getNumArgs() < 2) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001727 S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments) << AL << 2;
Richard Smith852e9ce2013-11-27 01:46:48 +00001728 return;
1729 }
1730 break;
1731 case OwnershipAttr::Returns:
Aaron Ballman00e99962013-08-31 01:11:41 +00001732 if (AL.getNumArgs() > 2) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001733 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001734 return;
1735 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001736 break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001737 }
1738
Richard Smith852e9ce2013-11-27 01:46:48 +00001739 IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001740
Richard Smith852e9ce2013-11-27 01:46:48 +00001741 StringRef ModuleName = Module->getName();
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001742 if (normalizeName(ModuleName)) {
Richard Smith852e9ce2013-11-27 01:46:48 +00001743 Module = &S.PP.getIdentifierTable().get(ModuleName);
1744 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001745
Joel E. Denny81508102018-03-13 14:51:22 +00001746 SmallVector<ParamIdx, 8> OwnershipArgs;
Aaron Ballman00e99962013-08-31 01:11:41 +00001747 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1748 Expr *Ex = AL.getArgAsExpr(i);
Joel E. Denny81508102018-03-13 14:51:22 +00001749 ParamIdx Idx;
Alp Toker601b22c2014-01-21 23:35:24 +00001750 if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx))
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001751 return;
Chandler Carruth743682b2010-11-16 08:35:43 +00001752
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001753 // Is the function argument a pointer type?
Joel E. Denny81508102018-03-13 14:51:22 +00001754 QualType T = getFunctionOrMethodParamType(D, Idx.getASTIndex());
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001755 int Err = -1; // No error
Ted Kremenekd21139a2010-07-31 01:52:11 +00001756 switch (K) {
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001757 case OwnershipAttr::Takes:
1758 case OwnershipAttr::Holds:
1759 if (!T->isAnyPointerType() && !T->isBlockPointerType())
1760 Err = 0;
1761 break;
1762 case OwnershipAttr::Returns:
1763 if (!T->isIntegerType())
1764 Err = 1;
1765 break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001766 }
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001767 if (-1 != Err) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001768 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL << Err
1769 << Ex->getSourceRange();
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001770 return;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001771 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001772
1773 // Check we don't have a conflict with another ownership attribute.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00001774 for (const auto *I : D->specific_attrs<OwnershipAttr>()) {
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001775 // Cannot have two ownership attributes of different kinds for the same
1776 // index.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00001777 if (I->getOwnKind() != K && I->args_end() !=
1778 std::find(I->args_begin(), I->args_end(), Idx)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001779 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) << AL << I;
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001780 return;
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001781 } else if (K == OwnershipAttr::Returns &&
1782 I->getOwnKind() == OwnershipAttr::Returns) {
1783 // A returns attribute conflicts with any other returns attribute using
Joel E. Denny81508102018-03-13 14:51:22 +00001784 // a different index.
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001785 if (std::find(I->args_begin(), I->args_end(), Idx) == I->args_end()) {
1786 S.Diag(I->getLocation(), diag::err_ownership_returns_index_mismatch)
Joel E. Denny81508102018-03-13 14:51:22 +00001787 << I->args_begin()->getSourceIndex();
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001788 if (I->args_size())
1789 S.Diag(AL.getLoc(), diag::note_ownership_returns_index_mismatch)
Joel E. Denny81508102018-03-13 14:51:22 +00001790 << Idx.getSourceIndex() << Ex->getSourceRange();
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001791 return;
1792 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001793 }
1794 }
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001795 OwnershipArgs.push_back(Idx);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001796 }
1797
Joel E. Denny81508102018-03-13 14:51:22 +00001798 ParamIdx *Start = OwnershipArgs.data();
1799 unsigned Size = OwnershipArgs.size();
1800 llvm::array_pod_sort(Start, Start + Size);
Michael Han99315932013-01-24 16:46:58 +00001801 D->addAttr(::new (S.Context)
Joel E. Denny81508102018-03-13 14:51:22 +00001802 OwnershipAttr(AL.getLoc(), S.Context, Module, Start, Size,
1803 AL.getAttributeSpellingListIndex()));
Ted Kremenekd21139a2010-07-31 01:52:11 +00001804}
1805
Erich Keanee891aa92018-07-13 15:07:47 +00001806static void handleWeakRefAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001807 // Check the attribute arguments.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001808 if (AL.getNumArgs() > 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +00001809 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001810 return;
1811 }
1812
1813 // gcc rejects
1814 // class c {
1815 // static int a __attribute__((weakref ("v2")));
1816 // static int b() __attribute__((weakref ("f3")));
1817 // };
1818 // and ignores the attributes of
1819 // void f(void) {
1820 // static int a __attribute__((weakref ("v2")));
1821 // }
1822 // we reject them
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001823 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl50c68252010-08-31 00:36:30 +00001824 if (!Ctx->isFileContext()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001825 S.Diag(AL.getLoc(), diag::err_attribute_weakref_not_global_context)
1826 << cast<NamedDecl>(D);
Sebastian Redl50c68252010-08-31 00:36:30 +00001827 return;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001828 }
1829
1830 // The GCC manual says
1831 //
1832 // At present, a declaration to which `weakref' is attached can only
1833 // be `static'.
1834 //
1835 // It also says
1836 //
1837 // Without a TARGET,
1838 // given as an argument to `weakref' or to `alias', `weakref' is
1839 // equivalent to `weak'.
1840 //
1841 // gcc 4.4.1 will accept
1842 // int a7 __attribute__((weakref));
1843 // as
1844 // int a7 __attribute__((weak));
1845 // This looks like a bug in gcc. We reject that for now. We should revisit
1846 // it if this behaviour is actually used.
1847
Rafael Espindolac18086a2010-02-23 22:00:30 +00001848 // GCC rejects
1849 // static ((alias ("y"), weakref)).
1850 // Should we? How to check that weakref is before or after alias?
1851
Aaron Ballmanfebff0c2013-09-09 23:40:31 +00001852 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1853 // of transforming it into an AliasAttr. The WeakRefAttr never uses the
1854 // StringRef parameter it was given anyway.
Aaron Ballman3b1dde62013-09-13 19:35:18 +00001855 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001856 if (AL.getNumArgs() && S.checkStringLiteralArgumentAttr(AL, 0, Str))
Rafael Espindolac18086a2010-02-23 22:00:30 +00001857 // GCC will accept anything as the argument of weakref. Should we
1858 // check for an existing decl?
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001859 D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str,
1860 AL.getAttributeSpellingListIndex()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001861
Michael Han99315932013-01-24 16:46:58 +00001862 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001863 WeakRefAttr(AL.getRange(), S.Context,
1864 AL.getAttributeSpellingListIndex()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001865}
1866
Erich Keanee891aa92018-07-13 15:07:47 +00001867static void handleIFuncAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001868 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001869 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001870 return;
1871
1872 // Aliases should be on declarations, not definitions.
1873 const auto *FD = cast<FunctionDecl>(D);
1874 if (FD->isThisDeclarationADefinition()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001875 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 1;
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001876 return;
1877 }
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001878
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001879 D->addAttr(::new (S.Context) IFuncAttr(AL.getRange(), S.Context, Str,
1880 AL.getAttributeSpellingListIndex()));
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001881}
1882
Erich Keanee891aa92018-07-13 15:07:47 +00001883static void handleAliasAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001884 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001885 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001886 return;
1887
Douglas Gregore8bbc122011-09-02 00:18:52 +00001888 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001889 S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_darwin);
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001890 return;
1891 }
Justin Lebara8f0254b2016-01-23 21:28:10 +00001892 if (S.Context.getTargetInfo().getTriple().isNVPTX()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001893 S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_nvptx);
Justin Lebara8f0254b2016-01-23 21:28:10 +00001894 }
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001895
David Majnemer2dc81462015-01-19 09:00:28 +00001896 // Aliases should be on declarations, not definitions.
1897 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
1898 if (FD->isThisDeclarationADefinition()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001899 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 0;
David Majnemer2dc81462015-01-19 09:00:28 +00001900 return;
1901 }
1902 } else {
1903 const auto *VD = cast<VarDecl>(D);
1904 if (VD->isThisDeclarationADefinition() && VD->isExternallyVisible()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001905 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << VD << 0;
David Majnemer2dc81462015-01-19 09:00:28 +00001906 return;
1907 }
1908 }
1909
Nick Desaulniers9b9fe412019-01-09 23:54:55 +00001910 // Mark target used to prevent unneeded-internal-declaration warnings.
1911 if (!S.LangOpts.CPlusPlus) {
1912 // FIXME: demangle Str for C++, as the attribute refers to the mangled
1913 // linkage name, not the pre-mangled identifier.
1914 const DeclarationNameInfo target(&S.Context.Idents.get(Str), AL.getLoc());
1915 LookupResult LR(S, target, Sema::LookupOrdinaryName);
1916 if (S.LookupQualifiedName(LR, S.getCurLexicalContext()))
1917 for (NamedDecl *ND : LR)
1918 ND->markUsed(S.Context);
1919 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001920
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001921 D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str,
1922 AL.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001923}
1924
Erich Keanee891aa92018-07-13 15:07:47 +00001925static void handleTLSModelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001926 StringRef Model;
1927 SourceLocation LiteralLoc;
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001928 // Check that it is a string.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001929 if (!S.checkStringLiteralArgumentAttr(AL, 0, Model, &LiteralLoc))
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001930 return;
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001931
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001932 // Check that the value.
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001933 if (Model != "global-dynamic" && Model != "local-dynamic"
1934 && Model != "initial-exec" && Model != "local-exec") {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001935 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001936 return;
1937 }
1938
Michael Han99315932013-01-24 16:46:58 +00001939 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001940 TLSModelAttr(AL.getRange(), S.Context, Model,
1941 AL.getAttributeSpellingListIndex()));
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001942}
1943
Erich Keanee891aa92018-07-13 15:07:47 +00001944static void handleRestrictAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
David Majnemer631a90b2015-02-04 07:23:21 +00001945 QualType ResultType = getFunctionOrMethodResultType(D);
1946 if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) {
1947 D->addAttr(::new (S.Context) RestrictAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001948 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
David Majnemer631a90b2015-02-04 07:23:21 +00001949 return;
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001950 }
1951
Aaron Ballmana70c6b52018-02-15 16:20:20 +00001952 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only)
Erich Keane44bacdf2018-08-09 13:21:32 +00001953 << AL << getFunctionOrMethodResultSourceRange(D);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001954}
1955
Erich Keane3efe0022018-07-20 14:13:28 +00001956static void handleCPUSpecificAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1957 FunctionDecl *FD = cast<FunctionDecl>(D);
Erich Keane659c8712018-09-10 14:31:56 +00001958
1959 if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
1960 if (MD->getParent()->isLambda()) {
1961 S.Diag(AL.getLoc(), diag::err_attribute_dll_lambda) << AL;
1962 return;
1963 }
1964 }
1965
Erich Keane3efe0022018-07-20 14:13:28 +00001966 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
1967 return;
1968
1969 SmallVector<IdentifierInfo *, 8> CPUs;
1970 for (unsigned ArgNo = 0; ArgNo < getNumAttributeArgs(AL); ++ArgNo) {
1971 if (!AL.isArgIdent(ArgNo)) {
1972 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00001973 << AL << AANT_ArgumentIdentifier;
Erich Keane3efe0022018-07-20 14:13:28 +00001974 return;
1975 }
1976
1977 IdentifierLoc *CPUArg = AL.getArgAsIdent(ArgNo);
1978 StringRef CPUName = CPUArg->Ident->getName().trim();
1979
1980 if (!S.Context.getTargetInfo().validateCPUSpecificCPUDispatch(CPUName)) {
1981 S.Diag(CPUArg->Loc, diag::err_invalid_cpu_specific_dispatch_value)
1982 << CPUName << (AL.getKind() == ParsedAttr::AT_CPUDispatch);
1983 return;
1984 }
1985
1986 const TargetInfo &Target = S.Context.getTargetInfo();
1987 if (llvm::any_of(CPUs, [CPUName, &Target](const IdentifierInfo *Cur) {
1988 return Target.CPUSpecificManglingCharacter(CPUName) ==
1989 Target.CPUSpecificManglingCharacter(Cur->getName());
1990 })) {
1991 S.Diag(AL.getLoc(), diag::warn_multiversion_duplicate_entries);
1992 return;
1993 }
1994 CPUs.push_back(CPUArg->Ident);
1995 }
1996
1997 FD->setIsMultiVersion(true);
1998 if (AL.getKind() == ParsedAttr::AT_CPUSpecific)
1999 D->addAttr(::new (S.Context) CPUSpecificAttr(
2000 AL.getRange(), S.Context, CPUs.data(), CPUs.size(),
2001 AL.getAttributeSpellingListIndex()));
2002 else
2003 D->addAttr(::new (S.Context) CPUDispatchAttr(
2004 AL.getRange(), S.Context, CPUs.data(), CPUs.size(),
2005 AL.getAttributeSpellingListIndex()));
2006}
2007
Erich Keanee891aa92018-07-13 15:07:47 +00002008static void handleCommonAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Eli Friedman6fc7ad12013-06-20 22:55:04 +00002009 if (S.LangOpts.CPlusPlus) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002010 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
Erich Keane44bacdf2018-08-09 13:21:32 +00002011 << AL << AttributeLangSupport::Cpp;
Eli Friedman6fc7ad12013-06-20 22:55:04 +00002012 return;
2013 }
2014
Erich Keane44bacdf2018-08-09 13:21:32 +00002015 if (CommonAttr *CA = S.mergeCommonAttr(D, AL))
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00002016 D->addAttr(CA);
Eric Christopher8a2ee392010-12-02 02:45:55 +00002017}
2018
Erich Keanee891aa92018-07-13 15:07:47 +00002019static void handleNakedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002020 if (checkAttrMutualExclusion<DisableTailCallsAttr>(S, D, AL))
Charles Davis0e379112016-08-08 21:19:08 +00002021 return;
2022
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002023 if (AL.isDeclspecAttribute()) {
Saleem Abdulrasoolb51bcaf2017-04-07 15:13:47 +00002024 const auto &Triple = S.getASTContext().getTargetInfo().getTriple();
2025 const auto &Arch = Triple.getArch();
2026 if (Arch != llvm::Triple::x86 &&
2027 (Arch != llvm::Triple::arm && Arch != llvm::Triple::thumb)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002028 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_on_arch)
Erich Keane44bacdf2018-08-09 13:21:32 +00002029 << AL << Triple.getArchName();
Saleem Abdulrasoolb51bcaf2017-04-07 15:13:47 +00002030 return;
2031 }
2032 }
2033
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002034 D->addAttr(::new (S.Context) NakedAttr(AL.getRange(), S.Context,
2035 AL.getAttributeSpellingListIndex()));
Charles Davis0e379112016-08-08 21:19:08 +00002036}
2037
Erich Keanee891aa92018-07-13 15:07:47 +00002038static void handleNoReturnAttr(Sema &S, Decl *D, const ParsedAttr &Attrs) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002039 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00002040
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002041 if (!isa<ObjCMethodDecl>(D)) {
Erich Keaneb11ebc52017-09-27 03:20:13 +00002042 S.Diag(Attrs.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002043 << Attrs << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00002044 return;
2045 }
2046
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00002047 D->addAttr(::new (S.Context) NoReturnAttr(
Erich Keaneb11ebc52017-09-27 03:20:13 +00002048 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00002049}
2050
Erich Keanee891aa92018-07-13 15:07:47 +00002051static void handleNoCfCheckAttr(Sema &S, Decl *D, const ParsedAttr &Attrs) {
Oren Ben Simhon220671a2018-03-17 13:31:35 +00002052 if (!S.getLangOpts().CFProtectionBranch)
2053 S.Diag(Attrs.getLoc(), diag::warn_nocf_check_attribute_ignored);
2054 else
2055 handleSimpleAttribute<AnyX86NoCfCheckAttr>(S, D, Attrs);
John McCall3882ace2011-01-05 12:14:39 +00002056}
2057
Erich Keanee891aa92018-07-13 15:07:47 +00002058bool Sema::CheckAttrNoArgs(const ParsedAttr &Attrs) {
Erich Keaneb11ebc52017-09-27 03:20:13 +00002059 if (!checkAttributeNumArgs(*this, Attrs, 0)) {
2060 Attrs.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00002061 return true;
2062 }
2063
2064 return false;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00002065}
2066
Erich Keanee891aa92018-07-13 15:07:47 +00002067bool Sema::CheckAttrTarget(const ParsedAttr &AL) {
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00002068 // Check whether the attribute is valid on the current target.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002069 if (!AL.existsInTarget(Context.getTargetInfo())) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002070 Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored) << AL;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002071 AL.setInvalid();
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00002072 return true;
2073 }
2074
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00002075 return false;
2076}
2077
Erich Keanee891aa92018-07-13 15:07:47 +00002078static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2079
Ted Kremenek5295ce82010-08-19 00:51:58 +00002080 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
2081 // because 'analyzer_noreturn' does not impact the type.
David Majnemer06864812015-04-07 06:01:53 +00002082 if (!isFunctionOrMethodOrBlock(D)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002083 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Craig Topperc3ec1492014-05-26 06:22:03 +00002084 if (!VD || (!VD->getType()->isBlockPointerType() &&
2085 !VD->getType()->isFunctionPointerType())) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002086 S.Diag(AL.getLoc(), AL.isCXX11Attribute()
2087 ? diag::err_attribute_wrong_decl_type
2088 : diag::warn_attribute_wrong_decl_type)
2089 << AL << ExpectedFunctionMethodOrBlock;
Ted Kremenek5295ce82010-08-19 00:51:58 +00002090 return;
2091 }
2092 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002093
Michael Han99315932013-01-24 16:46:58 +00002094 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002095 AnalyzerNoReturnAttr(AL.getRange(), S.Context,
2096 AL.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002097}
2098
John Thompsoncdb847ba2010-08-09 21:53:52 +00002099// PS3 PPU-specific.
Erich Keanee891aa92018-07-13 15:07:47 +00002100static void handleVecReturnAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2101 /*
2102 Returning a Vector Class in Registers
2103
2104 According to the PPU ABI specifications, a class with a single member of
2105 vector type is returned in memory when used as the return value of a
2106 function.
2107 This results in inefficient code when implementing vector classes. To return
2108 the value in a single vector register, add the vecreturn attribute to the
2109 class definition. This attribute is also applicable to struct types.
2110
2111 Example:
2112
2113 struct Vector
2114 {
2115 __vector float xyzw;
2116 } __attribute__((vecreturn));
2117
2118 Vector Add(Vector lhs, Vector rhs)
2119 {
2120 Vector result;
2121 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
2122 return result; // This will be returned in a register
2123 }
2124 */
Aaron Ballman3e424b52013-12-26 18:30:57 +00002125 if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002126 S.Diag(AL.getLoc(), diag::err_repeat_attribute) << A;
John Thompsoncdb847ba2010-08-09 21:53:52 +00002127 return;
2128 }
2129
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002130 const auto *R = cast<RecordDecl>(D);
John Thompson9a587aaa2010-09-18 01:12:07 +00002131 int count = 0;
2132
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002133 if (!isa<CXXRecordDecl>(R)) {
2134 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
John Thompson9a587aaa2010-09-18 01:12:07 +00002135 return;
2136 }
2137
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002138 if (!cast<CXXRecordDecl>(R)->isPOD()) {
2139 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
John Thompson9a587aaa2010-09-18 01:12:07 +00002140 return;
2141 }
2142
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002143 for (const auto *I : R->fields()) {
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00002144 if ((count == 1) || !I->getType()->isVectorType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002145 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
John Thompson9a587aaa2010-09-18 01:12:07 +00002146 return;
2147 }
2148 count++;
2149 }
2150
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002151 D->addAttr(::new (S.Context) VecReturnAttr(
2152 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
John Thompsoncdb847ba2010-08-09 21:53:52 +00002153}
2154
Richard Smithe233fbf2013-01-28 22:42:45 +00002155static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00002156 const ParsedAttr &AL) {
Richard Smithe233fbf2013-01-28 22:42:45 +00002157 if (isa<ParmVarDecl>(D)) {
2158 // [[carries_dependency]] can only be applied to a parameter if it is a
2159 // parameter of a function declaration or lambda.
2160 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002161 S.Diag(AL.getLoc(),
Richard Smithe233fbf2013-01-28 22:42:45 +00002162 diag::err_carries_dependency_param_not_function_decl);
2163 return;
2164 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00002165 }
Richard Smithe233fbf2013-01-28 22:42:45 +00002166
2167 D->addAttr(::new (S.Context) CarriesDependencyAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002168 AL.getRange(), S.Context,
2169 AL.getAttributeSpellingListIndex()));
Alexis Hunt96d5c762009-11-21 08:43:09 +00002170}
2171
Erich Keanee891aa92018-07-13 15:07:47 +00002172static void handleUnusedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002173 bool IsCXX17Attr = AL.isCXX11Attribute() && !AL.getScopeName();
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00002174
Aaron Ballmanc351fba2017-12-04 20:27:34 +00002175 // If this is spelled as the standard C++17 attribute, but not in C++17, warn
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00002176 // about using it as an extension.
Aaron Ballmanc351fba2017-12-04 20:27:34 +00002177 if (!S.getLangOpts().CPlusPlus17 && IsCXX17Attr)
Erich Keane44bacdf2018-08-09 13:21:32 +00002178 S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL;
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00002179
2180 D->addAttr(::new (S.Context) UnusedAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002181 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00002182}
2183
Erich Keanee891aa92018-07-13 15:07:47 +00002184static void handleConstructorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002185 uint32_t priority = ConstructorAttr::DefaultPriority;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002186 if (AL.getNumArgs() &&
2187 !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority))
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002188 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002189
Michael Han99315932013-01-24 16:46:58 +00002190 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002191 ConstructorAttr(AL.getRange(), S.Context, priority,
2192 AL.getAttributeSpellingListIndex()));
Daniel Dunbar032db472008-07-31 22:40:48 +00002193}
2194
Erich Keanee891aa92018-07-13 15:07:47 +00002195static void handleDestructorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanf28e4992014-01-20 15:22:57 +00002196 uint32_t priority = DestructorAttr::DefaultPriority;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002197 if (AL.getNumArgs() &&
2198 !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority))
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002199 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002200
Michael Han99315932013-01-24 16:46:58 +00002201 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002202 DestructorAttr(AL.getRange(), S.Context, priority,
2203 AL.getAttributeSpellingListIndex()));
Daniel Dunbar032db472008-07-31 22:40:48 +00002204}
2205
Benjamin Kramerf435ab42012-05-16 12:19:08 +00002206template <typename AttrTy>
Erich Keanee891aa92018-07-13 15:07:47 +00002207static void handleAttrWithMessage(Sema &S, Decl *D, const ParsedAttr &AL) {
Benjamin Kramerf435ab42012-05-16 12:19:08 +00002208 // Handle the case where the attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002209 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002210 if (AL.getNumArgs() == 1 && !S.checkStringLiteralArgumentAttr(AL, 0, Str))
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002211 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002212
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002213 D->addAttr(::new (S.Context) AttrTy(AL.getRange(), S.Context, Str,
2214 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian1470e932008-12-17 01:07:27 +00002215}
2216
Ted Kremenek438f8db2014-02-22 01:06:05 +00002217static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00002218 const ParsedAttr &AL) {
Ted Kremenek438f8db2014-02-22 01:06:05 +00002219 if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002220 S.Diag(AL.getLoc(), diag::err_objc_attr_protocol_requires_definition)
Erich Keane44bacdf2018-08-09 13:21:32 +00002221 << AL << AL.getRange();
Ted Kremenek27cfe102014-02-21 22:49:04 +00002222 return;
2223 }
2224
Ted Kremenek28eace62013-11-23 01:01:34 +00002225 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002226 ObjCExplicitProtocolImplAttr(AL.getRange(), S.Context,
2227 AL.getAttributeSpellingListIndex()));
Ted Kremenek28eace62013-11-23 01:01:34 +00002228}
2229
Jordy Rose740b0c22012-05-08 03:27:22 +00002230static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2231 IdentifierInfo *Platform,
2232 VersionTuple Introduced,
2233 VersionTuple Deprecated,
2234 VersionTuple Obsoleted) {
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002235 StringRef PlatformName
2236 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2237 if (PlatformName.empty())
2238 PlatformName = Platform->getName();
2239
2240 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2241 // of these steps are needed).
2242 if (!Introduced.empty() && !Deprecated.empty() &&
2243 !(Introduced <= Deprecated)) {
2244 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2245 << 1 << PlatformName << Deprecated.getAsString()
2246 << 0 << Introduced.getAsString();
2247 return true;
2248 }
2249
2250 if (!Introduced.empty() && !Obsoleted.empty() &&
2251 !(Introduced <= Obsoleted)) {
2252 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2253 << 2 << PlatformName << Obsoleted.getAsString()
2254 << 0 << Introduced.getAsString();
2255 return true;
2256 }
2257
2258 if (!Deprecated.empty() && !Obsoleted.empty() &&
2259 !(Deprecated <= Obsoleted)) {
2260 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2261 << 2 << PlatformName << Obsoleted.getAsString()
2262 << 1 << Deprecated.getAsString();
2263 return true;
2264 }
2265
2266 return false;
2267}
2268
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00002269/// Check whether the two versions match.
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002270///
2271/// If either version tuple is empty, then they are assumed to match. If
2272/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2273static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2274 bool BeforeIsOkay) {
2275 if (X.empty() || Y.empty())
2276 return true;
2277
2278 if (X == Y)
2279 return true;
2280
2281 if (BeforeIsOkay && X < Y)
2282 return true;
2283
2284 return false;
2285}
2286
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002287AvailabilityAttr *Sema::mergeAvailabilityAttr(
2288 NamedDecl *D, SourceRange Range, IdentifierInfo *Platform, bool Implicit,
2289 VersionTuple Introduced, VersionTuple Deprecated, VersionTuple Obsoleted,
2290 bool IsUnavailable, StringRef Message, bool IsStrict, StringRef Replacement,
2291 AvailabilityMergeKind AMK, int Priority, unsigned AttrSpellingListIndex) {
Rafael Espindolac67f2232012-05-10 02:50:16 +00002292 VersionTuple MergedIntroduced = Introduced;
2293 VersionTuple MergedDeprecated = Deprecated;
2294 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002295 bool FoundAny = false;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002296 bool OverrideOrImpl = false;
2297 switch (AMK) {
2298 case AMK_None:
2299 case AMK_Redeclaration:
2300 OverrideOrImpl = false;
2301 break;
2302
2303 case AMK_Override:
2304 case AMK_ProtocolImplementation:
2305 OverrideOrImpl = true;
2306 break;
2307 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002308
Rafael Espindolac67f2232012-05-10 02:50:16 +00002309 if (D->hasAttrs()) {
2310 AttrVec &Attrs = D->getAttrs();
2311 for (unsigned i = 0, e = Attrs.size(); i != e;) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002312 const auto *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
Rafael Espindolac67f2232012-05-10 02:50:16 +00002313 if (!OldAA) {
2314 ++i;
2315 continue;
2316 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002317
Rafael Espindolac67f2232012-05-10 02:50:16 +00002318 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2319 if (OldPlatform != Platform) {
2320 ++i;
2321 continue;
2322 }
2323
Tim Northover7a73cc72015-10-30 16:30:49 +00002324 // If there is an existing availability attribute for this platform that
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002325 // has a lower priority use the existing one and discard the new
2326 // attribute.
2327 if (OldAA->getPriority() < Priority)
Tim Northover7a73cc72015-10-30 16:30:49 +00002328 return nullptr;
Tim Northover7a73cc72015-10-30 16:30:49 +00002329
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002330 // If there is an existing attribute for this platform that has a higher
2331 // priority than the new attribute then erase the old one and continue
2332 // processing the attributes.
2333 if (OldAA->getPriority() > Priority) {
Tim Northover7a73cc72015-10-30 16:30:49 +00002334 Attrs.erase(Attrs.begin() + i);
2335 --e;
2336 continue;
2337 }
2338
Rafael Espindolac67f2232012-05-10 02:50:16 +00002339 FoundAny = true;
2340 VersionTuple OldIntroduced = OldAA->getIntroduced();
2341 VersionTuple OldDeprecated = OldAA->getDeprecated();
2342 VersionTuple OldObsoleted = OldAA->getObsoleted();
2343 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindolac67f2232012-05-10 02:50:16 +00002344
Douglas Gregord2a713e2015-09-30 21:27:42 +00002345 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl) ||
2346 !versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl) ||
2347 !versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl) ||
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002348 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregord2a713e2015-09-30 21:27:42 +00002349 (OverrideOrImpl && !OldIsUnavailable && IsUnavailable))) {
2350 if (OverrideOrImpl) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002351 int Which = -1;
2352 VersionTuple FirstVersion;
2353 VersionTuple SecondVersion;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002354 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002355 Which = 0;
2356 FirstVersion = OldIntroduced;
2357 SecondVersion = Introduced;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002358 } else if (!versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002359 Which = 1;
2360 FirstVersion = Deprecated;
2361 SecondVersion = OldDeprecated;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002362 } else if (!versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002363 Which = 2;
2364 FirstVersion = Obsoleted;
2365 SecondVersion = OldObsoleted;
2366 }
2367
2368 if (Which == -1) {
2369 Diag(OldAA->getLocation(),
2370 diag::warn_mismatched_availability_override_unavail)
Douglas Gregord2a713e2015-09-30 21:27:42 +00002371 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2372 << (AMK == AMK_Override);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002373 } else {
2374 Diag(OldAA->getLocation(),
2375 diag::warn_mismatched_availability_override)
2376 << Which
2377 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
Douglas Gregord2a713e2015-09-30 21:27:42 +00002378 << FirstVersion.getAsString() << SecondVersion.getAsString()
2379 << (AMK == AMK_Override);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002380 }
Douglas Gregord2a713e2015-09-30 21:27:42 +00002381 if (AMK == AMK_Override)
2382 Diag(Range.getBegin(), diag::note_overridden_method);
2383 else
2384 Diag(Range.getBegin(), diag::note_protocol_method);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002385 } else {
2386 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2387 Diag(Range.getBegin(), diag::note_previous_attribute);
2388 }
2389
Rafael Espindolac67f2232012-05-10 02:50:16 +00002390 Attrs.erase(Attrs.begin() + i);
2391 --e;
2392 continue;
2393 }
2394
2395 VersionTuple MergedIntroduced2 = MergedIntroduced;
2396 VersionTuple MergedDeprecated2 = MergedDeprecated;
2397 VersionTuple MergedObsoleted2 = MergedObsoleted;
2398
2399 if (MergedIntroduced2.empty())
2400 MergedIntroduced2 = OldIntroduced;
2401 if (MergedDeprecated2.empty())
2402 MergedDeprecated2 = OldDeprecated;
2403 if (MergedObsoleted2.empty())
2404 MergedObsoleted2 = OldObsoleted;
2405
2406 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2407 MergedIntroduced2, MergedDeprecated2,
2408 MergedObsoleted2)) {
2409 Attrs.erase(Attrs.begin() + i);
2410 --e;
2411 continue;
2412 }
2413
2414 MergedIntroduced = MergedIntroduced2;
2415 MergedDeprecated = MergedDeprecated2;
2416 MergedObsoleted = MergedObsoleted2;
2417 ++i;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002418 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002419 }
2420
2421 if (FoundAny &&
2422 MergedIntroduced == Introduced &&
2423 MergedDeprecated == Deprecated &&
2424 MergedObsoleted == Obsoleted)
Craig Topperc3ec1492014-05-26 06:22:03 +00002425 return nullptr;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002426
Douglas Gregord2a713e2015-09-30 21:27:42 +00002427 // Only create a new attribute if !OverrideOrImpl, but we want to do
Ted Kremenekb5445722013-04-06 00:34:27 +00002428 // the checking.
Rafael Espindolac67f2232012-05-10 02:50:16 +00002429 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekb5445722013-04-06 00:34:27 +00002430 MergedDeprecated, MergedObsoleted) &&
Douglas Gregord2a713e2015-09-30 21:27:42 +00002431 !OverrideOrImpl) {
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002432 auto *Avail = ::new (Context)
2433 AvailabilityAttr(Range, Context, Platform, Introduced, Deprecated,
2434 Obsoleted, IsUnavailable, Message, IsStrict,
2435 Replacement, Priority, AttrSpellingListIndex);
Manman Ren719a8642016-05-06 21:04:01 +00002436 Avail->setImplicit(Implicit);
2437 return Avail;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002438 }
Craig Topperc3ec1492014-05-26 06:22:03 +00002439 return nullptr;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002440}
2441
Erich Keanee891aa92018-07-13 15:07:47 +00002442static void handleAvailabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002443 if (!checkAttributeNumArgs(S, AL, 1))
Aaron Ballman00e99962013-08-31 01:11:41 +00002444 return;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002445 IdentifierLoc *Platform = AL.getArgAsIdent(0);
2446 unsigned Index = AL.getAttributeSpellingListIndex();
Fangrui Song6907ce22018-07-30 19:24:48 +00002447
Aaron Ballman00e99962013-08-31 01:11:41 +00002448 IdentifierInfo *II = Platform->Ident;
2449 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2450 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2451 << Platform->Ident;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002452
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002453 auto *ND = dyn_cast<NamedDecl>(D);
Alex Lorenz472cc792017-04-20 09:35:02 +00002454 if (!ND) // We warned about this already, so just return.
Rafael Espindolac231fab2013-01-08 21:30:32 +00002455 return;
Rafael Espindolac231fab2013-01-08 21:30:32 +00002456
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002457 AvailabilityChange Introduced = AL.getAvailabilityIntroduced();
2458 AvailabilityChange Deprecated = AL.getAvailabilityDeprecated();
2459 AvailabilityChange Obsoleted = AL.getAvailabilityObsoleted();
2460 bool IsUnavailable = AL.getUnavailableLoc().isValid();
2461 bool IsStrict = AL.getStrictLoc().isValid();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00002462 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002463 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getMessageExpr()))
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00002464 Str = SE->getString();
Manman Ren75bc6762016-03-21 17:30:55 +00002465 StringRef Replacement;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002466 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getReplacementExpr()))
Manman Ren75bc6762016-03-21 17:30:55 +00002467 Replacement = SE->getString();
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002468
Michael Wu260e9622018-11-12 02:44:33 +00002469 if (II->isStr("swift")) {
2470 if (Introduced.isValid() || Obsoleted.isValid() ||
2471 (!IsUnavailable && !Deprecated.isValid())) {
2472 S.Diag(AL.getLoc(),
2473 diag::warn_availability_swift_unavailable_deprecated_only);
2474 return;
2475 }
2476 }
2477
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002478 int PriorityModifier = AL.isPragmaClangAttribute()
2479 ? Sema::AP_PragmaClangAttribute
2480 : Sema::AP_Explicit;
2481 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2482 ND, AL.getRange(), II, false /*Implicit*/, Introduced.Version,
2483 Deprecated.Version, Obsoleted.Version, IsUnavailable, Str, IsStrict,
2484 Replacement, Sema::AMK_None, PriorityModifier, Index);
Rafael Espindola19de5612013-01-12 06:42:30 +00002485 if (NewAttr)
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002486 D->addAttr(NewAttr);
Tim Northover7a73cc72015-10-30 16:30:49 +00002487
2488 // Transcribe "ios" to "watchos" (and add a new attribute) if the versioning
2489 // matches before the start of the watchOS platform.
2490 if (S.Context.getTargetInfo().getTriple().isWatchOS()) {
2491 IdentifierInfo *NewII = nullptr;
2492 if (II->getName() == "ios")
2493 NewII = &S.Context.Idents.get("watchos");
2494 else if (II->getName() == "ios_app_extension")
2495 NewII = &S.Context.Idents.get("watchos_app_extension");
2496
2497 if (NewII) {
2498 auto adjustWatchOSVersion = [](VersionTuple Version) -> VersionTuple {
2499 if (Version.empty())
2500 return Version;
2501 auto Major = Version.getMajor();
2502 auto NewMajor = Major >= 9 ? Major - 7 : 0;
2503 if (NewMajor >= 2) {
2504 if (Version.getMinor().hasValue()) {
2505 if (Version.getSubminor().hasValue())
2506 return VersionTuple(NewMajor, Version.getMinor().getValue(),
2507 Version.getSubminor().getValue());
2508 else
2509 return VersionTuple(NewMajor, Version.getMinor().getValue());
2510 }
2511 }
2512
2513 return VersionTuple(2, 0);
2514 };
2515
2516 auto NewIntroduced = adjustWatchOSVersion(Introduced.Version);
2517 auto NewDeprecated = adjustWatchOSVersion(Deprecated.Version);
2518 auto NewObsoleted = adjustWatchOSVersion(Obsoleted.Version);
2519
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002520 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2521 ND, AL.getRange(), NewII, true /*Implicit*/, NewIntroduced,
2522 NewDeprecated, NewObsoleted, IsUnavailable, Str, IsStrict,
2523 Replacement, Sema::AMK_None,
2524 PriorityModifier + Sema::AP_InferredFromOtherPlatform, Index);
Tim Northover7a73cc72015-10-30 16:30:49 +00002525 if (NewAttr)
2526 D->addAttr(NewAttr);
2527 }
2528 } else if (S.Context.getTargetInfo().getTriple().isTvOS()) {
2529 // Transcribe "ios" to "tvos" (and add a new attribute) if the versioning
2530 // matches before the start of the tvOS platform.
2531 IdentifierInfo *NewII = nullptr;
2532 if (II->getName() == "ios")
2533 NewII = &S.Context.Idents.get("tvos");
2534 else if (II->getName() == "ios_app_extension")
2535 NewII = &S.Context.Idents.get("tvos_app_extension");
2536
2537 if (NewII) {
Alex Lorenz3cfe9d52019-01-24 19:14:39 +00002538 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2539 ND, AL.getRange(), NewII, true /*Implicit*/, Introduced.Version,
2540 Deprecated.Version, Obsoleted.Version, IsUnavailable, Str, IsStrict,
2541 Replacement, Sema::AMK_None,
2542 PriorityModifier + Sema::AP_InferredFromOtherPlatform, Index);
2543 if (NewAttr)
2544 D->addAttr(NewAttr);
Tim Northover7a73cc72015-10-30 16:30:49 +00002545 }
2546 }
Rafael Espindolac67f2232012-05-10 02:50:16 +00002547}
2548
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002549static void handleExternalSourceSymbolAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00002550 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002551 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002552 return;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002553 assert(checkAttributeAtMostNumArgs(S, AL, 3) &&
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002554 "Invalid number of arguments in an external_source_symbol attribute");
2555
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002556 StringRef Language;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002557 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(0)))
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002558 Language = SE->getString();
2559 StringRef DefinedIn;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002560 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(1)))
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002561 DefinedIn = SE->getString();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002562 bool IsGeneratedDeclaration = AL.getArgAsIdent(2) != nullptr;
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002563
2564 D->addAttr(::new (S.Context) ExternalSourceSymbolAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002565 AL.getRange(), S.Context, Language, DefinedIn, IsGeneratedDeclaration,
2566 AL.getAttributeSpellingListIndex()));
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002567}
2568
John McCalld041a9b2013-02-20 01:54:26 +00002569template <class T>
2570static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2571 typename T::VisibilityType value,
2572 unsigned attrSpellingListIndex) {
2573 T *existingAttr = D->getAttr<T>();
2574 if (existingAttr) {
2575 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2576 if (existingValue == value)
Craig Topperc3ec1492014-05-26 06:22:03 +00002577 return nullptr;
John McCalld041a9b2013-02-20 01:54:26 +00002578 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2579 S.Diag(range.getBegin(), diag::note_previous_attribute);
2580 D->dropAttr<T>();
2581 }
2582 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2583}
2584
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002585VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han99315932013-01-24 16:46:58 +00002586 VisibilityAttr::VisibilityType Vis,
2587 unsigned AttrSpellingListIndex) {
John McCalld041a9b2013-02-20 01:54:26 +00002588 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2589 AttrSpellingListIndex);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002590}
2591
John McCalld041a9b2013-02-20 01:54:26 +00002592TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2593 TypeVisibilityAttr::VisibilityType Vis,
2594 unsigned AttrSpellingListIndex) {
2595 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2596 AttrSpellingListIndex);
2597}
2598
Erich Keanee891aa92018-07-13 15:07:47 +00002599static void handleVisibilityAttr(Sema &S, Decl *D, const ParsedAttr &AL,
John McCalld041a9b2013-02-20 01:54:26 +00002600 bool isTypeVisibility) {
2601 // Visibility attributes don't mean anything on a typedef.
2602 if (isa<TypedefNameDecl>(D)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002603 S.Diag(AL.getRange().getBegin(), diag::warn_attribute_ignored) << AL;
John McCalld041a9b2013-02-20 01:54:26 +00002604 return;
2605 }
2606
2607 // 'type_visibility' can only go on a type or namespace.
2608 if (isTypeVisibility &&
2609 !(isa<TagDecl>(D) ||
2610 isa<ObjCInterfaceDecl>(D) ||
2611 isa<NamespaceDecl>(D))) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002612 S.Diag(AL.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002613 << AL << ExpectedTypeOrNamespace;
John McCalld041a9b2013-02-20 01:54:26 +00002614 return;
2615 }
2616
Benjamin Kramer70370212013-09-09 15:08:57 +00002617 // Check that the argument is a string literal.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002618 StringRef TypeStr;
2619 SourceLocation LiteralLoc;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002620 if (!S.checkStringLiteralArgumentAttr(AL, 0, TypeStr, &LiteralLoc))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002621 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002622
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002623 VisibilityAttr::VisibilityType type;
Aaron Ballman682ee422013-09-11 19:47:58 +00002624 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002625 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported) << AL
2626 << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002627 return;
2628 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002629
Aaron Ballman682ee422013-09-11 19:47:58 +00002630 // Complain about attempts to use protected visibility on targets
2631 // (like Darwin) that don't support it.
2632 if (type == VisibilityAttr::Protected &&
2633 !S.Context.getTargetInfo().hasProtectedVisibility()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002634 S.Diag(AL.getLoc(), diag::warn_attribute_protected_visibility);
Aaron Ballman682ee422013-09-11 19:47:58 +00002635 type = VisibilityAttr::Default;
2636 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002637
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002638 unsigned Index = AL.getAttributeSpellingListIndex();
2639 Attr *newAttr;
John McCalld041a9b2013-02-20 01:54:26 +00002640 if (isTypeVisibility) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002641 newAttr = S.mergeTypeVisibilityAttr(D, AL.getRange(),
John McCalld041a9b2013-02-20 01:54:26 +00002642 (TypeVisibilityAttr::VisibilityType) type,
2643 Index);
2644 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002645 newAttr = S.mergeVisibilityAttr(D, AL.getRange(), type, Index);
John McCalld041a9b2013-02-20 01:54:26 +00002646 }
2647 if (newAttr)
2648 D->addAttr(newAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002649}
2650
Erich Keanee891aa92018-07-13 15:07:47 +00002651static void handleObjCMethodFamilyAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002652 const auto *M = cast<ObjCMethodDecl>(D);
2653 if (!AL.isArgIdent(0)) {
2654 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002655 << AL << 1 << AANT_ArgumentIdentifier;
John McCall86bc21f2011-03-02 11:33:24 +00002656 return;
2657 }
Aaron Ballman00e99962013-08-31 01:11:41 +00002658
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002659 IdentifierLoc *IL = AL.getArgAsIdent(0);
Aaron Ballman682ee422013-09-11 19:47:58 +00002660 ObjCMethodFamilyAttr::FamilyKind F;
2661 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002662 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL << IL->Ident;
John McCall86bc21f2011-03-02 11:33:24 +00002663 return;
2664 }
2665
Alp Toker314cc812014-01-25 16:55:45 +00002666 if (F == ObjCMethodFamilyAttr::OMF_init &&
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002667 !M->getReturnType()->isObjCObjectPointerType()) {
2668 S.Diag(M->getLocation(), diag::err_init_method_bad_return_type)
2669 << M->getReturnType();
John McCall31168b02011-06-15 23:02:42 +00002670 // Ignore the attribute.
2671 return;
2672 }
2673
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002674 D->addAttr(new (S.Context) ObjCMethodFamilyAttr(
2675 AL.getRange(), S.Context, F, AL.getAttributeSpellingListIndex()));
John McCall86bc21f2011-03-02 11:33:24 +00002676}
2677
Erich Keanee891aa92018-07-13 15:07:47 +00002678static void handleObjCNSObject(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002679 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002680 QualType T = TD->getUnderlyingType();
Ted Kremenek7712eef2012-08-29 22:54:47 +00002681 if (!T->isCARCBridgableType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002682 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2683 return;
2684 }
2685 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002686 else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
Fariborz Jahanianbebd0ba2012-05-31 23:18:32 +00002687 QualType T = PD->getType();
Ted Kremenek7712eef2012-08-29 22:54:47 +00002688 if (!T->isCARCBridgableType()) {
Fariborz Jahanianbebd0ba2012-05-31 23:18:32 +00002689 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2690 return;
2691 }
2692 }
2693 else {
Ted Kremenek05e916b2012-03-01 01:40:32 +00002694 // It is okay to include this attribute on properties, e.g.:
2695 //
2696 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2697 //
2698 // In this case it follows tradition and suppresses an error in the above
Fangrui Song6907ce22018-07-30 19:24:48 +00002699 // case.
Fariborz Jahaniana45495a2011-11-29 01:48:40 +00002700 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenek05e916b2012-03-01 01:40:32 +00002701 }
Michael Han99315932013-01-24 16:46:58 +00002702 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002703 ObjCNSObjectAttr(AL.getRange(), S.Context,
2704 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002705}
2706
Erich Keanee891aa92018-07-13 15:07:47 +00002707static void handleObjCIndependentClass(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002708 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian7a60b6d2015-04-16 18:38:44 +00002709 QualType T = TD->getUnderlyingType();
2710 if (!T->isObjCObjectPointerType()) {
2711 S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute);
2712 return;
2713 }
2714 } else {
2715 S.Diag(D->getLocation(), diag::warn_independentclass_attribute);
2716 return;
2717 }
2718 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002719 ObjCIndependentClassAttr(AL.getRange(), S.Context,
2720 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian7a60b6d2015-04-16 18:38:44 +00002721}
2722
Erich Keanee891aa92018-07-13 15:07:47 +00002723static void handleBlocksAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002724 if (!AL.isArgIdent(0)) {
2725 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002726 << AL << 1 << AANT_ArgumentIdentifier;
Steve Naroff3405a732008-09-18 16:44:58 +00002727 return;
2728 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002729
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002730 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002731 BlocksAttr::BlockType type;
Aaron Ballman682ee422013-09-11 19:47:58 +00002732 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002733 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
Steve Naroff3405a732008-09-18 16:44:58 +00002734 return;
2735 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002736
Michael Han99315932013-01-24 16:46:58 +00002737 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002738 BlocksAttr(AL.getRange(), S.Context, type,
2739 AL.getAttributeSpellingListIndex()));
Steve Naroff3405a732008-09-18 16:44:58 +00002740}
2741
Erich Keanee891aa92018-07-13 15:07:47 +00002742static void handleSentinelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballman18a78382013-11-21 00:28:23 +00002743 unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002744 if (AL.getNumArgs() > 0) {
2745 Expr *E = AL.getArgAsExpr(0);
Anders Carlssonc181b012008-10-05 18:05:59 +00002746 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002747 if (E->isTypeDependent() || E->isValueDependent() ||
2748 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002749 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002750 << AL << 1 << AANT_ArgumentIntegerConstant << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002751 return;
2752 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002753
John McCallb46f2872011-09-09 07:56:05 +00002754 if (Idx.isSigned() && Idx.isNegative()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002755 S.Diag(AL.getLoc(), diag::err_attribute_sentinel_less_than_zero)
Chris Lattner3b054132008-11-19 05:08:23 +00002756 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002757 return;
2758 }
John McCallb46f2872011-09-09 07:56:05 +00002759
2760 sentinel = Idx.getZExtValue();
Anders Carlssonc181b012008-10-05 18:05:59 +00002761 }
2762
Aaron Ballman18a78382013-11-21 00:28:23 +00002763 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002764 if (AL.getNumArgs() > 1) {
2765 Expr *E = AL.getArgAsExpr(1);
Anders Carlssonc181b012008-10-05 18:05:59 +00002766 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002767 if (E->isTypeDependent() || E->isValueDependent() ||
2768 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002769 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002770 << AL << 2 << AANT_ArgumentIntegerConstant << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002771 return;
2772 }
2773 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00002774
John McCallb46f2872011-09-09 07:56:05 +00002775 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002776 // FIXME: This error message could be improved, it would be nice
2777 // to say what the bounds actually are.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002778 S.Diag(AL.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
Chris Lattner3b054132008-11-19 05:08:23 +00002779 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002780 return;
2781 }
2782 }
2783
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002784 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +00002785 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +00002786 if (isa<FunctionNoProtoType>(FT)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002787 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_named_arguments);
Chris Lattner9363e312009-03-17 23:03:47 +00002788 return;
2789 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002790
Chris Lattner9363e312009-03-17 23:03:47 +00002791 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002792 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002793 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002794 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002795 } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002796 if (!MD->isVariadic()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002797 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002798 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002799 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002800 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) {
Eli Friedman5c5e3b72012-01-06 01:23:10 +00002801 if (!BD->isVariadic()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002802 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
Eli Friedman5c5e3b72012-01-06 01:23:10 +00002803 return;
2804 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002805 } else if (const auto *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002806 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00002807 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Aaron Ballman12b9f652014-01-16 13:55:42 +00002808 const FunctionType *FT = Ty->isFunctionPointerType()
2809 ? D->getFunctionType()
Eric Christopherbc638a82010-12-01 22:13:54 +00002810 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002811 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002812 int m = Ty->isFunctionPointerType() ? 0 : 1;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002813 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002814 return;
2815 }
Mike Stump12b8ce12009-08-04 21:02:39 +00002816 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002817 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002818 << AL << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002819 return;
2820 }
Anders Carlssonc181b012008-10-05 18:05:59 +00002821 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002822 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002823 << AL << ExpectedFunctionMethodOrBlock;
Anders Carlssonc181b012008-10-05 18:05:59 +00002824 return;
2825 }
Michael Han99315932013-01-24 16:46:58 +00002826 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002827 SentinelAttr(AL.getRange(), S.Context, sentinel, nullPos,
2828 AL.getAttributeSpellingListIndex()));
Anders Carlssonc181b012008-10-05 18:05:59 +00002829}
2830
Erich Keanee891aa92018-07-13 15:07:47 +00002831static void handleWarnUnusedResult(Sema &S, Decl *D, const ParsedAttr &AL) {
Alp Toker314cc812014-01-25 16:55:45 +00002832 if (D->getFunctionType() &&
2833 D->getFunctionType()->getReturnType()->isVoidType()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002834 S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +00002835 return;
2836 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002837 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00002838 if (MD->getReturnType()->isVoidType()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002839 S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 1;
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002840 return;
2841 }
Fangrui Song6907ce22018-07-30 19:24:48 +00002842
Aaron Ballmanc351fba2017-12-04 20:27:34 +00002843 // If this is spelled as the standard C++17 attribute, but not in C++17, warn
Aaron Ballmane7964782016-03-07 22:44:55 +00002844 // about using it as an extension.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002845 if (!S.getLangOpts().CPlusPlus17 && AL.isCXX11Attribute() &&
2846 !AL.getScopeName())
Erich Keane44bacdf2018-08-09 13:21:32 +00002847 S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL;
Aaron Ballmane7964782016-03-07 22:44:55 +00002848
Fangrui Song6907ce22018-07-30 19:24:48 +00002849 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002850 WarnUnusedResultAttr(AL.getRange(), S.Context,
2851 AL.getAttributeSpellingListIndex()));
Chris Lattner237f2752009-02-14 07:37:35 +00002852}
2853
Erich Keanee891aa92018-07-13 15:07:47 +00002854static void handleWeakImportAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002855 // weak_import only applies to variable & function declarations.
2856 bool isDef = false;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002857 if (!D->canBeWeakImported(isDef)) {
2858 if (isDef)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002859 S.Diag(AL.getLoc(), diag::warn_attribute_invalid_on_definition)
Reid Kleckner52d598e2013-05-20 21:53:29 +00002860 << "weak_import";
Douglas Gregord71149a2011-03-23 13:27:51 +00002861 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregore8bbc122011-09-02 00:18:52 +00002862 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian3249a1e2011-10-26 23:59:12 +00002863 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregord71149a2011-03-23 13:27:51 +00002864 // Nothing to warn about here.
2865 } else
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002866 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00002867 << AL << ExpectedVariableOrFunction;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002868
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002869 return;
2870 }
2871
Michael Han99315932013-01-24 16:46:58 +00002872 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002873 WeakImportAttr(AL.getRange(), S.Context,
2874 AL.getAttributeSpellingListIndex()));
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002875}
2876
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002877// Handles reqd_work_group_size and work_group_size_hint.
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002878template <typename WorkGroupAttr>
Erich Keanee891aa92018-07-13 15:07:47 +00002879static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002880 uint32_t WGSize[3];
Joey Goulyb1d23a82014-05-19 14:41:38 +00002881 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002882 const Expr *E = AL.getArgAsExpr(i);
Andrew Savonichevd353e6d2018-09-06 11:54:09 +00002883 if (!checkUInt32Argument(S, AL, E, WGSize[i], i,
2884 /*StrictlyUnsigned=*/true))
Nate Begemanf2758702009-06-26 06:32:41 +00002885 return;
Joey Goulyb1d23a82014-05-19 14:41:38 +00002886 if (WGSize[i] == 0) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002887 S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
Erich Keane44bacdf2018-08-09 13:21:32 +00002888 << AL << E->getSourceRange();
Joey Goulyb1d23a82014-05-19 14:41:38 +00002889 return;
2890 }
2891 }
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002892
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002893 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2894 if (Existing && !(Existing->getXDim() == WGSize[0] &&
2895 Existing->getYDim() == WGSize[1] &&
2896 Existing->getZDim() == WGSize[2]))
Erich Keane44bacdf2018-08-09 13:21:32 +00002897 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002898
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002899 D->addAttr(::new (S.Context) WorkGroupAttr(AL.getRange(), S.Context,
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002900 WGSize[0], WGSize[1], WGSize[2],
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002901 AL.getAttributeSpellingListIndex()));
Nate Begemanf2758702009-06-26 06:32:41 +00002902}
2903
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002904// Handles intel_reqd_sub_group_size.
Erich Keanee891aa92018-07-13 15:07:47 +00002905static void handleSubGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002906 uint32_t SGSize;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002907 const Expr *E = AL.getArgAsExpr(0);
2908 if (!checkUInt32Argument(S, AL, E, SGSize))
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002909 return;
2910 if (SGSize == 0) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002911 S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
Erich Keane44bacdf2018-08-09 13:21:32 +00002912 << AL << E->getSourceRange();
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002913 return;
2914 }
2915
2916 OpenCLIntelReqdSubGroupSizeAttr *Existing =
2917 D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>();
2918 if (Existing && Existing->getSubGroupSize() != SGSize)
Erich Keane44bacdf2018-08-09 13:21:32 +00002919 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002920
2921 D->addAttr(::new (S.Context) OpenCLIntelReqdSubGroupSizeAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002922 AL.getRange(), S.Context, SGSize,
2923 AL.getAttributeSpellingListIndex()));
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002924}
2925
Erich Keanee891aa92018-07-13 15:07:47 +00002926static void handleVecTypeHint(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002927 if (!AL.hasParsedType()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002928 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
Aaron Ballman00e99962013-08-31 01:11:41 +00002929 return;
2930 }
2931
Craig Topperc3ec1492014-05-26 06:22:03 +00002932 TypeSourceInfo *ParmTSI = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002933 QualType ParmType = S.GetTypeFromParser(AL.getTypeArg(), &ParmTSI);
Richard Smithb87c4652013-10-31 21:23:20 +00002934 assert(ParmTSI && "no type source info for attribute argument");
Joey Goulyaba589c2013-03-08 09:42:32 +00002935
2936 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2937 (ParmType->isBooleanType() ||
2938 !ParmType->isIntegralType(S.getASTContext()))) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002939 S.Diag(AL.getLoc(), diag::err_attribute_argument_vec_type_hint)
Joey Goulyaba589c2013-03-08 09:42:32 +00002940 << ParmType;
2941 return;
2942 }
2943
Aaron Ballmana9e05402013-12-02 22:16:55 +00002944 if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) {
Richard Smithb87c4652013-10-31 21:23:20 +00002945 if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00002946 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
Joey Goulyaba589c2013-03-08 09:42:32 +00002947 return;
2948 }
2949 }
2950
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002951 D->addAttr(::new (S.Context) VecTypeHintAttr(AL.getLoc(), S.Context,
Aaron Ballman36a53502014-01-16 13:03:14 +00002952 ParmTSI,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002953 AL.getAttributeSpellingListIndex()));
Joey Goulyaba589c2013-03-08 09:42:32 +00002954}
2955
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002956SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han99315932013-01-24 16:46:58 +00002957 StringRef Name,
2958 unsigned AttrSpellingListIndex) {
Erich Keane7963e8b2018-07-18 20:04:48 +00002959 // Explicit or partial specializations do not inherit
2960 // the section attribute from the primary template.
2961 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2962 if (AttrSpellingListIndex == SectionAttr::Declspec_allocate &&
2963 FD->isFunctionTemplateSpecialization())
2964 return nullptr;
2965 }
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002966 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2967 if (ExistingAttr->getName() == Name)
Craig Topperc3ec1492014-05-26 06:22:03 +00002968 return nullptr;
Erich Keane7963e8b2018-07-18 20:04:48 +00002969 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
2970 << 1 /*section*/;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002971 Diag(Range.getBegin(), diag::note_previous_attribute);
Craig Topperc3ec1492014-05-26 06:22:03 +00002972 return nullptr;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002973 }
Michael Han99315932013-01-24 16:46:58 +00002974 return ::new (Context) SectionAttr(Range, Context, Name,
2975 AttrSpellingListIndex);
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002976}
2977
Reid Kleckner2a133222015-03-04 23:39:17 +00002978bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) {
2979 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName);
2980 if (!Error.empty()) {
Erich Keane7963e8b2018-07-18 20:04:48 +00002981 Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error
Fangrui Song6907ce22018-07-30 19:24:48 +00002982 << 1 /*'section'*/;
Reid Kleckner2a133222015-03-04 23:39:17 +00002983 return false;
2984 }
2985 return true;
2986}
2987
Erich Keanee891aa92018-07-13 15:07:47 +00002988static void handleSectionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Daniel Dunbar648bf782009-02-12 17:28:23 +00002989 // Make sure that there is a string literal as the sections's single
2990 // argument.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002991 StringRef Str;
2992 SourceLocation LiteralLoc;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00002993 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
Daniel Dunbar648bf782009-02-12 17:28:23 +00002994 return;
Mike Stump11289f42009-09-09 15:08:12 +00002995
Reid Kleckner2a133222015-03-04 23:39:17 +00002996 if (!S.checkSectionName(LiteralLoc, Str))
2997 return;
2998
Chris Lattner30ba6742009-08-10 19:03:04 +00002999 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003000 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
Chris Lattner20aee9b2010-01-12 20:58:53 +00003001 if (!Error.empty()) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003002 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
Chris Lattner20aee9b2010-01-12 20:58:53 +00003003 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +00003004 return;
3005 }
Mike Stump11289f42009-09-09 15:08:12 +00003006
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003007 unsigned Index = AL.getAttributeSpellingListIndex();
3008 SectionAttr *NewAttr = S.mergeSectionAttr(D, AL.getRange(), Str, Index);
Rafael Espindolae200f1c2012-05-13 03:25:18 +00003009 if (NewAttr)
3010 D->addAttr(NewAttr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00003011}
3012
Erich Keane7963e8b2018-07-18 20:04:48 +00003013static bool checkCodeSegName(Sema&S, SourceLocation LiteralLoc, StringRef CodeSegName) {
3014 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(CodeSegName);
3015 if (!Error.empty()) {
3016 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error
3017 << 0 /*'code-seg'*/;
3018 return false;
3019 }
3020 return true;
3021}
3022
3023CodeSegAttr *Sema::mergeCodeSegAttr(Decl *D, SourceRange Range,
3024 StringRef Name,
3025 unsigned AttrSpellingListIndex) {
3026 // Explicit or partial specializations do not inherit
3027 // the code_seg attribute from the primary template.
3028 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
3029 if (FD->isFunctionTemplateSpecialization())
3030 return nullptr;
3031 }
3032 if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3033 if (ExistingAttr->getName() == Name)
3034 return nullptr;
3035 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
3036 << 0 /*codeseg*/;
3037 Diag(Range.getBegin(), diag::note_previous_attribute);
3038 return nullptr;
3039 }
3040 return ::new (Context) CodeSegAttr(Range, Context, Name,
3041 AttrSpellingListIndex);
3042}
3043
3044static void handleCodeSegAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3045 StringRef Str;
3046 SourceLocation LiteralLoc;
3047 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
3048 return;
3049 if (!checkCodeSegName(S, LiteralLoc, Str))
3050 return;
3051 if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3052 if (!ExistingAttr->isImplicit()) {
3053 S.Diag(AL.getLoc(),
3054 ExistingAttr->getName() == Str
3055 ? diag::warn_duplicate_codeseg_attribute
3056 : diag::err_conflicting_codeseg_attribute);
3057 return;
3058 }
3059 D->dropAttr<CodeSegAttr>();
3060 }
3061 if (CodeSegAttr *CSA = S.mergeCodeSegAttr(D, AL.getRange(), Str,
3062 AL.getAttributeSpellingListIndex()))
3063 D->addAttr(CSA);
3064}
3065
Erich Keane57e15cd2017-07-19 22:06:33 +00003066// Check for things we'd like to warn about. Multiversioning issues are
3067// handled later in the process, once we know how many exist.
3068bool Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) {
3069 enum FirstParam { Unsupported, Duplicate };
3070 enum SecondParam { None, Architecture };
Eric Christopher789a7ad2015-06-12 01:36:05 +00003071 for (auto Str : {"tune=", "fpmath="})
3072 if (AttrStr.find(Str) != StringRef::npos)
Erich Keane57e15cd2017-07-19 22:06:33 +00003073 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3074 << Unsupported << None << Str;
3075
3076 TargetAttr::ParsedTargetAttr ParsedAttrs = TargetAttr::parse(AttrStr);
3077
3078 if (!ParsedAttrs.Architecture.empty() &&
3079 !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Architecture))
3080 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3081 << Unsupported << Architecture << ParsedAttrs.Architecture;
3082
3083 if (ParsedAttrs.DuplicateArchitecture)
3084 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3085 << Duplicate << None << "arch=";
3086
3087 for (const auto &Feature : ParsedAttrs.Features) {
3088 auto CurFeature = StringRef(Feature).drop_front(); // remove + or -.
3089 if (!Context.getTargetInfo().isValidFeatureName(CurFeature))
3090 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3091 << Unsupported << None << CurFeature;
3092 }
3093
Erich Keane29636aa2018-02-16 17:31:59 +00003094 return false;
Eric Christopher789a7ad2015-06-12 01:36:05 +00003095}
3096
Erich Keanee891aa92018-07-13 15:07:47 +00003097static void handleTargetAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Eric Christopher11acf732015-06-12 01:35:52 +00003098 StringRef Str;
3099 SourceLocation LiteralLoc;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003100 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc) ||
Erich Keane29636aa2018-02-16 17:31:59 +00003101 S.checkTargetAttr(LiteralLoc, Str))
Eric Christopher11acf732015-06-12 01:35:52 +00003102 return;
Erich Keane29636aa2018-02-16 17:31:59 +00003103
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003104 unsigned Index = AL.getAttributeSpellingListIndex();
Eric Christopher11acf732015-06-12 01:35:52 +00003105 TargetAttr *NewAttr =
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003106 ::new (S.Context) TargetAttr(AL.getRange(), S.Context, Str, Index);
Eric Christopher11acf732015-06-12 01:35:52 +00003107 D->addAttr(NewAttr);
3108}
3109
Erich Keanee891aa92018-07-13 15:07:47 +00003110static void handleMinVectorWidthAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Craig Topper74c10e32018-07-09 19:00:16 +00003111 Expr *E = AL.getArgAsExpr(0);
3112 uint32_t VecWidth;
3113 if (!checkUInt32Argument(S, AL, E, VecWidth)) {
3114 AL.setInvalid();
3115 return;
3116 }
3117
3118 MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>();
3119 if (Existing && Existing->getVectorWidth() != VecWidth) {
Erich Keane44bacdf2018-08-09 13:21:32 +00003120 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
Craig Topper74c10e32018-07-09 19:00:16 +00003121 return;
3122 }
3123
3124 D->addAttr(::new (S.Context)
3125 MinVectorWidthAttr(AL.getRange(), S.Context, VecWidth,
3126 AL.getAttributeSpellingListIndex()));
3127}
3128
Erich Keanee891aa92018-07-13 15:07:47 +00003129static void handleCleanupAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003130 Expr *E = AL.getArgAsExpr(0);
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003131 SourceLocation Loc = E->getExprLoc();
Craig Topperc3ec1492014-05-26 06:22:03 +00003132 FunctionDecl *FD = nullptr;
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003133 DeclarationNameInfo NI;
Aaron Ballman00e99962013-08-31 01:11:41 +00003134
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003135 // gcc only allows for simple identifiers. Since we support more than gcc, we
3136 // will warn the user.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003137 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003138 if (DRE->hasQualifier())
3139 S.Diag(Loc, diag::warn_cleanup_ext);
3140 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
3141 NI = DRE->getNameInfo();
3142 if (!FD) {
3143 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
3144 << NI.getName();
3145 return;
3146 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003147 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003148 if (ULE->hasExplicitTemplateArgs())
3149 S.Diag(Loc, diag::warn_cleanup_ext);
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003150 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
3151 NI = ULE->getNameInfo();
Alp Toker67b47ac2013-10-20 18:48:56 +00003152 if (!FD) {
3153 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
3154 << NI.getName();
3155 if (ULE->getType() == S.Context.OverloadTy)
3156 S.NoteAllOverloadCandidates(ULE);
3157 return;
3158 }
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003159 } else {
3160 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
Anders Carlssond277d792009-01-31 01:16:18 +00003161 return;
3162 }
3163
Anders Carlssond277d792009-01-31 01:16:18 +00003164 if (FD->getNumParams() != 1) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003165 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3166 << NI.getName();
Anders Carlssond277d792009-01-31 01:16:18 +00003167 return;
3168 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003169
Anders Carlsson723f55d2009-02-07 23:16:50 +00003170 // We're currently more strict than GCC about what function types we accept.
3171 // If this ever proves to be a problem it should be easy to fix.
Aaron Ballman3b70e752017-12-01 16:53:49 +00003172 QualType Ty = S.Context.getPointerType(cast<VarDecl>(D)->getType());
Anders Carlsson723f55d2009-02-07 23:16:50 +00003173 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorc03a1082011-01-28 02:26:04 +00003174 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3175 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003176 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
3177 << NI.getName() << ParamTy << Ty;
Anders Carlsson723f55d2009-02-07 23:16:50 +00003178 return;
3179 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003180
Michael Han99315932013-01-24 16:46:58 +00003181 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003182 CleanupAttr(AL.getRange(), S.Context, FD,
3183 AL.getAttributeSpellingListIndex()));
Anders Carlssond277d792009-01-31 01:16:18 +00003184}
3185
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003186static void handleEnumExtensibilityAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00003187 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003188 if (!AL.isArgIdent(0)) {
3189 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00003190 << AL << 0 << AANT_ArgumentIdentifier;
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003191 return;
3192 }
3193
3194 EnumExtensibilityAttr::Kind ExtensibilityKind;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003195 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003196 if (!EnumExtensibilityAttr::ConvertStrToKind(II->getName(),
3197 ExtensibilityKind)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00003198 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003199 return;
3200 }
3201
3202 D->addAttr(::new (S.Context) EnumExtensibilityAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003203 AL.getRange(), S.Context, ExtensibilityKind,
3204 AL.getAttributeSpellingListIndex()));
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003205}
3206
Mike Stumpd3bb5572009-07-24 19:02:52 +00003207/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendling44426052012-12-20 19:22:21 +00003208/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Erich Keanee891aa92018-07-13 15:07:47 +00003209static void handleFormatArgAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003210 Expr *IdxExpr = AL.getArgAsExpr(0);
Joel E. Denny81508102018-03-13 14:51:22 +00003211 ParamIdx Idx;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003212 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, IdxExpr, Idx))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003213 return;
Chandler Carruth743682b2010-11-16 08:35:43 +00003214
Eric Christopherb64963e2015-08-13 21:34:35 +00003215 // Make sure the format string is really a string.
Joel E. Denny81508102018-03-13 14:51:22 +00003216 QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex());
Mike Stumpd3bb5572009-07-24 19:02:52 +00003217
Eric Christopherb64963e2015-08-13 21:34:35 +00003218 bool NotNSStringTy = !isNSStringType(Ty, S.Context);
3219 if (NotNSStringTy &&
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003220 !isCFStringType(Ty, S.Context) &&
3221 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003222 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003223 S.Diag(AL.getLoc(), diag::err_format_attribute_not)
Eric Christopherb64963e2015-08-13 21:34:35 +00003224 << "a string type" << IdxExpr->getSourceRange()
3225 << getFunctionOrMethodParamRange(D, 0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003226 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003227 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003228 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003229 if (!isNSStringType(Ty, S.Context) &&
3230 !isCFStringType(Ty, S.Context) &&
3231 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003232 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003233 S.Diag(AL.getLoc(), diag::err_format_attribute_result_not)
Eric Christopherb64963e2015-08-13 21:34:35 +00003234 << (NotNSStringTy ? "string type" : "NSString")
Aaron Ballman2f9e88b2014-08-04 15:17:29 +00003235 << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003236 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003237 }
3238
Joel E. Denny81508102018-03-13 14:51:22 +00003239 D->addAttr(::new (S.Context) FormatArgAttr(
3240 AL.getRange(), S.Context, Idx, AL.getAttributeSpellingListIndex()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003241}
3242
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003243enum FormatAttrKind {
3244 CFStringFormat,
3245 NSStringFormat,
3246 StrftimeFormat,
3247 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00003248 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003249 InvalidFormat
3250};
3251
3252/// getFormatAttrKind - Map from format attribute names to supported format
3253/// types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003254static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramer96a44b62012-05-16 12:44:25 +00003255 return llvm::StringSwitch<FormatAttrKind>(Format)
Mehdi Amini06d367c2016-10-24 20:39:34 +00003256 // Check for formats that get handled specially.
3257 .Case("NSString", NSStringFormat)
3258 .Case("CFString", CFStringFormat)
3259 .Case("strftime", StrftimeFormat)
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003260
Mehdi Amini06d367c2016-10-24 20:39:34 +00003261 // Otherwise, check for supported formats.
3262 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3263 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3264 .Case("kprintf", SupportedFormat) // OpenBSD.
3265 .Case("freebsd_kprintf", SupportedFormat) // FreeBSD.
3266 .Case("os_trace", SupportedFormat)
3267 .Case("os_log", SupportedFormat)
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003268
Mehdi Amini06d367c2016-10-24 20:39:34 +00003269 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3270 .Default(InvalidFormat);
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003271}
3272
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003273/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendling44426052012-12-20 19:22:21 +00003274/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Erich Keanee891aa92018-07-13 15:07:47 +00003275static void handleInitPriorityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003276 if (!S.getLangOpts().CPlusPlus) {
Erich Keane44bacdf2018-08-09 13:21:32 +00003277 S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL;
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003278 return;
3279 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003280
Aaron Ballman4a611152013-11-27 16:34:09 +00003281 if (S.getCurFunctionOrMethodDecl()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003282 S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3283 AL.setInvalid();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00003284 return;
3285 }
Aaron Ballman4a611152013-11-27 16:34:09 +00003286 QualType T = cast<VarDecl>(D)->getType();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00003287 if (S.Context.getAsArrayType(T))
3288 T = S.Context.getBaseElementType(T);
3289 if (!T->getAs<RecordType>()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003290 S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3291 AL.setInvalid();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00003292 return;
3293 }
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003294
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003295 Expr *E = AL.getArgAsExpr(0);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003296 uint32_t prioritynum;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003297 if (!checkUInt32Argument(S, AL, E, prioritynum)) {
3298 AL.setInvalid();
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003299 return;
3300 }
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003301
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003302 if (prioritynum < 101 || prioritynum > 65535) {
Aaron Ballman52c9ad22019-02-12 13:04:11 +00003303 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_range)
Erich Keane44bacdf2018-08-09 13:21:32 +00003304 << E->getSourceRange() << AL << 101 << 65535;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003305 AL.setInvalid();
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003306 return;
3307 }
Michael Han99315932013-01-24 16:46:58 +00003308 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003309 InitPriorityAttr(AL.getRange(), S.Context, prioritynum,
3310 AL.getAttributeSpellingListIndex()));
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003311}
3312
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003313FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3314 IdentifierInfo *Format, int FormatIdx,
3315 int FirstArg,
Michael Han99315932013-01-24 16:46:58 +00003316 unsigned AttrSpellingListIndex) {
Rafael Espindola92d49452012-05-11 00:36:07 +00003317 // Check whether we already have an equivalent format attribute.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003318 for (auto *F : D->specific_attrs<FormatAttr>()) {
3319 if (F->getType() == Format &&
3320 F->getFormatIdx() == FormatIdx &&
3321 F->getFirstArg() == FirstArg) {
Rafael Espindola92d49452012-05-11 00:36:07 +00003322 // If we don't have a valid location for this attribute, adopt the
3323 // location.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003324 if (F->getLocation().isInvalid())
3325 F->setRange(Range);
Craig Topperc3ec1492014-05-26 06:22:03 +00003326 return nullptr;
Rafael Espindola92d49452012-05-11 00:36:07 +00003327 }
3328 }
3329
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003330 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3331 FirstArg, AttrSpellingListIndex);
Rafael Espindola92d49452012-05-11 00:36:07 +00003332}
3333
Mike Stumpd3bb5572009-07-24 19:02:52 +00003334/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendling44426052012-12-20 19:22:21 +00003335/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Erich Keanee891aa92018-07-13 15:07:47 +00003336static void handleFormatAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003337 if (!AL.isArgIdent(0)) {
3338 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00003339 << AL << 1 << AANT_ArgumentIdentifier;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003340 return;
3341 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003342
Chandler Carruth743682b2010-11-16 08:35:43 +00003343 // In C++ the implicit 'this' function parameter also counts, and they are
3344 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003345 bool HasImplicitThisParam = isInstanceMethod(D);
Alp Toker601b22c2014-01-21 23:35:24 +00003346 unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003347
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003348 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
Aaron Ballman00e99962013-08-31 01:11:41 +00003349 StringRef Format = II->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003350
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00003351 if (normalizeName(Format)) {
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003352 // If we've modified the string name, we need a new identifier for it.
3353 II = &S.Context.Idents.get(Format);
3354 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003355
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003356 // Check for supported formats.
3357 FormatAttrKind Kind = getFormatAttrKind(Format);
Fangrui Song6907ce22018-07-30 19:24:48 +00003358
Chris Lattner12161d32010-03-22 21:08:50 +00003359 if (Kind == IgnoredFormat)
3360 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00003361
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003362 if (Kind == InvalidFormat) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003363 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
Erich Keane44bacdf2018-08-09 13:21:32 +00003364 << AL << II->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003365 return;
3366 }
3367
3368 // checks for the 2nd argument
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003369 Expr *IdxExpr = AL.getArgAsExpr(1);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003370 uint32_t Idx;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003371 if (!checkUInt32Argument(S, AL, IdxExpr, Idx, 2))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003372 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003373
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003374 if (Idx < 1 || Idx > NumArgs) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003375 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
Erich Keane44bacdf2018-08-09 13:21:32 +00003376 << AL << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003377 return;
3378 }
3379
3380 // FIXME: Do we need to bounds check?
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003381 unsigned ArgIdx = Idx - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003382
Sebastian Redl6eedcc12009-11-17 18:02:24 +00003383 if (HasImplicitThisParam) {
3384 if (ArgIdx == 0) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003385 S.Diag(AL.getLoc(),
Chandler Carruth743682b2010-11-16 08:35:43 +00003386 diag::err_format_attribute_implicit_this_format_string)
3387 << IdxExpr->getSourceRange();
Sebastian Redl6eedcc12009-11-17 18:02:24 +00003388 return;
3389 }
3390 ArgIdx--;
3391 }
Mike Stump11289f42009-09-09 15:08:12 +00003392
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003393 // make sure the format string is really a string
Alp Toker601b22c2014-01-21 23:35:24 +00003394 QualType Ty = getFunctionOrMethodParamType(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003395
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003396 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00003397 if (!isCFStringType(Ty, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003398 S.Diag(AL.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003399 << "a CFString" << IdxExpr->getSourceRange()
3400 << getFunctionOrMethodParamRange(D, ArgIdx);
Daniel Dunbar980c6692008-09-26 03:32:58 +00003401 return;
3402 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003403 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00003404 // FIXME: do we need to check if the type is NSString*? What are the
3405 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003406 if (!isNSStringType(Ty, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003407 S.Diag(AL.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003408 << "an NSString" << IdxExpr->getSourceRange()
3409 << getFunctionOrMethodParamRange(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003410 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003411 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003412 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003413 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003414 S.Diag(AL.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003415 << "a string type" << IdxExpr->getSourceRange()
3416 << getFunctionOrMethodParamRange(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003417 return;
3418 }
3419
3420 // check the 3rd argument
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003421 Expr *FirstArgExpr = AL.getArgAsExpr(2);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003422 uint32_t FirstArg;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003423 if (!checkUInt32Argument(S, AL, FirstArgExpr, FirstArg, 3))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003424 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003425
3426 // check if the function is variadic if the 3rd argument non-zero
3427 if (FirstArg != 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003428 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003429 ++NumArgs; // +1 for ...
3430 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003431 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003432 return;
3433 }
3434 }
3435
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003436 // strftime requires FirstArg to be 0 because it doesn't read from any
3437 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003438 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003439 if (FirstArg != 0) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003440 S.Diag(AL.getLoc(), diag::err_format_strftime_third_parameter)
Chris Lattner3b054132008-11-19 05:08:23 +00003441 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003442 return;
3443 }
3444 // if 0 it disables parameter checking (to use with e.g. va_list)
3445 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003446 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
Erich Keane44bacdf2018-08-09 13:21:32 +00003447 << AL << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003448 return;
3449 }
3450
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003451 FormatAttr *NewAttr = S.mergeFormatAttr(D, AL.getRange(), II,
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003452 Idx, FirstArg,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003453 AL.getAttributeSpellingListIndex());
Rafael Espindolae200f1c2012-05-13 03:25:18 +00003454 if (NewAttr)
3455 D->addAttr(NewAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003456}
3457
Johannes Doerfertac991bb2019-01-19 05:36:54 +00003458/// Handle __attribute__((callback(CalleeIdx, PayloadIdx0, ...))) attributes.
3459static void handleCallbackAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3460 // The index that identifies the callback callee is mandatory.
3461 if (AL.getNumArgs() == 0) {
3462 S.Diag(AL.getLoc(), diag::err_callback_attribute_no_callee)
3463 << AL.getRange();
3464 return;
3465 }
3466
3467 bool HasImplicitThisParam = isInstanceMethod(D);
3468 int32_t NumArgs = getFunctionOrMethodNumParams(D);
3469
3470 FunctionDecl *FD = D->getAsFunction();
3471 assert(FD && "Expected a function declaration!");
3472
3473 llvm::StringMap<int> NameIdxMapping;
3474 NameIdxMapping["__"] = -1;
3475
3476 NameIdxMapping["this"] = 0;
3477
3478 int Idx = 1;
3479 for (const ParmVarDecl *PVD : FD->parameters())
3480 NameIdxMapping[PVD->getName()] = Idx++;
3481
3482 auto UnknownName = NameIdxMapping.end();
3483
3484 SmallVector<int, 8> EncodingIndices;
3485 for (unsigned I = 0, E = AL.getNumArgs(); I < E; ++I) {
3486 SourceRange SR;
3487 int32_t ArgIdx;
3488
3489 if (AL.isArgIdent(I)) {
3490 IdentifierLoc *IdLoc = AL.getArgAsIdent(I);
3491 auto It = NameIdxMapping.find(IdLoc->Ident->getName());
3492 if (It == UnknownName) {
3493 S.Diag(AL.getLoc(), diag::err_callback_attribute_argument_unknown)
3494 << IdLoc->Ident << IdLoc->Loc;
3495 return;
3496 }
3497
3498 SR = SourceRange(IdLoc->Loc);
3499 ArgIdx = It->second;
3500 } else if (AL.isArgExpr(I)) {
3501 Expr *IdxExpr = AL.getArgAsExpr(I);
3502
3503 // If the expression is not parseable as an int32_t we have a problem.
3504 if (!checkUInt32Argument(S, AL, IdxExpr, (uint32_t &)ArgIdx, I + 1,
3505 false)) {
3506 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3507 << AL << (I + 1) << IdxExpr->getSourceRange();
3508 return;
3509 }
3510
3511 // Check oob, excluding the special values, 0 and -1.
3512 if (ArgIdx < -1 || ArgIdx > NumArgs) {
3513 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3514 << AL << (I + 1) << IdxExpr->getSourceRange();
3515 return;
3516 }
3517
3518 SR = IdxExpr->getSourceRange();
3519 } else {
3520 llvm_unreachable("Unexpected ParsedAttr argument type!");
3521 }
3522
3523 if (ArgIdx == 0 && !HasImplicitThisParam) {
3524 S.Diag(AL.getLoc(), diag::err_callback_implicit_this_not_available)
3525 << (I + 1) << SR;
3526 return;
3527 }
3528
3529 // Adjust for the case we do not have an implicit "this" parameter. In this
3530 // case we decrease all positive values by 1 to get LLVM argument indices.
3531 if (!HasImplicitThisParam && ArgIdx > 0)
3532 ArgIdx -= 1;
3533
3534 EncodingIndices.push_back(ArgIdx);
3535 }
3536
3537 int CalleeIdx = EncodingIndices.front();
3538 // Check if the callee index is proper, thus not "this" and not "unknown".
Johannes Doerferte068d052019-01-21 14:23:46 +00003539 // This means the "CalleeIdx" has to be non-negative if "HasImplicitThisParam"
3540 // is false and positive if "HasImplicitThisParam" is true.
3541 if (CalleeIdx < (int)HasImplicitThisParam) {
Johannes Doerfertac991bb2019-01-19 05:36:54 +00003542 S.Diag(AL.getLoc(), diag::err_callback_attribute_invalid_callee)
3543 << AL.getRange();
3544 return;
3545 }
3546
3547 // Get the callee type, note the index adjustment as the AST doesn't contain
3548 // the this type (which the callee cannot reference anyway!).
3549 const Type *CalleeType =
3550 getFunctionOrMethodParamType(D, CalleeIdx - HasImplicitThisParam)
3551 .getTypePtr();
3552 if (!CalleeType || !CalleeType->isFunctionPointerType()) {
3553 S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3554 << AL.getRange();
3555 return;
3556 }
3557
3558 const Type *CalleeFnType =
3559 CalleeType->getPointeeType()->getUnqualifiedDesugaredType();
3560
3561 // TODO: Check the type of the callee arguments.
3562
3563 const auto *CalleeFnProtoType = dyn_cast<FunctionProtoType>(CalleeFnType);
3564 if (!CalleeFnProtoType) {
3565 S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3566 << AL.getRange();
3567 return;
3568 }
3569
3570 if (CalleeFnProtoType->getNumParams() > EncodingIndices.size() - 1) {
3571 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3572 << AL << (unsigned)(EncodingIndices.size() - 1);
3573 return;
3574 }
3575
3576 if (CalleeFnProtoType->getNumParams() < EncodingIndices.size() - 1) {
3577 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3578 << AL << (unsigned)(EncodingIndices.size() - 1);
3579 return;
3580 }
3581
3582 if (CalleeFnProtoType->isVariadic()) {
3583 S.Diag(AL.getLoc(), diag::err_callback_callee_is_variadic) << AL.getRange();
3584 return;
3585 }
3586
3587 // Do not allow multiple callback attributes.
3588 if (D->hasAttr<CallbackAttr>()) {
3589 S.Diag(AL.getLoc(), diag::err_callback_attribute_multiple) << AL.getRange();
3590 return;
3591 }
3592
3593 D->addAttr(::new (S.Context) CallbackAttr(
3594 AL.getRange(), S.Context, EncodingIndices.data(), EncodingIndices.size(),
3595 AL.getAttributeSpellingListIndex()));
3596}
3597
Erich Keanee891aa92018-07-13 15:07:47 +00003598static void handleTransparentUnionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003599 // Try to find the underlying union declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00003600 RecordDecl *RD = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003601 const auto *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003602 if (TD && TD->getUnderlyingType()->isUnionType())
3603 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3604 else
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003605 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003606
3607 if (!RD || !RD->isUnion()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00003608 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL
3609 << ExpectedUnion;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003610 return;
3611 }
3612
John McCallf937c022011-10-07 06:10:15 +00003613 if (!RD->isCompleteDefinition()) {
Erich Keane2fe684b2017-02-28 20:44:39 +00003614 if (!RD->isBeingDefined())
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003615 S.Diag(AL.getLoc(),
Erich Keane2fe684b2017-02-28 20:44:39 +00003616 diag::warn_transparent_union_attribute_not_definition);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003617 return;
3618 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003619
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003620 RecordDecl::field_iterator Field = RD->field_begin(),
3621 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003622 if (Field == FieldEnd) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003623 S.Diag(AL.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003624 return;
3625 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00003626
David Blaikie40ed2972012-06-06 20:45:41 +00003627 FieldDecl *FirstField = *Field;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003628 QualType FirstType = FirstField->getType();
Douglas Gregor21872662010-06-30 17:24:13 +00003629 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00003630 S.Diag(FirstField->getLocation(),
Douglas Gregor21872662010-06-30 17:24:13 +00003631 diag::warn_transparent_union_attribute_floating)
3632 << FirstType->isVectorType() << FirstType;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003633 return;
3634 }
3635
Alex Lorenz6f4bc4f2016-10-06 09:47:29 +00003636 if (FirstType->isIncompleteType())
3637 return;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003638 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3639 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3640 for (; Field != FieldEnd; ++Field) {
3641 QualType FieldType = Field->getType();
Alex Lorenz6f4bc4f2016-10-06 09:47:29 +00003642 if (FieldType->isIncompleteType())
3643 return;
Aaron Ballman54fe5eb2014-01-28 01:47:34 +00003644 // FIXME: this isn't fully correct; we also need to test whether the
3645 // members of the union would all have the same calling convention as the
3646 // first member of the union. Checking just the size and alignment isn't
3647 // sufficient (consider structs passed on the stack instead of in registers
3648 // as an example).
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003649 if (S.Context.getTypeSize(FieldType) != FirstSize ||
Aaron Ballman54fe5eb2014-01-28 01:47:34 +00003650 S.Context.getTypeAlign(FieldType) > FirstAlign) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003651 // Warn if we drop the attribute.
3652 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003653 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003654 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003655 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003656 diag::warn_transparent_union_attribute_field_size_align)
3657 << isSize << Field->getDeclName() << FieldBits;
3658 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003659 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003660 diag::note_transparent_union_first_field_size_align)
3661 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00003662 return;
3663 }
3664 }
3665
Michael Han99315932013-01-24 16:46:58 +00003666 RD->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003667 TransparentUnionAttr(AL.getRange(), S.Context,
3668 AL.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003669}
3670
Erich Keanee891aa92018-07-13 15:07:47 +00003671static void handleAnnotateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003672 // Make sure that there is a string literal as the annotation's single
3673 // argument.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003674 StringRef Str;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003675 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003676 return;
Julien Lerouge5a6b6982011-09-09 22:41:49 +00003677
3678 // Don't duplicate annotations that are already set.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003679 for (const auto *I : D->specific_attrs<AnnotateAttr>()) {
3680 if (I->getAnnotation() == Str)
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003681 return;
Julien Lerouge5a6b6982011-09-09 22:41:49 +00003682 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003683
Michael Han99315932013-01-24 16:46:58 +00003684 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003685 AnnotateAttr(AL.getRange(), S.Context, Str,
3686 AL.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003687}
3688
Erich Keanee891aa92018-07-13 15:07:47 +00003689static void handleAlignValueAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003690 S.AddAlignValueAttr(AL.getRange(), D, AL.getArgAsExpr(0),
3691 AL.getAttributeSpellingListIndex());
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003692}
3693
3694void Sema::AddAlignValueAttr(SourceRange AttrRange, Decl *D, Expr *E,
3695 unsigned SpellingListIndex) {
3696 AlignValueAttr TmpAttr(AttrRange, Context, E, SpellingListIndex);
3697 SourceLocation AttrLoc = AttrRange.getBegin();
3698
3699 QualType T;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003700 if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003701 T = TD->getUnderlyingType();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003702 else if (const auto *VD = dyn_cast<ValueDecl>(D))
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003703 T = VD->getType();
3704 else
3705 llvm_unreachable("Unknown decl type for align_value");
3706
3707 if (!T->isDependentType() && !T->isAnyPointerType() &&
3708 !T->isReferenceType() && !T->isMemberPointerType()) {
3709 Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only)
3710 << &TmpAttr /*TmpAttr.getName()*/ << T << D->getSourceRange();
3711 return;
3712 }
3713
3714 if (!E->isValueDependent()) {
David Majnemer0be6bd02015-07-26 09:02:21 +00003715 llvm::APSInt Alignment;
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003716 ExprResult ICE
3717 = VerifyIntegerConstantExpression(E, &Alignment,
3718 diag::err_align_value_attribute_argument_not_int,
3719 /*AllowFold*/ false);
3720 if (ICE.isInvalid())
3721 return;
3722
3723 if (!Alignment.isPowerOf2()) {
3724 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3725 << E->getSourceRange();
3726 return;
3727 }
3728
3729 D->addAttr(::new (Context)
3730 AlignValueAttr(AttrRange, Context, ICE.get(),
3731 SpellingListIndex));
3732 return;
3733 }
3734
3735 // Save dependent expressions in the AST to be instantiated.
3736 D->addAttr(::new (Context) AlignValueAttr(TmpAttr));
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003737}
3738
Erich Keanee891aa92018-07-13 15:07:47 +00003739static void handleAlignedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003740 // check the attribute arguments.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003741 if (AL.getNumArgs() > 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +00003742 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003743 return;
3744 }
Aaron Ballman478faed2012-06-19 22:09:27 +00003745
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003746 if (AL.getNumArgs() == 0) {
3747 D->addAttr(::new (S.Context) AlignedAttr(AL.getRange(), S.Context,
3748 true, nullptr, AL.getAttributeSpellingListIndex()));
Richard Smith848e1f12013-02-01 08:12:08 +00003749 return;
3750 }
3751
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003752 Expr *E = AL.getArgAsExpr(0);
3753 if (AL.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3754 S.Diag(AL.getEllipsisLoc(),
Richard Smith44c247f2013-02-22 08:32:16 +00003755 diag::err_pack_expansion_without_parameter_packs);
3756 return;
3757 }
3758
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003759 if (!AL.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
Richard Smith44c247f2013-02-22 08:32:16 +00003760 return;
3761
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003762 S.AddAlignedAttr(AL.getRange(), D, E, AL.getAttributeSpellingListIndex(),
3763 AL.isPackExpansion());
Richard Smith848e1f12013-02-01 08:12:08 +00003764}
3765
3766void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smith44c247f2013-02-22 08:32:16 +00003767 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smith848e1f12013-02-01 08:12:08 +00003768 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3769 SourceLocation AttrLoc = AttrRange.getBegin();
3770
Richard Smith1dba27c2013-01-29 09:02:09 +00003771 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smith848e1f12013-02-01 08:12:08 +00003772 if (TmpAttr.isAlignas()) {
Richard Smith1dba27c2013-01-29 09:02:09 +00003773 // C++11 [dcl.align]p1:
3774 // An alignment-specifier may be applied to a variable or to a class
3775 // data member, but it shall not be applied to a bit-field, a function
3776 // parameter, the formal parameter of a catch clause, or a variable
3777 // declared with the register storage class specifier. An
3778 // alignment-specifier may also be applied to the declaration of a class
3779 // or enumeration type.
3780 // C11 6.7.5/2:
3781 // An alignment attribute shall not be specified in a declaration of
3782 // a typedef, or a bit-field, or a function, or a parameter, or an
3783 // object declared with the register storage-class specifier.
3784 int DiagKind = -1;
3785 if (isa<ParmVarDecl>(D)) {
3786 DiagKind = 0;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003787 } else if (const auto *VD = dyn_cast<VarDecl>(D)) {
Richard Smith1dba27c2013-01-29 09:02:09 +00003788 if (VD->getStorageClass() == SC_Register)
3789 DiagKind = 1;
3790 if (VD->isExceptionVariable())
3791 DiagKind = 2;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003792 } else if (const auto *FD = dyn_cast<FieldDecl>(D)) {
Richard Smith1dba27c2013-01-29 09:02:09 +00003793 if (FD->isBitField())
3794 DiagKind = 3;
3795 } else if (!isa<TagDecl>(D)) {
Aaron Ballman3d216a52014-01-02 23:39:11 +00003796 Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr
Richard Smith9eaab4b2013-02-01 08:25:07 +00003797 << (TmpAttr.isC11() ? ExpectedVariableOrField
3798 : ExpectedVariableFieldOrTag);
Richard Smith1dba27c2013-01-29 09:02:09 +00003799 return;
3800 }
3801 if (DiagKind != -1) {
Richard Smith848e1f12013-02-01 08:12:08 +00003802 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Aaron Ballman3d216a52014-01-02 23:39:11 +00003803 << &TmpAttr << DiagKind;
Richard Smith1dba27c2013-01-29 09:02:09 +00003804 return;
3805 }
3806 }
3807
Richard Smith90ae9672018-06-20 23:36:55 +00003808 if (E->isValueDependent()) {
3809 // We can't support a dependent alignment on a non-dependent type,
3810 // because we have no way to model that a type is "alignment-dependent"
3811 // but not dependent in any other way.
3812 if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) {
3813 if (!TND->getUnderlyingType()->isDependentType()) {
3814 Diag(AttrLoc, diag::err_alignment_dependent_typedef_name)
3815 << E->getSourceRange();
3816 return;
3817 }
3818 }
3819
Chandler Carruthf40c42f2010-06-25 03:22:07 +00003820 // Save dependent expressions in the AST to be instantiated.
Richard Smith44c247f2013-02-22 08:32:16 +00003821 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3822 AA->setPackExpansion(IsPackExpansion);
3823 D->addAttr(AA);
Chandler Carruthf40c42f2010-06-25 03:22:07 +00003824 return;
3825 }
Michael Hanaf02bbe2013-02-01 01:19:17 +00003826
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003827 // FIXME: Cache the number on the AL object?
David Majnemer0be6bd02015-07-26 09:02:21 +00003828 llvm::APSInt Alignment;
Douglas Gregore2b37442012-05-04 22:38:52 +00003829 ExprResult ICE
3830 = VerifyIntegerConstantExpression(E, &Alignment,
3831 diag::err_aligned_attribute_argument_not_int,
3832 /*AllowFold*/ false);
Richard Smithf4c51d92012-02-04 09:53:13 +00003833 if (ICE.isInvalid())
Chris Lattner4627b742008-06-28 23:50:44 +00003834 return;
Richard Smith848e1f12013-02-01 08:12:08 +00003835
David Majnemer0be6bd02015-07-26 09:02:21 +00003836 uint64_t AlignVal = Alignment.getZExtValue();
3837
Richard Smith848e1f12013-02-01 08:12:08 +00003838 // C++11 [dcl.align]p2:
3839 // -- if the constant expression evaluates to zero, the alignment
3840 // specifier shall have no effect
3841 // C11 6.7.5p6:
3842 // An alignment specification of zero has no effect.
Paul Robinsond30e2ee2015-07-14 20:52:32 +00003843 if (!(TmpAttr.isAlignas() && !Alignment)) {
David Majnemer0be6bd02015-07-26 09:02:21 +00003844 if (!llvm::isPowerOf2_64(AlignVal)) {
Paul Robinsond30e2ee2015-07-14 20:52:32 +00003845 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3846 << E->getSourceRange();
3847 return;
3848 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00003849 }
Michael Hanaf02bbe2013-02-01 01:19:17 +00003850
David Majnemerabecae72014-02-12 20:36:10 +00003851 // Alignment calculations can wrap around if it's greater than 2**28.
David Majnemer29c69db2015-07-26 01:48:59 +00003852 unsigned MaxValidAlignment =
3853 Context.getTargetInfo().getTriple().isOSBinFormatCOFF() ? 8192
3854 : 268435456;
David Majnemer0be6bd02015-07-26 09:02:21 +00003855 if (AlignVal > MaxValidAlignment) {
David Majnemerabecae72014-02-12 20:36:10 +00003856 Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment
3857 << E->getSourceRange();
3858 return;
Aaron Ballman478faed2012-06-19 22:09:27 +00003859 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00003860
David Majnemer0be6bd02015-07-26 09:02:21 +00003861 if (Context.getTargetInfo().isTLSSupported()) {
3862 unsigned MaxTLSAlign =
3863 Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign())
3864 .getQuantity();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003865 const auto *VD = dyn_cast<VarDecl>(D);
David Majnemer0be6bd02015-07-26 09:02:21 +00003866 if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD &&
3867 VD->getTLSKind() != VarDecl::TLS_None) {
3868 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
3869 << (unsigned)AlignVal << VD << MaxTLSAlign;
3870 return;
3871 }
3872 }
3873
Richard Smith44c247f2013-02-22 08:32:16 +00003874 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003875 ICE.get(), SpellingListIndex);
Richard Smith44c247f2013-02-22 08:32:16 +00003876 AA->setPackExpansion(IsPackExpansion);
3877 D->addAttr(AA);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003878}
3879
Michael Hanaf02bbe2013-02-01 01:19:17 +00003880void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smith44c247f2013-02-22 08:32:16 +00003881 unsigned SpellingListIndex, bool IsPackExpansion) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003882 // FIXME: Cache the number on the AL object if non-dependent?
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003883 // FIXME: Perform checking of type validity
Richard Smith44c247f2013-02-22 08:32:16 +00003884 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3885 SpellingListIndex);
3886 AA->setPackExpansion(IsPackExpansion);
3887 D->addAttr(AA);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003888}
Chris Lattneracbc2d22008-06-27 22:18:37 +00003889
Richard Smith848e1f12013-02-01 08:12:08 +00003890void Sema::CheckAlignasUnderalignment(Decl *D) {
3891 assert(D->hasAttrs() && "no attributes on decl");
3892
David Majnemer475b25e2015-01-21 10:54:38 +00003893 QualType UnderlyingTy, DiagTy;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003894 if (const auto *VD = dyn_cast<ValueDecl>(D)) {
David Majnemer475b25e2015-01-21 10:54:38 +00003895 UnderlyingTy = DiagTy = VD->getType();
3896 } else {
3897 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D));
Aaron Ballmana70c6b52018-02-15 16:20:20 +00003898 if (const auto *ED = dyn_cast<EnumDecl>(D))
David Majnemer475b25e2015-01-21 10:54:38 +00003899 UnderlyingTy = ED->getIntegerType();
3900 }
3901 if (DiagTy->isDependentType() || DiagTy->isIncompleteType())
Richard Smith848e1f12013-02-01 08:12:08 +00003902 return;
3903
3904 // C++11 [dcl.align]p5, C11 6.7.5/4:
3905 // The combined effect of all alignment attributes in a declaration shall
3906 // not specify an alignment that is less strict than the alignment that
3907 // would otherwise be required for the entity being declared.
Craig Topperc3ec1492014-05-26 06:22:03 +00003908 AlignedAttr *AlignasAttr = nullptr;
Richard Smith848e1f12013-02-01 08:12:08 +00003909 unsigned Align = 0;
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003910 for (auto *I : D->specific_attrs<AlignedAttr>()) {
Richard Smith848e1f12013-02-01 08:12:08 +00003911 if (I->isAlignmentDependent())
3912 return;
3913 if (I->isAlignas())
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003914 AlignasAttr = I;
Richard Smith848e1f12013-02-01 08:12:08 +00003915 Align = std::max(Align, I->getAlignment(Context));
3916 }
3917
3918 if (AlignasAttr && Align) {
3919 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
David Majnemer475b25e2015-01-21 10:54:38 +00003920 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy);
Richard Smith848e1f12013-02-01 08:12:08 +00003921 if (NaturalAlign > RequestedAlign)
3922 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
David Majnemer475b25e2015-01-21 10:54:38 +00003923 << DiagTy << (unsigned)NaturalAlign.getQuantity();
Richard Smith848e1f12013-02-01 08:12:08 +00003924 }
3925}
3926
David Majnemer2c4e00a2014-01-29 22:07:36 +00003927bool Sema::checkMSInheritanceAttrOnDefinition(
David Majnemer4bb09802014-02-10 19:50:15 +00003928 CXXRecordDecl *RD, SourceRange Range, bool BestCase,
David Majnemer2c4e00a2014-01-29 22:07:36 +00003929 MSInheritanceAttr::Spelling SemanticSpelling) {
3930 assert(RD->hasDefinition() && "RD has no definition!");
3931
David Majnemer98c9ee22014-02-07 00:43:07 +00003932 // We may not have seen base specifiers or any virtual methods yet. We will
3933 // have to wait until the record is defined to catch any mismatches.
3934 if (!RD->getDefinition()->isCompleteDefinition())
3935 return false;
David Majnemer2c4e00a2014-01-29 22:07:36 +00003936
David Majnemer98c9ee22014-02-07 00:43:07 +00003937 // The unspecified model never matches what a definition could need.
3938 if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance)
3939 return false;
3940
David Majnemer4bb09802014-02-10 19:50:15 +00003941 if (BestCase) {
3942 if (RD->calculateInheritanceModel() == SemanticSpelling)
3943 return false;
3944 } else {
3945 if (RD->calculateInheritanceModel() <= SemanticSpelling)
3946 return false;
3947 }
David Majnemer98c9ee22014-02-07 00:43:07 +00003948
3949 Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance)
3950 << 0 /*definition*/;
3951 Diag(RD->getDefinition()->getLocation(), diag::note_defined_here)
3952 << RD->getNameAsString();
3953 return true;
David Majnemer2c4e00a2014-01-29 22:07:36 +00003954}
3955
Alexey Bataevf278eb12015-11-19 10:13:11 +00003956/// parseModeAttrArg - Parses attribute mode string and returns parsed type
3957/// attribute.
3958static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth,
3959 bool &IntegerMode, bool &ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003960 IntegerMode = true;
3961 ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00003962 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00003963 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00003964 switch (Str[0]) {
Alexey Bataevf278eb12015-11-19 10:13:11 +00003965 case 'Q':
3966 DestWidth = 8;
3967 break;
3968 case 'H':
3969 DestWidth = 16;
3970 break;
3971 case 'S':
3972 DestWidth = 32;
3973 break;
3974 case 'D':
3975 DestWidth = 64;
3976 break;
3977 case 'X':
3978 DestWidth = 96;
3979 break;
3980 case 'T':
3981 DestWidth = 128;
3982 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00003983 }
3984 if (Str[1] == 'F') {
3985 IntegerMode = false;
3986 } else if (Str[1] == 'C') {
3987 IntegerMode = false;
3988 ComplexMode = true;
3989 } else if (Str[1] != 'I') {
3990 DestWidth = 0;
3991 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003992 break;
3993 case 4:
3994 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3995 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00003996 if (Str == "word")
Reid Klecknerf27e7522016-02-01 18:58:24 +00003997 DestWidth = S.Context.getTargetInfo().getRegisterWidth();
Daniel Dunbarafff4342009-10-18 02:09:24 +00003998 else if (Str == "byte")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003999 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00004000 break;
4001 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00004002 if (Str == "pointer")
Douglas Gregore8bbc122011-09-02 00:18:52 +00004003 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00004004 break;
Rafael Espindolaf0dafd32013-01-07 19:58:54 +00004005 case 11:
4006 if (Str == "unwind_word")
Rafael Espindola03705972013-01-07 20:01:57 +00004007 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindolaf0dafd32013-01-07 19:58:54 +00004008 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00004009 }
Alexey Bataevf278eb12015-11-19 10:13:11 +00004010}
4011
4012/// handleModeAttr - This attribute modifies the width of a decl with primitive
4013/// type.
4014///
4015/// Despite what would be logical, the mode attribute is a decl attribute, not a
4016/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
4017/// HImode, not an intermediate pointer.
Erich Keanee891aa92018-07-13 15:07:47 +00004018static void handleModeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Alexey Bataevf278eb12015-11-19 10:13:11 +00004019 // This attribute isn't documented, but glibc uses it. It changes
4020 // the width of an int or unsigned int to the specified size.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004021 if (!AL.isArgIdent(0)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004022 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
4023 << AL << AANT_ArgumentIdentifier;
Alexey Bataevf278eb12015-11-19 10:13:11 +00004024 return;
4025 }
4026
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004027 IdentifierInfo *Name = AL.getArgAsIdent(0)->Ident;
Alexey Bataevf278eb12015-11-19 10:13:11 +00004028
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004029 S.AddModeAttr(AL.getRange(), D, Name, AL.getAttributeSpellingListIndex());
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004030}
4031
4032void Sema::AddModeAttr(SourceRange AttrRange, Decl *D, IdentifierInfo *Name,
4033 unsigned SpellingListIndex, bool InInstantiation) {
4034 StringRef Str = Name->getName();
Alexey Bataevf278eb12015-11-19 10:13:11 +00004035 normalizeName(Str);
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004036 SourceLocation AttrLoc = AttrRange.getBegin();
Alexey Bataevf278eb12015-11-19 10:13:11 +00004037
4038 unsigned DestWidth = 0;
4039 bool IntegerMode = true;
4040 bool ComplexMode = false;
4041 llvm::APInt VectorSize(64, 0);
4042 if (Str.size() >= 4 && Str[0] == 'V') {
4043 // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2).
4044 size_t StrSize = Str.size();
4045 size_t VectorStringLength = 0;
4046 while ((VectorStringLength + 1) < StrSize &&
4047 isdigit(Str[VectorStringLength + 1]))
4048 ++VectorStringLength;
4049 if (VectorStringLength &&
4050 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) &&
4051 VectorSize.isPowerOf2()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004052 parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth,
Alexey Bataevf278eb12015-11-19 10:13:11 +00004053 IntegerMode, ComplexMode);
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004054 // Avoid duplicate warning from template instantiation.
4055 if (!InInstantiation)
4056 Diag(AttrLoc, diag::warn_vector_mode_deprecated);
Alexey Bataevf278eb12015-11-19 10:13:11 +00004057 } else {
4058 VectorSize = 0;
4059 }
4060 }
4061
4062 if (!VectorSize)
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004063 parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode);
4064
4065 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
4066 // and friends, at least with glibc.
4067 // FIXME: Make sure floating-point mappings are accurate
4068 // FIXME: Support XF and TF types
4069 if (!DestWidth) {
4070 Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name;
4071 return;
4072 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00004073
4074 QualType OldTy;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004075 if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattneracbc2d22008-06-27 22:18:37 +00004076 OldTy = TD->getUnderlyingType();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004077 else if (const auto *ED = dyn_cast<EnumDecl>(D)) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004078 // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'.
4079 // Try to get type from enum declaration, default to int.
4080 OldTy = ED->getIntegerType();
4081 if (OldTy.isNull())
4082 OldTy = Context.IntTy;
4083 } else
Aaron Ballman6c8848a2016-01-19 22:54:26 +00004084 OldTy = cast<ValueDecl>(D)->getType();
Eli Friedman4735374e2009-03-03 06:41:03 +00004085
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004086 if (OldTy->isDependentType()) {
4087 D->addAttr(::new (Context)
4088 ModeAttr(AttrRange, Context, Name, SpellingListIndex));
4089 return;
4090 }
4091
Alexey Bataev326057d2015-06-19 07:46:21 +00004092 // Base type can also be a vector type (see PR17453).
4093 // Distinguish between base type and base element type.
4094 QualType OldElemTy = OldTy;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004095 if (const auto *VT = OldTy->getAs<VectorType>())
Alexey Bataev326057d2015-06-19 07:46:21 +00004096 OldElemTy = VT->getElementType();
4097
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004098 // GCC allows 'mode' attribute on enumeration types (even incomplete), except
4099 // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete
4100 // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected.
4101 if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) &&
4102 VectorSize.getBoolValue()) {
4103 Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << AttrRange;
4104 return;
4105 }
4106 bool IntegralOrAnyEnumType =
4107 OldElemTy->isIntegralOrEnumerationType() || OldElemTy->getAs<EnumType>();
4108
4109 if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() &&
4110 !IntegralOrAnyEnumType)
4111 Diag(AttrLoc, diag::err_mode_not_primitive);
Eli Friedman4735374e2009-03-03 06:41:03 +00004112 else if (IntegerMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004113 if (!IntegralOrAnyEnumType)
4114 Diag(AttrLoc, diag::err_mode_wrong_type);
Eli Friedman4735374e2009-03-03 06:41:03 +00004115 } else if (ComplexMode) {
Alexey Bataev326057d2015-06-19 07:46:21 +00004116 if (!OldElemTy->isComplexType())
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004117 Diag(AttrLoc, diag::err_mode_wrong_type);
Eli Friedman4735374e2009-03-03 06:41:03 +00004118 } else {
Alexey Bataev326057d2015-06-19 07:46:21 +00004119 if (!OldElemTy->isFloatingType())
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004120 Diag(AttrLoc, diag::err_mode_wrong_type);
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00004121 }
4122
Alexey Bataev326057d2015-06-19 07:46:21 +00004123 QualType NewElemTy;
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00004124
4125 if (IntegerMode)
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004126 NewElemTy = Context.getIntTypeForBitwidth(DestWidth,
4127 OldElemTy->isSignedIntegerType());
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00004128 else
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004129 NewElemTy = Context.getRealTypeForBitwidth(DestWidth);
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00004130
Alexey Bataev326057d2015-06-19 07:46:21 +00004131 if (NewElemTy.isNull()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004132 Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00004133 return;
Chris Lattneracbc2d22008-06-27 22:18:37 +00004134 }
4135
Eli Friedman4735374e2009-03-03 06:41:03 +00004136 if (ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004137 NewElemTy = Context.getComplexType(NewElemTy);
Alexey Bataev326057d2015-06-19 07:46:21 +00004138 }
4139
4140 QualType NewTy = NewElemTy;
Alexey Bataevf278eb12015-11-19 10:13:11 +00004141 if (VectorSize.getBoolValue()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004142 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(),
4143 VectorType::GenericVector);
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004144 } else if (const auto *OldVT = OldTy->getAs<VectorType>()) {
Alexey Bataev326057d2015-06-19 07:46:21 +00004145 // Complex machine mode does not support base vector types.
4146 if (ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004147 Diag(AttrLoc, diag::err_complex_mode_vector_type);
Alexey Bataev326057d2015-06-19 07:46:21 +00004148 return;
4149 }
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004150 unsigned NumElements = Context.getTypeSize(OldElemTy) *
Alexey Bataev326057d2015-06-19 07:46:21 +00004151 OldVT->getNumElements() /
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004152 Context.getTypeSize(NewElemTy);
Alexey Bataev326057d2015-06-19 07:46:21 +00004153 NewTy =
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004154 Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind());
Alexey Bataev326057d2015-06-19 07:46:21 +00004155 }
4156
4157 if (NewTy.isNull()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004158 Diag(AttrLoc, diag::err_mode_wrong_type);
Alexey Bataev326057d2015-06-19 07:46:21 +00004159 return;
Chris Lattneracbc2d22008-06-27 22:18:37 +00004160 }
4161
4162 // Install the new type.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004163 if (auto *TD = dyn_cast<TypedefNameDecl>(D))
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00004164 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004165 else if (auto *ED = dyn_cast<EnumDecl>(D))
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004166 ED->setIntegerType(NewTy);
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00004167 else
Aaron Ballman6c8848a2016-01-19 22:54:26 +00004168 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00004169
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00004170 D->addAttr(::new (Context)
4171 ModeAttr(AttrRange, Context, Name, SpellingListIndex));
Chris Lattneracbc2d22008-06-27 22:18:37 +00004172}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004173
Erich Keanee891aa92018-07-13 15:07:47 +00004174static void handleNoDebugAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Michael Han99315932013-01-24 16:46:58 +00004175 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004176 NoDebugAttr(AL.getRange(), S.Context,
4177 AL.getAttributeSpellingListIndex()));
Anders Carlsson76187b42009-02-13 06:46:13 +00004178}
4179
Paul Robinson30e41fb2014-12-15 18:57:28 +00004180AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D, SourceRange Range,
Paul Robinson080b1f32015-01-13 18:34:56 +00004181 IdentifierInfo *Ident,
Paul Robinson30e41fb2014-12-15 18:57:28 +00004182 unsigned AttrSpellingListIndex) {
4183 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
Paul Robinson080b1f32015-01-13 18:34:56 +00004184 Diag(Range.getBegin(), diag::warn_attribute_ignored) << Ident;
Paul Robinson30e41fb2014-12-15 18:57:28 +00004185 Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4186 return nullptr;
4187 }
4188
4189 if (D->hasAttr<AlwaysInlineAttr>())
4190 return nullptr;
4191
4192 return ::new (Context) AlwaysInlineAttr(Range, Context,
4193 AttrSpellingListIndex);
4194}
4195
Erich Keane44bacdf2018-08-09 13:21:32 +00004196CommonAttr *Sema::mergeCommonAttr(Decl *D, const ParsedAttr &AL) {
4197 if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004198 return nullptr;
4199
Erich Keane44bacdf2018-08-09 13:21:32 +00004200 return ::new (Context)
4201 CommonAttr(AL.getRange(), Context, AL.getAttributeSpellingListIndex());
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004202}
4203
Erich Keane44bacdf2018-08-09 13:21:32 +00004204CommonAttr *Sema::mergeCommonAttr(Decl *D, const CommonAttr &AL) {
4205 if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
4206 return nullptr;
4207
4208 return ::new (Context)
4209 CommonAttr(AL.getRange(), Context, AL.getSpellingListIndex());
4210}
4211
4212InternalLinkageAttr *Sema::mergeInternalLinkageAttr(Decl *D,
4213 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004214 if (const auto *VD = dyn_cast<VarDecl>(D)) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004215 // Attribute applies to Var but not any subclass of it (like ParmVar,
4216 // ImplicitParm or VarTemplateSpecialization).
4217 if (VD->getKind() != Decl::Var) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004218 Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
4219 << AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4220 : ExpectedVariableOrFunction);
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004221 return nullptr;
4222 }
4223 // Attribute does not apply to non-static local variables.
4224 if (VD->hasLocalStorage()) {
4225 Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4226 return nullptr;
4227 }
4228 }
4229
Erich Keane44bacdf2018-08-09 13:21:32 +00004230 if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
4231 return nullptr;
4232
4233 return ::new (Context) InternalLinkageAttr(
4234 AL.getRange(), Context, AL.getAttributeSpellingListIndex());
4235}
4236InternalLinkageAttr *
4237Sema::mergeInternalLinkageAttr(Decl *D, const InternalLinkageAttr &AL) {
4238 if (const auto *VD = dyn_cast<VarDecl>(D)) {
4239 // Attribute applies to Var but not any subclass of it (like ParmVar,
4240 // ImplicitParm or VarTemplateSpecialization).
4241 if (VD->getKind() != Decl::Var) {
4242 Diag(AL.getLocation(), diag::warn_attribute_wrong_decl_type)
4243 << &AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4244 : ExpectedVariableOrFunction);
4245 return nullptr;
4246 }
4247 // Attribute does not apply to non-static local variables.
4248 if (VD->hasLocalStorage()) {
4249 Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4250 return nullptr;
4251 }
4252 }
4253
4254 if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004255 return nullptr;
4256
4257 return ::new (Context)
Erich Keane44bacdf2018-08-09 13:21:32 +00004258 InternalLinkageAttr(AL.getRange(), Context, AL.getSpellingListIndex());
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004259}
4260
Paul Robinson30e41fb2014-12-15 18:57:28 +00004261MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, SourceRange Range,
4262 unsigned AttrSpellingListIndex) {
4263 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4264 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'minsize'";
4265 Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4266 return nullptr;
4267 }
4268
4269 if (D->hasAttr<MinSizeAttr>())
4270 return nullptr;
4271
4272 return ::new (Context) MinSizeAttr(Range, Context, AttrSpellingListIndex);
4273}
4274
Zola Bridges826ef592019-01-18 17:20:46 +00004275NoSpeculativeLoadHardeningAttr *Sema::mergeNoSpeculativeLoadHardeningAttr(
4276 Decl *D, const NoSpeculativeLoadHardeningAttr &AL) {
4277 if (checkAttrMutualExclusion<SpeculativeLoadHardeningAttr>(*this, D, AL))
4278 return nullptr;
4279
4280 return ::new (Context) NoSpeculativeLoadHardeningAttr(
4281 AL.getRange(), Context, AL.getSpellingListIndex());
4282}
4283
Paul Robinson30e41fb2014-12-15 18:57:28 +00004284OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D, SourceRange Range,
4285 unsigned AttrSpellingListIndex) {
4286 if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) {
4287 Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline;
4288 Diag(Range.getBegin(), diag::note_conflicting_attribute);
4289 D->dropAttr<AlwaysInlineAttr>();
4290 }
4291 if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) {
4292 Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize;
4293 Diag(Range.getBegin(), diag::note_conflicting_attribute);
4294 D->dropAttr<MinSizeAttr>();
4295 }
4296
4297 if (D->hasAttr<OptimizeNoneAttr>())
4298 return nullptr;
4299
4300 return ::new (Context) OptimizeNoneAttr(Range, Context,
4301 AttrSpellingListIndex);
4302}
4303
Zola Bridges826ef592019-01-18 17:20:46 +00004304SpeculativeLoadHardeningAttr *Sema::mergeSpeculativeLoadHardeningAttr(
4305 Decl *D, const SpeculativeLoadHardeningAttr &AL) {
4306 if (checkAttrMutualExclusion<NoSpeculativeLoadHardeningAttr>(*this, D, AL))
4307 return nullptr;
4308
4309 return ::new (Context) SpeculativeLoadHardeningAttr(
4310 AL.getRange(), Context, AL.getSpellingListIndex());
4311}
4312
Erich Keanee891aa92018-07-13 15:07:47 +00004313static void handleAlwaysInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004314 if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, AL))
Akira Hatanakac8667622015-11-06 23:56:15 +00004315 return;
4316
Paul Robinson080b1f32015-01-13 18:34:56 +00004317 if (AlwaysInlineAttr *Inline = S.mergeAlwaysInlineAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004318 D, AL.getRange(), AL.getName(),
4319 AL.getAttributeSpellingListIndex()))
Paul Robinson080b1f32015-01-13 18:34:56 +00004320 D->addAttr(Inline);
Paul Robinsonf0674352014-03-31 22:29:15 +00004321}
4322
Erich Keanee891aa92018-07-13 15:07:47 +00004323static void handleMinSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Paul Robinson080b1f32015-01-13 18:34:56 +00004324 if (MinSizeAttr *MinSize = S.mergeMinSizeAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004325 D, AL.getRange(), AL.getAttributeSpellingListIndex()))
Paul Robinson080b1f32015-01-13 18:34:56 +00004326 D->addAttr(MinSize);
Paul Robinsonaae2fba2014-12-10 23:34:36 +00004327}
4328
Erich Keanee891aa92018-07-13 15:07:47 +00004329static void handleOptimizeNoneAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Paul Robinson080b1f32015-01-13 18:34:56 +00004330 if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004331 D, AL.getRange(), AL.getAttributeSpellingListIndex()))
Paul Robinson080b1f32015-01-13 18:34:56 +00004332 D->addAttr(Optnone);
Paul Robinsonf0674352014-03-31 22:29:15 +00004333}
4334
Erich Keanee891aa92018-07-13 15:07:47 +00004335static void handleConstantAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004336 if (checkAttrMutualExclusion<CUDASharedAttr>(S, D, AL))
Justin Lebare71b2fa2016-09-30 23:57:34 +00004337 return;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004338 const auto *VD = cast<VarDecl>(D);
Justin Lebare71b2fa2016-09-30 23:57:34 +00004339 if (!VD->hasGlobalStorage()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004340 S.Diag(AL.getLoc(), diag::err_cuda_nonglobal_constant);
Justin Lebare71b2fa2016-09-30 23:57:34 +00004341 return;
4342 }
4343 D->addAttr(::new (S.Context) CUDAConstantAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004344 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Justin Lebare71b2fa2016-09-30 23:57:34 +00004345}
4346
Erich Keanee891aa92018-07-13 15:07:47 +00004347static void handleSharedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004348 if (checkAttrMutualExclusion<CUDAConstantAttr>(S, D, AL))
Justin Lebar10411012016-09-30 23:57:30 +00004349 return;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004350 const auto *VD = cast<VarDecl>(D);
Justin Lebar281ce2a2016-10-02 15:24:50 +00004351 // extern __shared__ is only allowed on arrays with no length (e.g.
4352 // "int x[]").
Yaxun Liu97670892018-10-02 17:48:54 +00004353 if (!S.getLangOpts().GPURelocatableDeviceCode && VD->hasExternalStorage() &&
Jonas Hahnfeldee47d8c2018-02-14 16:04:03 +00004354 !isa<IncompleteArrayType>(VD->getType())) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004355 S.Diag(AL.getLoc(), diag::err_cuda_extern_shared) << VD;
Justin Lebar10411012016-09-30 23:57:30 +00004356 return;
4357 }
Justin Lebaraa370bd2016-10-13 18:45:13 +00004358 if (S.getLangOpts().CUDA && VD->hasLocalStorage() &&
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004359 S.CUDADiagIfHostCode(AL.getLoc(), diag::err_cuda_host_shared)
Justin Lebaraa370bd2016-10-13 18:45:13 +00004360 << S.CurrentCUDATarget())
4361 return;
Justin Lebar10411012016-09-30 23:57:30 +00004362 D->addAttr(::new (S.Context) CUDASharedAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004363 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Justin Lebar10411012016-09-30 23:57:30 +00004364}
4365
Erich Keanee891aa92018-07-13 15:07:47 +00004366static void handleGlobalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00004367 if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, AL) ||
4368 checkAttrMutualExclusion<CUDAHostAttr>(S, D, AL)) {
Justin Lebar3eaaf862016-01-13 01:07:35 +00004369 return;
4370 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004371 const auto *FD = cast<FunctionDecl>(D);
Alp Toker314cc812014-01-25 16:55:45 +00004372 if (!FD->getReturnType()->isVoidType()) {
Alp Tokerf5b10792014-07-02 12:55:58 +00004373 SourceRange RTRange = FD->getReturnTypeSourceRange();
4374 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
Aaron Ballman3aff6332013-12-02 19:30:36 +00004375 << FD->getType()
Alp Tokerf5b10792014-07-02 12:55:58 +00004376 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
4377 : FixItHint());
Aaron Ballman3aff6332013-12-02 19:30:36 +00004378 return;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004379 }
Justin Lebarc66a1062016-01-20 00:26:57 +00004380 if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) {
4381 if (Method->isInstance()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004382 S.Diag(Method->getBeginLoc(), diag::err_kern_is_nonstatic_method)
Justin Lebarc66a1062016-01-20 00:26:57 +00004383 << Method;
4384 return;
4385 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004386 S.Diag(Method->getBeginLoc(), diag::warn_kern_is_method) << Method;
Justin Lebarc66a1062016-01-20 00:26:57 +00004387 }
4388 // Only warn for "inline" when compiling for host, to cut down on noise.
4389 if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004390 S.Diag(FD->getBeginLoc(), diag::warn_kern_is_inline) << FD;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004391
Aaron Ballman3aff6332013-12-02 19:30:36 +00004392 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004393 CUDAGlobalAttr(AL.getRange(), S.Context,
4394 AL.getAttributeSpellingListIndex()));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004395}
4396
Erich Keanee891aa92018-07-13 15:07:47 +00004397static void handleGNUInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004398 const auto *Fn = cast<FunctionDecl>(D);
Douglas Gregor35b57532009-10-27 21:01:01 +00004399 if (!Fn->isInlineSpecified()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004400 S.Diag(AL.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00004401 return;
4402 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00004403
Michael Han99315932013-01-24 16:46:58 +00004404 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004405 GNUInlineAttr(AL.getRange(), S.Context,
4406 AL.getAttributeSpellingListIndex()));
Chris Lattnereaad6b72009-04-14 16:30:50 +00004407}
4408
Erich Keanee891aa92018-07-13 15:07:47 +00004409static void handleCallConvAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004410 if (hasDeclarator(D)) return;
Abramo Bagnara50099372010-04-30 13:10:51 +00004411
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004412 // Diagnostic is emitted elsewhere: here we store the (valid) AL
John McCall3882ace2011-01-05 12:14:39 +00004413 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
4414 CallingConv CC;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004415 if (S.CheckCallingConvAttr(AL, CC, /*FD*/nullptr))
John McCall3882ace2011-01-05 12:14:39 +00004416 return;
4417
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004418 if (!isa<ObjCMethodDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004419 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00004420 << AL << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00004421 return;
4422 }
4423
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004424 switch (AL.getKind()) {
Erich Keanee891aa92018-07-13 15:07:47 +00004425 case ParsedAttr::AT_FastCall:
Michael Han99315932013-01-24 16:46:58 +00004426 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004427 FastCallAttr(AL.getRange(), S.Context,
4428 AL.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004429 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004430 case ParsedAttr::AT_StdCall:
Michael Han99315932013-01-24 16:46:58 +00004431 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004432 StdCallAttr(AL.getRange(), S.Context,
4433 AL.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004434 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004435 case ParsedAttr::AT_ThisCall:
Michael Han99315932013-01-24 16:46:58 +00004436 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004437 ThisCallAttr(AL.getRange(), S.Context,
4438 AL.getAttributeSpellingListIndex()));
Douglas Gregor4d13d102010-08-30 23:30:49 +00004439 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004440 case ParsedAttr::AT_CDecl:
Michael Han99315932013-01-24 16:46:58 +00004441 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004442 CDeclAttr(AL.getRange(), S.Context,
4443 AL.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004444 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004445 case ParsedAttr::AT_Pascal:
Michael Han99315932013-01-24 16:46:58 +00004446 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004447 PascalAttr(AL.getRange(), S.Context,
4448 AL.getAttributeSpellingListIndex()));
Dawn Perchik335e16b2010-09-03 01:29:35 +00004449 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004450 case ParsedAttr::AT_SwiftCall:
John McCall477f2bb2016-03-03 06:39:32 +00004451 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004452 SwiftCallAttr(AL.getRange(), S.Context,
4453 AL.getAttributeSpellingListIndex()));
John McCall477f2bb2016-03-03 06:39:32 +00004454 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004455 case ParsedAttr::AT_VectorCall:
Reid Klecknerd7857f02014-10-24 17:42:17 +00004456 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004457 VectorCallAttr(AL.getRange(), S.Context,
4458 AL.getAttributeSpellingListIndex()));
Reid Klecknerd7857f02014-10-24 17:42:17 +00004459 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004460 case ParsedAttr::AT_MSABI:
Charles Davisb5a214e2013-08-30 04:39:01 +00004461 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004462 MSABIAttr(AL.getRange(), S.Context,
4463 AL.getAttributeSpellingListIndex()));
Charles Davisb5a214e2013-08-30 04:39:01 +00004464 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004465 case ParsedAttr::AT_SysVABI:
Charles Davisb5a214e2013-08-30 04:39:01 +00004466 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004467 SysVABIAttr(AL.getRange(), S.Context,
4468 AL.getAttributeSpellingListIndex()));
Charles Davisb5a214e2013-08-30 04:39:01 +00004469 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004470 case ParsedAttr::AT_RegCall:
Erich Keane757d3172016-11-02 18:29:35 +00004471 D->addAttr(::new (S.Context) RegCallAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004472 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Erich Keane757d3172016-11-02 18:29:35 +00004473 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004474 case ParsedAttr::AT_Pcs: {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004475 PcsAttr::PCSType PCS;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004476 switch (CC) {
4477 case CC_AAPCS:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004478 PCS = PcsAttr::AAPCS;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004479 break;
4480 case CC_AAPCS_VFP:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004481 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004482 break;
4483 default:
4484 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004485 }
4486
Michael Han99315932013-01-24 16:46:58 +00004487 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004488 PcsAttr(AL.getRange(), S.Context, PCS,
4489 AL.getAttributeSpellingListIndex()));
Derek Schuffa2020962012-10-16 22:30:41 +00004490 return;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004491 }
Sander de Smalen44a22532018-11-26 16:38:37 +00004492 case ParsedAttr::AT_AArch64VectorPcs:
4493 D->addAttr(::new(S.Context)
4494 AArch64VectorPcsAttr(AL.getRange(), S.Context,
4495 AL.getAttributeSpellingListIndex()));
4496 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004497 case ParsedAttr::AT_IntelOclBicc:
Michael Han99315932013-01-24 16:46:58 +00004498 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004499 IntelOclBiccAttr(AL.getRange(), S.Context,
4500 AL.getAttributeSpellingListIndex()));
Guy Benyeif0a014b2012-12-25 08:53:55 +00004501 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004502 case ParsedAttr::AT_PreserveMost:
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004503 D->addAttr(::new (S.Context) PreserveMostAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004504 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004505 return;
Erich Keanee891aa92018-07-13 15:07:47 +00004506 case ParsedAttr::AT_PreserveAll:
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004507 D->addAttr(::new (S.Context) PreserveAllAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004508 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004509 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00004510 default:
4511 llvm_unreachable("unexpected attribute kind");
Abramo Bagnara50099372010-04-30 13:10:51 +00004512 }
4513}
4514
Erich Keanee891aa92018-07-13 15:07:47 +00004515static void handleSuppressAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004516 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Matthias Gehre01a63382017-03-27 19:45:24 +00004517 return;
4518
4519 std::vector<StringRef> DiagnosticIdentifiers;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004520 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
Matthias Gehre01a63382017-03-27 19:45:24 +00004521 StringRef RuleName;
4522
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004523 if (!S.checkStringLiteralArgumentAttr(AL, I, RuleName, nullptr))
Matthias Gehre01a63382017-03-27 19:45:24 +00004524 return;
4525
4526 // FIXME: Warn if the rule name is unknown. This is tricky because only
4527 // clang-tidy knows about available rules.
4528 DiagnosticIdentifiers.push_back(RuleName);
4529 }
4530 D->addAttr(::new (S.Context) SuppressAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004531 AL.getRange(), S.Context, DiagnosticIdentifiers.data(),
4532 DiagnosticIdentifiers.size(), AL.getAttributeSpellingListIndex()));
Matthias Gehre01a63382017-03-27 19:45:24 +00004533}
4534
Erich Keanee891aa92018-07-13 15:07:47 +00004535bool Sema::CheckCallingConvAttr(const ParsedAttr &Attrs, CallingConv &CC,
Aaron Ballman02df2e02012-12-09 17:45:41 +00004536 const FunctionDecl *FD) {
Erich Keaneb11ebc52017-09-27 03:20:13 +00004537 if (Attrs.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00004538 return true;
4539
Erich Keaneb11ebc52017-09-27 03:20:13 +00004540 if (Attrs.hasProcessingCache()) {
4541 CC = (CallingConv) Attrs.getProcessingCache();
John McCall3b5a8f52016-03-03 00:10:03 +00004542 return false;
4543 }
4544
Erich Keanee891aa92018-07-13 15:07:47 +00004545 unsigned ReqArgs = Attrs.getKind() == ParsedAttr::AT_Pcs ? 1 : 0;
Erich Keaneb11ebc52017-09-27 03:20:13 +00004546 if (!checkAttributeNumArgs(*this, Attrs, ReqArgs)) {
4547 Attrs.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004548 return true;
4549 }
4550
Aaron Ballmanab7691c2014-01-09 22:48:32 +00004551 // TODO: diagnose uses of these conventions on the wrong target.
Erich Keaneb11ebc52017-09-27 03:20:13 +00004552 switch (Attrs.getKind()) {
Erich Keanee891aa92018-07-13 15:07:47 +00004553 case ParsedAttr::AT_CDecl:
4554 CC = CC_C;
4555 break;
4556 case ParsedAttr::AT_FastCall:
4557 CC = CC_X86FastCall;
4558 break;
4559 case ParsedAttr::AT_StdCall:
4560 CC = CC_X86StdCall;
4561 break;
4562 case ParsedAttr::AT_ThisCall:
4563 CC = CC_X86ThisCall;
4564 break;
4565 case ParsedAttr::AT_Pascal:
4566 CC = CC_X86Pascal;
4567 break;
4568 case ParsedAttr::AT_SwiftCall:
4569 CC = CC_Swift;
4570 break;
4571 case ParsedAttr::AT_VectorCall:
4572 CC = CC_X86VectorCall;
4573 break;
Sander de Smalen44a22532018-11-26 16:38:37 +00004574 case ParsedAttr::AT_AArch64VectorPcs:
4575 CC = CC_AArch64VectorCall;
4576 break;
Erich Keanee891aa92018-07-13 15:07:47 +00004577 case ParsedAttr::AT_RegCall:
4578 CC = CC_X86RegCall;
4579 break;
4580 case ParsedAttr::AT_MSABI:
Charles Davisb5a214e2013-08-30 04:39:01 +00004581 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
Martin Storsjo022e7822017-07-17 20:49:45 +00004582 CC_Win64;
Charles Davisb5a214e2013-08-30 04:39:01 +00004583 break;
Erich Keanee891aa92018-07-13 15:07:47 +00004584 case ParsedAttr::AT_SysVABI:
Charles Davisb5a214e2013-08-30 04:39:01 +00004585 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4586 CC_C;
4587 break;
Erich Keanee891aa92018-07-13 15:07:47 +00004588 case ParsedAttr::AT_Pcs: {
Aaron Ballmand6600a52013-09-13 17:48:25 +00004589 StringRef StrRef;
Erich Keaneb11ebc52017-09-27 03:20:13 +00004590 if (!checkStringLiteralArgumentAttr(Attrs, 0, StrRef)) {
4591 Attrs.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004592 return true;
4593 }
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004594 if (StrRef == "aapcs") {
4595 CC = CC_AAPCS;
4596 break;
4597 } else if (StrRef == "aapcs-vfp") {
4598 CC = CC_AAPCS_VFP;
4599 break;
4600 }
Benjamin Kramer833fb9f2012-08-14 13:13:47 +00004601
Erich Keaneb11ebc52017-09-27 03:20:13 +00004602 Attrs.setInvalid();
4603 Diag(Attrs.getLoc(), diag::err_invalid_pcs);
Benjamin Kramer833fb9f2012-08-14 13:13:47 +00004604 return true;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004605 }
Erich Keanee891aa92018-07-13 15:07:47 +00004606 case ParsedAttr::AT_IntelOclBicc:
4607 CC = CC_IntelOclBicc;
4608 break;
4609 case ParsedAttr::AT_PreserveMost:
4610 CC = CC_PreserveMost;
4611 break;
4612 case ParsedAttr::AT_PreserveAll:
4613 CC = CC_PreserveAll;
4614 break;
David Blaikie8a40f702012-01-17 06:56:22 +00004615 default: llvm_unreachable("unexpected attribute kind");
John McCall3882ace2011-01-05 12:14:39 +00004616 }
4617
Yaxun Liufa49c3a2019-02-26 22:24:49 +00004618 TargetInfo::CallingConvCheckResult A = TargetInfo::CCCR_OK;
Aaron Ballmane91c6be2012-10-02 14:26:08 +00004619 const TargetInfo &TI = Context.getTargetInfo();
Yaxun Liu785cbd82019-02-27 15:46:29 +00004620 // CUDA functions may have host and/or device attributes which indicate
4621 // their targeted execution environment, therefore the calling convention
4622 // of functions in CUDA should be checked against the target deduced based
4623 // on their host/device attributes.
Yaxun Liufa49c3a2019-02-26 22:24:49 +00004624 if (LangOpts.CUDA) {
Yaxun Liu785cbd82019-02-27 15:46:29 +00004625 auto *Aux = Context.getAuxTargetInfo();
Yaxun Liufa49c3a2019-02-26 22:24:49 +00004626 auto CudaTarget = IdentifyCUDATarget(FD);
4627 bool CheckHost = false, CheckDevice = false;
4628 switch (CudaTarget) {
4629 case CFT_HostDevice:
4630 CheckHost = true;
4631 CheckDevice = true;
4632 break;
4633 case CFT_Host:
4634 CheckHost = true;
4635 break;
4636 case CFT_Device:
4637 case CFT_Global:
4638 CheckDevice = true;
4639 break;
4640 case CFT_InvalidTarget:
4641 llvm_unreachable("unexpected cuda target");
4642 }
4643 auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4644 auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;
4645 if (CheckHost && HostTI)
4646 A = HostTI->checkCallingConvention(CC);
4647 if (A == TargetInfo::CCCR_OK && CheckDevice && DeviceTI)
4648 A = DeviceTI->checkCallingConvention(CC);
4649 } else {
4650 A = TI.checkCallingConvention(CC);
4651 }
Reid Kleckner9fde2e02015-02-26 19:43:46 +00004652 if (A != TargetInfo::CCCR_OK) {
4653 if (A == TargetInfo::CCCR_Warning)
Erich Keane44bacdf2018-08-09 13:21:32 +00004654 Diag(Attrs.getLoc(), diag::warn_cconv_ignored) << Attrs;
Aaron Ballman02df2e02012-12-09 17:45:41 +00004655
Reid Kleckner9fde2e02015-02-26 19:43:46 +00004656 // This convention is not valid for the target. Use the default function or
4657 // method calling convention.
Alexey Bataeva7547182016-05-18 09:06:38 +00004658 bool IsCXXMethod = false, IsVariadic = false;
4659 if (FD) {
4660 IsCXXMethod = FD->isCXXInstanceMember();
4661 IsVariadic = FD->isVariadic();
4662 }
4663 CC = Context.getDefaultCallingConvention(IsVariadic, IsCXXMethod);
Aaron Ballmane91c6be2012-10-02 14:26:08 +00004664 }
4665
Erich Keaneb11ebc52017-09-27 03:20:13 +00004666 Attrs.setProcessingCache((unsigned) CC);
John McCall3882ace2011-01-05 12:14:39 +00004667 return false;
4668}
4669
John McCall477f2bb2016-03-03 06:39:32 +00004670/// Pointer-like types in the default address space.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004671static bool isValidSwiftContextType(QualType Ty) {
4672 if (!Ty->hasPointerRepresentation())
4673 return Ty->isDependentType();
4674 return Ty->getPointeeType().getAddressSpace() == LangAS::Default;
John McCall477f2bb2016-03-03 06:39:32 +00004675}
4676
4677/// Pointers and references in the default address space.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004678static bool isValidSwiftIndirectResultType(QualType Ty) {
4679 if (const auto *PtrType = Ty->getAs<PointerType>()) {
4680 Ty = PtrType->getPointeeType();
4681 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4682 Ty = RefType->getPointeeType();
John McCall477f2bb2016-03-03 06:39:32 +00004683 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004684 return Ty->isDependentType();
John McCall477f2bb2016-03-03 06:39:32 +00004685 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004686 return Ty.getAddressSpace() == LangAS::Default;
John McCall477f2bb2016-03-03 06:39:32 +00004687}
4688
4689/// Pointers and references to pointers in the default address space.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004690static bool isValidSwiftErrorResultType(QualType Ty) {
4691 if (const auto *PtrType = Ty->getAs<PointerType>()) {
4692 Ty = PtrType->getPointeeType();
4693 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4694 Ty = RefType->getPointeeType();
John McCall477f2bb2016-03-03 06:39:32 +00004695 } else {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004696 return Ty->isDependentType();
John McCall477f2bb2016-03-03 06:39:32 +00004697 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004698 if (!Ty.getQualifiers().empty())
John McCall477f2bb2016-03-03 06:39:32 +00004699 return false;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004700 return isValidSwiftContextType(Ty);
John McCall477f2bb2016-03-03 06:39:32 +00004701}
4702
Erich Keanee891aa92018-07-13 15:07:47 +00004703static void handleParameterABIAttr(Sema &S, Decl *D, const ParsedAttr &Attrs,
Erich Keaneb11ebc52017-09-27 03:20:13 +00004704 ParameterABI Abi) {
4705 S.AddParameterABIAttr(Attrs.getRange(), D, Abi,
4706 Attrs.getAttributeSpellingListIndex());
John McCall477f2bb2016-03-03 06:39:32 +00004707}
4708
4709void Sema::AddParameterABIAttr(SourceRange range, Decl *D, ParameterABI abi,
4710 unsigned spellingIndex) {
4711
4712 QualType type = cast<ParmVarDecl>(D)->getType();
4713
4714 if (auto existingAttr = D->getAttr<ParameterABIAttr>()) {
4715 if (existingAttr->getABI() != abi) {
4716 Diag(range.getBegin(), diag::err_attributes_are_not_compatible)
4717 << getParameterABISpelling(abi) << existingAttr;
4718 Diag(existingAttr->getLocation(), diag::note_conflicting_attribute);
4719 return;
4720 }
4721 }
4722
4723 switch (abi) {
4724 case ParameterABI::Ordinary:
4725 llvm_unreachable("explicit attribute for ordinary parameter ABI?");
4726
4727 case ParameterABI::SwiftContext:
4728 if (!isValidSwiftContextType(type)) {
4729 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4730 << getParameterABISpelling(abi)
4731 << /*pointer to pointer */ 0 << type;
4732 }
4733 D->addAttr(::new (Context)
4734 SwiftContextAttr(range, Context, spellingIndex));
4735 return;
4736
4737 case ParameterABI::SwiftErrorResult:
4738 if (!isValidSwiftErrorResultType(type)) {
4739 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4740 << getParameterABISpelling(abi)
4741 << /*pointer to pointer */ 1 << type;
4742 }
4743 D->addAttr(::new (Context)
4744 SwiftErrorResultAttr(range, Context, spellingIndex));
4745 return;
4746
4747 case ParameterABI::SwiftIndirectResult:
4748 if (!isValidSwiftIndirectResultType(type)) {
4749 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4750 << getParameterABISpelling(abi)
4751 << /*pointer*/ 0 << type;
4752 }
4753 D->addAttr(::new (Context)
4754 SwiftIndirectResultAttr(range, Context, spellingIndex));
4755 return;
4756 }
4757 llvm_unreachable("bad parameter ABI attribute");
4758}
4759
John McCall3882ace2011-01-05 12:14:39 +00004760/// Checks a regparm attribute, returning true if it is ill-formed and
4761/// otherwise setting numParams to the appropriate value.
Erich Keanee891aa92018-07-13 15:07:47 +00004762bool Sema::CheckRegparmAttr(const ParsedAttr &AL, unsigned &numParams) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004763 if (AL.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00004764 return true;
4765
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004766 if (!checkAttributeNumArgs(*this, AL, 1)) {
4767 AL.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004768 return true;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00004769 }
Eli Friedman7044b762009-03-27 21:06:47 +00004770
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00004771 uint32_t NP;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004772 Expr *NumParamsExpr = AL.getArgAsExpr(0);
4773 if (!checkUInt32Argument(*this, AL, NumParamsExpr, NP)) {
4774 AL.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004775 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004776 }
4777
Douglas Gregore8bbc122011-09-02 00:18:52 +00004778 if (Context.getTargetInfo().getRegParmMax() == 0) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004779 Diag(AL.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00004780 << NumParamsExpr->getSourceRange();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004781 AL.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004782 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004783 }
4784
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00004785 numParams = NP;
Douglas Gregore8bbc122011-09-02 00:18:52 +00004786 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004787 Diag(AL.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregore8bbc122011-09-02 00:18:52 +00004788 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004789 AL.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004790 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004791 }
4792
John McCall3882ace2011-01-05 12:14:39 +00004793 return false;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00004794}
4795
Artem Belevichbcec9da2016-06-06 22:54:57 +00004796// Checks whether an argument of launch_bounds attribute is
4797// acceptable, performs implicit conversion to Rvalue, and returns
4798// non-nullptr Expr result on success. Otherwise, it returns nullptr
4799// and may output an error.
4800static Expr *makeLaunchBoundsArgExpr(Sema &S, Expr *E,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004801 const CUDALaunchBoundsAttr &AL,
Artem Belevichbcec9da2016-06-06 22:54:57 +00004802 const unsigned Idx) {
Artem Belevich7093e402015-04-21 22:55:54 +00004803 if (S.DiagnoseUnexpandedParameterPack(E))
Artem Belevichbcec9da2016-06-06 22:54:57 +00004804 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004805
4806 // Accept template arguments for now as they depend on something else.
4807 // We'll get to check them when they eventually get instantiated.
4808 if (E->isValueDependent())
Artem Belevichbcec9da2016-06-06 22:54:57 +00004809 return E;
Artem Belevich7093e402015-04-21 22:55:54 +00004810
4811 llvm::APSInt I(64);
4812 if (!E->isIntegerConstantExpr(I, S.Context)) {
4813 S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004814 << &AL << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange();
Artem Belevichbcec9da2016-06-06 22:54:57 +00004815 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004816 }
4817 // Make sure we can fit it in 32 bits.
4818 if (!I.isIntN(32)) {
4819 S.Diag(E->getExprLoc(), diag::err_ice_too_large) << I.toString(10, false)
4820 << 32 << /* Unsigned */ 1;
Artem Belevichbcec9da2016-06-06 22:54:57 +00004821 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004822 }
4823 if (I < 0)
4824 S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004825 << &AL << Idx << E->getSourceRange();
Artem Belevich7093e402015-04-21 22:55:54 +00004826
Artem Belevichbcec9da2016-06-06 22:54:57 +00004827 // We may need to perform implicit conversion of the argument.
4828 InitializedEntity Entity = InitializedEntity::InitializeParameter(
4829 S.Context, S.Context.getConstType(S.Context.IntTy), /*consume*/ false);
4830 ExprResult ValArg = S.PerformCopyInitialization(Entity, SourceLocation(), E);
4831 assert(!ValArg.isInvalid() &&
4832 "Unexpected PerformCopyInitialization() failure.");
4833
4834 return ValArg.getAs<Expr>();
Artem Belevich7093e402015-04-21 22:55:54 +00004835}
4836
4837void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads,
4838 Expr *MinBlocks, unsigned SpellingListIndex) {
4839 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks,
4840 SpellingListIndex);
Artem Belevichbcec9da2016-06-06 22:54:57 +00004841 MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0);
4842 if (MaxThreads == nullptr)
Aaron Ballman3aff6332013-12-02 19:30:36 +00004843 return;
4844
Artem Belevichbcec9da2016-06-06 22:54:57 +00004845 if (MinBlocks) {
4846 MinBlocks = makeLaunchBoundsArgExpr(*this, MinBlocks, TmpAttr, 1);
4847 if (MinBlocks == nullptr)
4848 return;
4849 }
Artem Belevich7093e402015-04-21 22:55:54 +00004850
4851 D->addAttr(::new (Context) CUDALaunchBoundsAttr(
4852 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex));
4853}
4854
Erich Keanee891aa92018-07-13 15:07:47 +00004855static void handleLaunchBoundsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004856 if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
4857 !checkAttributeAtMostNumArgs(S, AL, 2))
Artem Belevich7093e402015-04-21 22:55:54 +00004858 return;
4859
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004860 S.AddLaunchBoundsAttr(AL.getRange(), D, AL.getArgAsExpr(0),
4861 AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr,
4862 AL.getAttributeSpellingListIndex());
Peter Collingbourne827301e2010-12-12 23:03:07 +00004863}
4864
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004865static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00004866 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004867 if (!AL.isArgIdent(0)) {
4868 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00004869 << AL << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004870 return;
4871 }
Joel E. Denny81508102018-03-13 14:51:22 +00004872
4873 ParamIdx ArgumentIdx;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004874 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 2, AL.getArgAsExpr(1),
Alp Toker601b22c2014-01-21 23:35:24 +00004875 ArgumentIdx))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004876 return;
4877
Joel E. Denny81508102018-03-13 14:51:22 +00004878 ParamIdx TypeTagIdx;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004879 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 3, AL.getArgAsExpr(2),
Alp Toker601b22c2014-01-21 23:35:24 +00004880 TypeTagIdx))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004881 return;
4882
Aaron Ballmana26d8ee2018-02-25 14:01:04 +00004883 bool IsPointer = AL.getName()->getName() == "pointer_with_type_tag";
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004884 if (IsPointer) {
4885 // Ensure that buffer has a pointer type.
Joel E. Denny81508102018-03-13 14:51:22 +00004886 unsigned ArgumentIdxAST = ArgumentIdx.getASTIndex();
4887 if (ArgumentIdxAST >= getFunctionOrMethodNumParams(D) ||
4888 !getFunctionOrMethodParamType(D, ArgumentIdxAST)->isPointerType())
Erich Keane44bacdf2018-08-09 13:21:32 +00004889 S.Diag(AL.getLoc(), diag::err_attribute_pointers_only) << AL << 0;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004890 }
4891
Aaron Ballmana26d8ee2018-02-25 14:01:04 +00004892 D->addAttr(::new (S.Context) ArgumentWithTypeTagAttr(
4893 AL.getRange(), S.Context, AL.getArgAsIdent(0)->Ident, ArgumentIdx,
4894 TypeTagIdx, IsPointer, AL.getAttributeSpellingListIndex()));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004895}
4896
4897static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00004898 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004899 if (!AL.isArgIdent(0)) {
4900 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00004901 << AL << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004902 return;
4903 }
Fangrui Song6907ce22018-07-30 19:24:48 +00004904
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004905 if (!checkAttributeNumArgs(S, AL, 1))
Aaron Ballman00e99962013-08-31 01:11:41 +00004906 return;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004907
Aaron Ballman90f8c6f2013-11-25 18:50:49 +00004908 if (!isa<VarDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004909 S.Diag(AL.getLoc(), diag::err_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00004910 << AL << ExpectedVariable;
Aaron Ballman90f8c6f2013-11-25 18:50:49 +00004911 return;
4912 }
4913
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004914 IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident;
Craig Topperc3ec1492014-05-26 06:22:03 +00004915 TypeSourceInfo *MatchingCTypeLoc = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004916 S.GetTypeFromParser(AL.getMatchingCType(), &MatchingCTypeLoc);
Richard Smithb87c4652013-10-31 21:23:20 +00004917 assert(MatchingCTypeLoc && "no type source info for attribute argument");
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004918
Michael Han99315932013-01-24 16:46:58 +00004919 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004920 TypeTagForDatatypeAttr(AL.getRange(), S.Context, PointerKind,
Richard Smithb87c4652013-10-31 21:23:20 +00004921 MatchingCTypeLoc,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004922 AL.getLayoutCompatible(),
4923 AL.getMustBeNull(),
4924 AL.getAttributeSpellingListIndex()));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004925}
4926
Erich Keanee891aa92018-07-13 15:07:47 +00004927static void handleXRayLogArgsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Joel E. Denny81508102018-03-13 14:51:22 +00004928 ParamIdx ArgCount;
Dean Michael Berris7456a282017-06-16 03:22:09 +00004929
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004930 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, AL.getArgAsExpr(0),
Dean Michael Berris7456a282017-06-16 03:22:09 +00004931 ArgCount,
Joel E. Denny81508102018-03-13 14:51:22 +00004932 true /* CanIndexImplicitThis */))
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004933 return;
4934
Joel E. Denny81508102018-03-13 14:51:22 +00004935 // ArgCount isn't a parameter index [0;n), it's a count [1;n]
4936 D->addAttr(::new (S.Context) XRayLogArgsAttr(
4937 AL.getRange(), S.Context, ArgCount.getSourceIndex(),
4938 AL.getAttributeSpellingListIndex()));
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004939}
4940
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004941//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004942// Checker-specific attribute handlers.
4943//===----------------------------------------------------------------------===//
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004944static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType QT) {
4945 return QT->isDependentType() || QT->isObjCRetainableType();
Fariborz Jahanian9c100322014-06-11 21:22:53 +00004946}
4947
George Karpenkov1657f362018-11-30 02:18:37 +00004948static bool isValidSubjectOfNSAttribute(QualType QT) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004949 return QT->isDependentType() || QT->isObjCObjectPointerType() ||
George Karpenkov1657f362018-11-30 02:18:37 +00004950 QT->isObjCNSObjectType();
John McCalled433932011-01-25 03:31:58 +00004951}
Eugene Zelenko1ced5092016-02-12 22:53:10 +00004952
George Karpenkov1657f362018-11-30 02:18:37 +00004953static bool isValidSubjectOfCFAttribute(QualType QT) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00004954 return QT->isDependentType() || QT->isPointerType() ||
George Karpenkov1657f362018-11-30 02:18:37 +00004955 isValidSubjectOfNSAttribute(QT);
John McCalled433932011-01-25 03:31:58 +00004956}
4957
George Karpenkov1657f362018-11-30 02:18:37 +00004958static bool isValidSubjectOfOSAttribute(QualType QT) {
George Karpenkov3a50a9f2019-01-11 18:02:08 +00004959 if (QT->isDependentType())
4960 return true;
4961 QualType PT = QT->getPointeeType();
4962 return !PT.isNull() && PT->getAsCXXRecordDecl() != nullptr;
John McCall3b5a8f52016-03-03 00:10:03 +00004963}
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004964
George Karpenkov1657f362018-11-30 02:18:37 +00004965void Sema::AddXConsumedAttr(Decl *D, SourceRange SR, unsigned SpellingIndex,
4966 RetainOwnershipKind K,
4967 bool IsTemplateInstantiation) {
4968 ValueDecl *VD = cast<ValueDecl>(D);
4969 switch (K) {
4970 case RetainOwnershipKind::OS:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00004971 handleSimpleAttributeOrDiagnose<OSConsumedAttr>(
4972 *this, VD, SR, SpellingIndex, isValidSubjectOfOSAttribute(VD->getType()),
George Karpenkov1657f362018-11-30 02:18:37 +00004973 diag::warn_ns_attribute_wrong_parameter_type,
4974 /*ExtraArgs=*/SR, "os_consumed", /*pointers*/ 1);
4975 return;
4976 case RetainOwnershipKind::NS:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00004977 handleSimpleAttributeOrDiagnose<NSConsumedAttr>(
4978 *this, VD, SR, SpellingIndex, isValidSubjectOfNSAttribute(VD->getType()),
John McCall3b5a8f52016-03-03 00:10:03 +00004979
George Karpenkov1657f362018-11-30 02:18:37 +00004980 // These attributes are normally just advisory, but in ARC, ns_consumed
4981 // is significant. Allow non-dependent code to contain inappropriate
4982 // attributes even in ARC, but require template instantiations to be
4983 // set up correctly.
4984 ((IsTemplateInstantiation && getLangOpts().ObjCAutoRefCount)
4985 ? diag::err_ns_attribute_wrong_parameter_type
4986 : diag::warn_ns_attribute_wrong_parameter_type),
4987 /*ExtraArgs=*/SR, "ns_consumed", /*objc pointers*/ 0);
4988 return;
4989 case RetainOwnershipKind::CF:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00004990 handleSimpleAttributeOrDiagnose<CFConsumedAttr>(
George Karpenkov1657f362018-11-30 02:18:37 +00004991 *this, VD, SR, SpellingIndex,
George Karpenkov3a50a9f2019-01-11 18:02:08 +00004992 isValidSubjectOfCFAttribute(VD->getType()),
George Karpenkov1657f362018-11-30 02:18:37 +00004993 diag::warn_ns_attribute_wrong_parameter_type,
4994 /*ExtraArgs=*/SR, "cf_consumed", /*pointers*/1);
John McCalled433932011-01-25 03:31:58 +00004995 return;
4996 }
George Karpenkov1657f362018-11-30 02:18:37 +00004997}
John McCalled433932011-01-25 03:31:58 +00004998
George Karpenkov1657f362018-11-30 02:18:37 +00004999static Sema::RetainOwnershipKind
5000parsedAttrToRetainOwnershipKind(const ParsedAttr &AL) {
5001 switch (AL.getKind()) {
5002 case ParsedAttr::AT_CFConsumed:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005003 case ParsedAttr::AT_CFReturnsRetained:
5004 case ParsedAttr::AT_CFReturnsNotRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005005 return Sema::RetainOwnershipKind::CF;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005006 case ParsedAttr::AT_OSConsumesThis:
George Karpenkov1657f362018-11-30 02:18:37 +00005007 case ParsedAttr::AT_OSConsumed:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005008 case ParsedAttr::AT_OSReturnsRetained:
5009 case ParsedAttr::AT_OSReturnsNotRetained:
5010 case ParsedAttr::AT_OSReturnsRetainedOnZero:
5011 case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
George Karpenkov1657f362018-11-30 02:18:37 +00005012 return Sema::RetainOwnershipKind::OS;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005013 case ParsedAttr::AT_NSConsumesSelf:
George Karpenkov1657f362018-11-30 02:18:37 +00005014 case ParsedAttr::AT_NSConsumed:
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005015 case ParsedAttr::AT_NSReturnsRetained:
5016 case ParsedAttr::AT_NSReturnsNotRetained:
5017 case ParsedAttr::AT_NSReturnsAutoreleased:
George Karpenkov1657f362018-11-30 02:18:37 +00005018 return Sema::RetainOwnershipKind::NS;
5019 default:
5020 llvm_unreachable("Wrong argument supplied");
5021 }
John McCalled433932011-01-25 03:31:58 +00005022}
5023
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005024bool Sema::checkNSReturnsRetainedReturnType(SourceLocation Loc, QualType QT) {
5025 if (isValidSubjectOfNSReturnsRetainedAttribute(QT))
John McCall12251882017-07-15 11:06:46 +00005026 return false;
5027
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005028 Diag(Loc, diag::warn_ns_attribute_wrong_return_type)
5029 << "'ns_returns_retained'" << 0 << 0;
John McCall12251882017-07-15 11:06:46 +00005030 return true;
5031}
5032
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005033/// \return whether the parameter is a pointer to OSObject pointer.
5034static bool isValidOSObjectOutParameter(const Decl *D) {
5035 const auto *PVD = dyn_cast<ParmVarDecl>(D);
5036 if (!PVD)
5037 return false;
5038 QualType QT = PVD->getType();
5039 QualType PT = QT->getPointeeType();
5040 return !PT.isNull() && isValidSubjectOfOSAttribute(PT);
5041}
5042
George Karpenkov1657f362018-11-30 02:18:37 +00005043static void handleXReturnsXRetainedAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005044 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005045 QualType ReturnType;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005046 Sema::RetainOwnershipKind K = parsedAttrToRetainOwnershipKind(AL);
Mike Stumpd3bb5572009-07-24 19:02:52 +00005047
George Karpenkov1657f362018-11-30 02:18:37 +00005048 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005049 ReturnType = MD->getReturnType();
George Karpenkov1657f362018-11-30 02:18:37 +00005050 } else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
5051 (AL.getKind() == ParsedAttr::AT_NSReturnsRetained)) {
John McCall31168b02011-06-15 23:02:42 +00005052 return; // ignore: was handled as a type attribute
George Karpenkov1657f362018-11-30 02:18:37 +00005053 } else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005054 ReturnType = PD->getType();
George Karpenkov1657f362018-11-30 02:18:37 +00005055 } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005056 ReturnType = FD->getReturnType();
George Karpenkov1657f362018-11-30 02:18:37 +00005057 } else if (const auto *Param = dyn_cast<ParmVarDecl>(D)) {
5058 // Attributes on parameters are used for out-parameters,
5059 // passed as pointers-to-pointers.
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005060 unsigned DiagID = K == Sema::RetainOwnershipKind::CF
5061 ? /*pointer-to-CF-pointer*/2
5062 : /*pointer-to-OSObject-pointer*/3;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005063 ReturnType = Param->getType()->getPointeeType();
5064 if (ReturnType.isNull()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005065 S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005066 << AL << DiagID << AL.getRange();
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005067 return;
5068 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005069 } else if (AL.isUsedAsTypeAttr()) {
John McCall12251882017-07-15 11:06:46 +00005070 return;
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005071 } else {
5072 AttributeDeclKind ExpectedDeclKind;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005073 switch (AL.getKind()) {
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005074 default: llvm_unreachable("invalid ownership attribute");
Erich Keanee891aa92018-07-13 15:07:47 +00005075 case ParsedAttr::AT_NSReturnsRetained:
5076 case ParsedAttr::AT_NSReturnsAutoreleased:
5077 case ParsedAttr::AT_NSReturnsNotRetained:
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005078 ExpectedDeclKind = ExpectedFunctionOrMethod;
5079 break;
5080
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005081 case ParsedAttr::AT_OSReturnsRetained:
5082 case ParsedAttr::AT_OSReturnsNotRetained:
Erich Keanee891aa92018-07-13 15:07:47 +00005083 case ParsedAttr::AT_CFReturnsRetained:
5084 case ParsedAttr::AT_CFReturnsNotRetained:
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005085 ExpectedDeclKind = ExpectedFunctionMethodOrParameter;
5086 break;
5087 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005088 S.Diag(D->getBeginLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005089 << AL.getRange() << AL << ExpectedDeclKind;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00005090 return;
5091 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00005092
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005093 bool TypeOK;
5094 bool Cf;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005095 unsigned ParmDiagID = 2; // Pointer-to-CF-pointer
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005096 switch (AL.getKind()) {
David Blaikie8a40f702012-01-17 06:56:22 +00005097 default: llvm_unreachable("invalid ownership attribute");
Erich Keanee891aa92018-07-13 15:07:47 +00005098 case ParsedAttr::AT_NSReturnsRetained:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005099 TypeOK = isValidSubjectOfNSReturnsRetainedAttribute(ReturnType);
5100 Cf = false;
Fariborz Jahanian9c100322014-06-11 21:22:53 +00005101 break;
Erich Keanee891aa92018-07-13 15:07:47 +00005102
5103 case ParsedAttr::AT_NSReturnsAutoreleased:
5104 case ParsedAttr::AT_NSReturnsNotRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005105 TypeOK = isValidSubjectOfNSAttribute(ReturnType);
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005106 Cf = false;
John McCalled433932011-01-25 03:31:58 +00005107 break;
5108
Erich Keanee891aa92018-07-13 15:07:47 +00005109 case ParsedAttr::AT_CFReturnsRetained:
5110 case ParsedAttr::AT_CFReturnsNotRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005111 TypeOK = isValidSubjectOfCFAttribute(ReturnType);
5112 Cf = true;
5113 break;
5114
5115 case ParsedAttr::AT_OSReturnsRetained:
5116 case ParsedAttr::AT_OSReturnsNotRetained:
5117 TypeOK = isValidSubjectOfOSAttribute(ReturnType);
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005118 Cf = true;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005119 ParmDiagID = 3; // Pointer-to-OSObject-pointer
John McCalled433932011-01-25 03:31:58 +00005120 break;
5121 }
5122
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005123 if (!TypeOK) {
5124 if (AL.isUsedAsTypeAttr())
John McCall12251882017-07-15 11:06:46 +00005125 return;
5126
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005127 if (isa<ParmVarDecl>(D)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005128 S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
George Karpenkov3a50a9f2019-01-11 18:02:08 +00005129 << AL << ParmDiagID << AL.getRange();
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005130 } else {
5131 // Needs to be kept in sync with warn_ns_attribute_wrong_return_type.
5132 enum : unsigned {
5133 Function,
5134 Method,
5135 Property
5136 } SubjectKind = Function;
5137 if (isa<ObjCMethodDecl>(D))
5138 SubjectKind = Method;
5139 else if (isa<ObjCPropertyDecl>(D))
5140 SubjectKind = Property;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005141 S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005142 << AL << SubjectKind << Cf << AL.getRange();
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00005143 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00005144 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00005145 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00005146
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005147 switch (AL.getKind()) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00005148 default:
David Blaikie83d382b2011-09-23 05:06:16 +00005149 llvm_unreachable("invalid ownership attribute");
Erich Keanee891aa92018-07-13 15:07:47 +00005150 case ParsedAttr::AT_NSReturnsAutoreleased:
George Karpenkov1657f362018-11-30 02:18:37 +00005151 handleSimpleAttribute<NSReturnsAutoreleasedAttr>(S, D, AL);
John McCalled433932011-01-25 03:31:58 +00005152 return;
Erich Keanee891aa92018-07-13 15:07:47 +00005153 case ParsedAttr::AT_CFReturnsNotRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005154 handleSimpleAttribute<CFReturnsNotRetainedAttr>(S, D, AL);
Ted Kremenekd9c66632010-02-18 00:05:45 +00005155 return;
Erich Keanee891aa92018-07-13 15:07:47 +00005156 case ParsedAttr::AT_NSReturnsNotRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005157 handleSimpleAttribute<NSReturnsNotRetainedAttr>(S, D, AL);
Ted Kremenekd9c66632010-02-18 00:05:45 +00005158 return;
Erich Keanee891aa92018-07-13 15:07:47 +00005159 case ParsedAttr::AT_CFReturnsRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005160 handleSimpleAttribute<CFReturnsRetainedAttr>(S, D, AL);
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00005161 return;
Erich Keanee891aa92018-07-13 15:07:47 +00005162 case ParsedAttr::AT_NSReturnsRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00005163 handleSimpleAttribute<NSReturnsRetainedAttr>(S, D, AL);
5164 return;
5165 case ParsedAttr::AT_OSReturnsRetained:
5166 handleSimpleAttribute<OSReturnsRetainedAttr>(S, D, AL);
5167 return;
5168 case ParsedAttr::AT_OSReturnsNotRetained:
5169 handleSimpleAttribute<OSReturnsNotRetainedAttr>(S, D, AL);
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00005170 return;
5171 };
5172}
5173
John McCallcf166702011-07-22 08:53:00 +00005174static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005175 const ParsedAttr &Attrs) {
Fariborz Jahanian8bf05562013-09-19 17:52:50 +00005176 const int EP_ObjCMethod = 1;
5177 const int EP_ObjCProperty = 2;
Fangrui Song6907ce22018-07-30 19:24:48 +00005178
Erich Keaneb11ebc52017-09-27 03:20:13 +00005179 SourceLocation loc = Attrs.getLoc();
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00005180 QualType resultType;
Aaron Ballman74eeeae2013-11-27 13:27:02 +00005181 if (isa<ObjCMethodDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00005182 resultType = cast<ObjCMethodDecl>(D)->getReturnType();
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00005183 else
Aaron Ballman74eeeae2013-11-27 13:27:02 +00005184 resultType = cast<ObjCPropertyDecl>(D)->getType();
John McCallcf166702011-07-22 08:53:00 +00005185
Fariborz Jahanian044a5be2011-09-30 20:50:23 +00005186 if (!resultType->isReferenceType() &&
5187 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005188 S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005189 << SourceRange(loc) << Attrs
5190 << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty)
5191 << /*non-retainable pointer*/ 2;
John McCallcf166702011-07-22 08:53:00 +00005192
5193 // Drop the attribute.
5194 return;
5195 }
5196
Nico Weber462fd1e2015-01-07 23:50:05 +00005197 D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr(
Erich Keaneb11ebc52017-09-27 03:20:13 +00005198 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
John McCallcf166702011-07-22 08:53:00 +00005199}
5200
Fariborz Jahanian566fff02012-09-07 23:46:23 +00005201static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005202 const ParsedAttr &Attrs) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005203 const auto *Method = cast<ObjCMethodDecl>(D);
5204
5205 const DeclContext *DC = Method->getDeclContext();
5206 if (const auto *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005207 S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
Erich Keane44bacdf2018-08-09 13:21:32 +00005208 << 0;
Fariborz Jahanian566fff02012-09-07 23:46:23 +00005209 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
5210 return;
5211 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005212 if (Method->getMethodFamily() == OMF_dealloc) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005213 S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
Erich Keane44bacdf2018-08-09 13:21:32 +00005214 << 1;
Fariborz Jahanian566fff02012-09-07 23:46:23 +00005215 return;
5216 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005217
5218 D->addAttr(::new (S.Context) ObjCRequiresSuperAttr(
5219 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
Fariborz Jahanian566fff02012-09-07 23:46:23 +00005220}
5221
Erich Keanee891aa92018-07-13 15:07:47 +00005222static void handleObjCBridgeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005223 IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
Ted Kremenek2d3379e2013-11-21 07:20:34 +00005224
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00005225 if (!Parm) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005226 S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00005227 return;
5228 }
John McCall28592582015-02-01 22:34:06 +00005229
5230 // Typedefs only allow objc_bridge(id) and have some additional checking.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005231 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCall28592582015-02-01 22:34:06 +00005232 if (!Parm->Ident->isStr("id")) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005233 S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_id) << AL;
John McCall28592582015-02-01 22:34:06 +00005234 return;
5235 }
5236
5237 // Only allow 'cv void *'.
5238 QualType T = TD->getUnderlyingType();
5239 if (!T->isVoidPointerType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005240 S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_void_pointer);
John McCall28592582015-02-01 22:34:06 +00005241 return;
5242 }
5243 }
Fangrui Song6907ce22018-07-30 19:24:48 +00005244
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00005245 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005246 ObjCBridgeAttr(AL.getRange(), S.Context, Parm->Ident,
5247 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00005248}
5249
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005250static void handleObjCBridgeMutableAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005251 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005252 IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
Craig Topperc3ec1492014-05-26 06:22:03 +00005253
Fariborz Jahanian87c77912013-11-21 20:50:32 +00005254 if (!Parm) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005255 S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
Fariborz Jahanian87c77912013-11-21 20:50:32 +00005256 return;
5257 }
Fangrui Song6907ce22018-07-30 19:24:48 +00005258
Fariborz Jahanian87c77912013-11-21 20:50:32 +00005259 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005260 ObjCBridgeMutableAttr(AL.getRange(), S.Context, Parm->Ident,
5261 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian87c77912013-11-21 20:50:32 +00005262}
5263
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005264static void handleObjCBridgeRelatedAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005265 const ParsedAttr &AL) {
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005266 IdentifierInfo *RelatedClass =
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005267 AL.isArgIdent(0) ? AL.getArgAsIdent(0)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005268 if (!RelatedClass) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005269 S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005270 return;
5271 }
5272 IdentifierInfo *ClassMethod =
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005273 AL.getArgAsIdent(1) ? AL.getArgAsIdent(1)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005274 IdentifierInfo *InstanceMethod =
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005275 AL.getArgAsIdent(2) ? AL.getArgAsIdent(2)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005276 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005277 ObjCBridgeRelatedAttr(AL.getRange(), S.Context, RelatedClass,
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005278 ClassMethod, InstanceMethod,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005279 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00005280}
5281
Argyrios Kyrtzidisd1438b42013-12-03 21:11:25 +00005282static void handleObjCDesignatedInitializer(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005283 const ParsedAttr &AL) {
Erik Pilkington81d3f452019-02-13 20:32:37 +00005284 DeclContext *Ctx = D->getDeclContext();
5285
5286 // This attribute can only be applied to methods in interfaces or class
5287 // extensions.
5288 if (!isa<ObjCInterfaceDecl>(Ctx) &&
5289 !(isa<ObjCCategoryDecl>(Ctx) &&
5290 cast<ObjCCategoryDecl>(Ctx)->IsClassExtension())) {
5291 S.Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
5292 return;
5293 }
5294
Fariborz Jahanian6efab6e2014-03-14 18:19:46 +00005295 ObjCInterfaceDecl *IFace;
Erik Pilkington81d3f452019-02-13 20:32:37 +00005296 if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(Ctx))
Fariborz Jahanian6efab6e2014-03-14 18:19:46 +00005297 IFace = CatDecl->getClassInterface();
5298 else
Erik Pilkington81d3f452019-02-13 20:32:37 +00005299 IFace = cast<ObjCInterfaceDecl>(Ctx);
Ben Langmuirc91ac9e2015-01-20 20:41:36 +00005300
5301 if (!IFace)
5302 return;
5303
Argyrios Kyrtzidis9ed9e5f2013-12-03 21:11:30 +00005304 IFace->setHasDesignatedInitializers();
Argyrios Kyrtzidise8186812013-12-07 06:08:04 +00005305 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005306 ObjCDesignatedInitializerAttr(AL.getRange(), S.Context,
5307 AL.getAttributeSpellingListIndex()));
Argyrios Kyrtzidisd1438b42013-12-03 21:11:25 +00005308}
5309
Erich Keanee891aa92018-07-13 15:07:47 +00005310static void handleObjCRuntimeName(Sema &S, Decl *D, const ParsedAttr &AL) {
Fariborz Jahaniana2e5deb2014-07-16 19:44:34 +00005311 StringRef MetaDataName;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005312 if (!S.checkStringLiteralArgumentAttr(AL, 0, MetaDataName))
Fariborz Jahaniana2e5deb2014-07-16 19:44:34 +00005313 return;
5314 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005315 ObjCRuntimeNameAttr(AL.getRange(), S.Context,
Fariborz Jahaniana2e5deb2014-07-16 19:44:34 +00005316 MetaDataName,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005317 AL.getAttributeSpellingListIndex()));
Fariborz Jahanian451b92a2014-07-16 16:16:04 +00005318}
5319
Nico Webera6916892016-06-10 18:53:04 +00005320// When a user wants to use objc_boxable with a union or struct
5321// but they don't have access to the declaration (legacy/third-party code)
5322// then they can 'enable' this feature with a typedef:
Alex Denisovfde64952015-06-26 05:28:36 +00005323// typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct;
Erich Keanee891aa92018-07-13 15:07:47 +00005324static void handleObjCBoxable(Sema &S, Decl *D, const ParsedAttr &AL) {
Alex Denisovfde64952015-06-26 05:28:36 +00005325 bool notify = false;
5326
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005327 auto *RD = dyn_cast<RecordDecl>(D);
Alex Denisovfde64952015-06-26 05:28:36 +00005328 if (RD && RD->getDefinition()) {
5329 RD = RD->getDefinition();
5330 notify = true;
5331 }
5332
5333 if (RD) {
5334 ObjCBoxableAttr *BoxableAttr = ::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005335 ObjCBoxableAttr(AL.getRange(), S.Context,
5336 AL.getAttributeSpellingListIndex());
Alex Denisovfde64952015-06-26 05:28:36 +00005337 RD->addAttr(BoxableAttr);
5338 if (notify) {
5339 // we need to notify ASTReader/ASTWriter about
5340 // modification of existing declaration
5341 if (ASTMutationListener *L = S.getASTMutationListener())
5342 L->AddedAttributeToRecord(BoxableAttr, RD);
5343 }
5344 }
5345}
5346
Erich Keanee891aa92018-07-13 15:07:47 +00005347static void handleObjCOwnershipAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005348 if (hasDeclarator(D)) return;
John McCall31168b02011-06-15 23:02:42 +00005349
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005350 S.Diag(D->getBeginLoc(), diag::err_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005351 << AL.getRange() << AL << ExpectedVariable;
John McCall31168b02011-06-15 23:02:42 +00005352}
5353
Chandler Carruthedc2c642011-07-02 00:01:44 +00005354static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00005355 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005356 const auto *VD = cast<ValueDecl>(D);
5357 QualType QT = VD->getType();
John McCall31168b02011-06-15 23:02:42 +00005358
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005359 if (!QT->isDependentType() &&
5360 !QT->isObjCLifetimeType()) {
5361 S.Diag(AL.getLoc(), diag::err_objc_precise_lifetime_bad_type)
5362 << QT;
John McCall31168b02011-06-15 23:02:42 +00005363 return;
5364 }
5365
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005366 Qualifiers::ObjCLifetime Lifetime = QT.getObjCLifetime();
John McCall31168b02011-06-15 23:02:42 +00005367
5368 // If we have no lifetime yet, check the lifetime we're presumably
5369 // going to infer.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005370 if (Lifetime == Qualifiers::OCL_None && !QT->isDependentType())
5371 Lifetime = QT->getObjCARCImplicitLifetime();
John McCall31168b02011-06-15 23:02:42 +00005372
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005373 switch (Lifetime) {
John McCall31168b02011-06-15 23:02:42 +00005374 case Qualifiers::OCL_None:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005375 assert(QT->isDependentType() &&
John McCall31168b02011-06-15 23:02:42 +00005376 "didn't infer lifetime for non-dependent type?");
5377 break;
5378
5379 case Qualifiers::OCL_Weak: // meaningful
5380 case Qualifiers::OCL_Strong: // meaningful
5381 break;
5382
5383 case Qualifiers::OCL_ExplicitNone:
5384 case Qualifiers::OCL_Autoreleasing:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005385 S.Diag(AL.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
5386 << (Lifetime == Qualifiers::OCL_Autoreleasing);
John McCall31168b02011-06-15 23:02:42 +00005387 break;
5388 }
5389
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005390 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005391 ObjCPreciseLifetimeAttr(AL.getRange(), S.Context,
5392 AL.getAttributeSpellingListIndex()));
John McCall31168b02011-06-15 23:02:42 +00005393}
5394
Francois Picheta83957a2010-12-19 06:50:37 +00005395//===----------------------------------------------------------------------===//
5396// Microsoft specific attribute handlers.
5397//===----------------------------------------------------------------------===//
5398
Nico Weber88f5ed92016-09-13 18:55:26 +00005399UuidAttr *Sema::mergeUuidAttr(Decl *D, SourceRange Range,
5400 unsigned AttrSpellingListIndex, StringRef Uuid) {
5401 if (const auto *UA = D->getAttr<UuidAttr>()) {
Nico Weberd58c2602016-09-14 01:16:54 +00005402 if (UA->getGuid().equals_lower(Uuid))
Nico Weber88f5ed92016-09-13 18:55:26 +00005403 return nullptr;
5404 Diag(UA->getLocation(), diag::err_mismatched_uuid);
5405 Diag(Range.getBegin(), diag::note_previous_uuid);
5406 D->dropAttr<UuidAttr>();
5407 }
5408
5409 return ::new (Context) UuidAttr(Range, Context, Uuid, AttrSpellingListIndex);
5410}
5411
Erich Keanee891aa92018-07-13 15:07:47 +00005412static void handleUuidAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +00005413 if (!S.LangOpts.CPlusPlus) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005414 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
Erich Keane44bacdf2018-08-09 13:21:32 +00005415 << AL << AttributeLangSupport::C;
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +00005416 return;
5417 }
5418
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005419 StringRef StrRef;
5420 SourceLocation LiteralLoc;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005421 if (!S.checkStringLiteralArgumentAttr(AL, 0, StrRef, &LiteralLoc))
Reid Kleckner140c4a72013-05-17 14:04:52 +00005422 return;
Francois Pichet7da11662010-12-20 01:41:49 +00005423
David Majnemer89085342013-08-09 08:56:20 +00005424 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
5425 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
David Majnemer89085342013-08-09 08:56:20 +00005426 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
5427 StrRef = StrRef.drop_front().drop_back();
Francois Pichet7da11662010-12-20 01:41:49 +00005428
Reid Kleckner140c4a72013-05-17 14:04:52 +00005429 // Validate GUID length.
David Majnemer89085342013-08-09 08:56:20 +00005430 if (StrRef.size() != 36) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005431 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner140c4a72013-05-17 14:04:52 +00005432 return;
5433 }
Anders Carlsson19588aa2011-01-23 21:07:30 +00005434
David Majnemer89085342013-08-09 08:56:20 +00005435 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner140c4a72013-05-17 14:04:52 +00005436 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemer89085342013-08-09 08:56:20 +00005437 if (StrRef[i] != '-') {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005438 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Francois Pichet7da11662010-12-20 01:41:49 +00005439 return;
5440 }
David Majnemer89085342013-08-09 08:56:20 +00005441 } else if (!isHexDigit(StrRef[i])) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005442 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner140c4a72013-05-17 14:04:52 +00005443 return;
Francois Pichet7da11662010-12-20 01:41:49 +00005444 }
Reid Kleckner140c4a72013-05-17 14:04:52 +00005445 }
Francois Picheta83957a2010-12-19 06:50:37 +00005446
Nico Weber469891e2017-05-05 17:05:56 +00005447 // FIXME: It'd be nice to also emit a fixit removing uuid(...) (and, if it's
5448 // the only thing in the [] list, the [] too), and add an insertion of
5449 // __declspec(uuid(...)). But sadly, neither the SourceLocs of the commas
5450 // separating attributes nor of the [ and the ] are in the AST.
Nico Weber0a234042017-05-05 17:15:08 +00005451 // Cf "SourceLocations of attribute list delimiters - [[ ... , ... ]] etc"
Nico Weber469891e2017-05-05 17:05:56 +00005452 // on cfe-dev.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005453 if (AL.isMicrosoftAttribute()) // Check for [uuid(...)] spelling.
5454 S.Diag(AL.getLoc(), diag::warn_atl_uuid_deprecated);
Nico Weber469891e2017-05-05 17:05:56 +00005455
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005456 UuidAttr *UA = S.mergeUuidAttr(D, AL.getRange(),
5457 AL.getAttributeSpellingListIndex(), StrRef);
Nico Weber88f5ed92016-09-13 18:55:26 +00005458 if (UA)
5459 D->addAttr(UA);
Charles Davis163855f2010-02-16 18:27:26 +00005460}
5461
Erich Keanee891aa92018-07-13 15:07:47 +00005462static void handleMSInheritanceAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
David Majnemer2c4e00a2014-01-29 22:07:36 +00005463 if (!S.LangOpts.CPlusPlus) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005464 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
Erich Keane44bacdf2018-08-09 13:21:32 +00005465 << AL << AttributeLangSupport::C;
David Majnemer2c4e00a2014-01-29 22:07:36 +00005466 return;
5467 }
5468 MSInheritanceAttr *IA = S.mergeMSInheritanceAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005469 D, AL.getRange(), /*BestCase=*/true,
5470 AL.getAttributeSpellingListIndex(),
5471 (MSInheritanceAttr::Spelling)AL.getSemanticSpelling());
David Majnemer929025d2016-01-26 19:30:26 +00005472 if (IA) {
David Majnemer2c4e00a2014-01-29 22:07:36 +00005473 D->addAttr(IA);
David Majnemer929025d2016-01-26 19:30:26 +00005474 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
5475 }
David Majnemer2c4e00a2014-01-29 22:07:36 +00005476}
5477
Erich Keanee891aa92018-07-13 15:07:47 +00005478static void handleDeclspecThreadAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005479 const auto *VD = cast<VarDecl>(D);
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005480 if (!S.Context.getTargetInfo().isTLSSupported()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005481 S.Diag(AL.getLoc(), diag::err_thread_unsupported);
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005482 return;
5483 }
5484 if (VD->getTSCSpec() != TSCS_unspecified) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005485 S.Diag(AL.getLoc(), diag::err_declspec_thread_on_thread_variable);
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005486 return;
5487 }
5488 if (VD->hasLocalStorage()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005489 S.Diag(AL.getLoc(), diag::err_thread_non_global) << "__declspec(thread)";
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005490 return;
5491 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005492 D->addAttr(::new (S.Context) ThreadAttr(AL.getRange(), S.Context,
5493 AL.getAttributeSpellingListIndex()));
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005494}
5495
Erich Keanee891aa92018-07-13 15:07:47 +00005496static void handleAbiTagAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005497 SmallVector<StringRef, 4> Tags;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005498 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005499 StringRef Tag;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005500 if (!S.checkStringLiteralArgumentAttr(AL, I, Tag))
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005501 return;
5502 Tags.push_back(Tag);
5503 }
5504
5505 if (const auto *NS = dyn_cast<NamespaceDecl>(D)) {
5506 if (!NS->isInline()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005507 S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 0;
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005508 return;
5509 }
5510 if (NS->isAnonymousNamespace()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005511 S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 1;
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005512 return;
5513 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005514 if (AL.getNumArgs() == 0)
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005515 Tags.push_back(NS->getName());
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005516 } else if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005517 return;
5518
5519 // Store tags sorted and without duplicates.
Fangrui Song55fab262018-09-26 22:16:28 +00005520 llvm::sort(Tags);
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005521 Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end());
5522
5523 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005524 AbiTagAttr(AL.getRange(), S.Context, Tags.data(), Tags.size(),
5525 AL.getAttributeSpellingListIndex()));
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005526}
5527
Erich Keanee891aa92018-07-13 15:07:47 +00005528static void handleARMInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005529 // Check the attribute arguments.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005530 if (AL.getNumArgs() > 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005531 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005532 return;
5533 }
5534
5535 StringRef Str;
5536 SourceLocation ArgLoc;
5537
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005538 if (AL.getNumArgs() == 0)
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005539 Str = "";
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005540 else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005541 return;
5542
5543 ARMInterruptAttr::InterruptType Kind;
5544 if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005545 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
5546 << ArgLoc;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005547 return;
5548 }
5549
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005550 unsigned Index = AL.getAttributeSpellingListIndex();
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005551 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005552 ARMInterruptAttr(AL.getLoc(), S.Context, Kind, Index));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005553}
5554
Erich Keanee891aa92018-07-13 15:07:47 +00005555static void handleMSP430InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Anton Korobeynikov383e8272019-01-16 13:44:01 +00005556 // MSP430 'interrupt' attribute is applied to
5557 // a function with no parameters and void return type.
5558 if (!isFunctionOrMethod(D)) {
5559 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5560 << "'interrupt'" << ExpectedFunctionOrMethod;
5561 return;
5562 }
5563
5564 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005565 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5566 << /*MSP430*/ 1 << 0;
Anton Korobeynikov383e8272019-01-16 13:44:01 +00005567 return;
5568 }
5569
5570 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005571 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5572 << /*MSP430*/ 1 << 1;
Anton Korobeynikov383e8272019-01-16 13:44:01 +00005573 return;
5574 }
5575
5576 // The attribute takes one integer argument.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005577 if (!checkAttributeNumArgs(S, AL, 1))
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005578 return;
5579
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005580 if (!AL.isArgExpr(0)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005581 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
5582 << AL << AANT_ArgumentIntegerConstant;
Fangrui Song6907ce22018-07-30 19:24:48 +00005583 return;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005584 }
5585
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005586 Expr *NumParamsExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005587 llvm::APSInt NumParams(32);
5588 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005589 S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005590 << AL << AANT_ArgumentIntegerConstant
5591 << NumParamsExpr->getSourceRange();
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005592 return;
5593 }
Anton Korobeynikov383e8272019-01-16 13:44:01 +00005594 // The argument should be in range 0..63.
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005595 unsigned Num = NumParams.getLimitedValue(255);
Anton Korobeynikov383e8272019-01-16 13:44:01 +00005596 if (Num > 63) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005597 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
Erich Keane44bacdf2018-08-09 13:21:32 +00005598 << AL << (int)NumParams.getSExtValue()
5599 << NumParamsExpr->getSourceRange();
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005600 return;
5601 }
5602
Aaron Ballman36a53502014-01-16 13:03:14 +00005603 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005604 MSP430InterruptAttr(AL.getLoc(), S.Context, Num,
5605 AL.getAttributeSpellingListIndex()));
Aaron Ballman36a53502014-01-16 13:03:14 +00005606 D->addAttr(UsedAttr::CreateImplicit(S.Context));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005607}
5608
Erich Keanee891aa92018-07-13 15:07:47 +00005609static void handleMipsInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005610 // Only one optional argument permitted.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005611 if (AL.getNumArgs() > 1) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005612 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005613 return;
5614 }
5615
5616 StringRef Str;
5617 SourceLocation ArgLoc;
5618
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005619 if (AL.getNumArgs() == 0)
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005620 Str = "";
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005621 else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005622 return;
5623
5624 // Semantic checks for a function with the 'interrupt' attribute for MIPS:
5625 // a) Must be a function.
5626 // b) Must have no parameters.
5627 // c) Must have the 'void' return type.
5628 // d) Cannot have the 'mips16' attribute, as that instruction set
5629 // lacks the 'eret' instruction.
5630 // e) The attribute itself must either have no argument or one of the
5631 // valid interrupt types, see [MipsInterruptDocs].
5632
5633 if (!isFunctionOrMethod(D)) {
5634 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5635 << "'interrupt'" << ExpectedFunctionOrMethod;
5636 return;
5637 }
5638
5639 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005640 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5641 << /*MIPS*/ 0 << 0;
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005642 return;
5643 }
5644
5645 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005646 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5647 << /*MIPS*/ 0 << 1;
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005648 return;
5649 }
5650
Erich Keane44bacdf2018-08-09 13:21:32 +00005651 if (checkAttrMutualExclusion<Mips16Attr>(S, D, AL))
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005652 return;
5653
5654 MipsInterruptAttr::InterruptType Kind;
5655 if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005656 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
Erich Keane44bacdf2018-08-09 13:21:32 +00005657 << AL << "'" + std::string(Str) + "'";
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005658 return;
5659 }
5660
5661 D->addAttr(::new (S.Context) MipsInterruptAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005662 AL.getLoc(), S.Context, Kind, AL.getAttributeSpellingListIndex()));
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005663}
5664
Erich Keanee891aa92018-07-13 15:07:47 +00005665static void handleAnyX86InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Alexey Bataevd51e9932016-01-15 04:06:31 +00005666 // Semantic checks for a function with the 'interrupt' attribute.
5667 // a) Must be a function.
5668 // b) Must have the 'void' return type.
5669 // c) Must take 1 or 2 arguments.
5670 // d) The 1st argument must be a pointer.
5671 // e) The 2nd argument (if any) must be an unsigned integer.
5672 if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) ||
5673 CXXMethodDecl::isStaticOverloadedOperator(
5674 cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005675 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00005676 << AL << ExpectedFunctionWithProtoType;
Alexey Bataevd51e9932016-01-15 04:06:31 +00005677 return;
5678 }
5679 // Interrupt handler must have void return type.
5680 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5681 S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(),
5682 diag::err_anyx86_interrupt_attribute)
5683 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5684 ? 0
5685 : 1)
5686 << 0;
5687 return;
5688 }
5689 // Interrupt handler must have 1 or 2 parameters.
5690 unsigned NumParams = getFunctionOrMethodNumParams(D);
5691 if (NumParams < 1 || NumParams > 2) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005692 S.Diag(D->getBeginLoc(), diag::err_anyx86_interrupt_attribute)
Alexey Bataevd51e9932016-01-15 04:06:31 +00005693 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5694 ? 0
5695 : 1)
5696 << 1;
5697 return;
5698 }
5699 // The first argument must be a pointer.
5700 if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) {
5701 S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(),
5702 diag::err_anyx86_interrupt_attribute)
5703 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5704 ? 0
5705 : 1)
5706 << 2;
5707 return;
5708 }
5709 // The second argument, if present, must be an unsigned integer.
5710 unsigned TypeSize =
5711 S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64
5712 ? 64
5713 : 32;
5714 if (NumParams == 2 &&
5715 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() ||
5716 S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) {
5717 S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(),
5718 diag::err_anyx86_interrupt_attribute)
5719 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5720 ? 0
5721 : 1)
5722 << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false);
5723 return;
5724 }
5725 D->addAttr(::new (S.Context) AnyX86InterruptAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005726 AL.getLoc(), S.Context, AL.getAttributeSpellingListIndex()));
Alexey Bataevd51e9932016-01-15 04:06:31 +00005727 D->addAttr(UsedAttr::CreateImplicit(S.Context));
5728}
5729
Erich Keanee891aa92018-07-13 15:07:47 +00005730static void handleAVRInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Dylan McKaye8232d72017-02-08 05:09:26 +00005731 if (!isFunctionOrMethod(D)) {
5732 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5733 << "'interrupt'" << ExpectedFunction;
5734 return;
5735 }
5736
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005737 if (!checkAttributeNumArgs(S, AL, 0))
Dylan McKaye8232d72017-02-08 05:09:26 +00005738 return;
5739
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005740 handleSimpleAttribute<AVRInterruptAttr>(S, D, AL);
Dylan McKaye8232d72017-02-08 05:09:26 +00005741}
5742
Erich Keanee891aa92018-07-13 15:07:47 +00005743static void handleAVRSignalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Dylan McKaye8232d72017-02-08 05:09:26 +00005744 if (!isFunctionOrMethod(D)) {
5745 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5746 << "'signal'" << ExpectedFunction;
5747 return;
5748 }
5749
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005750 if (!checkAttributeNumArgs(S, AL, 0))
Dylan McKaye8232d72017-02-08 05:09:26 +00005751 return;
5752
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005753 handleSimpleAttribute<AVRSignalAttr>(S, D, AL);
Dylan McKaye8232d72017-02-08 05:09:26 +00005754}
5755
Dan Gohmanb4323692019-01-24 21:08:30 +00005756static void handleWebAssemblyImportModuleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5757 if (!isFunctionOrMethod(D)) {
5758 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5759 << "'import_module'" << ExpectedFunction;
5760 return;
5761 }
5762
5763 auto *FD = cast<FunctionDecl>(D);
5764 if (FD->isThisDeclarationADefinition()) {
5765 S.Diag(D->getLocation(), diag::err_alias_is_definition) << FD << 0;
5766 return;
5767 }
5768
5769 StringRef Str;
5770 SourceLocation ArgLoc;
5771 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5772 return;
5773
5774 FD->addAttr(::new (S.Context) WebAssemblyImportModuleAttr(
5775 AL.getRange(), S.Context, Str,
5776 AL.getAttributeSpellingListIndex()));
5777}
Ana Pazos1eee1b72018-07-26 17:37:45 +00005778
Dan Gohmancae84592019-02-01 22:25:23 +00005779static void handleWebAssemblyImportNameAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5780 if (!isFunctionOrMethod(D)) {
5781 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5782 << "'import_name'" << ExpectedFunction;
5783 return;
5784 }
5785
5786 auto *FD = cast<FunctionDecl>(D);
5787 if (FD->isThisDeclarationADefinition()) {
5788 S.Diag(D->getLocation(), diag::err_alias_is_definition) << FD << 0;
5789 return;
5790 }
5791
5792 StringRef Str;
5793 SourceLocation ArgLoc;
5794 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5795 return;
5796
5797 FD->addAttr(::new (S.Context) WebAssemblyImportNameAttr(
5798 AL.getRange(), S.Context, Str,
5799 AL.getAttributeSpellingListIndex()));
5800}
5801
Ana Pazos1eee1b72018-07-26 17:37:45 +00005802static void handleRISCVInterruptAttr(Sema &S, Decl *D,
5803 const ParsedAttr &AL) {
5804 // Warn about repeated attributes.
5805 if (const auto *A = D->getAttr<RISCVInterruptAttr>()) {
5806 S.Diag(AL.getRange().getBegin(),
5807 diag::warn_riscv_repeated_interrupt_attribute);
5808 S.Diag(A->getLocation(), diag::note_riscv_repeated_interrupt_attribute);
5809 return;
5810 }
5811
5812 // Check the attribute argument. Argument is optional.
5813 if (!checkAttributeAtMostNumArgs(S, AL, 1))
5814 return;
5815
5816 StringRef Str;
5817 SourceLocation ArgLoc;
5818
5819 // 'machine'is the default interrupt mode.
5820 if (AL.getNumArgs() == 0)
5821 Str = "machine";
5822 else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5823 return;
5824
5825 // Semantic checks for a function with the 'interrupt' attribute:
5826 // - Must be a function.
5827 // - Must have no parameters.
5828 // - Must have the 'void' return type.
5829 // - The attribute itself must either have no argument or one of the
5830 // valid interrupt types, see [RISCVInterruptDocs].
5831
5832 if (D->getFunctionType() == nullptr) {
5833 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5834 << "'interrupt'" << ExpectedFunction;
5835 return;
5836 }
5837
5838 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005839 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5840 << /*RISC-V*/ 2 << 0;
Ana Pazos1eee1b72018-07-26 17:37:45 +00005841 return;
5842 }
5843
5844 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
Aaron Ballmanb0d74bf2019-01-23 18:02:17 +00005845 S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5846 << /*RISC-V*/ 2 << 1;
Ana Pazos1eee1b72018-07-26 17:37:45 +00005847 return;
5848 }
5849
5850 RISCVInterruptAttr::InterruptType Kind;
5851 if (!RISCVInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
Erich Keane44bacdf2018-08-09 13:21:32 +00005852 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
5853 << ArgLoc;
Ana Pazos1eee1b72018-07-26 17:37:45 +00005854 return;
5855 }
5856
5857 D->addAttr(::new (S.Context) RISCVInterruptAttr(
5858 AL.getLoc(), S.Context, Kind, AL.getAttributeSpellingListIndex()));
5859}
5860
Erich Keanee891aa92018-07-13 15:07:47 +00005861static void handleInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005862 // Dispatch the interrupt attribute based on the current target.
Alexey Bataevd51e9932016-01-15 04:06:31 +00005863 switch (S.Context.getTargetInfo().getTriple().getArch()) {
5864 case llvm::Triple::msp430:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005865 handleMSP430InterruptAttr(S, D, AL);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005866 break;
5867 case llvm::Triple::mipsel:
5868 case llvm::Triple::mips:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005869 handleMipsInterruptAttr(S, D, AL);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005870 break;
5871 case llvm::Triple::x86:
5872 case llvm::Triple::x86_64:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005873 handleAnyX86InterruptAttr(S, D, AL);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005874 break;
Dylan McKaye8232d72017-02-08 05:09:26 +00005875 case llvm::Triple::avr:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005876 handleAVRInterruptAttr(S, D, AL);
Dylan McKaye8232d72017-02-08 05:09:26 +00005877 break;
Ana Pazos1eee1b72018-07-26 17:37:45 +00005878 case llvm::Triple::riscv32:
5879 case llvm::Triple::riscv64:
5880 handleRISCVInterruptAttr(S, D, AL);
5881 break;
Alexey Bataevd51e9932016-01-15 04:06:31 +00005882 default:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005883 handleARMInterruptAttr(S, D, AL);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005884 break;
5885 }
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005886}
5887
Michael Liao7557afa2019-02-26 18:49:36 +00005888static bool
5889checkAMDGPUFlatWorkGroupSizeArguments(Sema &S, Expr *MinExpr, Expr *MaxExpr,
5890 const AMDGPUFlatWorkGroupSizeAttr &Attr) {
5891 // Accept template arguments for now as they depend on something else.
5892 // We'll get to check them when they eventually get instantiated.
5893 if (MinExpr->isValueDependent() || MaxExpr->isValueDependent())
5894 return false;
5895
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005896 uint32_t Min = 0;
Michael Liao7557afa2019-02-26 18:49:36 +00005897 if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
5898 return true;
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005899
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005900 uint32_t Max = 0;
Michael Liao7557afa2019-02-26 18:49:36 +00005901 if (!checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
5902 return true;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005903
5904 if (Min == 0 && Max != 0) {
Michael Liao7557afa2019-02-26 18:49:36 +00005905 S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
5906 << &Attr << 0;
5907 return true;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005908 }
5909 if (Min > Max) {
Michael Liao7557afa2019-02-26 18:49:36 +00005910 S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
5911 << &Attr << 1;
5912 return true;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005913 }
5914
Michael Liao7557afa2019-02-26 18:49:36 +00005915 return false;
5916}
5917
5918void Sema::addAMDGPUFlatWorkGroupSizeAttr(SourceRange AttrRange, Decl *D,
5919 Expr *MinExpr, Expr *MaxExpr,
5920 unsigned SpellingListIndex) {
5921 AMDGPUFlatWorkGroupSizeAttr TmpAttr(AttrRange, Context, MinExpr, MaxExpr,
5922 SpellingListIndex);
5923
5924 if (checkAMDGPUFlatWorkGroupSizeArguments(*this, MinExpr, MaxExpr, TmpAttr))
5925 return;
5926
5927 D->addAttr(::new (Context) AMDGPUFlatWorkGroupSizeAttr(
5928 AttrRange, Context, MinExpr, MaxExpr, SpellingListIndex));
5929}
5930
5931static void handleAMDGPUFlatWorkGroupSizeAttr(Sema &S, Decl *D,
5932 const ParsedAttr &AL) {
5933 Expr *MinExpr = AL.getArgAsExpr(0);
5934 Expr *MaxExpr = AL.getArgAsExpr(1);
5935
5936 S.addAMDGPUFlatWorkGroupSizeAttr(AL.getRange(), D, MinExpr, MaxExpr,
5937 AL.getAttributeSpellingListIndex());
5938}
5939
5940static bool checkAMDGPUWavesPerEUArguments(Sema &S, Expr *MinExpr,
5941 Expr *MaxExpr,
5942 const AMDGPUWavesPerEUAttr &Attr) {
5943 if (S.DiagnoseUnexpandedParameterPack(MinExpr) ||
5944 (MaxExpr && S.DiagnoseUnexpandedParameterPack(MaxExpr)))
5945 return true;
5946
5947 // Accept template arguments for now as they depend on something else.
5948 // We'll get to check them when they eventually get instantiated.
5949 if (MinExpr->isValueDependent() || (MaxExpr && MaxExpr->isValueDependent()))
5950 return false;
5951
5952 uint32_t Min = 0;
5953 if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
5954 return true;
5955
5956 uint32_t Max = 0;
5957 if (MaxExpr && !checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
5958 return true;
5959
5960 if (Min == 0 && Max != 0) {
5961 S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
5962 << &Attr << 0;
5963 return true;
5964 }
5965 if (Max != 0 && Min > Max) {
5966 S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
5967 << &Attr << 1;
5968 return true;
5969 }
5970
5971 return false;
5972}
5973
5974void Sema::addAMDGPUWavesPerEUAttr(SourceRange AttrRange, Decl *D,
5975 Expr *MinExpr, Expr *MaxExpr,
5976 unsigned SpellingListIndex) {
5977 AMDGPUWavesPerEUAttr TmpAttr(AttrRange, Context, MinExpr, MaxExpr,
5978 SpellingListIndex);
5979
5980 if (checkAMDGPUWavesPerEUArguments(*this, MinExpr, MaxExpr, TmpAttr))
5981 return;
5982
5983 D->addAttr(::new (Context) AMDGPUWavesPerEUAttr(AttrRange, Context, MinExpr,
5984 MaxExpr, SpellingListIndex));
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005985}
5986
Erich Keanee891aa92018-07-13 15:07:47 +00005987static void handleAMDGPUWavesPerEUAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Michael Liao7557afa2019-02-26 18:49:36 +00005988 if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
5989 !checkAttributeAtMostNumArgs(S, AL, 2))
5990 return;
5991
Aaron Ballmana70c6b52018-02-15 16:20:20 +00005992 Expr *MinExpr = AL.getArgAsExpr(0);
Michael Liao7557afa2019-02-26 18:49:36 +00005993 Expr *MaxExpr = (AL.getNumArgs() > 1) ? AL.getArgAsExpr(1) : nullptr;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005994
Michael Liao7557afa2019-02-26 18:49:36 +00005995 S.addAMDGPUWavesPerEUAttr(AL.getRange(), D, MinExpr, MaxExpr,
5996 AL.getAttributeSpellingListIndex());
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005997}
5998
Erich Keanee891aa92018-07-13 15:07:47 +00005999static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006000 uint32_t NumSGPR = 0;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006001 Expr *NumSGPRExpr = AL.getArgAsExpr(0);
6002 if (!checkUInt32Argument(S, AL, NumSGPRExpr, NumSGPR))
Matt Arsenault43fae6c2014-12-04 20:38:18 +00006003 return;
6004
6005 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006006 AMDGPUNumSGPRAttr(AL.getLoc(), S.Context, NumSGPR,
6007 AL.getAttributeSpellingListIndex()));
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006008}
6009
Erich Keanee891aa92018-07-13 15:07:47 +00006010static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006011 uint32_t NumVGPR = 0;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006012 Expr *NumVGPRExpr = AL.getArgAsExpr(0);
6013 if (!checkUInt32Argument(S, AL, NumVGPRExpr, NumVGPR))
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006014 return;
6015
6016 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006017 AMDGPUNumVGPRAttr(AL.getLoc(), S.Context, NumVGPR,
6018 AL.getAttributeSpellingListIndex()));
Matt Arsenault43fae6c2014-12-04 20:38:18 +00006019}
6020
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006021static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006022 const ParsedAttr &AL) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006023 // If we try to apply it to a function pointer, don't warn, but don't
6024 // do anything, either. It doesn't matter anyway, because there's nothing
6025 // special about calling a force_align_arg_pointer function.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006026 const auto *VD = dyn_cast<ValueDecl>(D);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006027 if (VD && VD->getType()->isFunctionPointerType())
6028 return;
6029 // Also don't warn on function pointer typedefs.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006030 const auto *TD = dyn_cast<TypedefNameDecl>(D);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006031 if (TD && (TD->getUnderlyingType()->isFunctionPointerType() ||
6032 TD->getUnderlyingType()->isFunctionType()))
6033 return;
6034 // Attribute can only be applied to function types.
6035 if (!isa<FunctionDecl>(D)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006036 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00006037 << AL << ExpectedFunction;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006038 return;
6039 }
6040
Aaron Ballman36a53502014-01-16 13:03:14 +00006041 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006042 X86ForceAlignArgPointerAttr(AL.getRange(), S.Context,
6043 AL.getAttributeSpellingListIndex()));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006044}
6045
Erich Keanee891aa92018-07-13 15:07:47 +00006046static void handleLayoutVersion(Sema &S, Decl *D, const ParsedAttr &AL) {
David Majnemercd3ebfe2016-05-23 17:16:12 +00006047 uint32_t Version;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006048 Expr *VersionExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
6049 if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), Version))
David Majnemercd3ebfe2016-05-23 17:16:12 +00006050 return;
6051
6052 // TODO: Investigate what happens with the next major version of MSVC.
Reid Kleckner1a94d872018-12-17 23:16:43 +00006053 if (Version != LangOptions::MSVC2015 / 100) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006054 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
Erich Keane44bacdf2018-08-09 13:21:32 +00006055 << AL << Version << VersionExpr->getSourceRange();
David Majnemercd3ebfe2016-05-23 17:16:12 +00006056 return;
6057 }
6058
Reid Kleckner1a94d872018-12-17 23:16:43 +00006059 // The attribute expects a "major" version number like 19, but new versions of
6060 // MSVC have moved to updating the "minor", or less significant numbers, so we
6061 // have to multiply by 100 now.
6062 Version *= 100;
6063
David Majnemercd3ebfe2016-05-23 17:16:12 +00006064 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006065 LayoutVersionAttr(AL.getRange(), S.Context, Version,
6066 AL.getAttributeSpellingListIndex()));
David Majnemercd3ebfe2016-05-23 17:16:12 +00006067}
6068
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006069DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range,
6070 unsigned AttrSpellingListIndex) {
6071 if (D->hasAttr<DLLExportAttr>()) {
Nico Rieck60478662014-02-22 19:47:30 +00006072 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'";
Craig Topperc3ec1492014-05-26 06:22:03 +00006073 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006074 }
6075
6076 if (D->hasAttr<DLLImportAttr>())
Craig Topperc3ec1492014-05-26 06:22:03 +00006077 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006078
Aaron Ballman3f5f3e72014-01-20 16:15:55 +00006079 return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006080}
6081
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006082DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range,
6083 unsigned AttrSpellingListIndex) {
6084 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
Nico Rieck60478662014-02-22 19:47:30 +00006085 Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006086 D->dropAttr<DLLImportAttr>();
6087 }
6088
6089 if (D->hasAttr<DLLExportAttr>())
Craig Topperc3ec1492014-05-26 06:22:03 +00006090 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006091
Aaron Ballman3f5f3e72014-01-20 16:15:55 +00006092 return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006093}
6094
Erich Keanee891aa92018-07-13 15:07:47 +00006095static void handleDLLAttr(Sema &S, Decl *D, const ParsedAttr &A) {
Hans Wennborg5e645282014-06-24 23:57:13 +00006096 if (isa<ClassTemplatePartialSpecializationDecl>(D) &&
6097 S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00006098 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored) << A;
Hans Wennborg5e645282014-06-24 23:57:13 +00006099 return;
6100 }
6101
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006102 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
Erich Keanee891aa92018-07-13 15:07:47 +00006103 if (FD->isInlined() && A.getKind() == ParsedAttr::AT_DLLImport &&
Hans Wennborg606bd6d2014-11-03 14:24:45 +00006104 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
6105 // MinGW doesn't allow dllimport on inline functions.
6106 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline)
Erich Keane44bacdf2018-08-09 13:21:32 +00006107 << A;
Hans Wennborg606bd6d2014-11-03 14:24:45 +00006108 return;
6109 }
6110 }
6111
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006112 if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
Hans Wennborg5869ec42015-09-15 21:05:30 +00006113 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
6114 MD->getParent()->isLambda()) {
Erich Keane44bacdf2018-08-09 13:21:32 +00006115 S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A;
Hans Wennborg5869ec42015-09-15 21:05:30 +00006116 return;
6117 }
6118 }
6119
Hans Wennborge82f19c2014-06-24 23:57:05 +00006120 unsigned Index = A.getAttributeSpellingListIndex();
Erich Keanee891aa92018-07-13 15:07:47 +00006121 Attr *NewAttr = A.getKind() == ParsedAttr::AT_DLLExport
Hans Wennborge82f19c2014-06-24 23:57:05 +00006122 ? (Attr *)S.mergeDLLExportAttr(D, A.getRange(), Index)
6123 : (Attr *)S.mergeDLLImportAttr(D, A.getRange(), Index);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006124 if (NewAttr)
6125 D->addAttr(NewAttr);
6126}
6127
David Majnemer2c4e00a2014-01-29 22:07:36 +00006128MSInheritanceAttr *
David Majnemer4bb09802014-02-10 19:50:15 +00006129Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase,
David Majnemer2c4e00a2014-01-29 22:07:36 +00006130 unsigned AttrSpellingListIndex,
6131 MSInheritanceAttr::Spelling SemanticSpelling) {
6132 if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) {
6133 if (IA->getSemanticSpelling() == SemanticSpelling)
Craig Topperc3ec1492014-05-26 06:22:03 +00006134 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00006135 Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance)
6136 << 1 /*previous declaration*/;
6137 Diag(Range.getBegin(), diag::note_previous_ms_inheritance);
6138 D->dropAttr<MSInheritanceAttr>();
6139 }
6140
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006141 auto *RD = cast<CXXRecordDecl>(D);
David Majnemer2c4e00a2014-01-29 22:07:36 +00006142 if (RD->hasDefinition()) {
David Majnemer4bb09802014-02-10 19:50:15 +00006143 if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase,
6144 SemanticSpelling)) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006145 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00006146 }
6147 } else {
6148 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) {
6149 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
6150 << 1 /*partial specialization*/;
Craig Topperc3ec1492014-05-26 06:22:03 +00006151 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00006152 }
6153 if (RD->getDescribedClassTemplate()) {
6154 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
6155 << 0 /*primary template*/;
Craig Topperc3ec1492014-05-26 06:22:03 +00006156 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00006157 }
6158 }
6159
6160 return ::new (Context)
David Majnemer4bb09802014-02-10 19:50:15 +00006161 MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex);
David Majnemer2c4e00a2014-01-29 22:07:36 +00006162}
6163
Erich Keanee891aa92018-07-13 15:07:47 +00006164static void handleCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006165 // The capability attributes take a single string parameter for the name of
6166 // the capability they represent. The lockable attribute does not take any
6167 // parameters. However, semantically, both attributes represent the same
6168 // concept, and so they use the same semantic attribute. Eventually, the
6169 // lockable attribute will be removed.
Aaron Ballman6c810072014-03-05 21:47:13 +00006170 //
Alp Toker958027b2014-07-14 19:42:55 +00006171 // For backward compatibility, any capability which has no specified string
Aaron Ballman6c810072014-03-05 21:47:13 +00006172 // literal will be considered a "mutex."
6173 StringRef N("mutex");
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006174 SourceLocation LiteralLoc;
Erich Keanee891aa92018-07-13 15:07:47 +00006175 if (AL.getKind() == ParsedAttr::AT_Capability &&
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006176 !S.checkStringLiteralArgumentAttr(AL, 0, N, &LiteralLoc))
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006177 return;
6178
Aaron Ballman6c810072014-03-05 21:47:13 +00006179 // Currently, there are only two names allowed for a capability: role and
6180 // mutex (case insensitive). Diagnose other capability names.
6181 if (!N.equals_lower("mutex") && !N.equals_lower("role"))
6182 S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N;
6183
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006184 D->addAttr(::new (S.Context) CapabilityAttr(AL.getRange(), S.Context, N,
6185 AL.getAttributeSpellingListIndex()));
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006186}
6187
Erich Keanee891aa92018-07-13 15:07:47 +00006188static void handleAssertCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Josh Gaoec1369e2017-08-08 19:44:34 +00006189 SmallVector<Expr*, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006190 if (!checkLockFunAttrCommon(S, D, AL, Args))
Josh Gaoec1369e2017-08-08 19:44:34 +00006191 return;
6192
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006193 D->addAttr(::new (S.Context) AssertCapabilityAttr(AL.getRange(), S.Context,
Josh Gaoec1369e2017-08-08 19:44:34 +00006194 Args.data(), Args.size(),
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006195 AL.getAttributeSpellingListIndex()));
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006196}
6197
6198static void handleAcquireCapabilityAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006199 const ParsedAttr &AL) {
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006200 SmallVector<Expr*, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006201 if (!checkLockFunAttrCommon(S, D, AL, Args))
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006202 return;
6203
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006204 D->addAttr(::new (S.Context) AcquireCapabilityAttr(AL.getRange(),
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006205 S.Context,
6206 Args.data(), Args.size(),
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006207 AL.getAttributeSpellingListIndex()));
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006208}
6209
6210static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006211 const ParsedAttr &AL) {
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006212 SmallVector<Expr*, 2> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006213 if (!checkTryLockFunAttrCommon(S, D, AL, Args))
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006214 return;
6215
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006216 D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(AL.getRange(),
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006217 S.Context,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006218 AL.getArgAsExpr(0),
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006219 Args.data(),
6220 Args.size(),
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006221 AL.getAttributeSpellingListIndex()));
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006222}
6223
6224static void handleReleaseCapabilityAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006225 const ParsedAttr &AL) {
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006226 // Check that all arguments are lockable objects.
Aaron Ballman18d85ae2014-03-20 16:02:49 +00006227 SmallVector<Expr *, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006228 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, true);
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006229
Aaron Ballman18d85ae2014-03-20 16:02:49 +00006230 D->addAttr(::new (S.Context) ReleaseCapabilityAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006231 AL.getRange(), S.Context, Args.data(), Args.size(),
6232 AL.getAttributeSpellingListIndex()));
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006233}
6234
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006235static void handleRequiresCapabilityAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006236 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006237 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006238 return;
6239
6240 // check that all arguments are lockable objects
6241 SmallVector<Expr*, 1> Args;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006242 checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006243 if (Args.empty())
6244 return;
6245
6246 RequiresCapabilityAttr *RCA = ::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006247 RequiresCapabilityAttr(AL.getRange(), S.Context, Args.data(),
6248 Args.size(), AL.getAttributeSpellingListIndex());
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006249
6250 D->addAttr(RCA);
6251}
6252
Erich Keanee891aa92018-07-13 15:07:47 +00006253static void handleDeprecatedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006254 if (const auto *NSD = dyn_cast<NamespaceDecl>(D)) {
Aaron Ballman43f40102014-11-14 22:34:56 +00006255 if (NSD->isAnonymousNamespace()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006256 S.Diag(AL.getLoc(), diag::warn_deprecated_anonymous_namespace);
Aaron Ballman43f40102014-11-14 22:34:56 +00006257 // Do not want to attach the attribute to the namespace because that will
6258 // cause confusing diagnostic reports for uses of declarations within the
6259 // namespace.
6260 return;
6261 }
6262 }
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00006263
Manman Renc7890fe2016-03-16 18:50:49 +00006264 // Handle the cases where the attribute has a text message.
6265 StringRef Str, Replacement;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006266 if (AL.isArgExpr(0) && AL.getArgAsExpr(0) &&
6267 !S.checkStringLiteralArgumentAttr(AL, 0, Str))
Manman Renc7890fe2016-03-16 18:50:49 +00006268 return;
6269
6270 // Only support a single optional message for Declspec and CXX11.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006271 if (AL.isDeclspecAttribute() || AL.isCXX11Attribute())
6272 checkAttributeAtMostNumArgs(S, AL, 1);
6273 else if (AL.isArgExpr(1) && AL.getArgAsExpr(1) &&
Sander de Smalen44a22532018-11-26 16:38:37 +00006274 !S.checkStringLiteralArgumentAttr(AL, 1, Replacement))
6275 return;
6276
6277 if (!S.getLangOpts().CPlusPlus14 && AL.isCXX11Attribute() && !AL.isGNUScope())
6278 S.Diag(AL.getLoc(), diag::ext_cxx14_attr) << AL;
6279
6280 D->addAttr(::new (S.Context)
6281 DeprecatedAttr(AL.getRange(), S.Context, Str, Replacement,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006282 AL.getAttributeSpellingListIndex()));
Douglas Katzman3ed0f642016-10-14 19:55:09 +00006283}
6284
6285static bool isGlobalVar(const Decl *D) {
6286 if (const auto *S = dyn_cast<VarDecl>(D))
6287 return S->hasGlobalStorage();
6288 return false;
Aaron Ballman43f40102014-11-14 22:34:56 +00006289}
6290
Erich Keanee891aa92018-07-13 15:07:47 +00006291static void handleNoSanitizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006292 if (!checkAttributeAtLeastNumArgs(S, AL, 1))
Peter Collingbourne915df992015-05-15 18:33:32 +00006293 return;
6294
Benjamin Kramer1b582012016-02-13 18:11:49 +00006295 std::vector<StringRef> Sanitizers;
Peter Collingbourne915df992015-05-15 18:33:32 +00006296
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006297 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
Peter Collingbourne915df992015-05-15 18:33:32 +00006298 StringRef SanitizerName;
6299 SourceLocation LiteralLoc;
6300
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006301 if (!S.checkStringLiteralArgumentAttr(AL, I, SanitizerName, &LiteralLoc))
Peter Collingbourne915df992015-05-15 18:33:32 +00006302 return;
6303
Pierre Gousseau40ad3d22019-02-26 13:50:29 +00006304 if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) == 0)
Peter Collingbourne915df992015-05-15 18:33:32 +00006305 S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName;
Douglas Katzman3ed0f642016-10-14 19:55:09 +00006306 else if (isGlobalVar(D) && SanitizerName != "address")
6307 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00006308 << AL << ExpectedFunctionOrMethod;
Peter Collingbourne915df992015-05-15 18:33:32 +00006309 Sanitizers.push_back(SanitizerName);
6310 }
6311
6312 D->addAttr(::new (S.Context) NoSanitizeAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006313 AL.getRange(), S.Context, Sanitizers.data(), Sanitizers.size(),
6314 AL.getAttributeSpellingListIndex()));
Peter Collingbourne915df992015-05-15 18:33:32 +00006315}
6316
6317static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006318 const ParsedAttr &AL) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006319 StringRef AttrName = AL.getName()->getName();
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00006320 normalizeName(AttrName);
Douglas Katzman3ed0f642016-10-14 19:55:09 +00006321 StringRef SanitizerName = llvm::StringSwitch<StringRef>(AttrName)
6322 .Case("no_address_safety_analysis", "address")
6323 .Case("no_sanitize_address", "address")
6324 .Case("no_sanitize_thread", "thread")
6325 .Case("no_sanitize_memory", "memory");
6326 if (isGlobalVar(D) && SanitizerName != "address")
6327 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
Erich Keane44bacdf2018-08-09 13:21:32 +00006328 << AL << ExpectedFunction;
Peter Collingbourne915df992015-05-15 18:33:32 +00006329 D->addAttr(::new (S.Context)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006330 NoSanitizeAttr(AL.getRange(), S.Context, &SanitizerName, 1,
6331 AL.getAttributeSpellingListIndex()));
Peter Collingbourne915df992015-05-15 18:33:32 +00006332}
6333
Erich Keanee891aa92018-07-13 15:07:47 +00006334static void handleInternalLinkageAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Erich Keane44bacdf2018-08-09 13:21:32 +00006335 if (InternalLinkageAttr *Internal = S.mergeInternalLinkageAttr(D, AL))
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00006336 D->addAttr(Internal);
6337}
6338
Erich Keanee891aa92018-07-13 15:07:47 +00006339static void handleOpenCLNoSVMAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Anastasia Stulovac4bb5df2016-03-31 11:07:22 +00006340 if (S.LangOpts.OpenCLVersion != 200)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006341 S.Diag(AL.getLoc(), diag::err_attribute_requires_opencl_version)
Erich Keane44bacdf2018-08-09 13:21:32 +00006342 << AL << "2.0" << 0;
Anastasia Stulovac4bb5df2016-03-31 11:07:22 +00006343 else
Erich Keane44bacdf2018-08-09 13:21:32 +00006344 S.Diag(AL.getLoc(), diag::warn_opencl_attr_deprecated_ignored) << AL
6345 << "2.0";
Anastasia Stulovac4bb5df2016-03-31 11:07:22 +00006346}
6347
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006348/// Handles semantic checking for features that are common to all attributes,
6349/// such as checking whether a parameter was properly specified, or the correct
6350/// number of arguments were passed, etc.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006351static bool handleCommonAttributeFeatures(Sema &S, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006352 const ParsedAttr &AL) {
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006353 // Several attributes carry different semantics than the parsing requires, so
Alex Lorenz24952fb2017-04-19 15:52:11 +00006354 // those are opted out of the common argument checks.
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006355 //
6356 // We also bail on unknown and ignored attributes because those are handled
6357 // as part of the target-specific handling logic.
Erich Keanee891aa92018-07-13 15:07:47 +00006358 if (AL.getKind() == ParsedAttr::UnknownAttribute)
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006359 return false;
Aaron Ballman3aff6332013-12-02 19:30:36 +00006360 // Check whether the attribute requires specific language extensions to be
6361 // enabled.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006362 if (!AL.diagnoseLangOpts(S))
Aaron Ballman3aff6332013-12-02 19:30:36 +00006363 return true;
Alex Lorenz24952fb2017-04-19 15:52:11 +00006364 // Check whether the attribute appertains to the given subject.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006365 if (!AL.diagnoseAppertainsTo(S, D))
Alex Lorenz24952fb2017-04-19 15:52:11 +00006366 return true;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006367 if (AL.hasCustomParsing())
Alex Lorenz24952fb2017-04-19 15:52:11 +00006368 return false;
Aaron Ballman3aff6332013-12-02 19:30:36 +00006369
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006370 if (AL.getMinArgs() == AL.getMaxArgs()) {
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00006371 // If there are no optional arguments, then checking for the argument count
6372 // is trivial.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006373 if (!checkAttributeNumArgs(S, AL, AL.getMinArgs()))
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00006374 return true;
6375 } else {
6376 // There are optional arguments, so checking is slightly more involved.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006377 if (AL.getMinArgs() &&
6378 !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs()))
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00006379 return true;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006380 else if (!AL.hasVariadicArg() && AL.getMaxArgs() &&
6381 !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs()))
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00006382 return true;
6383 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00006384
Oren Ben Simhon220671a2018-03-17 13:31:35 +00006385 if (S.CheckAttrTarget(AL))
6386 return true;
6387
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006388 return false;
6389}
6390
Erich Keanee891aa92018-07-13 15:07:47 +00006391static void handleOpenCLAccessAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
Xiuli Pan11e13f62016-02-26 03:13:03 +00006392 if (D->isInvalidDecl())
6393 return;
6394
6395 // Check if there is only one access qualifier.
6396 if (D->hasAttr<OpenCLAccessAttr>()) {
Andrew Savonichev05a15af2018-09-06 15:10:26 +00006397 if (D->getAttr<OpenCLAccessAttr>()->getSemanticSpelling() ==
6398 AL.getSemanticSpelling()) {
6399 S.Diag(AL.getLoc(), diag::warn_duplicate_declspec)
6400 << AL.getName()->getName() << AL.getRange();
6401 } else {
6402 S.Diag(AL.getLoc(), diag::err_opencl_multiple_access_qualifiers)
6403 << D->getSourceRange();
6404 D->setInvalidDecl(true);
6405 return;
6406 }
Xiuli Pan11e13f62016-02-26 03:13:03 +00006407 }
6408
6409 // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an
6410 // image object can be read and written.
6411 // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe
6412 // object. Using the read_write (or __read_write) qualifier with the pipe
6413 // qualifier is a compilation error.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006414 if (const auto *PDecl = dyn_cast<ParmVarDecl>(D)) {
Xiuli Pan11e13f62016-02-26 03:13:03 +00006415 const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006416 if (AL.getName()->getName().find("read_write") != StringRef::npos) {
Anastasia Stulova2c4730d2019-02-15 12:07:57 +00006417 if ((!S.getLangOpts().OpenCLCPlusPlus &&
6418 S.getLangOpts().OpenCLVersion < 200) ||
6419 DeclTy->isPipeType()) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006420 S.Diag(AL.getLoc(), diag::err_opencl_invalid_read_write)
Erich Keane44bacdf2018-08-09 13:21:32 +00006421 << AL << PDecl->getType() << DeclTy->isImageType();
Xiuli Pan11e13f62016-02-26 03:13:03 +00006422 D->setInvalidDecl(true);
6423 return;
6424 }
6425 }
6426 }
6427
6428 D->addAttr(::new (S.Context) OpenCLAccessAttr(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006429 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
Xiuli Pan11e13f62016-02-26 03:13:03 +00006430}
6431
Erik Pilkington5a559e62018-08-21 17:24:06 +00006432static void handleDestroyAttr(Sema &S, Decl *D, const ParsedAttr &A) {
Erik Pilkington63e7ab12018-08-21 17:50:10 +00006433 if (!cast<VarDecl>(D)->hasGlobalStorage()) {
Erik Pilkington5a559e62018-08-21 17:24:06 +00006434 S.Diag(D->getLocation(), diag::err_destroy_attr_on_non_static_var)
6435 << (A.getKind() == ParsedAttr::AT_AlwaysDestroy);
6436 return;
6437 }
6438
Erik Pilkington63e7ab12018-08-21 17:50:10 +00006439 if (A.getKind() == ParsedAttr::AT_AlwaysDestroy)
Erik Pilkington5a559e62018-08-21 17:24:06 +00006440 handleSimpleAttributeWithExclusions<AlwaysDestroyAttr, NoDestroyAttr>(S, D, A);
Erik Pilkington63e7ab12018-08-21 17:50:10 +00006441 else
Erik Pilkington5a559e62018-08-21 17:24:06 +00006442 handleSimpleAttributeWithExclusions<NoDestroyAttr, AlwaysDestroyAttr>(S, D, A);
Erik Pilkington5a559e62018-08-21 17:24:06 +00006443}
6444
JF Bastien14daa202018-12-18 05:12:21 +00006445static void handleUninitializedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6446 assert(cast<VarDecl>(D)->getStorageDuration() == SD_Automatic &&
6447 "uninitialized is only valid on automatic duration variables");
6448 unsigned Index = AL.getAttributeSpellingListIndex();
6449 D->addAttr(::new (S.Context)
6450 UninitializedAttr(AL.getLoc(), S.Context, Index));
6451}
6452
Erik Pilkington1e368822019-01-04 18:33:06 +00006453static bool tryMakeVariablePseudoStrong(Sema &S, VarDecl *VD,
6454 bool DiagnoseFailure) {
6455 QualType Ty = VD->getType();
6456 if (!Ty->isObjCRetainableType()) {
6457 if (DiagnoseFailure) {
6458 S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6459 << 0;
6460 }
6461 return false;
6462 }
6463
6464 Qualifiers::ObjCLifetime LifetimeQual = Ty.getQualifiers().getObjCLifetime();
6465
6466 // Sema::inferObjCARCLifetime must run after processing decl attributes
6467 // (because __block lowers to an attribute), so if the lifetime hasn't been
6468 // explicitly specified, infer it locally now.
6469 if (LifetimeQual == Qualifiers::OCL_None)
6470 LifetimeQual = Ty->getObjCARCImplicitLifetime();
6471
6472 // The attributes only really makes sense for __strong variables; ignore any
6473 // attempts to annotate a parameter with any other lifetime qualifier.
6474 if (LifetimeQual != Qualifiers::OCL_Strong) {
6475 if (DiagnoseFailure) {
6476 S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6477 << 1;
6478 }
6479 return false;
6480 }
6481
6482 // Tampering with the type of a VarDecl here is a bit of a hack, but we need
6483 // to ensure that the variable is 'const' so that we can error on
6484 // modification, which can otherwise over-release.
6485 VD->setType(Ty.withConst());
6486 VD->setARCPseudoStrong(true);
6487 return true;
6488}
6489
6490static void handleObjCExternallyRetainedAttr(Sema &S, Decl *D,
6491 const ParsedAttr &AL) {
6492 if (auto *VD = dyn_cast<VarDecl>(D)) {
6493 assert(!isa<ParmVarDecl>(VD) && "should be diagnosed automatically");
6494 if (!VD->hasLocalStorage()) {
6495 S.Diag(D->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6496 << 0;
6497 return;
6498 }
6499
6500 if (!tryMakeVariablePseudoStrong(S, VD, /*DiagnoseFailure=*/true))
6501 return;
6502
6503 handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
6504 return;
6505 }
6506
6507 // If D is a function-like declaration (method, block, or function), then we
6508 // make every parameter psuedo-strong.
6509 for (unsigned I = 0, E = getFunctionOrMethodNumParams(D); I != E; ++I) {
6510 auto *PVD = const_cast<ParmVarDecl *>(getFunctionOrMethodParam(D, I));
6511 QualType Ty = PVD->getType();
6512
6513 // If a user wrote a parameter with __strong explicitly, then assume they
6514 // want "real" strong semantics for that parameter. This works because if
6515 // the parameter was written with __strong, then the strong qualifier will
6516 // be non-local.
6517 if (Ty.getLocalUnqualifiedType().getQualifiers().getObjCLifetime() ==
6518 Qualifiers::OCL_Strong)
6519 continue;
6520
6521 tryMakeVariablePseudoStrong(S, PVD, /*DiagnoseFailure=*/false);
6522 }
6523 handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
6524}
6525
Erik Pilkingtone3cd7352019-02-11 23:21:39 +00006526static void handleFortifyStdLib(Sema &S, Decl *D, const ParsedAttr &AL) {
6527 auto *FD = cast<FunctionDecl>(D);
6528 unsigned VariantID = Builtin::getFortifiedVariantFunction(FD->getBuiltinID());
6529 if (VariantID == 0) {
6530 S.Diag(D->getLocation(), diag::err_fortify_std_lib_bad_decl);
6531 return;
6532 }
6533
6534 uint32_t BOSType, Flag;
6535 if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), BOSType, 0, true) ||
6536 !checkUInt32Argument(S, AL, AL.getArgAsExpr(1), Flag, 1, true))
6537 return;
6538
6539 if (BOSType > 3) {
6540 S.Diag(AL.getArgAsExpr(0)->getBeginLoc(),
Aaron Ballman52c9ad22019-02-12 13:04:11 +00006541 diag::err_attribute_argument_out_of_range)
Erik Pilkingtone3cd7352019-02-11 23:21:39 +00006542 << AL << 0 << 3;
6543 return;
6544 }
6545
6546 D->addAttr(::new (S.getASTContext()) FortifyStdLibAttr(
6547 AL.getLoc(), S.getASTContext(), BOSType, Flag,
6548 AL.getAttributeSpellingListIndex()));
6549}
6550
Artem Dergachevc333d772019-02-21 00:01:02 +00006551static void handleMIGServerRoutineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6552 // Check that the return type is a `typedef int kern_return_t` or a typedef
6553 // around it, because otherwise MIG convention checks make no sense.
6554 // BlockDecl doesn't store a return type, so it's annoying to check,
6555 // so let's skip it for now.
6556 if (!isa<BlockDecl>(D)) {
6557 QualType T = getFunctionOrMethodResultType(D);
6558 bool IsKernReturnT = false;
6559 while (const auto *TT = T->getAs<TypedefType>()) {
6560 IsKernReturnT = (TT->getDecl()->getName() == "kern_return_t");
6561 T = TT->desugar();
6562 }
6563 if (!IsKernReturnT || T.getCanonicalType() != S.getASTContext().IntTy) {
6564 S.Diag(D->getBeginLoc(),
6565 diag::warn_mig_server_routine_does_not_return_kern_return_t);
6566 return;
6567 }
6568 }
6569
6570 handleSimpleAttribute<MIGServerRoutineAttr>(S, D, AL);
6571}
6572
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00006573//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006574// Top Level Sema Entry Points
6575//===----------------------------------------------------------------------===//
6576
Richard Smithf8a75c32013-08-29 00:47:48 +00006577/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
6578/// the attribute applies to decls. If the attribute is a type attribute, just
6579/// silently ignore it if a GNU attribute.
6580static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
Erich Keanee891aa92018-07-13 15:07:47 +00006581 const ParsedAttr &AL,
Richard Smithf8a75c32013-08-29 00:47:48 +00006582 bool IncludeCXX11Attributes) {
Erich Keanee891aa92018-07-13 15:07:47 +00006583 if (AL.isInvalid() || AL.getKind() == ParsedAttr::IgnoredAttribute)
Richard Smithf8a75c32013-08-29 00:47:48 +00006584 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00006585
Richard Smithf8a75c32013-08-29 00:47:48 +00006586 // Ignore C++11 attributes on declarator chunks: they appertain to the type
6587 // instead.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006588 if (AL.isCXX11Attribute() && !IncludeCXX11Attributes)
Richard Smithf8a75c32013-08-29 00:47:48 +00006589 return;
6590
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006591 // Unknown attributes are automatically warned on. Target-specific attributes
6592 // which do not apply to the current target architecture are treated as
6593 // though they were unknown attributes.
Erich Keanee891aa92018-07-13 15:07:47 +00006594 if (AL.getKind() == ParsedAttr::UnknownAttribute ||
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006595 !AL.existsInTarget(S.Context.getTargetInfo())) {
Simon Pilgrimfc0ff612018-12-17 12:17:37 +00006596 S.Diag(AL.getLoc(),
6597 AL.isDeclspecAttribute()
6598 ? (unsigned)diag::warn_unhandled_ms_attribute_ignored
6599 : (unsigned)diag::warn_unknown_attribute_ignored)
Erich Keane44bacdf2018-08-09 13:21:32 +00006600 << AL;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006601 return;
6602 }
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006603
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006604 if (handleCommonAttributeFeatures(S, D, AL))
Aaron Ballman8ee40b72013-09-09 23:33:17 +00006605 return;
6606
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006607 switch (AL.getKind()) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00006608 default:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006609 if (!AL.isStmtAttr()) {
Richard Smith4f902c72016-03-08 00:32:55 +00006610 // Type attributes are handled elsewhere; silently move on.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006611 assert(AL.isTypeAttr() && "Non-type attribute not handled");
Richard Smith4f902c72016-03-08 00:32:55 +00006612 break;
6613 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006614 S.Diag(AL.getLoc(), diag::err_stmt_attribute_invalid_on_decl)
Erich Keane44bacdf2018-08-09 13:21:32 +00006615 << AL << D->getLocation();
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006616 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006617 case ParsedAttr::AT_Interrupt:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006618 handleInterruptAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006619 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006620 case ParsedAttr::AT_X86ForceAlignArgPointer:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006621 handleX86ForceAlignArgPointerAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006622 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006623 case ParsedAttr::AT_DLLExport:
6624 case ParsedAttr::AT_DLLImport:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006625 handleDLLAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006626 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006627 case ParsedAttr::AT_Mips16:
Simon Atanasyan2c87f532017-05-22 12:47:43 +00006628 handleSimpleAttributeWithExclusions<Mips16Attr, MicroMipsAttr,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006629 MipsInterruptAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006630 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006631 case ParsedAttr::AT_NoMips16:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006632 handleSimpleAttribute<NoMips16Attr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006633 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006634 case ParsedAttr::AT_MicroMips:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006635 handleSimpleAttributeWithExclusions<MicroMipsAttr, Mips16Attr>(S, D, AL);
Simon Atanasyan2c87f532017-05-22 12:47:43 +00006636 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006637 case ParsedAttr::AT_NoMicroMips:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006638 handleSimpleAttribute<NoMicroMipsAttr>(S, D, AL);
Simon Atanasyan2c87f532017-05-22 12:47:43 +00006639 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006640 case ParsedAttr::AT_MipsLongCall:
Simon Atanasyan1a116db2017-07-20 20:34:18 +00006641 handleSimpleAttributeWithExclusions<MipsLongCallAttr, MipsShortCallAttr>(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006642 S, D, AL);
Simon Atanasyan1a116db2017-07-20 20:34:18 +00006643 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006644 case ParsedAttr::AT_MipsShortCall:
Simon Atanasyan1a116db2017-07-20 20:34:18 +00006645 handleSimpleAttributeWithExclusions<MipsShortCallAttr, MipsLongCallAttr>(
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006646 S, D, AL);
Simon Atanasyan1a116db2017-07-20 20:34:18 +00006647 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006648 case ParsedAttr::AT_AMDGPUFlatWorkGroupSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006649 handleAMDGPUFlatWorkGroupSizeAttr(S, D, AL);
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006650 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006651 case ParsedAttr::AT_AMDGPUWavesPerEU:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006652 handleAMDGPUWavesPerEUAttr(S, D, AL);
Matt Arsenault43fae6c2014-12-04 20:38:18 +00006653 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006654 case ParsedAttr::AT_AMDGPUNumSGPR:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006655 handleAMDGPUNumSGPRAttr(S, D, AL);
Matt Arsenault43fae6c2014-12-04 20:38:18 +00006656 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006657 case ParsedAttr::AT_AMDGPUNumVGPR:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006658 handleAMDGPUNumVGPRAttr(S, D, AL);
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006659 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006660 case ParsedAttr::AT_AVRSignal:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006661 handleAVRSignalAttr(S, D, AL);
Dylan McKaye8232d72017-02-08 05:09:26 +00006662 break;
Dan Gohmanb4323692019-01-24 21:08:30 +00006663 case ParsedAttr::AT_WebAssemblyImportModule:
6664 handleWebAssemblyImportModuleAttr(S, D, AL);
6665 break;
Dan Gohmancae84592019-02-01 22:25:23 +00006666 case ParsedAttr::AT_WebAssemblyImportName:
6667 handleWebAssemblyImportNameAttr(S, D, AL);
6668 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006669 case ParsedAttr::AT_IBAction:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006670 handleSimpleAttribute<IBActionAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006671 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006672 case ParsedAttr::AT_IBOutlet:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006673 handleIBOutlet(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006674 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006675 case ParsedAttr::AT_IBOutletCollection:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006676 handleIBOutletCollection(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006677 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006678 case ParsedAttr::AT_IFunc:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006679 handleIFuncAttr(S, D, AL);
Dmitry Polukhin85eda122016-04-11 07:48:59 +00006680 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006681 case ParsedAttr::AT_Alias:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006682 handleAliasAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006683 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006684 case ParsedAttr::AT_Aligned:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006685 handleAlignedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006686 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006687 case ParsedAttr::AT_AlignValue:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006688 handleAlignValueAttr(S, D, AL);
Hal Finkel1b0d24e2014-10-02 21:21:25 +00006689 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006690 case ParsedAttr::AT_AllocSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006691 handleAllocSizeAttr(S, D, AL);
George Burgess IVe3763372016-12-22 02:50:20 +00006692 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006693 case ParsedAttr::AT_AlwaysInline:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006694 handleAlwaysInlineAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006695 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006696 case ParsedAttr::AT_Artificial:
Aaron Ballman736c09b2018-02-15 16:28:10 +00006697 handleSimpleAttribute<ArtificialAttr>(S, D, AL);
Erich Keane293a0552018-02-14 00:14:07 +00006698 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006699 case ParsedAttr::AT_AnalyzerNoReturn:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006700 handleAnalyzerNoReturnAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006701 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006702 case ParsedAttr::AT_TLSModel:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006703 handleTLSModelAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006704 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006705 case ParsedAttr::AT_Annotate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006706 handleAnnotateAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006707 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006708 case ParsedAttr::AT_Availability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006709 handleAvailabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006710 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006711 case ParsedAttr::AT_CarriesDependency:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006712 handleDependencyAttr(S, scope, D, AL);
Richard Smithe233fbf2013-01-28 22:42:45 +00006713 break;
Erich Keane3efe0022018-07-20 14:13:28 +00006714 case ParsedAttr::AT_CPUDispatch:
6715 case ParsedAttr::AT_CPUSpecific:
6716 handleCPUSpecificAttr(S, D, AL);
6717 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006718 case ParsedAttr::AT_Common:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006719 handleCommonAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006720 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006721 case ParsedAttr::AT_CUDAConstant:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006722 handleConstantAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006723 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006724 case ParsedAttr::AT_PassObjectSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006725 handlePassObjectSizeAttr(S, D, AL);
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00006726 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006727 case ParsedAttr::AT_Constructor:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006728 handleConstructorAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006729 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006730 case ParsedAttr::AT_CXX11NoReturn:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006731 handleSimpleAttribute<CXX11NoReturnAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006732 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006733 case ParsedAttr::AT_Deprecated:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006734 handleDeprecatedAttr(S, D, AL);
Benjamin Kramerf435ab42012-05-16 12:19:08 +00006735 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006736 case ParsedAttr::AT_Destructor:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006737 handleDestructorAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006738 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006739 case ParsedAttr::AT_EnableIf:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006740 handleEnableIfAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006741 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006742 case ParsedAttr::AT_DiagnoseIf:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006743 handleDiagnoseIfAttr(S, D, AL);
George Burgess IV177399e2017-01-09 04:12:14 +00006744 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006745 case ParsedAttr::AT_ExtVectorType:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006746 handleExtVectorTypeAttr(S, D, AL);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006747 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006748 case ParsedAttr::AT_ExternalSourceSymbol:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006749 handleExternalSourceSymbolAttr(S, D, AL);
Alex Lorenzd5d27e12017-03-01 18:06:25 +00006750 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006751 case ParsedAttr::AT_MinSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006752 handleMinSizeAttr(S, D, AL);
Quentin Colombet4e172062012-11-01 23:55:47 +00006753 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006754 case ParsedAttr::AT_OptimizeNone:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006755 handleOptimizeNoneAttr(S, D, AL);
Paul Robinsonf0674352014-03-31 22:29:15 +00006756 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006757 case ParsedAttr::AT_FlagEnum:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006758 handleSimpleAttribute<FlagEnumAttr>(S, D, AL);
Alexis Hunt724f14e2014-11-28 00:53:20 +00006759 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006760 case ParsedAttr::AT_EnumExtensibility:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006761 handleEnumExtensibilityAttr(S, D, AL);
Akira Hatanaka3c268af2017-03-21 02:23:00 +00006762 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006763 case ParsedAttr::AT_Flatten:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006764 handleSimpleAttribute<FlattenAttr>(S, D, AL);
Peter Collingbourne41af7c22014-05-20 17:12:51 +00006765 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006766 case ParsedAttr::AT_Format:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006767 handleFormatAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006768 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006769 case ParsedAttr::AT_FormatArg:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006770 handleFormatArgAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006771 break;
Johannes Doerfertac991bb2019-01-19 05:36:54 +00006772 case ParsedAttr::AT_Callback:
6773 handleCallbackAttr(S, D, AL);
6774 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006775 case ParsedAttr::AT_CUDAGlobal:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006776 handleGlobalAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006777 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006778 case ParsedAttr::AT_CUDADevice:
Justin Lebar3eaaf862016-01-13 01:07:35 +00006779 handleSimpleAttributeWithExclusions<CUDADeviceAttr, CUDAGlobalAttr>(S, D,
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006780 AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006781 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006782 case ParsedAttr::AT_CUDAHost:
Erich Keanec480f302018-07-12 21:09:05 +00006783 handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006784 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006785 case ParsedAttr::AT_GNUInline:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006786 handleGNUInlineAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006787 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006788 case ParsedAttr::AT_CUDALaunchBounds:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006789 handleLaunchBoundsAttr(S, D, AL);
Peter Collingbourne827301e2010-12-12 23:03:07 +00006790 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006791 case ParsedAttr::AT_Restrict:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006792 handleRestrictAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006793 break;
Richard Smithf4e248c2018-08-01 00:33:25 +00006794 case ParsedAttr::AT_LifetimeBound:
6795 handleSimpleAttribute<LifetimeBoundAttr>(S, D, AL);
6796 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006797 case ParsedAttr::AT_MayAlias:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006798 handleSimpleAttribute<MayAliasAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006799 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006800 case ParsedAttr::AT_Mode:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006801 handleModeAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006802 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006803 case ParsedAttr::AT_NoAlias:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006804 handleSimpleAttribute<NoAliasAttr>(S, D, AL);
David Majnemer1bf0f8e2015-07-20 22:51:52 +00006805 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006806 case ParsedAttr::AT_NoCommon:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006807 handleSimpleAttribute<NoCommonAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006808 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006809 case ParsedAttr::AT_NoSplitStack:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006810 handleSimpleAttribute<NoSplitStackAttr>(S, D, AL);
Peter Collingbourneb4728c12014-05-19 22:14:34 +00006811 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006812 case ParsedAttr::AT_NonNull:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006813 if (auto *PVD = dyn_cast<ParmVarDecl>(D))
6814 handleNonNullAttrParameter(S, PVD, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006815 else
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006816 handleNonNullAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006817 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006818 case ParsedAttr::AT_ReturnsNonNull:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006819 handleReturnsNonNullAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006820 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006821 case ParsedAttr::AT_NoEscape:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006822 handleNoEscapeAttr(S, D, AL);
Akira Hatanaka98a49332017-09-22 00:41:05 +00006823 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006824 case ParsedAttr::AT_AssumeAligned:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006825 handleAssumeAlignedAttr(S, D, AL);
Hal Finkelee90a222014-09-26 05:04:30 +00006826 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006827 case ParsedAttr::AT_AllocAlign:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006828 handleAllocAlignAttr(S, D, AL);
Erich Keane623efd82017-03-30 21:48:55 +00006829 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006830 case ParsedAttr::AT_Overloadable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006831 handleSimpleAttribute<OverloadableAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006832 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006833 case ParsedAttr::AT_Ownership:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006834 handleOwnershipAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006835 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006836 case ParsedAttr::AT_Cold:
Aaron Ballman3cfa9d12018-03-04 15:32:01 +00006837 handleSimpleAttributeWithExclusions<ColdAttr, HotAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006838 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006839 case ParsedAttr::AT_Hot:
Aaron Ballman3cfa9d12018-03-04 15:32:01 +00006840 handleSimpleAttributeWithExclusions<HotAttr, ColdAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006841 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006842 case ParsedAttr::AT_Naked:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006843 handleNakedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006844 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006845 case ParsedAttr::AT_NoReturn:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006846 handleNoReturnAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006847 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006848 case ParsedAttr::AT_AnyX86NoCfCheck:
Oren Ben Simhon220671a2018-03-17 13:31:35 +00006849 handleNoCfCheckAttr(S, D, AL);
6850 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006851 case ParsedAttr::AT_NoThrow:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006852 handleSimpleAttribute<NoThrowAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006853 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006854 case ParsedAttr::AT_CUDAShared:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006855 handleSharedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006856 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006857 case ParsedAttr::AT_VecReturn:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006858 handleVecReturnAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006859 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006860 case ParsedAttr::AT_ObjCOwnership:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006861 handleObjCOwnershipAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006862 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006863 case ParsedAttr::AT_ObjCPreciseLifetime:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006864 handleObjCPreciseLifetimeAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006865 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006866 case ParsedAttr::AT_ObjCReturnsInnerPointer:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006867 handleObjCReturnsInnerPointerAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006868 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006869 case ParsedAttr::AT_ObjCRequiresSuper:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006870 handleObjCRequiresSuperAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006871 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006872 case ParsedAttr::AT_ObjCBridge:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006873 handleObjCBridgeAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006874 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006875 case ParsedAttr::AT_ObjCBridgeMutable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006876 handleObjCBridgeMutableAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006877 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006878 case ParsedAttr::AT_ObjCBridgeRelated:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006879 handleObjCBridgeRelatedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006880 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006881 case ParsedAttr::AT_ObjCDesignatedInitializer:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006882 handleObjCDesignatedInitializer(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006883 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006884 case ParsedAttr::AT_ObjCRuntimeName:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006885 handleObjCRuntimeName(S, D, AL);
Fariborz Jahanian451b92a2014-07-16 16:16:04 +00006886 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006887 case ParsedAttr::AT_ObjCRuntimeVisible:
6888 handleSimpleAttribute<ObjCRuntimeVisibleAttr>(S, D, AL);
6889 break;
6890 case ParsedAttr::AT_ObjCBoxable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006891 handleObjCBoxable(S, D, AL);
Alex Denisovfde64952015-06-26 05:28:36 +00006892 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006893 case ParsedAttr::AT_CFAuditedTransfer:
Aaron Ballman3cfa9d12018-03-04 15:32:01 +00006894 handleSimpleAttributeWithExclusions<CFAuditedTransferAttr,
6895 CFUnknownTransferAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006896 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006897 case ParsedAttr::AT_CFUnknownTransfer:
Aaron Ballman3cfa9d12018-03-04 15:32:01 +00006898 handleSimpleAttributeWithExclusions<CFUnknownTransferAttr,
6899 CFAuditedTransferAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006900 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006901 case ParsedAttr::AT_CFConsumed:
6902 case ParsedAttr::AT_NSConsumed:
George Karpenkov1657f362018-11-30 02:18:37 +00006903 case ParsedAttr::AT_OSConsumed:
6904 S.AddXConsumedAttr(D, AL.getRange(), AL.getAttributeSpellingListIndex(),
6905 parsedAttrToRetainOwnershipKind(AL),
6906 /*IsTemplateInstantiation=*/false);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006907 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006908 case ParsedAttr::AT_NSConsumesSelf:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006909 handleSimpleAttribute<NSConsumesSelfAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006910 break;
George Karpenkovda2c77f2018-12-06 22:06:59 +00006911 case ParsedAttr::AT_OSConsumesThis:
6912 handleSimpleAttribute<OSConsumesThisAttr>(S, D, AL);
6913 break;
George Karpenkov3a50a9f2019-01-11 18:02:08 +00006914 case ParsedAttr::AT_OSReturnsRetainedOnZero:
6915 handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnZeroAttr>(
6916 S, D, AL, isValidOSObjectOutParameter(D),
6917 diag::warn_ns_attribute_wrong_parameter_type,
6918 /*Extra Args=*/AL, /*pointer-to-OSObject-pointer*/ 3, AL.getRange());
6919 break;
6920 case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
6921 handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnNonZeroAttr>(
6922 S, D, AL, isValidOSObjectOutParameter(D),
6923 diag::warn_ns_attribute_wrong_parameter_type,
6924 /*Extra Args=*/AL, /*pointer-to-OSObject-poointer*/ 3, AL.getRange());
6925 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006926 case ParsedAttr::AT_NSReturnsAutoreleased:
6927 case ParsedAttr::AT_NSReturnsNotRetained:
Erich Keanee891aa92018-07-13 15:07:47 +00006928 case ParsedAttr::AT_NSReturnsRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00006929 case ParsedAttr::AT_CFReturnsNotRetained:
Erich Keanee891aa92018-07-13 15:07:47 +00006930 case ParsedAttr::AT_CFReturnsRetained:
George Karpenkov1657f362018-11-30 02:18:37 +00006931 case ParsedAttr::AT_OSReturnsNotRetained:
6932 case ParsedAttr::AT_OSReturnsRetained:
6933 handleXReturnsXRetainedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006934 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006935 case ParsedAttr::AT_WorkGroupSizeHint:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006936 handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006937 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006938 case ParsedAttr::AT_ReqdWorkGroupSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006939 handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006940 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006941 case ParsedAttr::AT_OpenCLIntelReqdSubGroupSize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006942 handleSubGroupSize(S, D, AL);
Xiuli Panbe6da4b2017-05-04 07:31:20 +00006943 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006944 case ParsedAttr::AT_VecTypeHint:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006945 handleVecTypeHint(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006946 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006947 case ParsedAttr::AT_RequireConstantInit:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006948 handleSimpleAttribute<RequireConstantInitAttr>(S, D, AL);
Eric Fiselier341e8252016-09-02 18:53:31 +00006949 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006950 case ParsedAttr::AT_InitPriority:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006951 handleInitPriorityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006952 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006953 case ParsedAttr::AT_Packed:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006954 handlePackedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006955 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006956 case ParsedAttr::AT_Section:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006957 handleSectionAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006958 break;
Zola Bridgescbac3ad2018-11-27 19:56:46 +00006959 case ParsedAttr::AT_SpeculativeLoadHardening:
Zola Bridges826ef592019-01-18 17:20:46 +00006960 handleSimpleAttributeWithExclusions<SpeculativeLoadHardeningAttr,
6961 NoSpeculativeLoadHardeningAttr>(S, D,
6962 AL);
6963 break;
6964 case ParsedAttr::AT_NoSpeculativeLoadHardening:
6965 handleSimpleAttributeWithExclusions<NoSpeculativeLoadHardeningAttr,
6966 SpeculativeLoadHardeningAttr>(S, D, AL);
Zola Bridgescbac3ad2018-11-27 19:56:46 +00006967 break;
Erich Keane7963e8b2018-07-18 20:04:48 +00006968 case ParsedAttr::AT_CodeSeg:
6969 handleCodeSegAttr(S, D, AL);
6970 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006971 case ParsedAttr::AT_Target:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006972 handleTargetAttr(S, D, AL);
Eric Christopher11acf732015-06-12 01:35:52 +00006973 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006974 case ParsedAttr::AT_MinVectorWidth:
Craig Topper74c10e32018-07-09 19:00:16 +00006975 handleMinVectorWidthAttr(S, D, AL);
6976 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006977 case ParsedAttr::AT_Unavailable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006978 handleAttrWithMessage<UnavailableAttr>(S, D, AL);
Benjamin Kramerf435ab42012-05-16 12:19:08 +00006979 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006980 case ParsedAttr::AT_ArcWeakrefUnavailable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006981 handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006982 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006983 case ParsedAttr::AT_ObjCRootClass:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006984 handleSimpleAttribute<ObjCRootClassAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006985 break;
Joe Danielsf7393d22019-02-04 23:32:55 +00006986 case ParsedAttr::AT_ObjCNonLazyClass:
6987 handleSimpleAttribute<ObjCNonLazyClassAttr>(S, D, AL);
6988 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006989 case ParsedAttr::AT_ObjCSubclassingRestricted:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006990 handleSimpleAttribute<ObjCSubclassingRestrictedAttr>(S, D, AL);
Alex Lorenza8c44ba2016-10-28 10:25:10 +00006991 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006992 case ParsedAttr::AT_ObjCExplicitProtocolImpl:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006993 handleObjCSuppresProtocolAttr(S, D, AL);
Ted Kremenek28eace62013-11-23 01:01:34 +00006994 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006995 case ParsedAttr::AT_ObjCRequiresPropertyDefs:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006996 handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006997 break;
Erich Keanee891aa92018-07-13 15:07:47 +00006998 case ParsedAttr::AT_Unused:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00006999 handleUnusedAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007000 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007001 case ParsedAttr::AT_ReturnsTwice:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007002 handleSimpleAttribute<ReturnsTwiceAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007003 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007004 case ParsedAttr::AT_NotTailCalled:
Erich Keanec480f302018-07-12 21:09:05 +00007005 handleSimpleAttributeWithExclusions<NotTailCalledAttr, AlwaysInlineAttr>(
7006 S, D, AL);
Akira Hatanakac8667622015-11-06 23:56:15 +00007007 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007008 case ParsedAttr::AT_DisableTailCalls:
Erich Keanec480f302018-07-12 21:09:05 +00007009 handleSimpleAttributeWithExclusions<DisableTailCallsAttr, NakedAttr>(S, D,
7010 AL);
Akira Hatanaka7828b1e2015-11-13 00:42:21 +00007011 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007012 case ParsedAttr::AT_Used:
Aaron Ballman1a3901c2018-03-03 21:02:09 +00007013 handleSimpleAttribute<UsedAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007014 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007015 case ParsedAttr::AT_Visibility:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007016 handleVisibilityAttr(S, D, AL, false);
John McCalld041a9b2013-02-20 01:54:26 +00007017 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007018 case ParsedAttr::AT_TypeVisibility:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007019 handleVisibilityAttr(S, D, AL, true);
John McCalld041a9b2013-02-20 01:54:26 +00007020 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007021 case ParsedAttr::AT_WarnUnused:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007022 handleSimpleAttribute<WarnUnusedAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007023 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007024 case ParsedAttr::AT_WarnUnusedResult:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007025 handleWarnUnusedResult(S, D, AL);
Chris Lattner237f2752009-02-14 07:37:35 +00007026 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007027 case ParsedAttr::AT_Weak:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007028 handleSimpleAttribute<WeakAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007029 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007030 case ParsedAttr::AT_WeakRef:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007031 handleWeakRefAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007032 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007033 case ParsedAttr::AT_WeakImport:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007034 handleWeakImportAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007035 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007036 case ParsedAttr::AT_TransparentUnion:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007037 handleTransparentUnionAttr(S, D, AL);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00007038 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007039 case ParsedAttr::AT_ObjCException:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007040 handleSimpleAttribute<ObjCExceptionAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007041 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007042 case ParsedAttr::AT_ObjCMethodFamily:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007043 handleObjCMethodFamilyAttr(S, D, AL);
John McCall86bc21f2011-03-02 11:33:24 +00007044 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007045 case ParsedAttr::AT_ObjCNSObject:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007046 handleObjCNSObject(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007047 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007048 case ParsedAttr::AT_ObjCIndependentClass:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007049 handleObjCIndependentClass(S, D, AL);
Fariborz Jahanian7a60b6d2015-04-16 18:38:44 +00007050 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007051 case ParsedAttr::AT_Blocks:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007052 handleBlocksAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007053 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007054 case ParsedAttr::AT_Sentinel:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007055 handleSentinelAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007056 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007057 case ParsedAttr::AT_Const:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007058 handleSimpleAttribute<ConstAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007059 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007060 case ParsedAttr::AT_Pure:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007061 handleSimpleAttribute<PureAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007062 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007063 case ParsedAttr::AT_Cleanup:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007064 handleCleanupAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007065 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007066 case ParsedAttr::AT_NoDebug:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007067 handleNoDebugAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007068 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007069 case ParsedAttr::AT_NoDuplicate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007070 handleSimpleAttribute<NoDuplicateAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007071 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007072 case ParsedAttr::AT_Convergent:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007073 handleSimpleAttribute<ConvergentAttr>(S, D, AL);
Yaxun Liu7d07ae72016-11-01 18:45:32 +00007074 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007075 case ParsedAttr::AT_NoInline:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007076 handleSimpleAttribute<NoInlineAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007077 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007078 case ParsedAttr::AT_NoInstrumentFunction: // Interacts with -pg.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007079 handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007080 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007081 case ParsedAttr::AT_NoStackProtector:
Manoj Gupta4fbf84c2018-05-09 21:41:18 +00007082 // Interacts with -fstack-protector options.
7083 handleSimpleAttribute<NoStackProtectorAttr>(S, D, AL);
7084 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007085 case ParsedAttr::AT_StdCall:
7086 case ParsedAttr::AT_CDecl:
7087 case ParsedAttr::AT_FastCall:
7088 case ParsedAttr::AT_ThisCall:
7089 case ParsedAttr::AT_Pascal:
7090 case ParsedAttr::AT_RegCall:
7091 case ParsedAttr::AT_SwiftCall:
7092 case ParsedAttr::AT_VectorCall:
7093 case ParsedAttr::AT_MSABI:
7094 case ParsedAttr::AT_SysVABI:
7095 case ParsedAttr::AT_Pcs:
7096 case ParsedAttr::AT_IntelOclBicc:
7097 case ParsedAttr::AT_PreserveMost:
7098 case ParsedAttr::AT_PreserveAll:
Sander de Smalen44a22532018-11-26 16:38:37 +00007099 case ParsedAttr::AT_AArch64VectorPcs:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007100 handleCallConvAttr(S, D, AL);
John McCallab26cfa2010-02-05 21:31:56 +00007101 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007102 case ParsedAttr::AT_Suppress:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007103 handleSuppressAttr(S, D, AL);
Matthias Gehre01a63382017-03-27 19:45:24 +00007104 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007105 case ParsedAttr::AT_OpenCLKernel:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007106 handleSimpleAttribute<OpenCLKernelAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007107 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007108 case ParsedAttr::AT_OpenCLAccess:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007109 handleOpenCLAccessAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007110 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007111 case ParsedAttr::AT_OpenCLNoSVM:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007112 handleOpenCLNoSVMAttr(S, D, AL);
Anastasia Stulovafde76222016-04-01 16:05:09 +00007113 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007114 case ParsedAttr::AT_SwiftContext:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007115 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftContext);
John McCall477f2bb2016-03-03 06:39:32 +00007116 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007117 case ParsedAttr::AT_SwiftErrorResult:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007118 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftErrorResult);
John McCall477f2bb2016-03-03 06:39:32 +00007119 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007120 case ParsedAttr::AT_SwiftIndirectResult:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007121 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftIndirectResult);
John McCall477f2bb2016-03-03 06:39:32 +00007122 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007123 case ParsedAttr::AT_InternalLinkage:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007124 handleInternalLinkageAttr(S, D, AL);
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00007125 break;
Louis Dionned2695792018-10-04 15:49:42 +00007126 case ParsedAttr::AT_ExcludeFromExplicitInstantiation:
7127 handleSimpleAttribute<ExcludeFromExplicitInstantiationAttr>(S, D, AL);
7128 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007129 case ParsedAttr::AT_LTOVisibilityPublic:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007130 handleSimpleAttribute<LTOVisibilityPublicAttr>(S, D, AL);
Peter Collingbourne3afb2662016-04-28 17:09:37 +00007131 break;
John McCall8d32c052012-05-22 21:28:12 +00007132
7133 // Microsoft attributes:
Erich Keanee891aa92018-07-13 15:07:47 +00007134 case ParsedAttr::AT_EmptyBases:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007135 handleSimpleAttribute<EmptyBasesAttr>(S, D, AL);
David Majnemercd3ebfe2016-05-23 17:16:12 +00007136 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007137 case ParsedAttr::AT_LayoutVersion:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007138 handleLayoutVersion(S, D, AL);
David Majnemercd3ebfe2016-05-23 17:16:12 +00007139 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007140 case ParsedAttr::AT_TrivialABI:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007141 handleSimpleAttribute<TrivialABIAttr>(S, D, AL);
Akira Hatanaka02914dc2018-02-05 20:23:22 +00007142 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007143 case ParsedAttr::AT_MSNoVTable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007144 handleSimpleAttribute<MSNoVTableAttr>(S, D, AL);
David Majnemer129f4172015-02-02 10:22:20 +00007145 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007146 case ParsedAttr::AT_MSStruct:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007147 handleSimpleAttribute<MSStructAttr>(S, D, AL);
John McCall8d32c052012-05-22 21:28:12 +00007148 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007149 case ParsedAttr::AT_Uuid:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007150 handleUuidAttr(S, D, AL);
Francois Picheta83957a2010-12-19 06:50:37 +00007151 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007152 case ParsedAttr::AT_MSInheritance:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007153 handleMSInheritanceAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007154 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007155 case ParsedAttr::AT_SelectAny:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007156 handleSimpleAttribute<SelectAnyAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007157 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007158 case ParsedAttr::AT_Thread:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007159 handleDeclspecThreadAttr(S, D, AL);
Reid Kleckner7d6d2702014-05-01 03:16:47 +00007160 break;
David Majnemercd3ebfe2016-05-23 17:16:12 +00007161
Erich Keanee891aa92018-07-13 15:07:47 +00007162 case ParsedAttr::AT_AbiTag:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007163 handleAbiTagAttr(S, D, AL);
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00007164 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00007165
7166 // Thread safety attributes:
Erich Keanee891aa92018-07-13 15:07:47 +00007167 case ParsedAttr::AT_AssertExclusiveLock:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007168 handleAssertExclusiveLockAttr(S, D, AL);
DeLesley Hutchinsb6824312013-05-17 23:02:59 +00007169 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007170 case ParsedAttr::AT_AssertSharedLock:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007171 handleAssertSharedLockAttr(S, D, AL);
DeLesley Hutchinsb6824312013-05-17 23:02:59 +00007172 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007173 case ParsedAttr::AT_GuardedVar:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007174 handleSimpleAttribute<GuardedVarAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007175 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007176 case ParsedAttr::AT_PtGuardedVar:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007177 handlePtGuardedVarAttr(S, D, AL);
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00007178 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007179 case ParsedAttr::AT_ScopedLockable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007180 handleSimpleAttribute<ScopedLockableAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007181 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007182 case ParsedAttr::AT_NoSanitize:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007183 handleNoSanitizeAttr(S, D, AL);
Peter Collingbourne915df992015-05-15 18:33:32 +00007184 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007185 case ParsedAttr::AT_NoSanitizeSpecific:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007186 handleNoSanitizeSpecificAttr(S, D, AL);
Kostya Serebryany588d6ab2012-01-24 19:25:38 +00007187 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007188 case ParsedAttr::AT_NoThreadSafetyAnalysis:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007189 handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, AL);
Kostya Serebryany4c0fc992013-02-26 06:58:27 +00007190 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007191 case ParsedAttr::AT_GuardedBy:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007192 handleGuardedByAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007193 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007194 case ParsedAttr::AT_PtGuardedBy:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007195 handlePtGuardedByAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007196 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007197 case ParsedAttr::AT_ExclusiveTrylockFunction:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007198 handleExclusiveTrylockFunctionAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007199 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007200 case ParsedAttr::AT_LockReturned:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007201 handleLockReturnedAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007202 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007203 case ParsedAttr::AT_LocksExcluded:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007204 handleLocksExcludedAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007205 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007206 case ParsedAttr::AT_SharedTrylockFunction:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007207 handleSharedTrylockFunctionAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007208 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007209 case ParsedAttr::AT_AcquiredBefore:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007210 handleAcquiredBeforeAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007211 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007212 case ParsedAttr::AT_AcquiredAfter:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007213 handleAcquiredAfterAttr(S, D, AL);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00007214 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00007215
Aaron Ballmanefe348e2014-02-18 17:36:50 +00007216 // Capability analysis attributes.
Erich Keanee891aa92018-07-13 15:07:47 +00007217 case ParsedAttr::AT_Capability:
7218 case ParsedAttr::AT_Lockable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007219 handleCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007220 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007221 case ParsedAttr::AT_RequiresCapability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007222 handleRequiresCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007223 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00007224
Erich Keanee891aa92018-07-13 15:07:47 +00007225 case ParsedAttr::AT_AssertCapability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007226 handleAssertCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007227 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007228 case ParsedAttr::AT_AcquireCapability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007229 handleAcquireCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007230 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007231 case ParsedAttr::AT_ReleaseCapability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007232 handleReleaseCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007233 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007234 case ParsedAttr::AT_TryAcquireCapability:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007235 handleTryAcquireCapabilityAttr(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007236 break;
Aaron Ballmanefe348e2014-02-18 17:36:50 +00007237
DeLesley Hutchins8d41d992013-10-11 22:30:48 +00007238 // Consumed analysis attributes.
Erich Keanee891aa92018-07-13 15:07:47 +00007239 case ParsedAttr::AT_Consumable:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007240 handleConsumableAttr(S, D, AL);
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00007241 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007242 case ParsedAttr::AT_ConsumableAutoCast:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007243 handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007244 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007245 case ParsedAttr::AT_ConsumableSetOnRead:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007246 handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, AL);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00007247 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007248 case ParsedAttr::AT_CallableWhen:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007249 handleCallableWhenAttr(S, D, AL);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00007250 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007251 case ParsedAttr::AT_ParamTypestate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007252 handleParamTypestateAttr(S, D, AL);
DeLesley Hutchins69391772013-10-17 23:23:53 +00007253 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007254 case ParsedAttr::AT_ReturnTypestate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007255 handleReturnTypestateAttr(S, D, AL);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00007256 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007257 case ParsedAttr::AT_SetTypestate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007258 handleSetTypestateAttr(S, D, AL);
DeLesley Hutchins33a29342013-10-11 23:03:26 +00007259 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007260 case ParsedAttr::AT_TestTypestate:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007261 handleTestTypestateAttr(S, D, AL);
DeLesley Hutchins33a29342013-10-11 23:03:26 +00007262 break;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00007263
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00007264 // Type safety attributes.
Erich Keanee891aa92018-07-13 15:07:47 +00007265 case ParsedAttr::AT_ArgumentWithTypeTag:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007266 handleArgumentWithTypeTagAttr(S, D, AL);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00007267 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007268 case ParsedAttr::AT_TypeTagForDatatype:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007269 handleTypeTagForDatatypeAttr(S, D, AL);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00007270 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007271 case ParsedAttr::AT_AnyX86NoCallerSavedRegisters:
Oren Ben Simhon220671a2018-03-17 13:31:35 +00007272 handleSimpleAttribute<AnyX86NoCallerSavedRegistersAttr>(S, D, AL);
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00007273 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007274 case ParsedAttr::AT_RenderScriptKernel:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007275 handleSimpleAttribute<RenderScriptKernelAttr>(S, D, AL);
Pirama Arumuga Nainar8b788d02016-06-09 23:34:20 +00007276 break;
Aaron Ballman7d2aecb2016-07-13 22:32:15 +00007277 // XRay attributes.
Erich Keanee891aa92018-07-13 15:07:47 +00007278 case ParsedAttr::AT_XRayInstrument:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007279 handleSimpleAttribute<XRayInstrumentAttr>(S, D, AL);
Aaron Ballman7d2aecb2016-07-13 22:32:15 +00007280 break;
Erich Keanee891aa92018-07-13 15:07:47 +00007281 case ParsedAttr::AT_XRayLogArgs:
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007282 handleXRayLogArgsAttr(S, D, AL);
Dean Michael Berris418da3f2017-03-06 07:08:21 +00007283 break;
Martin Bohme4e1293b2018-08-13 14:11:03 +00007284
7285 // Move semantics attribute.
7286 case ParsedAttr::AT_Reinitializes:
7287 handleSimpleAttribute<ReinitializesAttr>(S, D, AL);
7288 break;
Erik Pilkington5a559e62018-08-21 17:24:06 +00007289
7290 case ParsedAttr::AT_AlwaysDestroy:
7291 case ParsedAttr::AT_NoDestroy:
7292 handleDestroyAttr(S, D, AL);
7293 break;
JF Bastien14daa202018-12-18 05:12:21 +00007294
7295 case ParsedAttr::AT_Uninitialized:
7296 handleUninitializedAttr(S, D, AL);
7297 break;
Erik Pilkington1e368822019-01-04 18:33:06 +00007298
7299 case ParsedAttr::AT_ObjCExternallyRetained:
7300 handleObjCExternallyRetainedAttr(S, D, AL);
7301 break;
Erik Pilkingtone3cd7352019-02-11 23:21:39 +00007302
7303 case ParsedAttr::AT_FortifyStdLib:
7304 handleFortifyStdLib(S, D, AL);
7305 break;
Artem Dergachevc333d772019-02-21 00:01:02 +00007306
7307 case ParsedAttr::AT_MIGServerRoutine:
7308 handleMIGServerRoutineAttr(S, D, AL);
7309 break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00007310 }
7311}
7312
7313/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
7314/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherbc638a82010-12-01 22:13:54 +00007315void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Erich Keanec480f302018-07-12 21:09:05 +00007316 const ParsedAttributesView &AttrList,
Richard Smith10876ef2013-01-17 01:30:42 +00007317 bool IncludeCXX11Attributes) {
Erich Keanec480f302018-07-12 21:09:05 +00007318 if (AttrList.empty())
7319 return;
7320
Erich Keanee891aa92018-07-13 15:07:47 +00007321 for (const ParsedAttr &AL : AttrList)
Erich Keanec480f302018-07-12 21:09:05 +00007322 ProcessDeclAttribute(*this, S, D, AL, IncludeCXX11Attributes);
Rafael Espindolac18086a2010-02-23 22:00:30 +00007323
Joey Gouly2cd9db12013-12-13 16:15:28 +00007324 // FIXME: We should be able to handle these cases in TableGen.
Rafael Espindolac18086a2010-02-23 22:00:30 +00007325 // GCC accepts
7326 // static int a9 __attribute__((weakref));
7327 // but that looks really pointless. We reject it.
Richard Smithf8a75c32013-08-29 00:47:48 +00007328 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Erich Keanec480f302018-07-12 21:09:05 +00007329 Diag(AttrList.begin()->getLoc(), diag::err_attribute_weakref_without_alias)
7330 << cast<NamedDecl>(D);
Rafael Espindolab3069002013-01-16 23:49:06 +00007331 D->dropAttr<WeakRefAttr>();
Rafael Espindolac18086a2010-02-23 22:00:30 +00007332 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00007333 }
Joey Gouly2cd9db12013-12-13 16:15:28 +00007334
Aaron Ballmanbe243a72014-12-04 22:45:31 +00007335 // FIXME: We should be able to handle this in TableGen as well. It would be
7336 // good to have a way to specify "these attributes must appear as a group",
7337 // for these. Additionally, it would be good to have a way to specify "these
7338 // attribute must never appear as a group" for attributes like cold and hot.
Joey Gouly2cd9db12013-12-13 16:15:28 +00007339 if (!D->hasAttr<OpenCLKernelAttr>()) {
7340 // These attributes cannot be applied to a non-kernel function.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007341 if (const auto *A = D->getAttr<ReqdWorkGroupSizeAttr>()) {
Matt Arsenaultb9e9dc52014-12-05 18:03:58 +00007342 // FIXME: This emits a different error message than
7343 // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction.
Aaron Ballman3e424b52013-12-26 18:30:57 +00007344 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00007345 D->setInvalidDecl();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007346 } else if (const auto *A = D->getAttr<WorkGroupSizeHintAttr>()) {
Aaron Ballman3e424b52013-12-26 18:30:57 +00007347 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00007348 D->setInvalidDecl();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007349 } else if (const auto *A = D->getAttr<VecTypeHintAttr>()) {
Aaron Ballman3e424b52013-12-26 18:30:57 +00007350 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00007351 D->setInvalidDecl();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007352 } else if (const auto *A = D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>()) {
Xiuli Panbe6da4b2017-05-04 07:31:20 +00007353 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
7354 D->setInvalidDecl();
Yaxun Liuaa246012018-06-12 23:58:59 +00007355 } else if (!D->hasAttr<CUDAGlobalAttr>()) {
7356 if (const auto *A = D->getAttr<AMDGPUFlatWorkGroupSizeAttr>()) {
7357 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7358 << A << ExpectedKernelFunction;
7359 D->setInvalidDecl();
7360 } else if (const auto *A = D->getAttr<AMDGPUWavesPerEUAttr>()) {
7361 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7362 << A << ExpectedKernelFunction;
7363 D->setInvalidDecl();
7364 } else if (const auto *A = D->getAttr<AMDGPUNumSGPRAttr>()) {
7365 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7366 << A << ExpectedKernelFunction;
7367 D->setInvalidDecl();
7368 } else if (const auto *A = D->getAttr<AMDGPUNumVGPRAttr>()) {
7369 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7370 << A << ExpectedKernelFunction;
7371 D->setInvalidDecl();
7372 }
Joey Gouly2cd9db12013-12-13 16:15:28 +00007373 }
7374 }
Erik Pilkington81d3f452019-02-13 20:32:37 +00007375
7376 // Do this check after processing D's attributes because the attribute
7377 // objc_method_family can change whether the given method is in the init
7378 // family, and it can be applied after objc_designated_initializer. This is a
7379 // bit of a hack, but we need it to be compatible with versions of clang that
7380 // processed the attribute list in the wrong order.
7381 if (D->hasAttr<ObjCDesignatedInitializerAttr>() &&
7382 cast<ObjCMethodDecl>(D)->getMethodFamily() != OMF_init) {
7383 Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
7384 D->dropAttr<ObjCDesignatedInitializerAttr>();
7385 }
Chris Lattnerb632a6e2008-06-29 00:43:07 +00007386}
7387
Hiroshi Inoue939d9322017-06-30 05:40:31 +00007388// Helper for delayed processing TransparentUnion attribute.
Erich Keanec480f302018-07-12 21:09:05 +00007389void Sema::ProcessDeclAttributeDelayed(Decl *D,
7390 const ParsedAttributesView &AttrList) {
Erich Keanee891aa92018-07-13 15:07:47 +00007391 for (const ParsedAttr &AL : AttrList)
7392 if (AL.getKind() == ParsedAttr::AT_TransparentUnion) {
Erich Keanec480f302018-07-12 21:09:05 +00007393 handleTransparentUnionAttr(*this, D, AL);
Erich Keane2fe684b2017-02-28 20:44:39 +00007394 break;
7395 }
7396}
7397
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00007398// Annotation attributes are the only attributes allowed after an access
7399// specifier.
Erich Keanec480f302018-07-12 21:09:05 +00007400bool Sema::ProcessAccessDeclAttributeList(
7401 AccessSpecDecl *ASDecl, const ParsedAttributesView &AttrList) {
Erich Keanee891aa92018-07-13 15:07:47 +00007402 for (const ParsedAttr &AL : AttrList) {
7403 if (AL.getKind() == ParsedAttr::AT_Annotate) {
Erich Keanec480f302018-07-12 21:09:05 +00007404 ProcessDeclAttribute(*this, nullptr, ASDecl, AL, AL.isCXX11Attribute());
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00007405 } else {
Erich Keanec480f302018-07-12 21:09:05 +00007406 Diag(AL.getLoc(), diag::err_only_annotate_after_access_spec);
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00007407 return true;
7408 }
7409 }
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00007410 return false;
7411}
7412
John McCall42856de2011-10-01 05:17:03 +00007413/// checkUnusedDeclAttributes - Check a list of attributes to see if it
7414/// contains any decl attributes that we should warn about.
Erich Keanec480f302018-07-12 21:09:05 +00007415static void checkUnusedDeclAttributes(Sema &S, const ParsedAttributesView &A) {
Erich Keanee891aa92018-07-13 15:07:47 +00007416 for (const ParsedAttr &AL : A) {
John McCall42856de2011-10-01 05:17:03 +00007417 // Only warn if the attribute is an unignored, non-type attribute.
Erich Keanec480f302018-07-12 21:09:05 +00007418 if (AL.isUsedAsTypeAttr() || AL.isInvalid())
7419 continue;
Erich Keanee891aa92018-07-13 15:07:47 +00007420 if (AL.getKind() == ParsedAttr::IgnoredAttribute)
Erich Keanec480f302018-07-12 21:09:05 +00007421 continue;
John McCall42856de2011-10-01 05:17:03 +00007422
Erich Keanee891aa92018-07-13 15:07:47 +00007423 if (AL.getKind() == ParsedAttr::UnknownAttribute) {
Erich Keanec480f302018-07-12 21:09:05 +00007424 S.Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored)
Erich Keane44bacdf2018-08-09 13:21:32 +00007425 << AL << AL.getRange();
John McCall42856de2011-10-01 05:17:03 +00007426 } else {
Erich Keane44bacdf2018-08-09 13:21:32 +00007427 S.Diag(AL.getLoc(), diag::warn_attribute_not_on_decl) << AL
7428 << AL.getRange();
John McCall42856de2011-10-01 05:17:03 +00007429 }
7430 }
7431}
7432
7433/// checkUnusedDeclAttributes - Given a declarator which is not being
7434/// used to build a declaration, complain about any decl attributes
7435/// which might be lying around on it.
7436void Sema::checkUnusedDeclAttributes(Declarator &D) {
Erich Keanec480f302018-07-12 21:09:05 +00007437 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes());
John McCall42856de2011-10-01 05:17:03 +00007438 ::checkUnusedDeclAttributes(*this, D.getAttributes());
7439 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
7440 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
7441}
7442
Ryan Flynn7d470f32009-07-30 03:15:39 +00007443/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett634962f2012-06-14 21:40:34 +00007444/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedmance3e2c82011-09-07 04:05:06 +00007445NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
7446 SourceLocation Loc) {
Ryan Flynnd963a492009-07-31 02:52:19 +00007447 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Craig Topperc3ec1492014-05-26 06:22:03 +00007448 NamedDecl *NewD = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007449 if (auto *FD = dyn_cast<FunctionDecl>(ND)) {
Alexander Kornienko061900f2015-12-03 11:37:28 +00007450 FunctionDecl *NewFD;
7451 // FIXME: Missing call to CheckFunctionDeclaration().
Eli Friedmance3e2c82011-09-07 04:05:06 +00007452 // FIXME: Mangling?
7453 // FIXME: Is the qualifier info correct?
7454 // FIXME: Is the DeclContext correct?
Alexander Kornienko061900f2015-12-03 11:37:28 +00007455 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
7456 Loc, Loc, DeclarationName(II),
7457 FD->getType(), FD->getTypeSourceInfo(),
7458 SC_None, false/*isInlineSpecified*/,
7459 FD->hasPrototype(),
7460 false/*isConstexprSpecified*/);
Eli Friedmance3e2c82011-09-07 04:05:06 +00007461 NewD = NewFD;
7462
7463 if (FD->getQualifier())
Douglas Gregor14454802011-02-25 02:25:35 +00007464 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedmance3e2c82011-09-07 04:05:06 +00007465
7466 // Fake up parameter variables; they are declared as if this were
7467 // a typedef.
7468 QualType FDTy = FD->getType();
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007469 if (const auto *FT = FDTy->getAs<FunctionProtoType>()) {
Eli Friedmance3e2c82011-09-07 04:05:06 +00007470 SmallVector<ParmVarDecl*, 16> Params;
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00007471 for (const auto &AI : FT->param_types()) {
7472 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
Eli Friedmance3e2c82011-09-07 04:05:06 +00007473 Param->setScopeInfo(0, Params.size());
7474 Params.push_back(Param);
7475 }
David Blaikie9c70e042011-09-21 18:16:56 +00007476 NewFD->setParams(Params);
John McCall3e11ebe2010-03-15 10:12:16 +00007477 }
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007478 } else if (auto *VD = dyn_cast<VarDecl>(ND)) {
Ryan Flynn7d470f32009-07-30 03:15:39 +00007479 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00007480 VD->getInnerLocStart(), VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00007481 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindola6ae7e502013-04-03 19:27:57 +00007482 VD->getStorageClass());
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007483 if (VD->getQualifier())
Fangrui Song99337e22018-07-20 08:19:20 +00007484 cast<VarDecl>(NewD)->setQualifierInfo(VD->getQualifierLoc());
Ryan Flynn7d470f32009-07-30 03:15:39 +00007485 }
7486 return NewD;
7487}
7488
James Dennett634962f2012-06-14 21:40:34 +00007489/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynn7d470f32009-07-30 03:15:39 +00007490/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00007491void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00007492 if (W.getUsed()) return; // only do this once
7493 W.setUsed(true);
7494 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
7495 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedmance3e2c82011-09-07 04:05:06 +00007496 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Aaron Ballman36a53502014-01-16 13:03:14 +00007497 NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(),
7498 W.getLocation()));
7499 NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
Chris Lattnere6eab982009-09-08 18:10:11 +00007500 WeakTopLevelDecl.push_back(NewD);
7501 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
7502 // to insert Decl at TU scope, sorry.
7503 DeclContext *SavedContext = CurContext;
7504 CurContext = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis0098a4b2014-03-09 05:15:28 +00007505 NewD->setDeclContext(CurContext);
7506 NewD->setLexicalDeclContext(CurContext);
Chris Lattnere6eab982009-09-08 18:10:11 +00007507 PushOnScopeChains(NewD, S);
7508 CurContext = SavedContext;
7509 } else { // just add weak to existing
Aaron Ballman36a53502014-01-16 13:03:14 +00007510 ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
Ryan Flynn7d470f32009-07-30 03:15:39 +00007511 }
7512}
7513
Rafael Espindolade6a39f2013-03-02 21:41:48 +00007514void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
7515 // It's valid to "forward-declare" #pragma weak, in which case we
7516 // have to do this.
7517 LoadExternalWeakUndeclaredIdentifiers();
7518 if (!WeakUndeclaredIdentifiers.empty()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00007519 NamedDecl *ND = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007520 if (auto *VD = dyn_cast<VarDecl>(D))
Rafael Espindolade6a39f2013-03-02 21:41:48 +00007521 if (VD->isExternC())
7522 ND = VD;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007523 if (auto *FD = dyn_cast<FunctionDecl>(D))
Rafael Espindolade6a39f2013-03-02 21:41:48 +00007524 if (FD->isExternC())
7525 ND = FD;
7526 if (ND) {
7527 if (IdentifierInfo *Id = ND->getIdentifier()) {
Chandler Carruthf85d9822015-03-26 08:32:49 +00007528 auto I = WeakUndeclaredIdentifiers.find(Id);
Rafael Espindolade6a39f2013-03-02 21:41:48 +00007529 if (I != WeakUndeclaredIdentifiers.end()) {
7530 WeakInfo W = I->second;
7531 DeclApplyPragmaWeak(S, ND, W);
7532 WeakUndeclaredIdentifiers[Id] = W;
7533 }
7534 }
7535 }
7536 }
7537}
7538
Chris Lattner9e2aafe2008-06-29 00:23:49 +00007539/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
7540/// it, apply them to D. This is a bit tricky because PD can have attributes
7541/// specified in many different places, and we need to find and apply them all.
Richard Smithf8a75c32013-08-29 00:47:48 +00007542void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner9e2aafe2008-06-29 00:23:49 +00007543 // Apply decl attributes from the DeclSpec if present.
Erich Keanec480f302018-07-12 21:09:05 +00007544 if (!PD.getDeclSpec().getAttributes().empty())
7545 ProcessDeclAttributeList(S, D, PD.getDeclSpec().getAttributes());
Mike Stumpd3bb5572009-07-24 19:02:52 +00007546
Chris Lattner9e2aafe2008-06-29 00:23:49 +00007547 // Walk the declarator structure, applying decl attributes that were in a type
7548 // position to the decl itself. This handles cases like:
7549 // int *__attr__(x)** D;
7550 // when X is a decl attribute.
7551 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
Erich Keanec480f302018-07-12 21:09:05 +00007552 ProcessDeclAttributeList(S, D, PD.getTypeObject(i).getAttrs(),
7553 /*IncludeCXX11Attributes=*/false);
Mike Stumpd3bb5572009-07-24 19:02:52 +00007554
Chris Lattner9e2aafe2008-06-29 00:23:49 +00007555 // Finally, apply any attributes on the decl itself.
Erich Keanec480f302018-07-12 21:09:05 +00007556 ProcessDeclAttributeList(S, D, PD.getAttributes());
Alex Lorenz9e7bf162017-04-18 14:33:39 +00007557
7558 // Apply additional attributes specified by '#pragma clang attribute'.
7559 AddPragmaAttributes(S, D);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00007560}
John McCall28a6aea2009-11-04 02:18:39 +00007561
John McCall31168b02011-06-15 23:02:42 +00007562/// Is the given declaration allowed to use a forbidden type?
John McCallb61e14e2015-10-27 04:54:50 +00007563/// If so, it'll still be annotated with an attribute that makes it
7564/// illegal to actually use.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007565static bool isForbiddenTypeAllowed(Sema &S, Decl *D,
John McCallb61e14e2015-10-27 04:54:50 +00007566 const DelayedDiagnostic &diag,
John McCallc6af8c62015-10-28 05:03:19 +00007567 UnavailableAttr::ImplicitReason &reason) {
John McCall31168b02011-06-15 23:02:42 +00007568 // Private ivars are always okay. Unfortunately, people don't
7569 // always properly make their ivars private, even in system headers.
7570 // Plus we need to make fields okay, too.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007571 if (!isa<FieldDecl>(D) && !isa<ObjCPropertyDecl>(D) &&
7572 !isa<FunctionDecl>(D))
John McCall31168b02011-06-15 23:02:42 +00007573 return false;
7574
John McCallc6af8c62015-10-28 05:03:19 +00007575 // Silently accept unsupported uses of __weak in both user and system
7576 // declarations when it's been disabled, for ease of integration with
7577 // -fno-objc-arc files. We do have to take some care against attempts
7578 // to define such things; for now, we've only done that for ivars
7579 // and properties.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007580 if ((isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
John McCallc6af8c62015-10-28 05:03:19 +00007581 if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled ||
7582 diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) {
7583 reason = UnavailableAttr::IR_ForbiddenWeak;
7584 return true;
7585 }
John McCallb61e14e2015-10-27 04:54:50 +00007586 }
7587
John McCallc6af8c62015-10-28 05:03:19 +00007588 // Allow all sorts of things in system headers.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007589 if (S.Context.getSourceManager().isInSystemHeader(D->getLocation())) {
John McCallc6af8c62015-10-28 05:03:19 +00007590 // Currently, all the failures dealt with this way are due to ARC
7591 // restrictions.
7592 reason = UnavailableAttr::IR_ARCForbiddenType;
7593 return true;
John McCallb61e14e2015-10-27 04:54:50 +00007594 }
7595
7596 return false;
John McCall31168b02011-06-15 23:02:42 +00007597}
7598
7599/// Handle a delayed forbidden-type diagnostic.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007600static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &DD,
7601 Decl *D) {
7602 auto Reason = UnavailableAttr::IR_None;
7603 if (D && isForbiddenTypeAllowed(S, D, DD, Reason)) {
7604 assert(Reason && "didn't set reason?");
7605 D->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", Reason, DD.Loc));
John McCall31168b02011-06-15 23:02:42 +00007606 return;
7607 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00007608 if (S.getLangOpts().ObjCAutoRefCount)
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007609 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
Benjamin Kramer474261a2012-06-02 10:20:41 +00007610 // FIXME: we may want to suppress diagnostics for all
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007611 // kind of forbidden type messages on unavailable functions.
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00007612 if (FD->hasAttr<UnavailableAttr>() &&
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007613 DD.getForbiddenTypeDiagnostic() ==
7614 diag::err_arc_array_param_no_ownership) {
7615 DD.Triggered = true;
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00007616 return;
7617 }
7618 }
John McCall31168b02011-06-15 23:02:42 +00007619
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007620 S.Diag(DD.Loc, DD.getForbiddenTypeDiagnostic())
7621 << DD.getForbiddenTypeOperand() << DD.getForbiddenTypeArgument();
7622 DD.Triggered = true;
John McCall31168b02011-06-15 23:02:42 +00007623}
7624
Manman Ren45b1ab12016-05-06 19:57:16 +00007625static const AvailabilityAttr *getAttrForPlatform(ASTContext &Context,
7626 const Decl *D) {
7627 // Check each AvailabilityAttr to find the one for this platform.
7628 for (const auto *A : D->attrs()) {
7629 if (const auto *Avail = dyn_cast<AvailabilityAttr>(A)) {
7630 // FIXME: this is copied from CheckAvailability. We should try to
7631 // de-duplicate.
7632
7633 // Check if this is an App Extension "platform", and if so chop off
7634 // the suffix for matching with the actual platform.
7635 StringRef ActualPlatform = Avail->getPlatform()->getName();
7636 StringRef RealizedPlatform = ActualPlatform;
7637 if (Context.getLangOpts().AppExt) {
7638 size_t suffix = RealizedPlatform.rfind("_app_extension");
7639 if (suffix != StringRef::npos)
7640 RealizedPlatform = RealizedPlatform.slice(0, suffix);
7641 }
7642
7643 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
7644
7645 // Match the platform name.
7646 if (RealizedPlatform == TargetPlatform)
7647 return Avail;
7648 }
7649 }
7650 return nullptr;
7651}
7652
Erik Pilkington9f866a72017-07-18 20:32:07 +00007653/// The diagnostic we should emit for \c D, and the declaration that
7654/// originated it, or \c AR_Available.
7655///
7656/// \param D The declaration to check.
7657/// \param Message If non-null, this will be populated with the message from
7658/// the availability attribute that is selected.
Erik Pilkington42578572018-09-10 22:20:09 +00007659/// \param ClassReceiver If we're checking the the method of a class message
7660/// send, the class. Otherwise nullptr.
Erik Pilkington9f866a72017-07-18 20:32:07 +00007661static std::pair<AvailabilityResult, const NamedDecl *>
Erik Pilkington42578572018-09-10 22:20:09 +00007662ShouldDiagnoseAvailabilityOfDecl(Sema &S, const NamedDecl *D,
7663 std::string *Message,
7664 ObjCInterfaceDecl *ClassReceiver) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00007665 AvailabilityResult Result = D->getAvailability(Message);
7666
7667 // For typedefs, if the typedef declaration appears available look
7668 // to the underlying type to see if it is more restrictive.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007669 while (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00007670 if (Result == AR_Available) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007671 if (const auto *TT = TD->getUnderlyingType()->getAs<TagType>()) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00007672 D = TT->getDecl();
7673 Result = D->getAvailability(Message);
7674 continue;
7675 }
7676 }
7677 break;
7678 }
7679
7680 // Forward class declarations get their attributes from their definition.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007681 if (const auto *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00007682 if (IDecl->getDefinition()) {
7683 D = IDecl->getDefinition();
7684 Result = D->getAvailability(Message);
7685 }
7686 }
7687
7688 if (const auto *ECD = dyn_cast<EnumConstantDecl>(D))
7689 if (Result == AR_Available) {
7690 const DeclContext *DC = ECD->getDeclContext();
7691 if (const auto *TheEnumDecl = dyn_cast<EnumDecl>(DC)) {
7692 Result = TheEnumDecl->getAvailability(Message);
7693 D = TheEnumDecl;
7694 }
7695 }
7696
Erik Pilkington42578572018-09-10 22:20:09 +00007697 // For +new, infer availability from -init.
7698 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
7699 if (S.NSAPIObj && ClassReceiver) {
7700 ObjCMethodDecl *Init = ClassReceiver->lookupInstanceMethod(
7701 S.NSAPIObj->getInitSelector());
7702 if (Init && Result == AR_Available && MD->isClassMethod() &&
7703 MD->getSelector() == S.NSAPIObj->getNewSelector() &&
7704 MD->definedInNSObject(S.getASTContext())) {
7705 Result = Init->getAvailability(Message);
7706 D = Init;
7707 }
7708 }
7709 }
7710
Erik Pilkington9f866a72017-07-18 20:32:07 +00007711 return {Result, D};
7712}
7713
7714
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007715/// whether we should emit a diagnostic for \c K and \c DeclVersion in
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007716/// the context of \c Ctx. For example, we should emit an unavailable diagnostic
7717/// in a deprecated context, but not the other way around.
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007718static bool
7719ShouldDiagnoseAvailabilityInContext(Sema &S, AvailabilityResult K,
7720 VersionTuple DeclVersion, Decl *Ctx,
7721 const NamedDecl *OffendingDecl) {
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007722 assert(K != AR_Available && "Expected an unavailable declaration here!");
7723
7724 // Checks if we should emit the availability diagnostic in the context of C.
7725 auto CheckContext = [&](const Decl *C) {
7726 if (K == AR_NotYetIntroduced) {
7727 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, C))
7728 if (AA->getIntroduced() >= DeclVersion)
7729 return true;
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007730 } else if (K == AR_Deprecated) {
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007731 if (C->isDeprecated())
7732 return true;
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007733 } else if (K == AR_Unavailable) {
7734 // It is perfectly fine to refer to an 'unavailable' Objective-C method
Alex Lorenz194d00e2019-01-17 18:12:45 +00007735 // when it is referenced from within the @implementation itself. In this
7736 // context, we interpret unavailable as a form of access control.
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007737 if (const auto *MD = dyn_cast<ObjCMethodDecl>(OffendingDecl)) {
7738 if (const auto *Impl = dyn_cast<ObjCImplDecl>(C)) {
Alex Lorenz194d00e2019-01-17 18:12:45 +00007739 if (MD->getClassInterface() == Impl->getClassInterface())
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007740 return true;
7741 }
7742 }
7743 }
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007744
7745 if (C->isUnavailable())
7746 return true;
7747 return false;
7748 };
7749
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007750 do {
7751 if (CheckContext(Ctx))
7752 return false;
7753
7754 // An implementation implicitly has the availability of the interface.
Steven Wu3bb4aa52018-04-16 23:34:18 +00007755 // Unless it is "+load" method.
7756 if (const auto *MethodD = dyn_cast<ObjCMethodDecl>(Ctx))
7757 if (MethodD->isClassMethod() &&
7758 MethodD->getSelector().getAsString() == "load")
7759 return true;
7760
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007761 if (const auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) {
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007762 if (const ObjCInterfaceDecl *Interface = CatOrImpl->getClassInterface())
7763 if (CheckContext(Interface))
7764 return false;
7765 }
7766 // A category implicitly has the availability of the interface.
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007767 else if (const auto *CatD = dyn_cast<ObjCCategoryDecl>(Ctx))
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007768 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface())
7769 if (CheckContext(Interface))
7770 return false;
7771 } while ((Ctx = cast_or_null<Decl>(Ctx->getDeclContext())));
7772
7773 return true;
7774}
7775
Alex Lorenzc9a369f2017-06-22 17:02:24 +00007776static bool
7777shouldDiagnoseAvailabilityByDefault(const ASTContext &Context,
7778 const VersionTuple &DeploymentVersion,
7779 const VersionTuple &DeclVersion) {
7780 const auto &Triple = Context.getTargetInfo().getTriple();
7781 VersionTuple ForceAvailabilityFromVersion;
7782 switch (Triple.getOS()) {
7783 case llvm::Triple::IOS:
7784 case llvm::Triple::TvOS:
7785 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/11);
7786 break;
7787 case llvm::Triple::WatchOS:
7788 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/4);
7789 break;
7790 case llvm::Triple::Darwin:
7791 case llvm::Triple::MacOSX:
7792 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/10, /*Minor=*/13);
7793 break;
7794 default:
7795 // New targets should always warn about availability.
7796 return Triple.getVendor() == llvm::Triple::Apple;
7797 }
7798 return DeploymentVersion >= ForceAvailabilityFromVersion ||
7799 DeclVersion >= ForceAvailabilityFromVersion;
7800}
7801
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007802static NamedDecl *findEnclosingDeclToAnnotate(Decl *OrigCtx) {
7803 for (Decl *Ctx = OrigCtx; Ctx;
7804 Ctx = cast_or_null<Decl>(Ctx->getDeclContext())) {
7805 if (isa<TagDecl>(Ctx) || isa<FunctionDecl>(Ctx) || isa<ObjCMethodDecl>(Ctx))
7806 return cast<NamedDecl>(Ctx);
7807 if (auto *CD = dyn_cast<ObjCContainerDecl>(Ctx)) {
7808 if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx))
7809 return Imp->getClassInterface();
7810 return CD;
7811 }
7812 }
7813
7814 return dyn_cast<NamedDecl>(OrigCtx);
7815}
7816
Alex Lorenz727c21e2017-07-26 13:58:02 +00007817namespace {
7818
7819struct AttributeInsertion {
7820 StringRef Prefix;
7821 SourceLocation Loc;
7822 StringRef Suffix;
7823
7824 static AttributeInsertion createInsertionAfter(const NamedDecl *D) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00007825 return {" ", D->getEndLoc(), ""};
Alex Lorenz727c21e2017-07-26 13:58:02 +00007826 }
7827 static AttributeInsertion createInsertionAfter(SourceLocation Loc) {
7828 return {" ", Loc, ""};
7829 }
7830 static AttributeInsertion createInsertionBefore(const NamedDecl *D) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007831 return {"", D->getBeginLoc(), "\n"};
Alex Lorenz727c21e2017-07-26 13:58:02 +00007832 }
7833};
7834
7835} // end anonymous namespace
7836
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00007837/// Tries to parse a string as ObjC method name.
7838///
7839/// \param Name The string to parse. Expected to originate from availability
7840/// attribute argument.
7841/// \param SlotNames The vector that will be populated with slot names. In case
7842/// of unsuccessful parsing can contain invalid data.
7843/// \returns A number of method parameters if parsing was successful, None
7844/// otherwise.
7845static Optional<unsigned>
7846tryParseObjCMethodName(StringRef Name, SmallVectorImpl<StringRef> &SlotNames,
7847 const LangOptions &LangOpts) {
7848 // Accept replacements starting with - or + as valid ObjC method names.
7849 if (!Name.empty() && (Name.front() == '-' || Name.front() == '+'))
7850 Name = Name.drop_front(1);
7851 if (Name.empty())
7852 return None;
7853 Name.split(SlotNames, ':');
7854 unsigned NumParams;
7855 if (Name.back() == ':') {
7856 // Remove an empty string at the end that doesn't represent any slot.
7857 SlotNames.pop_back();
7858 NumParams = SlotNames.size();
7859 } else {
7860 if (SlotNames.size() != 1)
7861 // Not a valid method name, just a colon-separated string.
7862 return None;
7863 NumParams = 0;
7864 }
7865 // Verify all slot names are valid.
7866 bool AllowDollar = LangOpts.DollarIdents;
7867 for (StringRef S : SlotNames) {
7868 if (S.empty())
7869 continue;
7870 if (!isValidIdentifier(S, AllowDollar))
7871 return None;
7872 }
7873 return NumParams;
7874}
7875
Alex Lorenz727c21e2017-07-26 13:58:02 +00007876/// Returns a source location in which it's appropriate to insert a new
7877/// attribute for the given declaration \D.
7878static Optional<AttributeInsertion>
7879createAttributeInsertion(const NamedDecl *D, const SourceManager &SM,
7880 const LangOptions &LangOpts) {
7881 if (isa<ObjCPropertyDecl>(D))
7882 return AttributeInsertion::createInsertionAfter(D);
7883 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
7884 if (MD->hasBody())
7885 return None;
7886 return AttributeInsertion::createInsertionAfter(D);
7887 }
7888 if (const auto *TD = dyn_cast<TagDecl>(D)) {
7889 SourceLocation Loc =
7890 Lexer::getLocForEndOfToken(TD->getInnerLocStart(), 0, SM, LangOpts);
7891 if (Loc.isInvalid())
7892 return None;
7893 // Insert after the 'struct'/whatever keyword.
7894 return AttributeInsertion::createInsertionAfter(Loc);
7895 }
7896 return AttributeInsertion::createInsertionBefore(D);
7897}
7898
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007899/// Actually emit an availability diagnostic for a reference to an unavailable
7900/// decl.
7901///
7902/// \param Ctx The context that the reference occurred in
7903/// \param ReferringDecl The exact declaration that was referenced.
7904/// \param OffendingDecl A related decl to \c ReferringDecl that has an
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00007905/// availability attribute corresponding to \c K attached to it. Note that this
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007906/// may not be the same as ReferringDecl, i.e. if an EnumDecl is annotated and
7907/// we refer to a member EnumConstantDecl, ReferringDecl is the EnumConstantDecl
7908/// and OffendingDecl is the EnumDecl.
Erik Pilkington796a3e22016-08-05 22:59:03 +00007909static void DoEmitAvailabilityWarning(Sema &S, AvailabilityResult K,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007910 Decl *Ctx, const NamedDecl *ReferringDecl,
7911 const NamedDecl *OffendingDecl,
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00007912 StringRef Message,
7913 ArrayRef<SourceLocation> Locs,
Aaron Ballmanfb237522014-10-15 15:37:51 +00007914 const ObjCInterfaceDecl *UnknownObjCClass,
7915 const ObjCPropertyDecl *ObjCProperty,
7916 bool ObjCPropertyAccess) {
7917 // Diagnostics for deprecated or unavailable.
7918 unsigned diag, diag_message, diag_fwdclass_message;
John McCallb61e14e2015-10-27 04:54:50 +00007919 unsigned diag_available_here = diag::note_availability_specified_here;
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007920 SourceLocation NoteLocation = OffendingDecl->getLocation();
Aaron Ballmanfb237522014-10-15 15:37:51 +00007921
7922 // Matches 'diag::note_property_attribute' options.
7923 unsigned property_note_select;
7924
7925 // Matches diag::note_availability_specified_here.
7926 unsigned available_here_select_kind;
7927
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007928 VersionTuple DeclVersion;
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007929 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, OffendingDecl))
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007930 DeclVersion = AA->getIntroduced();
7931
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00007932 if (!ShouldDiagnoseAvailabilityInContext(S, K, DeclVersion, Ctx,
7933 OffendingDecl))
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007934 return;
7935
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00007936 SourceLocation Loc = Locs.front();
7937
Erik Pilkington8b352c42017-08-14 19:49:12 +00007938 // The declaration can have multiple availability attributes, we are looking
7939 // at one of them.
7940 const AvailabilityAttr *A = getAttrForPlatform(S.Context, OffendingDecl);
7941 if (A && A->isInherited()) {
7942 for (const Decl *Redecl = OffendingDecl->getMostRecentDecl(); Redecl;
7943 Redecl = Redecl->getPreviousDecl()) {
7944 const AvailabilityAttr *AForRedecl =
7945 getAttrForPlatform(S.Context, Redecl);
7946 if (AForRedecl && !AForRedecl->isInherited()) {
7947 // If D is a declaration with inherited attributes, the note should
7948 // point to the declaration with actual attributes.
7949 NoteLocation = Redecl->getLocation();
7950 break;
7951 }
7952 }
7953 }
7954
Aaron Ballmanfb237522014-10-15 15:37:51 +00007955 switch (K) {
Erik Pilkington8b352c42017-08-14 19:49:12 +00007956 case AR_NotYetIntroduced: {
7957 // We would like to emit the diagnostic even if -Wunguarded-availability is
7958 // not specified for deployment targets >= to iOS 11 or equivalent or
7959 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
7960 // later.
7961 const AvailabilityAttr *AA =
7962 getAttrForPlatform(S.getASTContext(), OffendingDecl);
7963 VersionTuple Introduced = AA->getIntroduced();
7964
7965 bool UseNewWarning = shouldDiagnoseAvailabilityByDefault(
7966 S.Context, S.Context.getTargetInfo().getPlatformMinVersion(),
7967 Introduced);
7968 unsigned Warning = UseNewWarning ? diag::warn_unguarded_availability_new
7969 : diag::warn_unguarded_availability;
7970
Erik Pilkington0535b0f2019-01-14 19:17:31 +00007971 std::string PlatformName = AvailabilityAttr::getPrettyPlatformName(
7972 S.getASTContext().getTargetInfo().getPlatformName());
Erik Pilkington8b352c42017-08-14 19:49:12 +00007973
Erik Pilkington0535b0f2019-01-14 19:17:31 +00007974 S.Diag(Loc, Warning) << OffendingDecl << PlatformName
7975 << Introduced.getAsString();
7976
7977 S.Diag(OffendingDecl->getLocation(),
7978 diag::note_partial_availability_specified_here)
7979 << OffendingDecl << PlatformName << Introduced.getAsString()
7980 << S.Context.getTargetInfo().getPlatformMinVersion().getAsString();
Erik Pilkington8b352c42017-08-14 19:49:12 +00007981
7982 if (const auto *Enclosing = findEnclosingDeclToAnnotate(Ctx)) {
Aaron Ballmana70c6b52018-02-15 16:20:20 +00007983 if (const auto *TD = dyn_cast<TagDecl>(Enclosing))
Erik Pilkington8b352c42017-08-14 19:49:12 +00007984 if (TD->getDeclName().isEmpty()) {
7985 S.Diag(TD->getLocation(),
7986 diag::note_decl_unguarded_availability_silence)
7987 << /*Anonymous*/ 1 << TD->getKindName();
7988 return;
7989 }
7990 auto FixitNoteDiag =
7991 S.Diag(Enclosing->getLocation(),
7992 diag::note_decl_unguarded_availability_silence)
7993 << /*Named*/ 0 << Enclosing;
7994 // Don't offer a fixit for declarations with availability attributes.
7995 if (Enclosing->hasAttr<AvailabilityAttr>())
7996 return;
7997 if (!S.getPreprocessor().isMacroDefined("API_AVAILABLE"))
7998 return;
7999 Optional<AttributeInsertion> Insertion = createAttributeInsertion(
8000 Enclosing, S.getSourceManager(), S.getLangOpts());
8001 if (!Insertion)
8002 return;
8003 std::string PlatformName =
8004 AvailabilityAttr::getPlatformNameSourceSpelling(
8005 S.getASTContext().getTargetInfo().getPlatformName())
8006 .lower();
8007 std::string Introduced =
8008 OffendingDecl->getVersionIntroduced().getAsString();
8009 FixitNoteDiag << FixItHint::CreateInsertion(
8010 Insertion->Loc,
8011 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName +
8012 "(" + Introduced + "))" + Insertion->Suffix)
8013 .str());
8014 }
8015 return;
8016 }
Erik Pilkington796a3e22016-08-05 22:59:03 +00008017 case AR_Deprecated:
Aaron Ballmanfb237522014-10-15 15:37:51 +00008018 diag = !ObjCPropertyAccess ? diag::warn_deprecated
8019 : diag::warn_property_method_deprecated;
8020 diag_message = diag::warn_deprecated_message;
8021 diag_fwdclass_message = diag::warn_deprecated_fwdclass_message;
8022 property_note_select = /* deprecated */ 0;
8023 available_here_select_kind = /* deprecated */ 2;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008024 if (const auto *AL = OffendingDecl->getAttr<DeprecatedAttr>())
8025 NoteLocation = AL->getLocation();
Aaron Ballmanfb237522014-10-15 15:37:51 +00008026 break;
8027
Erik Pilkington796a3e22016-08-05 22:59:03 +00008028 case AR_Unavailable:
Aaron Ballmanfb237522014-10-15 15:37:51 +00008029 diag = !ObjCPropertyAccess ? diag::err_unavailable
8030 : diag::err_property_method_unavailable;
8031 diag_message = diag::err_unavailable_message;
8032 diag_fwdclass_message = diag::warn_unavailable_fwdclass_message;
8033 property_note_select = /* unavailable */ 1;
8034 available_here_select_kind = /* unavailable */ 0;
John McCallb61e14e2015-10-27 04:54:50 +00008035
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008036 if (auto AL = OffendingDecl->getAttr<UnavailableAttr>()) {
8037 if (AL->isImplicit() && AL->getImplicitReason()) {
John McCallc6af8c62015-10-28 05:03:19 +00008038 // Most of these failures are due to extra restrictions in ARC;
8039 // reflect that in the primary diagnostic when applicable.
8040 auto flagARCError = [&] {
8041 if (S.getLangOpts().ObjCAutoRefCount &&
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008042 S.getSourceManager().isInSystemHeader(
8043 OffendingDecl->getLocation()))
John McCallc6af8c62015-10-28 05:03:19 +00008044 diag = diag::err_unavailable_in_arc;
8045 };
8046
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008047 switch (AL->getImplicitReason()) {
John McCallc6af8c62015-10-28 05:03:19 +00008048 case UnavailableAttr::IR_None: break;
8049
8050 case UnavailableAttr::IR_ARCForbiddenType:
8051 flagARCError();
8052 diag_available_here = diag::note_arc_forbidden_type;
8053 break;
8054
8055 case UnavailableAttr::IR_ForbiddenWeak:
8056 if (S.getLangOpts().ObjCWeakRuntime)
8057 diag_available_here = diag::note_arc_weak_disabled;
8058 else
8059 diag_available_here = diag::note_arc_weak_no_runtime;
8060 break;
8061
8062 case UnavailableAttr::IR_ARCForbiddenConversion:
8063 flagARCError();
8064 diag_available_here = diag::note_performs_forbidden_arc_conversion;
8065 break;
8066
8067 case UnavailableAttr::IR_ARCInitReturnsUnrelated:
8068 flagARCError();
8069 diag_available_here = diag::note_arc_init_returns_unrelated;
8070 break;
8071
8072 case UnavailableAttr::IR_ARCFieldWithOwnership:
8073 flagARCError();
8074 diag_available_here = diag::note_arc_field_with_ownership;
8075 break;
8076 }
8077 }
John McCallb61e14e2015-10-27 04:54:50 +00008078 }
Aaron Ballmanfb237522014-10-15 15:37:51 +00008079 break;
8080
Erik Pilkington796a3e22016-08-05 22:59:03 +00008081 case AR_Available:
8082 llvm_unreachable("Warning for availability of available declaration?");
Aaron Ballmanfb237522014-10-15 15:37:51 +00008083 }
8084
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008085 SmallVector<FixItHint, 12> FixIts;
Erik Pilkington796a3e22016-08-05 22:59:03 +00008086 if (K == AR_Deprecated) {
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008087 StringRef Replacement;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008088 if (auto AL = OffendingDecl->getAttr<DeprecatedAttr>())
8089 Replacement = AL->getReplacement();
8090 if (auto AL = getAttrForPlatform(S.Context, OffendingDecl))
8091 Replacement = AL->getReplacement();
Manman Renc7890fe2016-03-16 18:50:49 +00008092
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008093 CharSourceRange UseRange;
Manman Renc7890fe2016-03-16 18:50:49 +00008094 if (!Replacement.empty())
8095 UseRange =
8096 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008097 if (UseRange.isValid()) {
8098 if (const auto *MethodDecl = dyn_cast<ObjCMethodDecl>(ReferringDecl)) {
8099 Selector Sel = MethodDecl->getSelector();
8100 SmallVector<StringRef, 12> SelectorSlotNames;
8101 Optional<unsigned> NumParams = tryParseObjCMethodName(
8102 Replacement, SelectorSlotNames, S.getLangOpts());
8103 if (NumParams && NumParams.getValue() == Sel.getNumArgs()) {
8104 assert(SelectorSlotNames.size() == Locs.size());
8105 for (unsigned I = 0; I < Locs.size(); ++I) {
8106 if (!Sel.getNameForSlot(I).empty()) {
8107 CharSourceRange NameRange = CharSourceRange::getCharRange(
8108 Locs[I], S.getLocForEndOfToken(Locs[I]));
8109 FixIts.push_back(FixItHint::CreateReplacement(
8110 NameRange, SelectorSlotNames[I]));
8111 } else
8112 FixIts.push_back(
8113 FixItHint::CreateInsertion(Locs[I], SelectorSlotNames[I]));
8114 }
8115 } else
8116 FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement));
8117 } else
8118 FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement));
8119 }
Manman Renc7890fe2016-03-16 18:50:49 +00008120 }
8121
Aaron Ballmanfb237522014-10-15 15:37:51 +00008122 if (!Message.empty()) {
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008123 S.Diag(Loc, diag_message) << ReferringDecl << Message << FixIts;
Aaron Ballmanfb237522014-10-15 15:37:51 +00008124 if (ObjCProperty)
8125 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
8126 << ObjCProperty->getDeclName() << property_note_select;
8127 } else if (!UnknownObjCClass) {
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008128 S.Diag(Loc, diag) << ReferringDecl << FixIts;
Aaron Ballmanfb237522014-10-15 15:37:51 +00008129 if (ObjCProperty)
8130 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
8131 << ObjCProperty->getDeclName() << property_note_select;
8132 } else {
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008133 S.Diag(Loc, diag_fwdclass_message) << ReferringDecl << FixIts;
Aaron Ballmanfb237522014-10-15 15:37:51 +00008134 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
8135 }
8136
Erik Pilkington8b352c42017-08-14 19:49:12 +00008137 S.Diag(NoteLocation, diag_available_here)
8138 << OffendingDecl << available_here_select_kind;
Aaron Ballmanfb237522014-10-15 15:37:51 +00008139}
8140
8141static void handleDelayedAvailabilityCheck(Sema &S, DelayedDiagnostic &DD,
8142 Decl *Ctx) {
Erik Pilkingtona8003972016-10-28 21:39:27 +00008143 assert(DD.Kind == DelayedDiagnostic::Availability &&
8144 "Expected an availability diagnostic here");
8145
Aaron Ballmanfb237522014-10-15 15:37:51 +00008146 DD.Triggered = true;
Nico Weber0055a192015-03-19 19:18:22 +00008147 DoEmitAvailabilityWarning(
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008148 S, DD.getAvailabilityResult(), Ctx, DD.getAvailabilityReferringDecl(),
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008149 DD.getAvailabilityOffendingDecl(), DD.getAvailabilityMessage(),
8150 DD.getAvailabilitySelectorLocs(), DD.getUnknownObjCClass(),
8151 DD.getObjCProperty(), false);
Aaron Ballmanfb237522014-10-15 15:37:51 +00008152}
8153
John McCall2ec85372012-05-07 06:16:41 +00008154void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
8155 assert(DelayedDiagnostics.getCurrentPool());
John McCall6347b682012-05-07 06:16:58 +00008156 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall2ec85372012-05-07 06:16:41 +00008157 DelayedDiagnostics.popWithoutEmitting(state);
John McCallc1465822011-02-14 07:13:47 +00008158
John McCall2ec85372012-05-07 06:16:41 +00008159 // When delaying diagnostics to run in the context of a parsed
8160 // declaration, we only want to actually emit anything if parsing
8161 // succeeds.
8162 if (!decl) return;
John McCallc1465822011-02-14 07:13:47 +00008163
John McCall2ec85372012-05-07 06:16:41 +00008164 // We emit all the active diagnostics in this pool or any of its
8165 // parents. In general, we'll get one pool for the decl spec
8166 // and a child pool for each declarator; in a decl group like:
8167 // deprecated_typedef foo, *bar, baz();
8168 // only the declarator pops will be passed decls. This is correct;
8169 // we really do need to consider delayed diagnostics from the decl spec
8170 // for each of the different declarations.
John McCall6347b682012-05-07 06:16:58 +00008171 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall2ec85372012-05-07 06:16:41 +00008172 do {
Richard Smith5c9b3b72018-09-25 22:12:44 +00008173 bool AnyAccessFailures = false;
John McCall6347b682012-05-07 06:16:58 +00008174 for (DelayedDiagnosticPool::pool_iterator
John McCall2ec85372012-05-07 06:16:41 +00008175 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
8176 // This const_cast is a bit lame. Really, Triggered should be mutable.
8177 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCallc1465822011-02-14 07:13:47 +00008178 if (diag.Triggered)
John McCall86121512010-01-27 03:50:35 +00008179 continue;
8180
John McCallc1465822011-02-14 07:13:47 +00008181 switch (diag.Kind) {
Erik Pilkingtona8003972016-10-28 21:39:27 +00008182 case DelayedDiagnostic::Availability:
Ted Kremenekb79ee572013-12-18 23:30:06 +00008183 // Don't bother giving deprecation/unavailable diagnostics if
8184 // the decl is invalid.
John McCall18a962b2012-01-26 20:04:03 +00008185 if (!decl->isInvalidDecl())
Aaron Ballmanfb237522014-10-15 15:37:51 +00008186 handleDelayedAvailabilityCheck(*this, diag, decl);
John McCall86121512010-01-27 03:50:35 +00008187 break;
8188
8189 case DelayedDiagnostic::Access:
Richard Smith5c9b3b72018-09-25 22:12:44 +00008190 // Only produce one access control diagnostic for a structured binding
8191 // declaration: we don't need to tell the user that all the fields are
8192 // inaccessible one at a time.
8193 if (AnyAccessFailures && isa<DecompositionDecl>(decl))
8194 continue;
John McCall2ec85372012-05-07 06:16:41 +00008195 HandleDelayedAccessCheck(diag, decl);
Richard Smith5c9b3b72018-09-25 22:12:44 +00008196 if (diag.Triggered)
8197 AnyAccessFailures = true;
John McCall86121512010-01-27 03:50:35 +00008198 break;
John McCall31168b02011-06-15 23:02:42 +00008199
8200 case DelayedDiagnostic::ForbiddenType:
John McCall2ec85372012-05-07 06:16:41 +00008201 handleDelayedForbiddenType(*this, diag, decl);
John McCall31168b02011-06-15 23:02:42 +00008202 break;
John McCall86121512010-01-27 03:50:35 +00008203 }
8204 }
John McCall2ec85372012-05-07 06:16:41 +00008205 } while ((pool = pool->getParent()));
John McCall28a6aea2009-11-04 02:18:39 +00008206}
8207
John McCall6347b682012-05-07 06:16:58 +00008208/// Given a set of delayed diagnostics, re-emit them as if they had
8209/// been delayed in the current context instead of in the given pool.
8210/// Essentially, this just moves them to the current pool.
8211void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
8212 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
8213 assert(curPool && "re-emitting in undelayed context not supported");
8214 curPool->steal(pool);
8215}
8216
Erik Pilkington9f866a72017-07-18 20:32:07 +00008217static void EmitAvailabilityWarning(Sema &S, AvailabilityResult AR,
8218 const NamedDecl *ReferringDecl,
8219 const NamedDecl *OffendingDecl,
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008220 StringRef Message,
8221 ArrayRef<SourceLocation> Locs,
Erik Pilkington9f866a72017-07-18 20:32:07 +00008222 const ObjCInterfaceDecl *UnknownObjCClass,
8223 const ObjCPropertyDecl *ObjCProperty,
8224 bool ObjCPropertyAccess) {
John McCall28a6aea2009-11-04 02:18:39 +00008225 // Delay if we're currently parsing a declaration.
Erik Pilkington9f866a72017-07-18 20:32:07 +00008226 if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
8227 S.DelayedDiagnostics.add(
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008228 DelayedDiagnostic::makeAvailability(
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008229 AR, Locs, ReferringDecl, OffendingDecl, UnknownObjCClass,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008230 ObjCProperty, Message, ObjCPropertyAccess));
John McCall28a6aea2009-11-04 02:18:39 +00008231 return;
8232 }
8233
Erik Pilkington9f866a72017-07-18 20:32:07 +00008234 Decl *Ctx = cast<Decl>(S.getCurLexicalContext());
8235 DoEmitAvailabilityWarning(S, AR, Ctx, ReferringDecl, OffendingDecl,
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008236 Message, Locs, UnknownObjCClass, ObjCProperty,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008237 ObjCPropertyAccess);
John McCall28a6aea2009-11-04 02:18:39 +00008238}
Erik Pilkington48c7cc92016-07-29 17:37:38 +00008239
Erik Pilkington5cd57172016-08-16 17:44:11 +00008240namespace {
8241
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008242/// Returns true if the given statement can be a body-like child of \p Parent.
8243bool isBodyLikeChildStmt(const Stmt *S, const Stmt *Parent) {
8244 switch (Parent->getStmtClass()) {
8245 case Stmt::IfStmtClass:
8246 return cast<IfStmt>(Parent)->getThen() == S ||
8247 cast<IfStmt>(Parent)->getElse() == S;
8248 case Stmt::WhileStmtClass:
8249 return cast<WhileStmt>(Parent)->getBody() == S;
8250 case Stmt::DoStmtClass:
8251 return cast<DoStmt>(Parent)->getBody() == S;
8252 case Stmt::ForStmtClass:
8253 return cast<ForStmt>(Parent)->getBody() == S;
8254 case Stmt::CXXForRangeStmtClass:
8255 return cast<CXXForRangeStmt>(Parent)->getBody() == S;
8256 case Stmt::ObjCForCollectionStmtClass:
8257 return cast<ObjCForCollectionStmt>(Parent)->getBody() == S;
8258 case Stmt::CaseStmtClass:
8259 case Stmt::DefaultStmtClass:
8260 return cast<SwitchCase>(Parent)->getSubStmt() == S;
8261 default:
8262 return false;
8263 }
8264}
8265
8266class StmtUSEFinder : public RecursiveASTVisitor<StmtUSEFinder> {
8267 const Stmt *Target;
8268
8269public:
8270 bool VisitStmt(Stmt *S) { return S != Target; }
8271
8272 /// Returns true if the given statement is present in the given declaration.
8273 static bool isContained(const Stmt *Target, const Decl *D) {
8274 StmtUSEFinder Visitor;
8275 Visitor.Target = Target;
8276 return !Visitor.TraverseDecl(const_cast<Decl *>(D));
8277 }
8278};
8279
8280/// Traverses the AST and finds the last statement that used a given
8281/// declaration.
8282class LastDeclUSEFinder : public RecursiveASTVisitor<LastDeclUSEFinder> {
8283 const Decl *D;
8284
8285public:
8286 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
8287 if (DRE->getDecl() == D)
8288 return false;
8289 return true;
8290 }
8291
8292 static const Stmt *findLastStmtThatUsesDecl(const Decl *D,
8293 const CompoundStmt *Scope) {
8294 LastDeclUSEFinder Visitor;
8295 Visitor.D = D;
8296 for (auto I = Scope->body_rbegin(), E = Scope->body_rend(); I != E; ++I) {
8297 const Stmt *S = *I;
8298 if (!Visitor.TraverseStmt(const_cast<Stmt *>(S)))
8299 return S;
8300 }
8301 return nullptr;
8302 }
8303};
8304
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00008305/// This class implements -Wunguarded-availability.
Erik Pilkington5cd57172016-08-16 17:44:11 +00008306///
8307/// This is done with a traversal of the AST of a function that makes reference
8308/// to a partially available declaration. Whenever we encounter an \c if of the
8309/// form: \c if(@available(...)), we use the version from the condition to visit
8310/// the then statement.
8311class DiagnoseUnguardedAvailability
8312 : public RecursiveASTVisitor<DiagnoseUnguardedAvailability> {
8313 typedef RecursiveASTVisitor<DiagnoseUnguardedAvailability> Base;
8314
8315 Sema &SemaRef;
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00008316 Decl *Ctx;
Erik Pilkington5cd57172016-08-16 17:44:11 +00008317
8318 /// Stack of potentially nested 'if (@available(...))'s.
8319 SmallVector<VersionTuple, 8> AvailabilityStack;
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008320 SmallVector<const Stmt *, 16> StmtStack;
Erik Pilkington5cd57172016-08-16 17:44:11 +00008321
Erik Pilkington42578572018-09-10 22:20:09 +00008322 void DiagnoseDeclAvailability(NamedDecl *D, SourceRange Range,
8323 ObjCInterfaceDecl *ClassReceiver = nullptr);
Erik Pilkington5cd57172016-08-16 17:44:11 +00008324
8325public:
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00008326 DiagnoseUnguardedAvailability(Sema &SemaRef, Decl *Ctx)
8327 : SemaRef(SemaRef), Ctx(Ctx) {
8328 AvailabilityStack.push_back(
8329 SemaRef.Context.getTargetInfo().getPlatformMinVersion());
Erik Pilkington5cd57172016-08-16 17:44:11 +00008330 }
8331
Alex Lorenz6f911122017-05-16 13:58:53 +00008332 bool TraverseDecl(Decl *D) {
8333 // Avoid visiting nested functions to prevent duplicate warnings.
8334 if (!D || isa<FunctionDecl>(D))
8335 return true;
8336 return Base::TraverseDecl(D);
8337 }
8338
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008339 bool TraverseStmt(Stmt *S) {
8340 if (!S)
8341 return true;
8342 StmtStack.push_back(S);
8343 bool Result = Base::TraverseStmt(S);
8344 StmtStack.pop_back();
8345 return Result;
8346 }
8347
Erik Pilkington5cd57172016-08-16 17:44:11 +00008348 void IssueDiagnostics(Stmt *S) { TraverseStmt(S); }
8349
8350 bool TraverseIfStmt(IfStmt *If);
8351
Alex Lorenz6f911122017-05-16 13:58:53 +00008352 bool TraverseLambdaExpr(LambdaExpr *E) { return true; }
8353
Erik Pilkingtonba87c622017-08-18 20:20:56 +00008354 // for 'case X:' statements, don't bother looking at the 'X'; it can't lead
8355 // to any useful diagnostics.
8356 bool TraverseCaseStmt(CaseStmt *CS) { return TraverseStmt(CS->getSubStmt()); }
8357
Erik Pilkington6ac77a62017-05-22 15:41:12 +00008358 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *PRE) {
8359 if (PRE->isClassReceiver())
8360 DiagnoseDeclAvailability(PRE->getClassReceiver(), PRE->getReceiverLocation());
8361 return true;
8362 }
8363
Erik Pilkington5cd57172016-08-16 17:44:11 +00008364 bool VisitObjCMessageExpr(ObjCMessageExpr *Msg) {
Erik Pilkington42578572018-09-10 22:20:09 +00008365 if (ObjCMethodDecl *D = Msg->getMethodDecl()) {
8366 ObjCInterfaceDecl *ID = nullptr;
8367 QualType ReceiverTy = Msg->getClassReceiver();
8368 if (!ReceiverTy.isNull() && ReceiverTy->getAsObjCInterfaceType())
8369 ID = ReceiverTy->getAsObjCInterfaceType()->getInterface();
8370
Erik Pilkington5cd57172016-08-16 17:44:11 +00008371 DiagnoseDeclAvailability(
Erik Pilkington42578572018-09-10 22:20:09 +00008372 D, SourceRange(Msg->getSelectorStartLoc(), Msg->getEndLoc()), ID);
8373 }
Erik Pilkington5cd57172016-08-16 17:44:11 +00008374 return true;
8375 }
8376
8377 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
8378 DiagnoseDeclAvailability(DRE->getDecl(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00008379 SourceRange(DRE->getBeginLoc(), DRE->getEndLoc()));
Erik Pilkington5cd57172016-08-16 17:44:11 +00008380 return true;
8381 }
8382
8383 bool VisitMemberExpr(MemberExpr *ME) {
8384 DiagnoseDeclAvailability(ME->getMemberDecl(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00008385 SourceRange(ME->getBeginLoc(), ME->getEndLoc()));
Erik Pilkington5cd57172016-08-16 17:44:11 +00008386 return true;
8387 }
8388
Alex Lorenz0a484ba2017-05-24 15:15:29 +00008389 bool VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008390 SemaRef.Diag(E->getBeginLoc(), diag::warn_at_available_unchecked_use)
Erik Pilkingtonfa983902018-10-30 20:31:30 +00008391 << (!SemaRef.getLangOpts().ObjC);
Alex Lorenz0a484ba2017-05-24 15:15:29 +00008392 return true;
8393 }
8394
Erik Pilkington5cd57172016-08-16 17:44:11 +00008395 bool VisitTypeLoc(TypeLoc Ty);
8396};
8397
8398void DiagnoseUnguardedAvailability::DiagnoseDeclAvailability(
Erik Pilkington42578572018-09-10 22:20:09 +00008399 NamedDecl *D, SourceRange Range, ObjCInterfaceDecl *ReceiverClass) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008400 AvailabilityResult Result;
8401 const NamedDecl *OffendingDecl;
8402 std::tie(Result, OffendingDecl) =
Erik Pilkington42578572018-09-10 22:20:09 +00008403 ShouldDiagnoseAvailabilityOfDecl(SemaRef, D, nullptr, ReceiverClass);
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008404 if (Result != AR_Available) {
Erik Pilkington5cd57172016-08-16 17:44:11 +00008405 // All other diagnostic kinds have already been handled in
8406 // DiagnoseAvailabilityOfDecl.
8407 if (Result != AR_NotYetIntroduced)
8408 return;
8409
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008410 const AvailabilityAttr *AA =
8411 getAttrForPlatform(SemaRef.getASTContext(), OffendingDecl);
Erik Pilkington5cd57172016-08-16 17:44:11 +00008412 VersionTuple Introduced = AA->getIntroduced();
8413
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008414 if (AvailabilityStack.back() >= Introduced)
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00008415 return;
8416
8417 // If the context of this function is less available than D, we should not
8418 // emit a diagnostic.
Alex Lorenz4e3c0bd2019-01-09 22:31:37 +00008419 if (!ShouldDiagnoseAvailabilityInContext(SemaRef, Result, Introduced, Ctx,
8420 OffendingDecl))
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00008421 return;
8422
Alex Lorenzc9a369f2017-06-22 17:02:24 +00008423 // We would like to emit the diagnostic even if -Wunguarded-availability is
8424 // not specified for deployment targets >= to iOS 11 or equivalent or
8425 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
8426 // later.
8427 unsigned DiagKind =
8428 shouldDiagnoseAvailabilityByDefault(
8429 SemaRef.Context,
8430 SemaRef.Context.getTargetInfo().getPlatformMinVersion(), Introduced)
8431 ? diag::warn_unguarded_availability_new
8432 : diag::warn_unguarded_availability;
8433
Erik Pilkington0535b0f2019-01-14 19:17:31 +00008434 std::string PlatformName = AvailabilityAttr::getPrettyPlatformName(
8435 SemaRef.getASTContext().getTargetInfo().getPlatformName());
8436
Alex Lorenzc9a369f2017-06-22 17:02:24 +00008437 SemaRef.Diag(Range.getBegin(), DiagKind)
Erik Pilkington0535b0f2019-01-14 19:17:31 +00008438 << Range << D << PlatformName << Introduced.getAsString();
Erik Pilkington5cd57172016-08-16 17:44:11 +00008439
Erik Pilkington4042f3c2017-07-05 17:08:56 +00008440 SemaRef.Diag(OffendingDecl->getLocation(),
Erik Pilkington0535b0f2019-01-14 19:17:31 +00008441 diag::note_partial_availability_specified_here)
8442 << OffendingDecl << PlatformName << Introduced.getAsString()
8443 << SemaRef.Context.getTargetInfo()
8444 .getPlatformMinVersion()
8445 .getAsString();
Erik Pilkington5cd57172016-08-16 17:44:11 +00008446
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008447 auto FixitDiag =
8448 SemaRef.Diag(Range.getBegin(), diag::note_unguarded_available_silence)
8449 << Range << D
Erik Pilkingtonfa983902018-10-30 20:31:30 +00008450 << (SemaRef.getLangOpts().ObjC ? /*@available*/ 0
8451 : /*__builtin_available*/ 1);
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008452
8453 // Find the statement which should be enclosed in the if @available check.
8454 if (StmtStack.empty())
8455 return;
8456 const Stmt *StmtOfUse = StmtStack.back();
8457 const CompoundStmt *Scope = nullptr;
8458 for (const Stmt *S : llvm::reverse(StmtStack)) {
8459 if (const auto *CS = dyn_cast<CompoundStmt>(S)) {
8460 Scope = CS;
8461 break;
8462 }
8463 if (isBodyLikeChildStmt(StmtOfUse, S)) {
8464 // The declaration won't be seen outside of the statement, so we don't
8465 // have to wrap the uses of any declared variables in if (@available).
8466 // Therefore we can avoid setting Scope here.
8467 break;
8468 }
8469 StmtOfUse = S;
8470 }
8471 const Stmt *LastStmtOfUse = nullptr;
8472 if (isa<DeclStmt>(StmtOfUse) && Scope) {
8473 for (const Decl *D : cast<DeclStmt>(StmtOfUse)->decls()) {
8474 if (StmtUSEFinder::isContained(StmtStack.back(), D)) {
8475 LastStmtOfUse = LastDeclUSEFinder::findLastStmtThatUsesDecl(D, Scope);
8476 break;
8477 }
8478 }
8479 }
8480
8481 const SourceManager &SM = SemaRef.getSourceManager();
8482 SourceLocation IfInsertionLoc =
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008483 SM.getExpansionLoc(StmtOfUse->getBeginLoc());
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008484 SourceLocation StmtEndLoc =
8485 SM.getExpansionRange(
Stephen Kelly1c301dc2018-08-09 21:09:38 +00008486 (LastStmtOfUse ? LastStmtOfUse : StmtOfUse)->getEndLoc())
Richard Smithb5f81712018-04-30 05:25:48 +00008487 .getEnd();
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008488 if (SM.getFileID(IfInsertionLoc) != SM.getFileID(StmtEndLoc))
8489 return;
8490
8491 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM);
8492 const char *ExtraIndentation = " ";
8493 std::string FixItString;
8494 llvm::raw_string_ostream FixItOS(FixItString);
Erik Pilkingtonfa983902018-10-30 20:31:30 +00008495 FixItOS << "if (" << (SemaRef.getLangOpts().ObjC ? "@available"
8496 : "__builtin_available")
Alex Lorenze1fb64e2017-05-09 15:34:46 +00008497 << "("
8498 << AvailabilityAttr::getPlatformNameSourceSpelling(
8499 SemaRef.getASTContext().getTargetInfo().getPlatformName())
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00008500 << " " << Introduced.getAsString() << ", *)) {\n"
8501 << Indentation << ExtraIndentation;
8502 FixitDiag << FixItHint::CreateInsertion(IfInsertionLoc, FixItOS.str());
8503 SourceLocation ElseInsertionLoc = Lexer::findLocationAfterToken(
8504 StmtEndLoc, tok::semi, SM, SemaRef.getLangOpts(),
8505 /*SkipTrailingWhitespaceAndNewLine=*/false);
8506 if (ElseInsertionLoc.isInvalid())
8507 ElseInsertionLoc =
8508 Lexer::getLocForEndOfToken(StmtEndLoc, 0, SM, SemaRef.getLangOpts());
8509 FixItOS.str().clear();
8510 FixItOS << "\n"
8511 << Indentation << "} else {\n"
8512 << Indentation << ExtraIndentation
8513 << "// Fallback on earlier versions\n"
8514 << Indentation << "}";
8515 FixitDiag << FixItHint::CreateInsertion(ElseInsertionLoc, FixItOS.str());
Erik Pilkington5cd57172016-08-16 17:44:11 +00008516 }
8517}
8518
8519bool DiagnoseUnguardedAvailability::VisitTypeLoc(TypeLoc Ty) {
8520 const Type *TyPtr = Ty.getTypePtr();
8521 SourceRange Range{Ty.getBeginLoc(), Ty.getEndLoc()};
8522
Erik Pilkington6ac77a62017-05-22 15:41:12 +00008523 if (Range.isInvalid())
8524 return true;
8525
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008526 if (const auto *TT = dyn_cast<TagType>(TyPtr)) {
Erik Pilkington5cd57172016-08-16 17:44:11 +00008527 TagDecl *TD = TT->getDecl();
8528 DiagnoseDeclAvailability(TD, Range);
8529
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008530 } else if (const auto *TD = dyn_cast<TypedefType>(TyPtr)) {
Erik Pilkington5cd57172016-08-16 17:44:11 +00008531 TypedefNameDecl *D = TD->getDecl();
8532 DiagnoseDeclAvailability(D, Range);
8533
8534 } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) {
8535 if (NamedDecl *D = ObjCO->getInterface())
8536 DiagnoseDeclAvailability(D, Range);
8537 }
8538
8539 return true;
8540}
8541
8542bool DiagnoseUnguardedAvailability::TraverseIfStmt(IfStmt *If) {
8543 VersionTuple CondVersion;
8544 if (auto *E = dyn_cast<ObjCAvailabilityCheckExpr>(If->getCond())) {
8545 CondVersion = E->getVersion();
8546
8547 // If we're using the '*' case here or if this check is redundant, then we
8548 // use the enclosing version to check both branches.
8549 if (CondVersion.empty() || CondVersion <= AvailabilityStack.back())
Alex Lorenz98f9fcd2017-08-17 14:22:27 +00008550 return TraverseStmt(If->getThen()) && TraverseStmt(If->getElse());
Erik Pilkington5cd57172016-08-16 17:44:11 +00008551 } else {
8552 // This isn't an availability checking 'if', we can just continue.
8553 return Base::TraverseIfStmt(If);
8554 }
8555
8556 AvailabilityStack.push_back(CondVersion);
8557 bool ShouldContinue = TraverseStmt(If->getThen());
8558 AvailabilityStack.pop_back();
8559
8560 return ShouldContinue && TraverseStmt(If->getElse());
8561}
8562
8563} // end anonymous namespace
8564
8565void Sema::DiagnoseUnguardedAvailabilityViolations(Decl *D) {
8566 Stmt *Body = nullptr;
8567
8568 if (auto *FD = D->getAsFunction()) {
8569 // FIXME: We only examine the pattern decl for availability violations now,
8570 // but we should also examine instantiated templates.
8571 if (FD->isTemplateInstantiation())
8572 return;
8573
8574 Body = FD->getBody();
8575 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
8576 Body = MD->getBody();
Alex Lorenz28559ce2017-04-26 14:20:02 +00008577 else if (auto *BD = dyn_cast<BlockDecl>(D))
8578 Body = BD->getBody();
Erik Pilkington5cd57172016-08-16 17:44:11 +00008579
8580 assert(Body && "Need a body here!");
8581
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00008582 DiagnoseUnguardedAvailability(*this, D).IssueDiagnostics(Body);
Erik Pilkington5cd57172016-08-16 17:44:11 +00008583}
Erik Pilkington9f866a72017-07-18 20:32:07 +00008584
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008585void Sema::DiagnoseAvailabilityOfDecl(NamedDecl *D,
8586 ArrayRef<SourceLocation> Locs,
Erik Pilkington9f866a72017-07-18 20:32:07 +00008587 const ObjCInterfaceDecl *UnknownObjCClass,
8588 bool ObjCPropertyAccess,
Erik Pilkington42578572018-09-10 22:20:09 +00008589 bool AvoidPartialAvailabilityChecks,
8590 ObjCInterfaceDecl *ClassReceiver) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00008591 std::string Message;
8592 AvailabilityResult Result;
8593 const NamedDecl* OffendingDecl;
8594 // See if this declaration is unavailable, deprecated, or partial.
Erik Pilkington42578572018-09-10 22:20:09 +00008595 std::tie(Result, OffendingDecl) =
8596 ShouldDiagnoseAvailabilityOfDecl(*this, D, &Message, ClassReceiver);
Erik Pilkington9f866a72017-07-18 20:32:07 +00008597 if (Result == AR_Available)
8598 return;
8599
8600 if (Result == AR_NotYetIntroduced) {
8601 if (AvoidPartialAvailabilityChecks)
8602 return;
8603
8604 // We need to know the @available context in the current function to
8605 // diagnose this use, let DiagnoseUnguardedAvailabilityViolations do that
8606 // when we're done parsing the current function.
8607 if (getCurFunctionOrMethodDecl()) {
8608 getEnclosingFunction()->HasPotentialAvailabilityViolations = true;
8609 return;
8610 } else if (getCurBlock() || getCurLambda()) {
8611 getCurFunction()->HasPotentialAvailabilityViolations = true;
8612 return;
8613 }
8614 }
8615
8616 const ObjCPropertyDecl *ObjCPDecl = nullptr;
Aaron Ballmana70c6b52018-02-15 16:20:20 +00008617 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
Erik Pilkington9f866a72017-07-18 20:32:07 +00008618 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
8619 AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
8620 if (PDeclResult == Result)
8621 ObjCPDecl = PD;
8622 }
8623 }
8624
Volodymyr Sapsai7d89ce92018-03-29 17:34:09 +00008625 EmitAvailabilityWarning(*this, Result, D, OffendingDecl, Message, Locs,
Erik Pilkington9f866a72017-07-18 20:32:07 +00008626 UnknownObjCClass, ObjCPDecl, ObjCPropertyAccess);
8627}