blob: b90f3e765d4927530b1b4c0c3236f7e6c59274fd [file] [log] [blame]
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
David Majnemer929025d2016-01-26 19:30:26 +000014#include "clang/AST/ASTConsumer.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000015#include "clang/AST/ASTContext.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000016#include "clang/AST/ASTMutationListener.h"
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +000017#include "clang/AST/CXXInheritance.h"
John McCall28a0cf72010-08-25 07:42:41 +000018#include "clang/AST/DeclCXX.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/DeclTemplate.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000021#include "clang/AST/Expr.h"
Benjamin Kramerf3ca26982014-05-10 16:31:55 +000022#include "clang/AST/ExprCXX.h"
Rafael Espindoladb77c4a2013-02-26 19:13:56 +000023#include "clang/AST/Mangle.h"
Erik Pilkington5cd57172016-08-16 17:44:11 +000024#include "clang/AST/RecursiveASTVisitor.h"
Jordan Rosea7d03842013-02-08 22:30:41 +000025#include "clang/Basic/CharInfo.h"
John McCall31168b02011-06-15 23:02:42 +000026#include "clang/Basic/SourceManager.h"
Chris Lattneracbc2d22008-06-27 22:18:37 +000027#include "clang/Basic/TargetInfo.h"
Benjamin Kramer6ee15622013-09-13 15:35:43 +000028#include "clang/Lex/Preprocessor.h"
John McCall8b0666c2010-08-20 18:27:03 +000029#include "clang/Sema/DeclSpec.h"
John McCallb45a1e72010-08-26 02:13:20 +000030#include "clang/Sema/DelayedDiagnostic.h"
Artem Belevichbcec9da2016-06-06 22:54:57 +000031#include "clang/Sema/Initialization.h"
John McCallf1e8b342011-09-29 07:17:38 +000032#include "clang/Sema/Lookup.h"
Richard Smithe233fbf2013-01-28 22:42:45 +000033#include "clang/Sema/Scope.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
David Majnemer06864812015-04-07 06:01:53 +000061/// \brief Return true if the given decl has function type (function or
62/// 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();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000090 if (const BlockDecl *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
Alp Toker601b22c2014-01-21 23:35:24 +000095static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) {
Aaron Ballman12b9f652014-01-16 13:55:42 +000096 if (const FunctionType *FnTy = D->getFunctionType())
Alp Toker9cacbab2014-01-20 20:26:09 +000097 return cast<FunctionProtoType>(FnTy)->getParamType(Idx);
Chandler Carruthff4c4f02011-07-01 23:49:12 +000098 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +000099 return BD->getParamDecl(Idx)->getType();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000100
Alp Toker03376dc2014-07-07 09:02:20 +0000101 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000102}
103
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000104static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) {
105 if (const auto *FD = dyn_cast<FunctionDecl>(D))
106 return FD->getParamDecl(Idx)->getSourceRange();
Aaron Ballmane13d0092014-08-01 17:02:34 +0000107 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000108 return MD->parameters()[Idx]->getSourceRange();
Aaron Ballmane13d0092014-08-01 17:02:34 +0000109 if (const auto *BD = dyn_cast<BlockDecl>(D))
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000110 return BD->getParamDecl(Idx)->getSourceRange();
111 return SourceRange();
112}
113
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000114static QualType getFunctionOrMethodResultType(const Decl *D) {
Aaron Ballman12b9f652014-01-16 13:55:42 +0000115 if (const FunctionType *FnTy = D->getFunctionType())
Aaron Ballman6288d062014-07-11 16:31:29 +0000116 return cast<FunctionType>(FnTy)->getReturnType();
Alp Toker314cc812014-01-25 16:55:45 +0000117 return cast<ObjCMethodDecl>(D)->getReturnType();
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000118}
119
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000120static SourceRange getFunctionOrMethodResultSourceRange(const Decl *D) {
121 if (const auto *FD = dyn_cast<FunctionDecl>(D))
122 return FD->getReturnTypeSourceRange();
Aaron Ballmane13d0092014-08-01 17:02:34 +0000123 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
Aaron Ballman4bfa0de2014-08-01 12:58:11 +0000124 return MD->getReturnTypeSourceRange();
125 return SourceRange();
126}
127
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000128static bool isFunctionOrMethodVariadic(const Decl *D) {
Aaron Ballman12b9f652014-01-16 13:55:42 +0000129 if (const FunctionType *FnTy = D->getFunctionType()) {
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000130 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000131 return proto->isVariadic();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000132 }
Aaron Ballmane13d0092014-08-01 17:02:34 +0000133 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
134 return BD->isVariadic();
135
136 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000137}
138
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000139static bool isInstanceMethod(const Decl *D) {
140 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth743682b2010-11-16 08:35:43 +0000141 return MethodDecl->isInstance();
142 return false;
143}
144
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000145static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall9dd450b2009-09-21 23:43:11 +0000146 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattner574dee62008-07-26 22:17:49 +0000147 if (!PT)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000148 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000149
John McCall96fa4842010-05-17 21:00:27 +0000150 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
151 if (!Cls)
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 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000155
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000156 // FIXME: Should we walk the chain of classes?
157 return ClsName == &Ctx.Idents.get("NSString") ||
158 ClsName == &Ctx.Idents.get("NSMutableString");
159}
160
Daniel Dunbar980c6692008-09-26 03:32:58 +0000161static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000162 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000163 if (!PT)
164 return false;
165
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000166 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000167 if (!RT)
168 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000169
Daniel Dunbar980c6692008-09-26 03:32:58 +0000170 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara6150c882010-05-11 21:36:43 +0000171 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar980c6692008-09-26 03:32:58 +0000172 return false;
173
174 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
175}
176
Richard Smithb87c4652013-10-31 21:23:20 +0000177static unsigned getNumAttributeArgs(const AttributeList &Attr) {
178 // FIXME: Include the type in the argument list.
179 return Attr.getNumArgs() + Attr.hasParsedType();
180}
181
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000182template <typename Compare>
183static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr,
184 unsigned Num, unsigned Diag,
185 Compare Comp) {
186 if (Comp(getNumAttributeArgs(Attr), Num)) {
187 S.Diag(Attr.getLoc(), Diag) << Attr.getName() << Num;
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000188 return false;
189 }
190
191 return true;
192}
193
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000194/// \brief Check if the attribute has exactly as many args as Num. May
195/// output an error.
196static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
197 unsigned Num) {
198 return checkAttributeNumArgsImpl(S, Attr, Num,
199 diag::err_attribute_wrong_number_arguments,
200 std::not_equal_to<unsigned>());
201}
202
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000203/// \brief Check if the attribute has at least as many args as Num. May
204/// output an error.
205static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
Richard Smithb87c4652013-10-31 21:23:20 +0000206 unsigned Num) {
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000207 return checkAttributeNumArgsImpl(S, Attr, Num,
208 diag::err_attribute_too_few_arguments,
209 std::less<unsigned>());
210}
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000211
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +0000212/// \brief Check if the attribute has at most as many args as Num. May
213/// output an error.
214static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &Attr,
215 unsigned Num) {
216 return checkAttributeNumArgsImpl(S, Attr, Num,
217 diag::err_attribute_too_many_arguments,
218 std::greater<unsigned>());
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000219}
220
Erich Keane623efd82017-03-30 21:48:55 +0000221/// \brief A helper function to provide Attribute Location for the Attr types
222/// AND the AttributeList.
223template <typename AttrInfo>
224static typename std::enable_if<std::is_base_of<clang::Attr, AttrInfo>::value,
225 SourceLocation>::type
226getAttrLoc(const AttrInfo &Attr) {
227 return Attr.getLocation();
228}
229static SourceLocation getAttrLoc(const clang::AttributeList &Attr) {
230 return Attr.getLoc();
231}
232
233/// \brief A helper function to provide Attribute Name for the Attr types
234/// AND the AttributeList.
235template <typename AttrInfo>
236static typename std::enable_if<std::is_base_of<clang::Attr, AttrInfo>::value,
237 const AttrInfo *>::type
238getAttrName(const AttrInfo &Attr) {
239 return &Attr;
240}
Benjamin Kramer674d5792017-05-26 20:08:24 +0000241static const IdentifierInfo *getAttrName(const clang::AttributeList &Attr) {
Erich Keane623efd82017-03-30 21:48:55 +0000242 return Attr.getName();
243}
244
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000245/// \brief If Expr is a valid integer constant, get the value of the integer
246/// expression and return success or failure. May output an error.
Erich Keane623efd82017-03-30 21:48:55 +0000247template<typename AttrInfo>
248static bool checkUInt32Argument(Sema &S, const AttrInfo& Attr, const Expr *Expr,
249 uint32_t &Val, unsigned Idx = UINT_MAX) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000250 llvm::APSInt I(32);
251 if (Expr->isTypeDependent() || Expr->isValueDependent() ||
252 !Expr->isIntegerConstantExpr(I, S.Context)) {
253 if (Idx != UINT_MAX)
Erich Keane623efd82017-03-30 21:48:55 +0000254 S.Diag(getAttrLoc(Attr), diag::err_attribute_argument_n_type)
255 << getAttrName(Attr) << Idx << AANT_ArgumentIntegerConstant
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000256 << Expr->getSourceRange();
257 else
Erich Keane623efd82017-03-30 21:48:55 +0000258 S.Diag(getAttrLoc(Attr), diag::err_attribute_argument_type)
259 << getAttrName(Attr) << AANT_ArgumentIntegerConstant
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000260 << Expr->getSourceRange();
261 return false;
262 }
Aaron Ballmanadfdde52014-07-22 14:09:34 +0000263
264 if (!I.isIntN(32)) {
Aaron Ballman31f42312014-07-24 14:51:23 +0000265 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large)
266 << I.toString(10, false) << 32 << /* Unsigned */ 1;
Aaron Ballmanadfdde52014-07-22 14:09:34 +0000267 return false;
268 }
269
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +0000270 Val = (uint32_t)I.getZExtValue();
271 return true;
272}
273
George Burgess IVe3763372016-12-22 02:50:20 +0000274/// \brief Wrapper around checkUInt32Argument, with an extra check to be sure
275/// that the result will fit into a regular (signed) int. All args have the same
276/// purpose as they do in checkUInt32Argument.
Erich Keane623efd82017-03-30 21:48:55 +0000277template<typename AttrInfo>
278static bool checkPositiveIntArgument(Sema &S, const AttrInfo& Attr, const Expr *Expr,
279 int &Val, unsigned Idx = UINT_MAX) {
George Burgess IVe3763372016-12-22 02:50:20 +0000280 uint32_t UVal;
281 if (!checkUInt32Argument(S, Attr, Expr, UVal, Idx))
282 return false;
283
George Burgess IVa8049572016-12-22 19:00:31 +0000284 if (UVal > (uint32_t)std::numeric_limits<int>::max()) {
George Burgess IVe3763372016-12-22 02:50:20 +0000285 llvm::APSInt I(32); // for toString
286 I = UVal;
287 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large)
288 << I.toString(10, false) << 32 << /* Unsigned */ 0;
289 return false;
290 }
291
292 Val = UVal;
293 return true;
294}
295
Aaron Ballmanfb763042013-12-02 18:05:46 +0000296/// \brief Diagnose mutually exclusive attributes when present on a given
297/// declaration. Returns true if diagnosed.
298template <typename AttrTy>
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +0000299static bool checkAttrMutualExclusion(Sema &S, Decl *D, SourceRange Range,
300 IdentifierInfo *Ident) {
Aaron Ballman2cfbc002014-01-03 16:23:46 +0000301 if (AttrTy *A = D->getAttr<AttrTy>()) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +0000302 S.Diag(Range.getBegin(), diag::err_attributes_are_not_compatible) << Ident
303 << A;
304 S.Diag(A->getLocation(), diag::note_conflicting_attribute);
Aaron Ballmanfb763042013-12-02 18:05:46 +0000305 return true;
306 }
307 return false;
308}
309
Alp Toker601b22c2014-01-21 23:35:24 +0000310/// \brief Check if IdxExpr is a valid parameter index for a function or
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000311/// instance method D. May output an error.
312///
313/// \returns true if IdxExpr is a valid index.
Erich Keane623efd82017-03-30 21:48:55 +0000314template <typename AttrInfo>
315static bool checkFunctionOrMethodParameterIndex(
Dean Michael Berris7456a282017-06-16 03:22:09 +0000316 Sema &S, const Decl *D, const AttrInfo &Attr, unsigned AttrArgNum,
317 const Expr *IdxExpr, uint64_t &Idx, bool AllowImplicitThis = false) {
David Majnemer06864812015-04-07 06:01:53 +0000318 assert(isFunctionOrMethodOrBlock(D));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000319
320 // In C++ the implicit 'this' function parameter also counts.
321 // Parameters are counted from one.
Aaron Ballmanbe50eb82013-07-30 00:48:57 +0000322 bool HP = hasFunctionProto(D);
323 bool HasImplicitThisParam = isInstanceMethod(D);
324 bool IV = HP && isFunctionOrMethodVariadic(D);
Alp Toker601b22c2014-01-21 23:35:24 +0000325 unsigned NumParams =
326 (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000327
328 llvm::APSInt IdxInt;
329 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
330 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Erich Keane623efd82017-03-30 21:48:55 +0000331 S.Diag(getAttrLoc(Attr), diag::err_attribute_argument_n_type)
332 << getAttrName(Attr) << AttrArgNum << AANT_ArgumentIntegerConstant
Aaron Ballmanfaed0fa2013-12-26 16:30:30 +0000333 << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000334 return false;
335 }
336
337 Idx = IdxInt.getLimitedValue();
Alp Toker601b22c2014-01-21 23:35:24 +0000338 if (Idx < 1 || (!IV && Idx > NumParams)) {
Erich Keane623efd82017-03-30 21:48:55 +0000339 S.Diag(getAttrLoc(Attr), diag::err_attribute_argument_out_of_bounds)
340 << getAttrName(Attr) << AttrArgNum << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000341 return false;
342 }
343 Idx--; // Convert to zero-based.
Dean Michael Berris7456a282017-06-16 03:22:09 +0000344 if (HasImplicitThisParam && !AllowImplicitThis) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000345 if (Idx == 0) {
Erich Keane623efd82017-03-30 21:48:55 +0000346 S.Diag(getAttrLoc(Attr),
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000347 diag::err_attribute_invalid_implicit_this_argument)
Erich Keane623efd82017-03-30 21:48:55 +0000348 << getAttrName(Attr) << IdxExpr->getSourceRange();
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +0000349 return false;
350 }
351 --Idx;
352 }
353
354 return true;
355}
356
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000357/// \brief Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
358/// If not emit an error and return false. If the argument is an identifier it
359/// will emit an error with a fixit hint and treat it as if it was a string
360/// literal.
Tim Northover6a6b63b2013-10-01 14:34:18 +0000361bool Sema::checkStringLiteralArgumentAttr(const AttributeList &Attr,
362 unsigned ArgNum, StringRef &Str,
Tim Northovera484bc02013-10-01 14:34:25 +0000363 SourceLocation *ArgLocation) {
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000364 // Look for identifiers. If we have one emit a hint to fix it to a literal.
365 if (Attr.isArgIdent(ArgNum)) {
366 IdentifierLoc *Loc = Attr.getArgAsIdent(ArgNum);
Tim Northover6a6b63b2013-10-01 14:34:18 +0000367 Diag(Loc->Loc, diag::err_attribute_argument_type)
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000368 << Attr.getName() << AANT_ArgumentString
369 << FixItHint::CreateInsertion(Loc->Loc, "\"")
Craig Topper07fa1762015-11-15 02:31:46 +0000370 << FixItHint::CreateInsertion(getLocForEndOfToken(Loc->Loc), "\"");
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000371 Str = Loc->Ident->getName();
372 if (ArgLocation)
373 *ArgLocation = Loc->Loc;
374 return true;
375 }
376
377 // Now check for an actual string literal.
378 Expr *ArgExpr = Attr.getArgAsExpr(ArgNum);
379 StringLiteral *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
380 if (ArgLocation)
381 *ArgLocation = ArgExpr->getLocStart();
382
383 if (!Literal || !Literal->isAscii()) {
Tim Northover6a6b63b2013-10-01 14:34:18 +0000384 Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
Aaron Ballman3b1dde62013-09-13 19:35:18 +0000385 << Attr.getName() << AANT_ArgumentString;
386 return false;
387 }
388
389 Str = Literal->getString();
390 return true;
391}
392
Aaron Ballman6f9165a2013-11-27 15:24:06 +0000393/// \brief Applies the given attribute to the Decl without performing any
394/// additional semantic checking.
395template <typename AttrType>
396static void handleSimpleAttribute(Sema &S, Decl *D,
397 const AttributeList &Attr) {
398 D->addAttr(::new (S.Context) AttrType(Attr.getRange(), S.Context,
399 Attr.getAttributeSpellingListIndex()));
400}
401
Justin Lebar3eaaf862016-01-13 01:07:35 +0000402template <typename AttrType>
403static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
404 const AttributeList &Attr) {
405 handleSimpleAttribute<AttrType>(S, D, Attr);
406}
407
408/// \brief Applies the given attribute to the Decl so long as the Decl doesn't
409/// already have one of the given incompatible attributes.
410template <typename AttrType, typename IncompatibleAttrType,
411 typename... IncompatibleAttrTypes>
412static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
413 const AttributeList &Attr) {
414 if (checkAttrMutualExclusion<IncompatibleAttrType>(S, D, Attr.getRange(),
415 Attr.getName()))
416 return;
417 handleSimpleAttributeWithExclusions<AttrType, IncompatibleAttrTypes...>(S, D,
418 Attr);
419}
420
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000421/// \brief Check if the passed-in expression is of type int or bool.
422static bool isIntOrBool(Expr *Exp) {
423 QualType QT = Exp->getType();
424 return QT->isBooleanType() || QT->isIntegerType();
425}
426
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000427
428// Check to see if the type is a smart pointer of some kind. We assume
429// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000430static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
Richard Smithcf4bdde2015-02-21 02:45:19 +0000431 DeclContextLookupResult Res1 = RT->getDecl()->lookup(
432 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikieff7d47a2012-12-19 00:45:41 +0000433 if (Res1.empty())
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000434 return false;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000435
Richard Smithcf4bdde2015-02-21 02:45:19 +0000436 DeclContextLookupResult Res2 = RT->getDecl()->lookup(
437 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikieff7d47a2012-12-19 00:45:41 +0000438 if (Res2.empty())
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000439 return false;
440
441 return true;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000442}
443
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000444/// \brief Check if passed in Decl is a pointer type.
445/// Note that this function may produce an error message.
446/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000447static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
448 const AttributeList &Attr) {
Aaron Ballman553e6812013-12-26 14:54:11 +0000449 const ValueDecl *vd = cast<ValueDecl>(D);
450 QualType QT = vd->getType();
451 if (QT->isAnyPointerType())
452 return true;
453
454 if (const RecordType *RT = QT->getAs<RecordType>()) {
455 // If it's an incomplete type, it could be a smart pointer; skip it.
456 // (We don't want to force template instantiation if we can avoid it,
457 // since that would alter the order in which templates are instantiated.)
458 if (RT->isIncompleteType())
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000459 return true;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000460
Aaron Ballman553e6812013-12-26 14:54:11 +0000461 if (threadSafetyCheckIsSmartPointer(S, RT))
462 return true;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000463 }
Aaron Ballman553e6812013-12-26 14:54:11 +0000464
465 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Aaron Ballman68289452013-12-26 15:06:01 +0000466 << Attr.getName() << QT;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000467 return false;
468}
469
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000470/// \brief Checks that the passed in QualType either is of RecordType or points
471/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000472static const RecordType *getRecordType(QualType QT) {
473 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000474 return RT;
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000475
476 // Now check if we point to record type.
477 if (const PointerType *PT = QT->getAs<PointerType>())
478 return PT->getPointeeType()->getAs<RecordType>();
479
Craig Topperc3ec1492014-05-26 06:22:03 +0000480 return nullptr;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000481}
482
Aaron Ballman76050722014-04-04 15:13:57 +0000483static bool checkRecordTypeForCapability(Sema &S, QualType Ty) {
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000484 const RecordType *RT = getRecordType(Ty);
Michael Hana9171bc2012-08-03 17:40:43 +0000485
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000486 if (!RT)
487 return false;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000488
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000489 // Don't check for the capability if the class hasn't been defined yet.
DeLesley Hutchins3509f292012-02-16 17:15:51 +0000490 if (RT->isIncompleteType())
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000491 return true;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000492
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000493 // Allow smart pointers to be used as capability objects.
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000494 // FIXME -- Check the type that the smart pointer points to.
495 if (threadSafetyCheckIsSmartPointer(S, RT))
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000496 return true;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000497
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000498 // Check if the record itself has a capability.
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000499 RecordDecl *RD = RT->getDecl();
Aaron Ballmanefe348e2014-02-18 17:36:50 +0000500 if (RD->hasAttr<CapabilityAttr>())
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000501 return true;
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000502
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000503 // Else check if any base classes have a capability.
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000504 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
505 CXXBasePaths BPaths(false, false);
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +0000506 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) {
507 const auto *Type = BS->getType()->getAs<RecordType>();
508 return Type->getDecl()->hasAttr<CapabilityAttr>();
509 }, BPaths))
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000510 return true;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000511 }
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000512 return false;
513}
514
Aaron Ballman76050722014-04-04 15:13:57 +0000515static bool checkTypedefTypeForCapability(QualType Ty) {
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000516 const auto *TD = Ty->getAs<TypedefType>();
517 if (!TD)
518 return false;
519
520 TypedefNameDecl *TN = TD->getDecl();
521 if (!TN)
522 return false;
523
524 return TN->hasAttr<CapabilityAttr>();
525}
526
Aaron Ballman76050722014-04-04 15:13:57 +0000527static bool typeHasCapability(Sema &S, QualType Ty) {
528 if (checkTypedefTypeForCapability(Ty))
529 return true;
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000530
Aaron Ballman76050722014-04-04 15:13:57 +0000531 if (checkRecordTypeForCapability(S, Ty))
532 return true;
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000533
Aaron Ballman76050722014-04-04 15:13:57 +0000534 return false;
535}
536
537static bool isCapabilityExpr(Sema &S, const Expr *Ex) {
538 // Capability expressions are simple expressions involving the boolean logic
539 // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once
540 // a DeclRefExpr is found, its type should be checked to determine whether it
541 // is a capability or not.
542
543 if (const auto *E = dyn_cast<DeclRefExpr>(Ex))
544 return typeHasCapability(S, E->getType());
545 else if (const auto *E = dyn_cast<CastExpr>(Ex))
546 return isCapabilityExpr(S, E->getSubExpr());
547 else if (const auto *E = dyn_cast<ParenExpr>(Ex))
548 return isCapabilityExpr(S, E->getSubExpr());
549 else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) {
550 if (E->getOpcode() == UO_LNot)
551 return isCapabilityExpr(S, E->getSubExpr());
552 return false;
553 } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) {
554 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr)
555 return isCapabilityExpr(S, E->getLHS()) &&
556 isCapabilityExpr(S, E->getRHS());
557 return false;
558 }
559
560 return false;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000561}
562
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000563/// \brief Checks that all attribute arguments, starting from Sidx, resolve to
564/// a capability object.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000565/// \param Sidx The attribute argument index to start checking with.
566/// \param ParamIdxOk Whether an argument can be indexing into a function
567/// parameter list.
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000568static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D,
569 const AttributeList &Attr,
570 SmallVectorImpl<Expr *> &Args,
571 int Sidx = 0,
572 bool ParamIdxOk = false) {
573 for (unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Aaron Ballman00e99962013-08-31 01:11:41 +0000574 Expr *ArgExp = Attr.getArgAsExpr(Idx);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000575
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000576 if (ArgExp->isTypeDependent()) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000577 // FIXME -- need to check this again on template instantiation
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000578 Args.push_back(ArgExp);
579 continue;
580 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000581
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000582 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchinsa5a00e82012-09-07 17:34:53 +0000583 if (StrLit->getLength() == 0 ||
Benjamin Kramerca9fe142013-09-13 16:30:12 +0000584 (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) {
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000585 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchinsa5a00e82012-09-07 17:34:53 +0000586 // Treat "*" as the universal lock.
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000587 Args.push_back(ArgExp);
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000588 continue;
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000589 }
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000590
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000591 // We allow constant strings to be used as a placeholder for expressions
592 // that are not valid C++ syntax, but warn that they are ignored.
593 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
594 Attr.getName();
DeLesley Hutchins3c3d57b2012-08-31 21:57:32 +0000595 Args.push_back(ArgExp);
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000596 continue;
597 }
598
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000599 QualType ArgTy = ArgExp->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000600
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000601 // A pointer to member expression of the form &MyClass::mu is treated
602 // specially -- we need to look at the type of the member.
603 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
604 if (UOp->getOpcode() == UO_AddrOf)
605 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
606 if (DRE->getDecl()->isCXXInstanceMember())
607 ArgTy = DRE->getDecl()->getType();
608
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000609 // First see if we can just cast to record type, or pointer to record type.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000610 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000611
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000612 // Now check if we index into a record type function param.
613 if(!RT && ParamIdxOk) {
614 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000615 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
616 if(FD && IL) {
617 unsigned int NumParams = FD->getNumParams();
618 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000619 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
620 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
621 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000622 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
623 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000624 continue;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000625 }
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000626 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000627 }
628 }
629
Aaron Ballman76050722014-04-04 15:13:57 +0000630 // If the type does not have a capability, see if the components of the
631 // expression have capabilities. This allows for writing C code where the
632 // capability may be on the type, and the expression is a capability
633 // boolean logic expression. Eg) requires_capability(A || B && !C)
634 if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp))
635 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
636 << Attr.getName() << ArgTy;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000637
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000638 Args.push_back(ArgExp);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000639 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000640}
641
Chris Lattner58418ff2008-06-29 00:16:31 +0000642//===----------------------------------------------------------------------===//
Chris Lattner58418ff2008-06-29 00:16:31 +0000643// Attribute Implementations
644//===----------------------------------------------------------------------===//
645
Michael Hana9171bc2012-08-03 17:40:43 +0000646static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han99315932013-01-24 16:46:58 +0000647 const AttributeList &Attr) {
Michael Han3be3b442012-07-23 18:48:41 +0000648 if (!threadSafetyCheckIsPointer(S, D, Attr))
649 return;
650
Michael Han99315932013-01-24 16:46:58 +0000651 D->addAttr(::new (S.Context)
652 PtGuardedVarAttr(Attr.getRange(), S.Context,
653 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000654}
655
Michael Hana9171bc2012-08-03 17:40:43 +0000656static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
657 const AttributeList &Attr,
Michael Han3be3b442012-07-23 18:48:41 +0000658 Expr* &Arg) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000659 SmallVector<Expr*, 1> Args;
660 // check that all arguments are lockable objects
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000661 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000662 unsigned Size = Args.size();
663 if (Size != 1)
Michael Han3be3b442012-07-23 18:48:41 +0000664 return false;
Michael Hana9171bc2012-08-03 17:40:43 +0000665
Michael Han3be3b442012-07-23 18:48:41 +0000666 Arg = Args[0];
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000667
Michael Han3be3b442012-07-23 18:48:41 +0000668 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000669}
670
Michael Han3be3b442012-07-23 18:48:41 +0000671static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000672 Expr *Arg = nullptr;
Michael Han3be3b442012-07-23 18:48:41 +0000673 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
674 return;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000675
Aaron Ballman36a53502014-01-16 13:03:14 +0000676 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg,
677 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000678}
679
Michael Hana9171bc2012-08-03 17:40:43 +0000680static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Han3be3b442012-07-23 18:48:41 +0000681 const AttributeList &Attr) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000682 Expr *Arg = nullptr;
Michael Han3be3b442012-07-23 18:48:41 +0000683 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
684 return;
685
686 if (!threadSafetyCheckIsPointer(S, D, Attr))
687 return;
688
689 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Aaron Ballman36a53502014-01-16 13:03:14 +0000690 S.Context, Arg,
691 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000692}
693
Michael Hana9171bc2012-08-03 17:40:43 +0000694static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
695 const AttributeList &Attr,
Craig Topper5603df42013-07-05 19:34:19 +0000696 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000697 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Han3be3b442012-07-23 18:48:41 +0000698 return false;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000699
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000700 // Check that this attribute only applies to lockable types.
Aaron Ballmane61b8b82013-12-02 15:02:49 +0000701 QualType QT = cast<ValueDecl>(D)->getType();
DeLesley Hutchins2b504dc2015-09-29 16:24:18 +0000702 if (!QT->isDependentType() && !typeHasCapability(S, QT)) {
703 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
704 << Attr.getName();
705 return false;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000706 }
707
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000708 // Check that all arguments are lockable objects.
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000709 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +0000710 if (Args.empty())
Michael Han3be3b442012-07-23 18:48:41 +0000711 return false;
Michael Hana9171bc2012-08-03 17:40:43 +0000712
Michael Han3be3b442012-07-23 18:48:41 +0000713 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000714}
715
Michael Hana9171bc2012-08-03 17:40:43 +0000716static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Han3be3b442012-07-23 18:48:41 +0000717 const AttributeList &Attr) {
718 SmallVector<Expr*, 1> Args;
719 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
720 return;
721
722 Expr **StartArg = &Args[0];
Michael Han99315932013-01-24 16:46:58 +0000723 D->addAttr(::new (S.Context)
724 AcquiredAfterAttr(Attr.getRange(), S.Context,
725 StartArg, Args.size(),
726 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000727}
728
Michael Hana9171bc2012-08-03 17:40:43 +0000729static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Han3be3b442012-07-23 18:48:41 +0000730 const AttributeList &Attr) {
731 SmallVector<Expr*, 1> Args;
732 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
733 return;
734
735 Expr **StartArg = &Args[0];
Michael Han99315932013-01-24 16:46:58 +0000736 D->addAttr(::new (S.Context)
737 AcquiredBeforeAttr(Attr.getRange(), S.Context,
738 StartArg, Args.size(),
739 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000740}
741
Michael Hana9171bc2012-08-03 17:40:43 +0000742static bool checkLockFunAttrCommon(Sema &S, Decl *D,
743 const AttributeList &Attr,
Craig Topper5603df42013-07-05 19:34:19 +0000744 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000745 // zero or more arguments ok
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000746 // check that all arguments are lockable objects
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000747 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000748
Michael Han3be3b442012-07-23 18:48:41 +0000749 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000750}
751
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000752static void handleAssertSharedLockAttr(Sema &S, Decl *D,
753 const AttributeList &Attr) {
754 SmallVector<Expr*, 1> Args;
755 if (!checkLockFunAttrCommon(S, D, Attr, Args))
756 return;
757
758 unsigned Size = Args.size();
Craig Topperc3ec1492014-05-26 06:22:03 +0000759 Expr **StartArg = Size == 0 ? nullptr : &Args[0];
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000760 D->addAttr(::new (S.Context)
761 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
762 Attr.getAttributeSpellingListIndex()));
763}
764
765static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
766 const AttributeList &Attr) {
767 SmallVector<Expr*, 1> Args;
768 if (!checkLockFunAttrCommon(S, D, Attr, Args))
769 return;
770
771 unsigned Size = Args.size();
Craig Topperc3ec1492014-05-26 06:22:03 +0000772 Expr **StartArg = Size == 0 ? nullptr : &Args[0];
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000773 D->addAttr(::new (S.Context)
774 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
775 StartArg, Size,
776 Attr.getAttributeSpellingListIndex()));
777}
778
Erich Keane623efd82017-03-30 21:48:55 +0000779/// \brief Checks to be sure that the given parameter number is in bounds, and is
780/// an integral type. Will emit appropriate diagnostics if this returns
George Burgess IVe3763372016-12-22 02:50:20 +0000781/// false.
782///
783/// FuncParamNo is expected to be from the user, so is base-1. AttrArgNo is used
784/// to actually retrieve the argument, so it's base-0.
Erich Keane623efd82017-03-30 21:48:55 +0000785template <typename AttrInfo>
786static bool checkParamIsIntegerType(Sema &S, const FunctionDecl *FD,
787 const AttrInfo &Attr, Expr *AttrArg,
788 unsigned FuncParamNo, unsigned AttrArgNo,
789 bool AllowDependentType = false) {
790 uint64_t Idx;
791 if (!checkFunctionOrMethodParameterIndex(S, FD, Attr, FuncParamNo, AttrArg,
792 Idx))
793 return false;
794
795 const ParmVarDecl *Param = FD->getParamDecl(Idx);
796 if (AllowDependentType && Param->getType()->isDependentType())
797 return true;
798 if (!Param->getType()->isIntegerType() && !Param->getType()->isCharType()) {
799 SourceLocation SrcLoc = AttrArg->getLocStart();
800 S.Diag(SrcLoc, diag::err_attribute_integers_only)
801 << getAttrName(Attr) << Param->getSourceRange();
802 return false;
803 }
804 return true;
805}
806
807/// \brief Checks to be sure that the given parameter number is in bounds, and is
808/// an integral type. Will emit appropriate diagnostics if this returns false.
809///
810/// FuncParamNo is expected to be from the user, so is base-1. AttrArgNo is used
811/// to actually retrieve the argument, so it's base-0.
George Burgess IVe3763372016-12-22 02:50:20 +0000812static bool checkParamIsIntegerType(Sema &S, const FunctionDecl *FD,
813 const AttributeList &Attr,
Erich Keane623efd82017-03-30 21:48:55 +0000814 unsigned FuncParamNo, unsigned AttrArgNo,
815 bool AllowDependentType = false) {
George Burgess IVe3763372016-12-22 02:50:20 +0000816 assert(Attr.isArgExpr(AttrArgNo) && "Expected expression argument");
Erich Keane623efd82017-03-30 21:48:55 +0000817 return checkParamIsIntegerType(S, FD, Attr, Attr.getArgAsExpr(AttrArgNo),
818 FuncParamNo, AttrArgNo, AllowDependentType);
George Burgess IVe3763372016-12-22 02:50:20 +0000819}
820
821static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
822 if (!checkAttributeAtLeastNumArgs(S, Attr, 1) ||
823 !checkAttributeAtMostNumArgs(S, Attr, 2))
824 return;
825
826 const auto *FD = cast<FunctionDecl>(D);
827 if (!FD->getReturnType()->isPointerType()) {
828 S.Diag(Attr.getLoc(), diag::warn_attribute_return_pointers_only)
829 << Attr.getName();
830 return;
831 }
832
833 const Expr *SizeExpr = Attr.getArgAsExpr(0);
834 int SizeArgNo;
Simon Pilgrim27cc0542017-02-15 15:12:06 +0000835 // Parameter indices are 1-indexed, hence Index=1
George Burgess IVe3763372016-12-22 02:50:20 +0000836 if (!checkPositiveIntArgument(S, Attr, SizeExpr, SizeArgNo, /*Index=*/1))
837 return;
838
839 if (!checkParamIsIntegerType(S, FD, Attr, SizeArgNo, /*AttrArgNo=*/0))
840 return;
841
842 // Args are 1-indexed, so 0 implies that the arg was not present
843 int NumberArgNo = 0;
844 if (Attr.getNumArgs() == 2) {
845 const Expr *NumberExpr = Attr.getArgAsExpr(1);
Simon Pilgrim27cc0542017-02-15 15:12:06 +0000846 // Parameter indices are 1-based, hence Index=2
George Burgess IVe3763372016-12-22 02:50:20 +0000847 if (!checkPositiveIntArgument(S, Attr, NumberExpr, NumberArgNo,
848 /*Index=*/2))
849 return;
850
851 if (!checkParamIsIntegerType(S, FD, Attr, NumberArgNo, /*AttrArgNo=*/1))
852 return;
853 }
854
855 D->addAttr(::new (S.Context) AllocSizeAttr(
856 Attr.getRange(), S.Context, SizeArgNo, NumberArgNo,
857 Attr.getAttributeSpellingListIndex()));
858}
DeLesley Hutchinsb6824312013-05-17 23:02:59 +0000859
Michael Hana9171bc2012-08-03 17:40:43 +0000860static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
861 const AttributeList &Attr,
Craig Topper5603df42013-07-05 19:34:19 +0000862 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000863 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Han3be3b442012-07-23 18:48:41 +0000864 return false;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000865
Aaron Ballman00e99962013-08-31 01:11:41 +0000866 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman29982272013-07-23 14:03:57 +0000867 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3bf758c2013-07-30 01:31:03 +0000868 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Han3be3b442012-07-23 18:48:41 +0000869 return false;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000870 }
871
872 // check that all arguments are lockable objects
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000873 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 1);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000874
Michael Han3be3b442012-07-23 18:48:41 +0000875 return true;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000876}
877
Michael Hana9171bc2012-08-03 17:40:43 +0000878static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Han3be3b442012-07-23 18:48:41 +0000879 const AttributeList &Attr) {
880 SmallVector<Expr*, 2> Args;
881 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
882 return;
883
Michael Han99315932013-01-24 16:46:58 +0000884 D->addAttr(::new (S.Context)
885 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman00e99962013-08-31 01:11:41 +0000886 Attr.getArgAsExpr(0),
887 Args.data(), Args.size(),
Michael Han99315932013-01-24 16:46:58 +0000888 Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000889}
890
Michael Hana9171bc2012-08-03 17:40:43 +0000891static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Han3be3b442012-07-23 18:48:41 +0000892 const AttributeList &Attr) {
893 SmallVector<Expr*, 2> Args;
894 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
895 return;
896
Nico Weber462fd1e2015-01-07 23:50:05 +0000897 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(
898 Attr.getRange(), S.Context, Attr.getArgAsExpr(0), Args.data(),
899 Args.size(), Attr.getAttributeSpellingListIndex()));
Michael Han3be3b442012-07-23 18:48:41 +0000900}
901
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000902static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000903 const AttributeList &Attr) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000904 // check that the argument is lockable object
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000905 SmallVector<Expr*, 1> Args;
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000906 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000907 unsigned Size = Args.size();
908 if (Size == 0)
909 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000910
Michael Han99315932013-01-24 16:46:58 +0000911 D->addAttr(::new (S.Context)
912 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
913 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000914}
915
916static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000917 const AttributeList &Attr) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000918 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000919 return;
920
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000921 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000922 SmallVector<Expr*, 1> Args;
Aaron Ballman69e6e7c2014-03-24 19:29:19 +0000923 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000924 unsigned Size = Args.size();
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000925 if (Size == 0)
926 return;
927 Expr **StartArg = &Args[0];
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000928
Michael Han99315932013-01-24 16:46:58 +0000929 D->addAttr(::new (S.Context)
930 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
931 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000932}
933
George Burgess IV177399e2017-01-09 04:12:14 +0000934static bool checkFunctionConditionAttr(Sema &S, Decl *D,
935 const AttributeList &Attr,
936 Expr *&Cond, StringRef &Msg) {
937 Cond = Attr.getArgAsExpr(0);
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000938 if (!Cond->isTypeDependent()) {
939 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
940 if (Converted.isInvalid())
George Burgess IV177399e2017-01-09 04:12:14 +0000941 return false;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000942 Cond = Converted.get();
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000943 }
944
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000945 if (!S.checkStringLiteralArgumentAttr(Attr, 1, Msg))
George Burgess IV177399e2017-01-09 04:12:14 +0000946 return false;
947
948 if (Msg.empty())
949 Msg = "<no message provided>";
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000950
951 SmallVector<PartialDiagnosticAt, 8> Diags;
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +0000952 if (isa<FunctionDecl>(D) && !Cond->isValueDependent() &&
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000953 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D),
954 Diags)) {
George Burgess IV177399e2017-01-09 04:12:14 +0000955 S.Diag(Attr.getLoc(), diag::err_attr_cond_never_constant_expr)
956 << Attr.getName();
George Burgess IV0d546532016-11-10 21:47:12 +0000957 for (const PartialDiagnosticAt &PDiag : Diags)
958 S.Diag(PDiag.first, PDiag.second);
George Burgess IV177399e2017-01-09 04:12:14 +0000959 return false;
960 }
961 return true;
962}
963
964static void handleEnableIfAttr(Sema &S, Decl *D, const AttributeList &Attr) {
965 S.Diag(Attr.getLoc(), diag::ext_clang_enable_if);
966
967 Expr *Cond;
968 StringRef Msg;
969 if (checkFunctionConditionAttr(S, D, Attr, Cond, Msg))
970 D->addAttr(::new (S.Context)
971 EnableIfAttr(Attr.getRange(), S.Context, Cond, Msg,
972 Attr.getAttributeSpellingListIndex()));
973}
974
975namespace {
976/// Determines if a given Expr references any of the given function's
977/// ParmVarDecls, or the function's implicit `this` parameter (if applicable).
978class ArgumentDependenceChecker
979 : public RecursiveASTVisitor<ArgumentDependenceChecker> {
980#ifndef NDEBUG
981 const CXXRecordDecl *ClassType;
982#endif
983 llvm::SmallPtrSet<const ParmVarDecl *, 16> Parms;
984 bool Result;
985
986public:
987 ArgumentDependenceChecker(const FunctionDecl *FD) {
988#ifndef NDEBUG
989 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
990 ClassType = MD->getParent();
991 else
992 ClassType = nullptr;
993#endif
994 Parms.insert(FD->param_begin(), FD->param_end());
995 }
996
997 bool referencesArgs(Expr *E) {
998 Result = false;
999 TraverseStmt(E);
1000 return Result;
1001 }
1002
1003 bool VisitCXXThisExpr(CXXThisExpr *E) {
1004 assert(E->getType()->getPointeeCXXRecordDecl() == ClassType &&
1005 "`this` doesn't refer to the enclosing class?");
1006 Result = true;
1007 return false;
1008 }
1009
1010 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
1011 if (const auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
1012 if (Parms.count(PVD)) {
1013 Result = true;
1014 return false;
1015 }
1016 return true;
1017 }
1018};
1019}
1020
1021static void handleDiagnoseIfAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1022 S.Diag(Attr.getLoc(), diag::ext_clang_diagnose_if);
1023
1024 Expr *Cond;
1025 StringRef Msg;
1026 if (!checkFunctionConditionAttr(S, D, Attr, Cond, Msg))
1027 return;
1028
1029 StringRef DiagTypeStr;
1030 if (!S.checkStringLiteralArgumentAttr(Attr, 2, DiagTypeStr))
1031 return;
1032
1033 DiagnoseIfAttr::DiagnosticType DiagType;
1034 if (!DiagnoseIfAttr::ConvertStrToDiagnosticType(DiagTypeStr, DiagType)) {
1035 S.Diag(Attr.getArgAsExpr(2)->getLocStart(),
1036 diag::err_diagnose_if_invalid_diagnostic_type);
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001037 return;
1038 }
1039
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001040 bool ArgDependent = false;
Argyrios Kyrtzidis5f0c0aa2017-05-24 18:35:01 +00001041 if (const auto *FD = dyn_cast<FunctionDecl>(D))
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001042 ArgDependent = ArgumentDependenceChecker(FD).referencesArgs(Cond);
George Burgess IV177399e2017-01-09 04:12:14 +00001043 D->addAttr(::new (S.Context) DiagnoseIfAttr(
Argyrios Kyrtzidisa7233bd2017-05-24 00:46:27 +00001044 Attr.getRange(), S.Context, Cond, Msg, DiagType, ArgDependent, cast<NamedDecl>(D),
George Burgess IV177399e2017-01-09 04:12:14 +00001045 Attr.getAttributeSpellingListIndex()));
Nick Lewycky35a6ef42014-01-11 02:50:57 +00001046}
1047
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001048static void handlePassObjectSizeAttr(Sema &S, Decl *D,
1049 const AttributeList &Attr) {
1050 if (D->hasAttr<PassObjectSizeAttr>()) {
1051 S.Diag(D->getLocStart(), diag::err_attribute_only_once_per_parameter)
1052 << Attr.getName();
1053 return;
1054 }
1055
1056 Expr *E = Attr.getArgAsExpr(0);
1057 uint32_t Type;
1058 if (!checkUInt32Argument(S, Attr, E, Type, /*Idx=*/1))
1059 return;
1060
1061 // pass_object_size's argument is passed in as the second argument of
1062 // __builtin_object_size. So, it has the same constraints as that second
1063 // argument; namely, it must be in the range [0, 3].
1064 if (Type > 3) {
1065 S.Diag(E->getLocStart(), diag::err_attribute_argument_outof_range)
1066 << Attr.getName() << 0 << 3 << E->getSourceRange();
1067 return;
1068 }
1069
1070 // pass_object_size is only supported on constant pointer parameters; as a
1071 // kindness to users, we allow the parameter to be non-const for declarations.
1072 // At this point, we have no clue if `D` belongs to a function declaration or
1073 // definition, so we defer the constness check until later.
1074 if (!cast<ParmVarDecl>(D)->getType()->isPointerType()) {
1075 S.Diag(D->getLocStart(), diag::err_attribute_pointers_only)
1076 << Attr.getName() << 1;
1077 return;
1078 }
1079
1080 D->addAttr(::new (S.Context)
1081 PassObjectSizeAttr(Attr.getRange(), S.Context, (int)Type,
1082 Attr.getAttributeSpellingListIndex()));
1083}
1084
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001085static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikie16f76d22013-09-06 01:28:43 +00001086 ConsumableAttr::ConsumedState DefaultState;
1087
1088 if (Attr.isArgIdent(0)) {
Aaron Ballman682ee422013-09-11 19:47:58 +00001089 IdentifierLoc *IL = Attr.getArgAsIdent(0);
1090 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1091 DefaultState)) {
1092 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
1093 << Attr.getName() << IL->Ident;
David Blaikie16f76d22013-09-06 01:28:43 +00001094 return;
1095 }
David Blaikie16f76d22013-09-06 01:28:43 +00001096 } else {
1097 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1098 << Attr.getName() << AANT_ArgumentIdentifier;
1099 return;
1100 }
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001101
1102 D->addAttr(::new (S.Context)
David Blaikie16f76d22013-09-06 01:28:43 +00001103 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001104 Attr.getAttributeSpellingListIndex()));
1105}
1106
1107static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
1108 const AttributeList &Attr) {
1109 ASTContext &CurrContext = S.getASTContext();
1110 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
1111
1112 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
1113 if (!RD->hasAttr<ConsumableAttr>()) {
1114 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
1115 RD->getNameAsString();
1116
1117 return false;
1118 }
1119 }
1120
1121 return true;
1122}
1123
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001124static void handleCallableWhenAttr(Sema &S, Decl *D,
1125 const AttributeList &Attr) {
Aaron Ballmandbd586f2013-10-14 23:26:04 +00001126 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1127 return;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001128
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00001129 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1130 return;
1131
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001132 SmallVector<CallableWhenAttr::ConsumedState, 3> States;
1133 for (unsigned ArgIndex = 0; ArgIndex < Attr.getNumArgs(); ++ArgIndex) {
1134 CallableWhenAttr::ConsumedState CallableState;
1135
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001136 StringRef StateString;
1137 SourceLocation Loc;
Aaron Ballman55ef1512014-12-19 16:42:04 +00001138 if (Attr.isArgIdent(ArgIndex)) {
1139 IdentifierLoc *Ident = Attr.getArgAsIdent(ArgIndex);
1140 StateString = Ident->Ident->getName();
1141 Loc = Ident->Loc;
1142 } else {
1143 if (!S.checkStringLiteralArgumentAttr(Attr, ArgIndex, StateString, &Loc))
1144 return;
1145 }
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001146
1147 if (!CallableWhenAttr::ConvertStrToConsumedState(StateString,
DeLesley Hutchins69391772013-10-17 23:23:53 +00001148 CallableState)) {
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001149 S.Diag(Loc, diag::warn_attribute_type_not_supported)
1150 << Attr.getName() << StateString;
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001151 return;
1152 }
Aaron Ballman4c9b7dc2013-10-05 22:45:34 +00001153
1154 States.push_back(CallableState);
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001155 }
1156
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001157 D->addAttr(::new (S.Context)
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001158 CallableWhenAttr(Attr.getRange(), S.Context, States.data(),
1159 States.size(), Attr.getAttributeSpellingListIndex()));
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001160}
1161
DeLesley Hutchins69391772013-10-17 23:23:53 +00001162static void handleParamTypestateAttr(Sema &S, Decl *D,
1163 const AttributeList &Attr) {
DeLesley Hutchins69391772013-10-17 23:23:53 +00001164 ParamTypestateAttr::ConsumedState ParamState;
1165
1166 if (Attr.isArgIdent(0)) {
1167 IdentifierLoc *Ident = Attr.getArgAsIdent(0);
1168 StringRef StateString = Ident->Ident->getName();
1169
1170 if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString,
1171 ParamState)) {
1172 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
1173 << Attr.getName() << StateString;
1174 return;
1175 }
1176 } else {
1177 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1178 Attr.getName() << AANT_ArgumentIdentifier;
1179 return;
1180 }
1181
1182 // FIXME: This check is currently being done in the analysis. It can be
1183 // enabled here only after the parser propagates attributes at
1184 // template specialization definition, not declaration.
1185 //QualType ReturnType = cast<ParmVarDecl>(D)->getType();
1186 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1187 //
1188 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1189 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1190 // ReturnType.getAsString();
1191 // return;
1192 //}
1193
1194 D->addAttr(::new (S.Context)
1195 ParamTypestateAttr(Attr.getRange(), S.Context, ParamState,
1196 Attr.getAttributeSpellingListIndex()));
1197}
1198
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001199static void handleReturnTypestateAttr(Sema &S, Decl *D,
1200 const AttributeList &Attr) {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001201 ReturnTypestateAttr::ConsumedState ReturnState;
1202
1203 if (Attr.isArgIdent(0)) {
Aaron Ballman682ee422013-09-11 19:47:58 +00001204 IdentifierLoc *IL = Attr.getArgAsIdent(0);
1205 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1206 ReturnState)) {
1207 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
1208 << Attr.getName() << IL->Ident;
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001209 return;
1210 }
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001211 } else {
1212 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1213 Attr.getName() << AANT_ArgumentIdentifier;
1214 return;
1215 }
1216
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001217 // FIXME: This check is currently being done in the analysis. It can be
1218 // enabled here only after the parser propagates attributes at
1219 // template specialization definition, not declaration.
1220 //QualType ReturnType;
1221 //
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001222 //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) {
1223 // ReturnType = Param->getType();
1224 //
1225 //} else if (const CXXConstructorDecl *Constructor =
1226 // dyn_cast<CXXConstructorDecl>(D)) {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001227 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1228 //
1229 //} else {
1230 //
1231 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1232 //}
1233 //
1234 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1235 //
1236 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1237 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1238 // ReturnType.getAsString();
1239 // return;
1240 //}
1241
1242 D->addAttr(::new (S.Context)
1243 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1244 Attr.getAttributeSpellingListIndex()));
1245}
1246
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001247static void handleSetTypestateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001248 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1249 return;
1250
1251 SetTypestateAttr::ConsumedState NewState;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001252 if (Attr.isArgIdent(0)) {
Aaron Ballman91c98e12013-10-14 23:22:37 +00001253 IdentifierLoc *Ident = Attr.getArgAsIdent(0);
1254 StringRef Param = Ident->Ident->getName();
1255 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) {
1256 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
1257 << Attr.getName() << Param;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001258 return;
1259 }
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001260 } else {
1261 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1262 Attr.getName() << AANT_ArgumentIdentifier;
1263 return;
1264 }
1265
1266 D->addAttr(::new (S.Context)
1267 SetTypestateAttr(Attr.getRange(), S.Context, NewState,
1268 Attr.getAttributeSpellingListIndex()));
1269}
1270
Chris Wailes9385f9f2013-10-29 20:28:41 +00001271static void handleTestTypestateAttr(Sema &S, Decl *D,
1272 const AttributeList &Attr) {
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001273 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1274 return;
1275
Chris Wailes9385f9f2013-10-29 20:28:41 +00001276 TestTypestateAttr::ConsumedState TestState;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001277 if (Attr.isArgIdent(0)) {
Aaron Ballman91c98e12013-10-14 23:22:37 +00001278 IdentifierLoc *Ident = Attr.getArgAsIdent(0);
1279 StringRef Param = Ident->Ident->getName();
Chris Wailes9385f9f2013-10-29 20:28:41 +00001280 if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) {
Aaron Ballman91c98e12013-10-14 23:22:37 +00001281 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
1282 << Attr.getName() << Param;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001283 return;
1284 }
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001285 } else {
1286 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1287 Attr.getName() << AANT_ArgumentIdentifier;
1288 return;
1289 }
1290
1291 D->addAttr(::new (S.Context)
Chris Wailes9385f9f2013-10-29 20:28:41 +00001292 TestTypestateAttr(Attr.getRange(), S.Context, TestState,
DeLesley Hutchins33a29342013-10-11 23:03:26 +00001293 Attr.getAttributeSpellingListIndex()));
1294}
1295
Chandler Carruthedc2c642011-07-02 00:01:44 +00001296static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1297 const AttributeList &Attr) {
Richard Smith1f5a4322013-01-13 02:11:23 +00001298 // Remember this typedef decl, we will need it later for diagnostics.
Aaron Ballman74eeeae2013-11-27 13:27:02 +00001299 S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001300}
1301
Chandler Carruthedc2c642011-07-02 00:01:44 +00001302static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001303 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Aaron Ballman36a53502014-01-16 13:03:14 +00001304 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context,
1305 Attr.getAttributeSpellingListIndex()));
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001306 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Alexey Bataev830dfcc2015-12-03 09:34:49 +00001307 // Report warning about changed offset in the newer compiler versions.
Eli Friedmanc087c3f2012-11-07 00:35:20 +00001308 if (!FD->getType()->isDependentType() &&
Alexey Bataev830dfcc2015-12-03 09:34:49 +00001309 !FD->getType()->isIncompleteType() && FD->isBitField() &&
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001310 S.Context.getTypeAlign(FD->getType()) <= 8)
Alexey Bataev830dfcc2015-12-03 09:34:49 +00001311 S.Diag(Attr.getLoc(), diag::warn_attribute_packed_for_bitfield);
1312
1313 FD->addAttr(::new (S.Context) PackedAttr(
1314 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001315 } else
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001316 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001317}
1318
Ted Kremenek7fd17232011-09-29 07:02:25 +00001319static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1320 // The IBOutlet/IBOutletCollection attributes only apply to instance
1321 // variables or properties of Objective-C classes. The outlet must also
1322 // have an object reference type.
1323 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1324 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +00001325 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +00001326 << Attr.getName() << VD->getType() << 0;
1327 return false;
1328 }
1329 }
1330 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1331 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregor5c3cc422012-03-14 16:55:17 +00001332 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +00001333 << Attr.getName() << PD->getType() << 1;
1334 return false;
1335 }
1336 }
1337 else {
1338 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1339 return false;
1340 }
Douglas Gregor5c3cc422012-03-14 16:55:17 +00001341
Ted Kremenek7fd17232011-09-29 07:02:25 +00001342 return true;
1343}
1344
Chandler Carruthedc2c642011-07-02 00:01:44 +00001345static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek7fd17232011-09-29 07:02:25 +00001346 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek1f672822010-02-18 03:08:58 +00001347 return;
Ted Kremenek1f672822010-02-18 03:08:58 +00001348
Michael Han99315932013-01-24 16:46:58 +00001349 D->addAttr(::new (S.Context)
1350 IBOutletAttr(Attr.getRange(), S.Context,
1351 Attr.getAttributeSpellingListIndex()));
Ted Kremenek8e3704d2008-07-15 22:26:48 +00001352}
1353
Chandler Carruthedc2c642011-07-02 00:01:44 +00001354static void handleIBOutletCollection(Sema &S, Decl *D,
1355 const AttributeList &Attr) {
Ted Kremenek26bde772010-05-19 17:38:06 +00001356
1357 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman00e99962013-08-31 01:11:41 +00001358 if (Attr.getNumArgs() > 1) {
Aaron Ballmanb7243382013-07-23 19:30:11 +00001359 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1360 << Attr.getName() << 1;
Ted Kremenek26bde772010-05-19 17:38:06 +00001361 return;
1362 }
1363
Ted Kremenek7fd17232011-09-29 07:02:25 +00001364 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek26bde772010-05-19 17:38:06 +00001365 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +00001366
Richard Smithb1f9a282013-10-31 01:56:18 +00001367 ParsedType PT;
1368
1369 if (Attr.hasParsedType())
1370 PT = Attr.getTypeArg();
1371 else {
1372 PT = S.getTypeName(S.Context.Idents.get("NSObject"), Attr.getLoc(),
1373 S.getScopeForContext(D->getDeclContext()->getParent()));
1374 if (!PT) {
1375 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << "NSObject";
1376 return;
1377 }
Aaron Ballman00e99962013-08-31 01:11:41 +00001378 }
Richard Smithb1f9a282013-10-31 01:56:18 +00001379
Craig Topperc3ec1492014-05-26 06:22:03 +00001380 TypeSourceInfo *QTLoc = nullptr;
Richard Smithb87c4652013-10-31 21:23:20 +00001381 QualType QT = S.GetTypeFromParser(PT, &QTLoc);
1382 if (!QTLoc)
1383 QTLoc = S.Context.getTrivialTypeSourceInfo(QT, Attr.getLoc());
Richard Smithb1f9a282013-10-31 01:56:18 +00001384
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +00001385 // Diagnose use of non-object type in iboutletcollection attribute.
1386 // FIXME. Gnu attribute extension ignores use of builtin types in
1387 // attributes. So, __attribute__((iboutletcollection(char))) will be
1388 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanian2f31b332011-10-18 19:54:31 +00001389 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Richard Smithb1f9a282013-10-31 01:56:18 +00001390 S.Diag(Attr.getLoc(),
1391 QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype
1392 : diag::err_iboutletcollection_type) << QT;
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +00001393 return;
1394 }
Richard Smithb1f9a282013-10-31 01:56:18 +00001395
Michael Han99315932013-01-24 16:46:58 +00001396 D->addAttr(::new (S.Context)
Richard Smithb87c4652013-10-31 21:23:20 +00001397 IBOutletCollectionAttr(Attr.getRange(), S.Context, QTLoc,
Michael Han99315932013-01-24 16:46:58 +00001398 Attr.getAttributeSpellingListIndex()));
Ted Kremenek26bde772010-05-19 17:38:06 +00001399}
1400
Hal Finkelee90a222014-09-26 05:04:30 +00001401bool Sema::isValidPointerAttrType(QualType T, bool RefOkay) {
1402 if (RefOkay) {
1403 if (T->isReferenceType())
1404 return true;
1405 } else {
1406 T = T.getNonReferenceType();
1407 }
Richard Smith588bd9b2014-08-27 04:59:42 +00001408
Hal Finkelee90a222014-09-26 05:04:30 +00001409 // The nonnull attribute, and other similar attributes, can be applied to a
1410 // transparent union that contains a pointer type.
Richard Smith588bd9b2014-08-27 04:59:42 +00001411 if (const RecordType *UT = T->getAsUnionType()) {
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001412 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1413 RecordDecl *UD = UT->getDecl();
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00001414 for (const auto *I : UD->fields()) {
1415 QualType QT = I->getType();
Richard Smith588bd9b2014-08-27 04:59:42 +00001416 if (QT->isAnyPointerType() || QT->isBlockPointerType())
1417 return true;
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001418 }
1419 }
Richard Smith588bd9b2014-08-27 04:59:42 +00001420 }
1421
1422 return T->isAnyPointerType() || T->isBlockPointerType();
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001423}
1424
Ted Kremenek9aedc152014-01-17 06:24:56 +00001425static bool attrNonNullArgCheck(Sema &S, QualType T, const AttributeList &Attr,
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001426 SourceRange AttrParmRange,
Hal Finkelee90a222014-09-26 05:04:30 +00001427 SourceRange TypeRange,
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001428 bool isReturnValue = false) {
Hal Finkelee90a222014-09-26 05:04:30 +00001429 if (!S.isValidPointerAttrType(T)) {
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00001430 if (isReturnValue)
1431 S.Diag(Attr.getLoc(), diag::warn_attribute_return_pointers_only)
1432 << Attr.getName() << AttrParmRange << TypeRange;
1433 else
1434 S.Diag(Attr.getLoc(), diag::warn_attribute_pointers_only)
1435 << Attr.getName() << AttrParmRange << TypeRange << 0;
Ted Kremenek9aedc152014-01-17 06:24:56 +00001436 return false;
1437 }
1438 return true;
1439}
1440
Chandler Carruthedc2c642011-07-02 00:01:44 +00001441static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001442 SmallVector<unsigned, 8> NonNullArgs;
Richard Smith588bd9b2014-08-27 04:59:42 +00001443 for (unsigned I = 0; I < Attr.getNumArgs(); ++I) {
1444 Expr *Ex = Attr.getArgAsExpr(I);
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001445 uint64_t Idx;
Richard Smith588bd9b2014-08-27 04:59:42 +00001446 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, I + 1, Ex, Idx))
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001447 return;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001448
1449 // Is the function argument a pointer type?
Richard Smith588bd9b2014-08-27 04:59:42 +00001450 if (Idx < getFunctionOrMethodNumParams(D) &&
1451 !attrNonNullArgCheck(S, getFunctionOrMethodParamType(D, Idx), Attr,
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001452 Ex->getSourceRange(),
1453 getFunctionOrMethodParamRange(D, Idx)))
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001454 continue;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001455
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001456 NonNullArgs.push_back(Idx);
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001457 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001458
1459 // If no arguments were specified to __attribute__((nonnull)) then all pointer
Richard Smith588bd9b2014-08-27 04:59:42 +00001460 // arguments have a nonnull attribute; warn if there aren't any. Skip this
1461 // check if the attribute came from a macro expansion or a template
1462 // instantiation.
1463 if (NonNullArgs.empty() && Attr.getLoc().isFileID() &&
Richard Smith51ec0cf2017-02-21 01:17:38 +00001464 !S.inTemplateInstantiation()) {
Richard Smith588bd9b2014-08-27 04:59:42 +00001465 bool AnyPointers = isFunctionOrMethodVariadic(D);
1466 for (unsigned I = 0, E = getFunctionOrMethodNumParams(D);
1467 I != E && !AnyPointers; ++I) {
1468 QualType T = getFunctionOrMethodParamType(D, I);
Hal Finkelee90a222014-09-26 05:04:30 +00001469 if (T->isDependentType() || S.isValidPointerAttrType(T))
Richard Smith588bd9b2014-08-27 04:59:42 +00001470 AnyPointers = true;
Ted Kremenek5fa50522008-11-18 06:52:58 +00001471 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001472
Richard Smith588bd9b2014-08-27 04:59:42 +00001473 if (!AnyPointers)
1474 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001475 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001476
Richard Smith588bd9b2014-08-27 04:59:42 +00001477 unsigned *Start = NonNullArgs.data();
1478 unsigned Size = NonNullArgs.size();
1479 llvm::array_pod_sort(Start, Start + Size);
Michael Han99315932013-01-24 16:46:58 +00001480 D->addAttr(::new (S.Context)
Richard Smith588bd9b2014-08-27 04:59:42 +00001481 NonNullAttr(Attr.getRange(), S.Context, Start, Size,
Michael Han99315932013-01-24 16:46:58 +00001482 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001483}
1484
Jordan Rosec9399072014-02-11 17:27:59 +00001485static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D,
1486 const AttributeList &Attr) {
1487 if (Attr.getNumArgs() > 0) {
1488 if (D->getFunctionType()) {
1489 handleNonNullAttr(S, D, Attr);
1490 } else {
1491 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_parm_no_args)
1492 << D->getSourceRange();
1493 }
1494 return;
1495 }
1496
1497 // Is the argument a pointer type?
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001498 if (!attrNonNullArgCheck(S, D->getType(), Attr, SourceRange(),
1499 D->getSourceRange()))
Jordan Rosec9399072014-02-11 17:27:59 +00001500 return;
1501
1502 D->addAttr(::new (S.Context)
Craig Topperc3ec1492014-05-26 06:22:03 +00001503 NonNullAttr(Attr.getRange(), S.Context, nullptr, 0,
Jordan Rosec9399072014-02-11 17:27:59 +00001504 Attr.getAttributeSpellingListIndex()));
1505}
1506
Ted Kremenekdbf62e32014-01-20 05:50:47 +00001507static void handleReturnsNonNullAttr(Sema &S, Decl *D,
1508 const AttributeList &Attr) {
Aaron Ballmanfc1951c2014-01-20 14:19:44 +00001509 QualType ResultType = getFunctionOrMethodResultType(D);
Aaron Ballman4bfa0de2014-08-01 12:58:11 +00001510 SourceRange SR = getFunctionOrMethodResultSourceRange(D);
1511 if (!attrNonNullArgCheck(S, ResultType, Attr, SourceRange(), SR,
Ted Kremenekdbf62e32014-01-20 05:50:47 +00001512 /* isReturnValue */ true))
1513 return;
1514
1515 D->addAttr(::new (S.Context)
1516 ReturnsNonNullAttr(Attr.getRange(), S.Context,
1517 Attr.getAttributeSpellingListIndex()));
1518}
1519
Hal Finkelee90a222014-09-26 05:04:30 +00001520static void handleAssumeAlignedAttr(Sema &S, Decl *D,
1521 const AttributeList &Attr) {
1522 Expr *E = Attr.getArgAsExpr(0),
1523 *OE = Attr.getNumArgs() > 1 ? Attr.getArgAsExpr(1) : nullptr;
1524 S.AddAssumeAlignedAttr(Attr.getRange(), D, E, OE,
1525 Attr.getAttributeSpellingListIndex());
1526}
1527
Erich Keane623efd82017-03-30 21:48:55 +00001528static void handleAllocAlignAttr(Sema &S, Decl *D,
1529 const AttributeList &Attr) {
1530 S.AddAllocAlignAttr(Attr.getRange(), D, Attr.getArgAsExpr(0),
1531 Attr.getAttributeSpellingListIndex());
1532}
1533
Hal Finkelee90a222014-09-26 05:04:30 +00001534void Sema::AddAssumeAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
1535 Expr *OE, unsigned SpellingListIndex) {
1536 QualType ResultType = getFunctionOrMethodResultType(D);
1537 SourceRange SR = getFunctionOrMethodResultSourceRange(D);
1538
1539 AssumeAlignedAttr TmpAttr(AttrRange, Context, E, OE, SpellingListIndex);
1540 SourceLocation AttrLoc = AttrRange.getBegin();
1541
1542 if (!isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1543 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1544 << &TmpAttr << AttrRange << SR;
1545 return;
1546 }
1547
1548 if (!E->isValueDependent()) {
1549 llvm::APSInt I(64);
1550 if (!E->isIntegerConstantExpr(I, Context)) {
1551 if (OE)
1552 Diag(AttrLoc, diag::err_attribute_argument_n_type)
1553 << &TmpAttr << 1 << AANT_ArgumentIntegerConstant
1554 << E->getSourceRange();
1555 else
1556 Diag(AttrLoc, diag::err_attribute_argument_type)
1557 << &TmpAttr << AANT_ArgumentIntegerConstant
1558 << E->getSourceRange();
1559 return;
1560 }
1561
1562 if (!I.isPowerOf2()) {
1563 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
1564 << E->getSourceRange();
1565 return;
1566 }
1567 }
1568
1569 if (OE) {
1570 if (!OE->isValueDependent()) {
1571 llvm::APSInt I(64);
1572 if (!OE->isIntegerConstantExpr(I, Context)) {
1573 Diag(AttrLoc, diag::err_attribute_argument_n_type)
1574 << &TmpAttr << 2 << AANT_ArgumentIntegerConstant
1575 << OE->getSourceRange();
1576 return;
1577 }
1578 }
1579 }
1580
1581 D->addAttr(::new (Context)
1582 AssumeAlignedAttr(AttrRange, Context, E, OE, SpellingListIndex));
1583}
1584
Erich Keane623efd82017-03-30 21:48:55 +00001585void Sema::AddAllocAlignAttr(SourceRange AttrRange, Decl *D, Expr *ParamExpr,
1586 unsigned SpellingListIndex) {
1587 QualType ResultType = getFunctionOrMethodResultType(D);
1588
1589 AllocAlignAttr TmpAttr(AttrRange, Context, 0, SpellingListIndex);
1590 SourceLocation AttrLoc = AttrRange.getBegin();
1591
1592 if (!ResultType->isDependentType() &&
1593 !isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1594 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1595 << &TmpAttr << AttrRange << getFunctionOrMethodResultSourceRange(D);
1596 return;
1597 }
1598
1599 uint64_t IndexVal;
1600 const auto *FuncDecl = cast<FunctionDecl>(D);
1601 if (!checkFunctionOrMethodParameterIndex(*this, FuncDecl, TmpAttr,
1602 /*AttrArgNo=*/1, ParamExpr,
1603 IndexVal))
1604 return;
1605
1606 QualType Ty = getFunctionOrMethodParamType(D, IndexVal);
1607 if (!Ty->isDependentType() && !Ty->isIntegralType(Context)) {
1608 Diag(ParamExpr->getLocStart(), diag::err_attribute_integers_only)
1609 << &TmpAttr << FuncDecl->getParamDecl(IndexVal)->getSourceRange();
1610 return;
1611 }
1612
1613 // We cannot use the Idx returned from checkFunctionOrMethodParameterIndex
1614 // because that has corrected for the implicit this parameter, and is zero-
1615 // based. The attribute expects what the user wrote explicitly.
1616 llvm::APSInt Val;
1617 ParamExpr->EvaluateAsInt(Val, Context);
1618
1619 D->addAttr(::new (Context) AllocAlignAttr(
1620 AttrRange, Context, Val.getZExtValue(), SpellingListIndex));
1621}
1622
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001623/// Normalize the attribute, __foo__ becomes foo.
1624/// Returns true if normalization was applied.
1625static bool normalizeName(StringRef &AttrName) {
Aaron Ballman62692362015-10-09 13:53:24 +00001626 if (AttrName.size() > 4 && AttrName.startswith("__") &&
1627 AttrName.endswith("__")) {
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001628 AttrName = AttrName.drop_front(2).drop_back(2);
1629 return true;
1630 }
1631 return false;
1632}
1633
Chandler Carruthedc2c642011-07-02 00:01:44 +00001634static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001635 // This attribute must be applied to a function declaration. The first
1636 // argument to the attribute must be an identifier, the name of the resource,
1637 // for example: malloc. The following arguments must be argument indexes, the
1638 // arguments must be of integer type for Returns, otherwise of pointer type.
Ted Kremenekd21139a2010-07-31 01:52:11 +00001639 // The difference between Holds and Takes is that a pointer may still be used
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001640 // after being held. free() should be __attribute((ownership_takes)), whereas
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001641 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekd21139a2010-07-31 01:52:11 +00001642
Aaron Ballman00e99962013-08-31 01:11:41 +00001643 if (!AL.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00001644 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001645 << AL.getName() << 1 << AANT_ArgumentIdentifier;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001646 return;
1647 }
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001648
Richard Smith852e9ce2013-11-27 01:46:48 +00001649 // Figure out our Kind.
1650 OwnershipAttr::OwnershipKind K =
Craig Topperc3ec1492014-05-26 06:22:03 +00001651 OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0,
Richard Smith852e9ce2013-11-27 01:46:48 +00001652 AL.getAttributeSpellingListIndex()).getOwnKind();
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001653
Richard Smith852e9ce2013-11-27 01:46:48 +00001654 // Check arguments.
1655 switch (K) {
1656 case OwnershipAttr::Takes:
1657 case OwnershipAttr::Holds:
1658 if (AL.getNumArgs() < 2) {
Aaron Ballman05e420a2014-01-02 21:26:14 +00001659 S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments)
1660 << AL.getName() << 2;
Richard Smith852e9ce2013-11-27 01:46:48 +00001661 return;
1662 }
1663 break;
1664 case OwnershipAttr::Returns:
Aaron Ballman00e99962013-08-31 01:11:41 +00001665 if (AL.getNumArgs() > 2) {
Aaron Ballman05e420a2014-01-02 21:26:14 +00001666 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments)
1667 << AL.getName() << 1;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001668 return;
1669 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001670 break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001671 }
1672
Richard Smith852e9ce2013-11-27 01:46:48 +00001673 IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001674
Richard Smith852e9ce2013-11-27 01:46:48 +00001675 StringRef ModuleName = Module->getName();
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00001676 if (normalizeName(ModuleName)) {
Richard Smith852e9ce2013-11-27 01:46:48 +00001677 Module = &S.PP.getIdentifierTable().get(ModuleName);
1678 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001679
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001680 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman00e99962013-08-31 01:11:41 +00001681 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1682 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001683 uint64_t Idx;
Alp Toker601b22c2014-01-21 23:35:24 +00001684 if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx))
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001685 return;
Chandler Carruth743682b2010-11-16 08:35:43 +00001686
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001687 // Is the function argument a pointer type?
Alp Toker601b22c2014-01-21 23:35:24 +00001688 QualType T = getFunctionOrMethodParamType(D, Idx);
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001689 int Err = -1; // No error
Ted Kremenekd21139a2010-07-31 01:52:11 +00001690 switch (K) {
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001691 case OwnershipAttr::Takes:
1692 case OwnershipAttr::Holds:
1693 if (!T->isAnyPointerType() && !T->isBlockPointerType())
1694 Err = 0;
1695 break;
1696 case OwnershipAttr::Returns:
1697 if (!T->isIntegerType())
1698 Err = 1;
1699 break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001700 }
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001701 if (-1 != Err) {
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00001702 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL.getName() << Err
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001703 << Ex->getSourceRange();
1704 return;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001705 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001706
1707 // Check we don't have a conflict with another ownership attribute.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00001708 for (const auto *I : D->specific_attrs<OwnershipAttr>()) {
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001709 // Cannot have two ownership attributes of different kinds for the same
1710 // index.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00001711 if (I->getOwnKind() != K && I->args_end() !=
1712 std::find(I->args_begin(), I->args_end(), Idx)) {
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001713 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00001714 << AL.getName() << I;
Aaron Ballman6e2dd7b2013-09-16 18:11:41 +00001715 return;
Aaron Ballmanef7aef82014-07-31 20:44:26 +00001716 } else if (K == OwnershipAttr::Returns &&
1717 I->getOwnKind() == OwnershipAttr::Returns) {
1718 // A returns attribute conflicts with any other returns attribute using
1719 // a different index. Note, diagnostic reporting is 1-based, but stored
1720 // argument indexes are 0-based.
1721 if (std::find(I->args_begin(), I->args_end(), Idx) == I->args_end()) {
1722 S.Diag(I->getLocation(), diag::err_ownership_returns_index_mismatch)
1723 << *(I->args_begin()) + 1;
1724 if (I->args_size())
1725 S.Diag(AL.getLoc(), diag::note_ownership_returns_index_mismatch)
1726 << (unsigned)Idx + 1 << Ex->getSourceRange();
1727 return;
1728 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001729 }
1730 }
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00001731 OwnershipArgs.push_back(Idx);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001732 }
1733
1734 unsigned* start = OwnershipArgs.data();
1735 unsigned size = OwnershipArgs.size();
1736 llvm::array_pod_sort(start, start + size);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001737
Michael Han99315932013-01-24 16:46:58 +00001738 D->addAttr(::new (S.Context)
Richard Smith852e9ce2013-11-27 01:46:48 +00001739 OwnershipAttr(AL.getLoc(), S.Context, Module, start, size,
Michael Han99315932013-01-24 16:46:58 +00001740 AL.getAttributeSpellingListIndex()));
Ted Kremenekd21139a2010-07-31 01:52:11 +00001741}
1742
Chandler Carruthedc2c642011-07-02 00:01:44 +00001743static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001744 // Check the attribute arguments.
1745 if (Attr.getNumArgs() > 1) {
Aaron Ballmanb7243382013-07-23 19:30:11 +00001746 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1747 << Attr.getName() << 1;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001748 return;
1749 }
1750
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001751 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001752
Rafael Espindolac18086a2010-02-23 22:00:30 +00001753 // gcc rejects
1754 // class c {
1755 // static int a __attribute__((weakref ("v2")));
1756 // static int b() __attribute__((weakref ("f3")));
1757 // };
1758 // and ignores the attributes of
1759 // void f(void) {
1760 // static int a __attribute__((weakref ("v2")));
1761 // }
1762 // we reject them
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001763 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl50c68252010-08-31 00:36:30 +00001764 if (!Ctx->isFileContext()) {
Aaron Ballman9f6fec42014-01-02 23:02:01 +00001765 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context)
1766 << nd;
Sebastian Redl50c68252010-08-31 00:36:30 +00001767 return;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001768 }
1769
1770 // The GCC manual says
1771 //
1772 // At present, a declaration to which `weakref' is attached can only
1773 // be `static'.
1774 //
1775 // It also says
1776 //
1777 // Without a TARGET,
1778 // given as an argument to `weakref' or to `alias', `weakref' is
1779 // equivalent to `weak'.
1780 //
1781 // gcc 4.4.1 will accept
1782 // int a7 __attribute__((weakref));
1783 // as
1784 // int a7 __attribute__((weak));
1785 // This looks like a bug in gcc. We reject that for now. We should revisit
1786 // it if this behaviour is actually used.
1787
Rafael Espindolac18086a2010-02-23 22:00:30 +00001788 // GCC rejects
1789 // static ((alias ("y"), weakref)).
1790 // Should we? How to check that weakref is before or after alias?
1791
Aaron Ballmanfebff0c2013-09-09 23:40:31 +00001792 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1793 // of transforming it into an AliasAttr. The WeakRefAttr never uses the
1794 // StringRef parameter it was given anyway.
Aaron Ballman3b1dde62013-09-13 19:35:18 +00001795 StringRef Str;
Tim Northover6a6b63b2013-10-01 14:34:18 +00001796 if (Attr.getNumArgs() && S.checkStringLiteralArgumentAttr(Attr, 0, Str))
Rafael Espindolac18086a2010-02-23 22:00:30 +00001797 // GCC will accept anything as the argument of weakref. Should we
1798 // check for an existing decl?
Aaron Ballman3b1dde62013-09-13 19:35:18 +00001799 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
1800 Attr.getAttributeSpellingListIndex()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001801
Michael Han99315932013-01-24 16:46:58 +00001802 D->addAttr(::new (S.Context)
1803 WeakRefAttr(Attr.getRange(), S.Context,
1804 Attr.getAttributeSpellingListIndex()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001805}
1806
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001807static void handleIFuncAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1808 StringRef Str;
1809 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str))
1810 return;
1811
1812 // Aliases should be on declarations, not definitions.
1813 const auto *FD = cast<FunctionDecl>(D);
1814 if (FD->isThisDeclarationADefinition()) {
1815 S.Diag(Attr.getLoc(), diag::err_alias_is_definition) << FD << 1;
1816 return;
1817 }
1818 // FIXME: it should be handled as a target specific attribute.
1819 if (S.Context.getTargetInfo().getTriple().getObjectFormat() !=
1820 llvm::Triple::ELF) {
1821 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1822 return;
1823 }
1824
1825 D->addAttr(::new (S.Context) IFuncAttr(Attr.getRange(), S.Context, Str,
1826 Attr.getAttributeSpellingListIndex()));
1827}
1828
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001829static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1830 StringRef Str;
Tim Northover6a6b63b2013-10-01 14:34:18 +00001831 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str))
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001832 return;
1833
Douglas Gregore8bbc122011-09-02 00:18:52 +00001834 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001835 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1836 return;
1837 }
Justin Lebara8f0254b2016-01-23 21:28:10 +00001838 if (S.Context.getTargetInfo().getTriple().isNVPTX()) {
1839 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_nvptx);
1840 }
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001841
David Majnemer2dc81462015-01-19 09:00:28 +00001842 // Aliases should be on declarations, not definitions.
1843 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
1844 if (FD->isThisDeclarationADefinition()) {
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001845 S.Diag(Attr.getLoc(), diag::err_alias_is_definition) << FD << 0;
David Majnemer2dc81462015-01-19 09:00:28 +00001846 return;
1847 }
1848 } else {
1849 const auto *VD = cast<VarDecl>(D);
1850 if (VD->isThisDeclarationADefinition() && VD->isExternallyVisible()) {
Dmitry Polukhin85eda122016-04-11 07:48:59 +00001851 S.Diag(Attr.getLoc(), diag::err_alias_is_definition) << VD << 0;
David Majnemer2dc81462015-01-19 09:00:28 +00001852 return;
1853 }
1854 }
1855
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001856 // FIXME: check if target symbol exists in current file
Mike Stumpd3bb5572009-07-24 19:02:52 +00001857
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001858 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
Michael Han99315932013-01-24 16:46:58 +00001859 Attr.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001860}
1861
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001862static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001863 if (checkAttrMutualExclusion<HotAttr>(S, D, Attr.getRange(), Attr.getName()))
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001864 return;
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001865
Michael Han99315932013-01-24 16:46:58 +00001866 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1867 Attr.getAttributeSpellingListIndex()));
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001868}
1869
1870static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001871 if (checkAttrMutualExclusion<ColdAttr>(S, D, Attr.getRange(), Attr.getName()))
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001872 return;
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001873
Michael Han99315932013-01-24 16:46:58 +00001874 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1875 Attr.getAttributeSpellingListIndex()));
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001876}
1877
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001878static void handleTLSModelAttr(Sema &S, Decl *D,
1879 const AttributeList &Attr) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001880 StringRef Model;
1881 SourceLocation LiteralLoc;
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001882 // Check that it is a string.
Tim Northover6a6b63b2013-10-01 14:34:18 +00001883 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Model, &LiteralLoc))
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001884 return;
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001885
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001886 // Check that the value.
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001887 if (Model != "global-dynamic" && Model != "local-dynamic"
1888 && Model != "initial-exec" && Model != "local-exec") {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00001889 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001890 return;
1891 }
1892
Michael Han99315932013-01-24 16:46:58 +00001893 D->addAttr(::new (S.Context)
1894 TLSModelAttr(Attr.getRange(), S.Context, Model,
1895 Attr.getAttributeSpellingListIndex()));
Hans Wennborgd3b01bc2012-06-23 11:51:46 +00001896}
1897
David Majnemer631a90b2015-02-04 07:23:21 +00001898static void handleRestrictAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1899 QualType ResultType = getFunctionOrMethodResultType(D);
1900 if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) {
1901 D->addAttr(::new (S.Context) RestrictAttr(
1902 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
1903 return;
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001904 }
1905
David Majnemer631a90b2015-02-04 07:23:21 +00001906 S.Diag(Attr.getLoc(), diag::warn_attribute_return_pointers_only)
1907 << Attr.getName() << getFunctionOrMethodResultSourceRange(D);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001908}
1909
Chandler Carruthedc2c642011-07-02 00:01:44 +00001910static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman6fc7ad12013-06-20 22:55:04 +00001911 if (S.LangOpts.CPlusPlus) {
Aaron Ballman3db89662013-11-24 21:48:06 +00001912 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001913 << Attr.getName() << AttributeLangSupport::Cpp;
Eli Friedman6fc7ad12013-06-20 22:55:04 +00001914 return;
1915 }
1916
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00001917 if (CommonAttr *CA = S.mergeCommonAttr(D, Attr.getRange(), Attr.getName(),
1918 Attr.getAttributeSpellingListIndex()))
1919 D->addAttr(CA);
Eric Christopher8a2ee392010-12-02 02:45:55 +00001920}
1921
Charles Davis0e379112016-08-08 21:19:08 +00001922static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1923 if (checkAttrMutualExclusion<DisableTailCallsAttr>(S, D, Attr.getRange(),
1924 Attr.getName()))
1925 return;
1926
Saleem Abdulrasoolb51bcaf2017-04-07 15:13:47 +00001927 if (Attr.isDeclspecAttribute()) {
1928 const auto &Triple = S.getASTContext().getTargetInfo().getTriple();
1929 const auto &Arch = Triple.getArch();
1930 if (Arch != llvm::Triple::x86 &&
1931 (Arch != llvm::Triple::arm && Arch != llvm::Triple::thumb)) {
1932 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_on_arch)
1933 << Attr.getName() << Triple.getArchName();
1934 return;
1935 }
1936 }
1937
Charles Davis0e379112016-08-08 21:19:08 +00001938 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context,
1939 Attr.getAttributeSpellingListIndex()));
1940}
1941
Chandler Carruthedc2c642011-07-02 00:01:44 +00001942static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001943 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00001944
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00001945 if (S.CheckNoReturnAttr(attr))
1946 return;
John McCall3882ace2011-01-05 12:14:39 +00001947
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001948 if (!isa<ObjCMethodDecl>(D)) {
John McCall3882ace2011-01-05 12:14:39 +00001949 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00001950 << attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00001951 return;
1952 }
1953
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00001954 D->addAttr(::new (S.Context) NoReturnAttr(
1955 attr.getRange(), S.Context, attr.getAttributeSpellingListIndex()));
1956}
1957
1958static void handleNoCallerSavedRegsAttr(Sema &S, Decl *D,
1959 const AttributeList &Attr) {
1960 if (S.CheckNoCallerSavedRegsAttr(Attr))
1961 return;
1962
1963 D->addAttr(::new (S.Context) AnyX86NoCallerSavedRegistersAttr(
1964 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
John McCall3882ace2011-01-05 12:14:39 +00001965}
1966
1967bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00001968 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall3882ace2011-01-05 12:14:39 +00001969 attr.setInvalid();
1970 return true;
1971 }
1972
1973 return false;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00001974}
1975
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00001976bool Sema::CheckNoCallerSavedRegsAttr(const AttributeList &Attr) {
1977 // Check whether the attribute is valid on the current target.
1978 if (!Attr.existsInTarget(Context.getTargetInfo())) {
1979 Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored) << Attr.getName();
1980 Attr.setInvalid();
1981 return true;
1982 }
1983
1984 if (!checkAttributeNumArgs(*this, Attr, 0)) {
1985 Attr.setInvalid();
1986 return true;
1987 }
1988
1989 return false;
1990}
1991
Chandler Carruthedc2c642011-07-02 00:01:44 +00001992static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1993 const AttributeList &Attr) {
Ted Kremenek5295ce82010-08-19 00:51:58 +00001994
1995 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1996 // because 'analyzer_noreturn' does not impact the type.
David Majnemer06864812015-04-07 06:01:53 +00001997 if (!isFunctionOrMethodOrBlock(D)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001998 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Craig Topperc3ec1492014-05-26 06:22:03 +00001999 if (!VD || (!VD->getType()->isBlockPointerType() &&
2000 !VD->getType()->isFunctionPointerType())) {
Ted Kremenek5295ce82010-08-19 00:51:58 +00002001 S.Diag(Attr.getLoc(),
Richard Smith89645bc2013-01-02 12:01:23 +00002002 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Craig Topper8f7f3ea2015-11-17 05:40:05 +00002003 : diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002004 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenek5295ce82010-08-19 00:51:58 +00002005 return;
2006 }
2007 }
2008
Michael Han99315932013-01-24 16:46:58 +00002009 D->addAttr(::new (S.Context)
2010 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
2011 Attr.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002012}
2013
John Thompsoncdb847ba2010-08-09 21:53:52 +00002014// PS3 PPU-specific.
Chandler Carruthedc2c642011-07-02 00:01:44 +00002015static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00002016/*
2017 Returning a Vector Class in Registers
2018
Eric Christopherbc638a82010-12-01 22:13:54 +00002019 According to the PPU ABI specifications, a class with a single member of
2020 vector type is returned in memory when used as the return value of a function.
2021 This results in inefficient code when implementing vector classes. To return
2022 the value in a single vector register, add the vecreturn attribute to the
2023 class definition. This attribute is also applicable to struct types.
John Thompsoncdb847ba2010-08-09 21:53:52 +00002024
2025 Example:
2026
2027 struct Vector
2028 {
2029 __vector float xyzw;
2030 } __attribute__((vecreturn));
2031
2032 Vector Add(Vector lhs, Vector rhs)
2033 {
2034 Vector result;
2035 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
2036 return result; // This will be returned in a register
2037 }
2038*/
Aaron Ballman3e424b52013-12-26 18:30:57 +00002039 if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) {
2040 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << A;
John Thompsoncdb847ba2010-08-09 21:53:52 +00002041 return;
2042 }
2043
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002044 RecordDecl *record = cast<RecordDecl>(D);
John Thompson9a587aaa2010-09-18 01:12:07 +00002045 int count = 0;
2046
2047 if (!isa<CXXRecordDecl>(record)) {
2048 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
2049 return;
2050 }
2051
2052 if (!cast<CXXRecordDecl>(record)->isPOD()) {
2053 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
2054 return;
2055 }
2056
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00002057 for (const auto *I : record->fields()) {
2058 if ((count == 1) || !I->getType()->isVectorType()) {
John Thompson9a587aaa2010-09-18 01:12:07 +00002059 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
2060 return;
2061 }
2062 count++;
2063 }
2064
Michael Han99315932013-01-24 16:46:58 +00002065 D->addAttr(::new (S.Context)
2066 VecReturnAttr(Attr.getRange(), S.Context,
2067 Attr.getAttributeSpellingListIndex()));
John Thompsoncdb847ba2010-08-09 21:53:52 +00002068}
2069
Richard Smithe233fbf2013-01-28 22:42:45 +00002070static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
2071 const AttributeList &Attr) {
2072 if (isa<ParmVarDecl>(D)) {
2073 // [[carries_dependency]] can only be applied to a parameter if it is a
2074 // parameter of a function declaration or lambda.
2075 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
2076 S.Diag(Attr.getLoc(),
2077 diag::err_carries_dependency_param_not_function_decl);
2078 return;
2079 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00002080 }
Richard Smithe233fbf2013-01-28 22:42:45 +00002081
2082 D->addAttr(::new (S.Context) CarriesDependencyAttr(
2083 Attr.getRange(), S.Context,
2084 Attr.getAttributeSpellingListIndex()));
Alexis Hunt96d5c762009-11-21 08:43:09 +00002085}
2086
Akira Hatanakac8667622015-11-06 23:56:15 +00002087static void handleNotTailCalledAttr(Sema &S, Decl *D,
2088 const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00002089 if (checkAttrMutualExclusion<AlwaysInlineAttr>(S, D, Attr.getRange(),
2090 Attr.getName()))
Akira Hatanakac8667622015-11-06 23:56:15 +00002091 return;
2092
2093 D->addAttr(::new (S.Context) NotTailCalledAttr(
2094 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
2095}
2096
Akira Hatanaka7828b1e2015-11-13 00:42:21 +00002097static void handleDisableTailCallsAttr(Sema &S, Decl *D,
2098 const AttributeList &Attr) {
2099 if (checkAttrMutualExclusion<NakedAttr>(S, D, Attr.getRange(),
2100 Attr.getName()))
2101 return;
2102
2103 D->addAttr(::new (S.Context) DisableTailCallsAttr(
2104 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
2105}
2106
Chandler Carruthedc2c642011-07-02 00:01:44 +00002107static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002108 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola87198cd2013-08-16 23:18:50 +00002109 if (VD->hasLocalStorage()) {
Aaron Ballman88fe3222013-12-26 17:30:44 +00002110 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Daniel Dunbarfee07a02009-02-13 19:23:53 +00002111 return;
2112 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002113 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00002114 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002115 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarfee07a02009-02-13 19:23:53 +00002116 return;
2117 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002118
Michael Han99315932013-01-24 16:46:58 +00002119 D->addAttr(::new (S.Context)
2120 UsedAttr(Attr.getRange(), S.Context,
2121 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarfee07a02009-02-13 19:23:53 +00002122}
2123
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00002124static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2125 bool IsCXX1zAttr = Attr.isCXX11Attribute() && !Attr.getScopeName();
2126
2127 if (IsCXX1zAttr && isa<VarDecl>(D)) {
2128 // The C++1z spelling of this attribute cannot be applied to a static data
2129 // member per [dcl.attr.unused]p2.
2130 if (cast<VarDecl>(D)->isStaticDataMember()) {
2131 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2132 << Attr.getName() << ExpectedForMaybeUnused;
2133 return;
2134 }
2135 }
2136
2137 // If this is spelled as the standard C++1z attribute, but not in C++1z, warn
2138 // about using it as an extension.
2139 if (!S.getLangOpts().CPlusPlus1z && IsCXX1zAttr)
2140 S.Diag(Attr.getLoc(), diag::ext_cxx1z_attr) << Attr.getName();
2141
2142 D->addAttr(::new (S.Context) UnusedAttr(
2143 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
2144}
2145
Chandler Carruthedc2c642011-07-02 00:01:44 +00002146static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002147 uint32_t priority = ConstructorAttr::DefaultPriority;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002148 if (Attr.getNumArgs() &&
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002149 !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority))
2150 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002151
Michael Han99315932013-01-24 16:46:58 +00002152 D->addAttr(::new (S.Context)
2153 ConstructorAttr(Attr.getRange(), S.Context, priority,
2154 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar032db472008-07-31 22:40:48 +00002155}
2156
Chandler Carruthedc2c642011-07-02 00:01:44 +00002157static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballmanf28e4992014-01-20 15:22:57 +00002158 uint32_t priority = DestructorAttr::DefaultPriority;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002159 if (Attr.getNumArgs() &&
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002160 !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority))
2161 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002162
Michael Han99315932013-01-24 16:46:58 +00002163 D->addAttr(::new (S.Context)
2164 DestructorAttr(Attr.getRange(), S.Context, priority,
2165 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar032db472008-07-31 22:40:48 +00002166}
2167
Benjamin Kramerf435ab42012-05-16 12:19:08 +00002168template <typename AttrTy>
Aaron Ballman8b8ebdd2013-07-18 13:13:52 +00002169static void handleAttrWithMessage(Sema &S, Decl *D,
2170 const AttributeList &Attr) {
Benjamin Kramerf435ab42012-05-16 12:19:08 +00002171 // Handle the case where the attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002172 StringRef Str;
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00002173 if (Attr.getNumArgs() == 1 && !S.checkStringLiteralArgumentAttr(Attr, 0, Str))
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002174 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002175
Michael Han99315932013-01-24 16:46:58 +00002176 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2177 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian1470e932008-12-17 01:07:27 +00002178}
2179
Ted Kremenek438f8db2014-02-22 01:06:05 +00002180static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D,
Ted Kremenek28eace62013-11-23 01:01:34 +00002181 const AttributeList &Attr) {
Ted Kremenek438f8db2014-02-22 01:06:05 +00002182 if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) {
Ted Kremenek27cfe102014-02-21 22:49:04 +00002183 S.Diag(Attr.getLoc(), diag::err_objc_attr_protocol_requires_definition)
2184 << Attr.getName() << Attr.getRange();
2185 return;
2186 }
2187
Ted Kremenek28eace62013-11-23 01:01:34 +00002188 D->addAttr(::new (S.Context)
Ted Kremenekf41cf7f12013-12-10 19:43:48 +00002189 ObjCExplicitProtocolImplAttr(Attr.getRange(), S.Context,
2190 Attr.getAttributeSpellingListIndex()));
Ted Kremenek28eace62013-11-23 01:01:34 +00002191}
2192
Jordy Rose740b0c22012-05-08 03:27:22 +00002193static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2194 IdentifierInfo *Platform,
2195 VersionTuple Introduced,
2196 VersionTuple Deprecated,
2197 VersionTuple Obsoleted) {
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002198 StringRef PlatformName
2199 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2200 if (PlatformName.empty())
2201 PlatformName = Platform->getName();
2202
2203 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2204 // of these steps are needed).
2205 if (!Introduced.empty() && !Deprecated.empty() &&
2206 !(Introduced <= Deprecated)) {
2207 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2208 << 1 << PlatformName << Deprecated.getAsString()
2209 << 0 << Introduced.getAsString();
2210 return true;
2211 }
2212
2213 if (!Introduced.empty() && !Obsoleted.empty() &&
2214 !(Introduced <= Obsoleted)) {
2215 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2216 << 2 << PlatformName << Obsoleted.getAsString()
2217 << 0 << Introduced.getAsString();
2218 return true;
2219 }
2220
2221 if (!Deprecated.empty() && !Obsoleted.empty() &&
2222 !(Deprecated <= Obsoleted)) {
2223 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2224 << 2 << PlatformName << Obsoleted.getAsString()
2225 << 1 << Deprecated.getAsString();
2226 return true;
2227 }
2228
2229 return false;
2230}
2231
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002232/// \brief Check whether the two versions match.
2233///
2234/// If either version tuple is empty, then they are assumed to match. If
2235/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2236static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2237 bool BeforeIsOkay) {
2238 if (X.empty() || Y.empty())
2239 return true;
2240
2241 if (X == Y)
2242 return true;
2243
2244 if (BeforeIsOkay && X < Y)
2245 return true;
2246
2247 return false;
2248}
2249
Rafael Espindolaa3aea432013-01-08 22:04:34 +00002250AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002251 IdentifierInfo *Platform,
Manman Ren719a8642016-05-06 21:04:01 +00002252 bool Implicit,
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002253 VersionTuple Introduced,
2254 VersionTuple Deprecated,
2255 VersionTuple Obsoleted,
2256 bool IsUnavailable,
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002257 StringRef Message,
Manman Rend8039df2016-02-22 04:47:24 +00002258 bool IsStrict,
Manman Ren75bc6762016-03-21 17:30:55 +00002259 StringRef Replacement,
Douglas Gregord2a713e2015-09-30 21:27:42 +00002260 AvailabilityMergeKind AMK,
Michael Han99315932013-01-24 16:46:58 +00002261 unsigned AttrSpellingListIndex) {
Rafael Espindolac67f2232012-05-10 02:50:16 +00002262 VersionTuple MergedIntroduced = Introduced;
2263 VersionTuple MergedDeprecated = Deprecated;
2264 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002265 bool FoundAny = false;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002266 bool OverrideOrImpl = false;
2267 switch (AMK) {
2268 case AMK_None:
2269 case AMK_Redeclaration:
2270 OverrideOrImpl = false;
2271 break;
2272
2273 case AMK_Override:
2274 case AMK_ProtocolImplementation:
2275 OverrideOrImpl = true;
2276 break;
2277 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002278
Rafael Espindolac67f2232012-05-10 02:50:16 +00002279 if (D->hasAttrs()) {
2280 AttrVec &Attrs = D->getAttrs();
2281 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2282 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2283 if (!OldAA) {
2284 ++i;
2285 continue;
2286 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002287
Rafael Espindolac67f2232012-05-10 02:50:16 +00002288 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2289 if (OldPlatform != Platform) {
2290 ++i;
2291 continue;
2292 }
2293
Tim Northover7a73cc72015-10-30 16:30:49 +00002294 // If there is an existing availability attribute for this platform that
2295 // is explicit and the new one is implicit use the explicit one and
2296 // discard the new implicit attribute.
Manman Ren719a8642016-05-06 21:04:01 +00002297 if (!OldAA->isImplicit() && Implicit) {
Tim Northover7a73cc72015-10-30 16:30:49 +00002298 return nullptr;
2299 }
2300
2301 // If there is an existing attribute for this platform that is implicit
2302 // and the new attribute is explicit then erase the old one and
2303 // continue processing the attributes.
Manman Ren719a8642016-05-06 21:04:01 +00002304 if (!Implicit && OldAA->isImplicit()) {
Tim Northover7a73cc72015-10-30 16:30:49 +00002305 Attrs.erase(Attrs.begin() + i);
2306 --e;
2307 continue;
2308 }
2309
Rafael Espindolac67f2232012-05-10 02:50:16 +00002310 FoundAny = true;
2311 VersionTuple OldIntroduced = OldAA->getIntroduced();
2312 VersionTuple OldDeprecated = OldAA->getDeprecated();
2313 VersionTuple OldObsoleted = OldAA->getObsoleted();
2314 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindolac67f2232012-05-10 02:50:16 +00002315
Douglas Gregord2a713e2015-09-30 21:27:42 +00002316 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl) ||
2317 !versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl) ||
2318 !versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl) ||
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002319 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregord2a713e2015-09-30 21:27:42 +00002320 (OverrideOrImpl && !OldIsUnavailable && IsUnavailable))) {
2321 if (OverrideOrImpl) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002322 int Which = -1;
2323 VersionTuple FirstVersion;
2324 VersionTuple SecondVersion;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002325 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002326 Which = 0;
2327 FirstVersion = OldIntroduced;
2328 SecondVersion = Introduced;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002329 } else if (!versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002330 Which = 1;
2331 FirstVersion = Deprecated;
2332 SecondVersion = OldDeprecated;
Douglas Gregord2a713e2015-09-30 21:27:42 +00002333 } else if (!versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl)) {
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002334 Which = 2;
2335 FirstVersion = Obsoleted;
2336 SecondVersion = OldObsoleted;
2337 }
2338
2339 if (Which == -1) {
2340 Diag(OldAA->getLocation(),
2341 diag::warn_mismatched_availability_override_unavail)
Douglas Gregord2a713e2015-09-30 21:27:42 +00002342 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2343 << (AMK == AMK_Override);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002344 } else {
2345 Diag(OldAA->getLocation(),
2346 diag::warn_mismatched_availability_override)
2347 << Which
2348 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
Douglas Gregord2a713e2015-09-30 21:27:42 +00002349 << FirstVersion.getAsString() << SecondVersion.getAsString()
2350 << (AMK == AMK_Override);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002351 }
Douglas Gregord2a713e2015-09-30 21:27:42 +00002352 if (AMK == AMK_Override)
2353 Diag(Range.getBegin(), diag::note_overridden_method);
2354 else
2355 Diag(Range.getBegin(), diag::note_protocol_method);
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002356 } else {
2357 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2358 Diag(Range.getBegin(), diag::note_previous_attribute);
2359 }
2360
Rafael Espindolac67f2232012-05-10 02:50:16 +00002361 Attrs.erase(Attrs.begin() + i);
2362 --e;
2363 continue;
2364 }
2365
2366 VersionTuple MergedIntroduced2 = MergedIntroduced;
2367 VersionTuple MergedDeprecated2 = MergedDeprecated;
2368 VersionTuple MergedObsoleted2 = MergedObsoleted;
2369
2370 if (MergedIntroduced2.empty())
2371 MergedIntroduced2 = OldIntroduced;
2372 if (MergedDeprecated2.empty())
2373 MergedDeprecated2 = OldDeprecated;
2374 if (MergedObsoleted2.empty())
2375 MergedObsoleted2 = OldObsoleted;
2376
2377 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2378 MergedIntroduced2, MergedDeprecated2,
2379 MergedObsoleted2)) {
2380 Attrs.erase(Attrs.begin() + i);
2381 --e;
2382 continue;
2383 }
2384
2385 MergedIntroduced = MergedIntroduced2;
2386 MergedDeprecated = MergedDeprecated2;
2387 MergedObsoleted = MergedObsoleted2;
2388 ++i;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002389 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002390 }
2391
2392 if (FoundAny &&
2393 MergedIntroduced == Introduced &&
2394 MergedDeprecated == Deprecated &&
2395 MergedObsoleted == Obsoleted)
Craig Topperc3ec1492014-05-26 06:22:03 +00002396 return nullptr;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002397
Douglas Gregord2a713e2015-09-30 21:27:42 +00002398 // Only create a new attribute if !OverrideOrImpl, but we want to do
Ted Kremenekb5445722013-04-06 00:34:27 +00002399 // the checking.
Rafael Espindolac67f2232012-05-10 02:50:16 +00002400 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekb5445722013-04-06 00:34:27 +00002401 MergedDeprecated, MergedObsoleted) &&
Douglas Gregord2a713e2015-09-30 21:27:42 +00002402 !OverrideOrImpl) {
Manman Ren719a8642016-05-06 21:04:01 +00002403 auto *Avail = ::new (Context) AvailabilityAttr(Range, Context, Platform,
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002404 Introduced, Deprecated,
Michael Han99315932013-01-24 16:46:58 +00002405 Obsoleted, IsUnavailable, Message,
Manman Ren75bc6762016-03-21 17:30:55 +00002406 IsStrict, Replacement,
2407 AttrSpellingListIndex);
Manman Ren719a8642016-05-06 21:04:01 +00002408 Avail->setImplicit(Implicit);
2409 return Avail;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002410 }
Craig Topperc3ec1492014-05-26 06:22:03 +00002411 return nullptr;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002412}
2413
Chandler Carruthedc2c642011-07-02 00:01:44 +00002414static void handleAvailabilityAttr(Sema &S, Decl *D,
2415 const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00002416 if (!checkAttributeNumArgs(S, Attr, 1))
2417 return;
2418 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han99315932013-01-24 16:46:58 +00002419 unsigned Index = Attr.getAttributeSpellingListIndex();
2420
Aaron Ballman00e99962013-08-31 01:11:41 +00002421 IdentifierInfo *II = Platform->Ident;
2422 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2423 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2424 << Platform->Ident;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002425
Rafael Espindolac231fab2013-01-08 21:30:32 +00002426 NamedDecl *ND = dyn_cast<NamedDecl>(D);
Alex Lorenz472cc792017-04-20 09:35:02 +00002427 if (!ND) // We warned about this already, so just return.
Rafael Espindolac231fab2013-01-08 21:30:32 +00002428 return;
Rafael Espindolac231fab2013-01-08 21:30:32 +00002429
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002430 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2431 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2432 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregor7ab142b2011-03-26 03:35:55 +00002433 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Manman Rend8039df2016-02-22 04:47:24 +00002434 bool IsStrict = Attr.getStrictLoc().isValid();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00002435 StringRef Str;
Benjamin Kramera9dfa922013-09-13 17:31:48 +00002436 if (const StringLiteral *SE =
2437 dyn_cast_or_null<StringLiteral>(Attr.getMessageExpr()))
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00002438 Str = SE->getString();
Manman Ren75bc6762016-03-21 17:30:55 +00002439 StringRef Replacement;
2440 if (const StringLiteral *SE =
2441 dyn_cast_or_null<StringLiteral>(Attr.getReplacementExpr()))
2442 Replacement = SE->getString();
Rafael Espindola2d243bf2012-05-06 19:56:25 +00002443
Aaron Ballman00e99962013-08-31 01:11:41 +00002444 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Manman Ren719a8642016-05-06 21:04:01 +00002445 false/*Implicit*/,
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002446 Introduced.Version,
2447 Deprecated.Version,
2448 Obsoleted.Version,
Douglas Gregor66a8ca02013-01-15 22:43:08 +00002449 IsUnavailable, Str,
Manman Ren75bc6762016-03-21 17:30:55 +00002450 IsStrict, Replacement,
Douglas Gregord2a713e2015-09-30 21:27:42 +00002451 Sema::AMK_None,
Michael Han99315932013-01-24 16:46:58 +00002452 Index);
Rafael Espindola19de5612013-01-12 06:42:30 +00002453 if (NewAttr)
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002454 D->addAttr(NewAttr);
Tim Northover7a73cc72015-10-30 16:30:49 +00002455
2456 // Transcribe "ios" to "watchos" (and add a new attribute) if the versioning
2457 // matches before the start of the watchOS platform.
2458 if (S.Context.getTargetInfo().getTriple().isWatchOS()) {
2459 IdentifierInfo *NewII = nullptr;
2460 if (II->getName() == "ios")
2461 NewII = &S.Context.Idents.get("watchos");
2462 else if (II->getName() == "ios_app_extension")
2463 NewII = &S.Context.Idents.get("watchos_app_extension");
2464
2465 if (NewII) {
2466 auto adjustWatchOSVersion = [](VersionTuple Version) -> VersionTuple {
2467 if (Version.empty())
2468 return Version;
2469 auto Major = Version.getMajor();
2470 auto NewMajor = Major >= 9 ? Major - 7 : 0;
2471 if (NewMajor >= 2) {
2472 if (Version.getMinor().hasValue()) {
2473 if (Version.getSubminor().hasValue())
2474 return VersionTuple(NewMajor, Version.getMinor().getValue(),
2475 Version.getSubminor().getValue());
2476 else
2477 return VersionTuple(NewMajor, Version.getMinor().getValue());
2478 }
2479 }
2480
2481 return VersionTuple(2, 0);
2482 };
2483
2484 auto NewIntroduced = adjustWatchOSVersion(Introduced.Version);
2485 auto NewDeprecated = adjustWatchOSVersion(Deprecated.Version);
2486 auto NewObsoleted = adjustWatchOSVersion(Obsoleted.Version);
2487
2488 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND,
Manman Ren719a8642016-05-06 21:04:01 +00002489 Attr.getRange(),
Tim Northover7a73cc72015-10-30 16:30:49 +00002490 NewII,
Manman Ren719a8642016-05-06 21:04:01 +00002491 true/*Implicit*/,
Tim Northover7a73cc72015-10-30 16:30:49 +00002492 NewIntroduced,
2493 NewDeprecated,
2494 NewObsoleted,
2495 IsUnavailable, Str,
Manman Rend8039df2016-02-22 04:47:24 +00002496 IsStrict,
Manman Ren75bc6762016-03-21 17:30:55 +00002497 Replacement,
Tim Northover7a73cc72015-10-30 16:30:49 +00002498 Sema::AMK_None,
2499 Index);
2500 if (NewAttr)
2501 D->addAttr(NewAttr);
2502 }
2503 } else if (S.Context.getTargetInfo().getTriple().isTvOS()) {
2504 // Transcribe "ios" to "tvos" (and add a new attribute) if the versioning
2505 // matches before the start of the tvOS platform.
2506 IdentifierInfo *NewII = nullptr;
2507 if (II->getName() == "ios")
2508 NewII = &S.Context.Idents.get("tvos");
2509 else if (II->getName() == "ios_app_extension")
2510 NewII = &S.Context.Idents.get("tvos_app_extension");
2511
2512 if (NewII) {
2513 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND,
Manman Ren719a8642016-05-06 21:04:01 +00002514 Attr.getRange(),
Tim Northover7a73cc72015-10-30 16:30:49 +00002515 NewII,
Manman Ren719a8642016-05-06 21:04:01 +00002516 true/*Implicit*/,
Tim Northover7a73cc72015-10-30 16:30:49 +00002517 Introduced.Version,
2518 Deprecated.Version,
2519 Obsoleted.Version,
2520 IsUnavailable, Str,
Manman Rend8039df2016-02-22 04:47:24 +00002521 IsStrict,
Manman Ren75bc6762016-03-21 17:30:55 +00002522 Replacement,
Tim Northover7a73cc72015-10-30 16:30:49 +00002523 Sema::AMK_None,
2524 Index);
2525 if (NewAttr)
2526 D->addAttr(NewAttr);
2527 }
2528 }
Rafael Espindolac67f2232012-05-10 02:50:16 +00002529}
2530
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002531static void handleExternalSourceSymbolAttr(Sema &S, Decl *D,
2532 const AttributeList &Attr) {
2533 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
2534 return;
2535 assert(checkAttributeAtMostNumArgs(S, Attr, 3) &&
2536 "Invalid number of arguments in an external_source_symbol attribute");
2537
Alex Lorenzd5d27e12017-03-01 18:06:25 +00002538 StringRef Language;
2539 if (const auto *SE = dyn_cast_or_null<StringLiteral>(Attr.getArgAsExpr(0)))
2540 Language = SE->getString();
2541 StringRef DefinedIn;
2542 if (const auto *SE = dyn_cast_or_null<StringLiteral>(Attr.getArgAsExpr(1)))
2543 DefinedIn = SE->getString();
2544 bool IsGeneratedDeclaration = Attr.getArgAsIdent(2) != nullptr;
2545
2546 D->addAttr(::new (S.Context) ExternalSourceSymbolAttr(
2547 Attr.getRange(), S.Context, Language, DefinedIn, IsGeneratedDeclaration,
2548 Attr.getAttributeSpellingListIndex()));
2549}
2550
John McCalld041a9b2013-02-20 01:54:26 +00002551template <class T>
2552static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2553 typename T::VisibilityType value,
2554 unsigned attrSpellingListIndex) {
2555 T *existingAttr = D->getAttr<T>();
2556 if (existingAttr) {
2557 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2558 if (existingValue == value)
Craig Topperc3ec1492014-05-26 06:22:03 +00002559 return nullptr;
John McCalld041a9b2013-02-20 01:54:26 +00002560 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2561 S.Diag(range.getBegin(), diag::note_previous_attribute);
2562 D->dropAttr<T>();
2563 }
2564 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2565}
2566
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002567VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han99315932013-01-24 16:46:58 +00002568 VisibilityAttr::VisibilityType Vis,
2569 unsigned AttrSpellingListIndex) {
John McCalld041a9b2013-02-20 01:54:26 +00002570 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2571 AttrSpellingListIndex);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002572}
2573
John McCalld041a9b2013-02-20 01:54:26 +00002574TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2575 TypeVisibilityAttr::VisibilityType Vis,
2576 unsigned AttrSpellingListIndex) {
2577 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2578 AttrSpellingListIndex);
2579}
2580
2581static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2582 bool isTypeVisibility) {
2583 // Visibility attributes don't mean anything on a typedef.
2584 if (isa<TypedefNameDecl>(D)) {
2585 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2586 << Attr.getName();
2587 return;
2588 }
2589
2590 // 'type_visibility' can only go on a type or namespace.
2591 if (isTypeVisibility &&
2592 !(isa<TagDecl>(D) ||
2593 isa<ObjCInterfaceDecl>(D) ||
2594 isa<NamespaceDecl>(D))) {
2595 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2596 << Attr.getName() << ExpectedTypeOrNamespace;
2597 return;
2598 }
2599
Benjamin Kramer70370212013-09-09 15:08:57 +00002600 // Check that the argument is a string literal.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002601 StringRef TypeStr;
2602 SourceLocation LiteralLoc;
Tim Northover6a6b63b2013-10-01 14:34:18 +00002603 if (!S.checkStringLiteralArgumentAttr(Attr, 0, TypeStr, &LiteralLoc))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002604 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002605
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002606 VisibilityAttr::VisibilityType type;
Aaron Ballman682ee422013-09-11 19:47:58 +00002607 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002608 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported)
Aaron Ballman682ee422013-09-11 19:47:58 +00002609 << Attr.getName() << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002610 return;
2611 }
Aaron Ballman682ee422013-09-11 19:47:58 +00002612
2613 // Complain about attempts to use protected visibility on targets
2614 // (like Darwin) that don't support it.
2615 if (type == VisibilityAttr::Protected &&
2616 !S.Context.getTargetInfo().hasProtectedVisibility()) {
2617 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2618 type = VisibilityAttr::Default;
2619 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002620
Michael Han99315932013-01-24 16:46:58 +00002621 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld041a9b2013-02-20 01:54:26 +00002622 clang::Attr *newAttr;
2623 if (isTypeVisibility) {
2624 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2625 (TypeVisibilityAttr::VisibilityType) type,
2626 Index);
2627 } else {
2628 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2629 }
2630 if (newAttr)
2631 D->addAttr(newAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002632}
2633
Chandler Carruthedc2c642011-07-02 00:01:44 +00002634static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2635 const AttributeList &Attr) {
Aaron Ballman74eeeae2013-11-27 13:27:02 +00002636 ObjCMethodDecl *method = cast<ObjCMethodDecl>(decl);
Aaron Ballman00e99962013-08-31 01:11:41 +00002637 if (!Attr.isArgIdent(0)) {
2638 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2639 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCall86bc21f2011-03-02 11:33:24 +00002640 return;
2641 }
Aaron Ballman00e99962013-08-31 01:11:41 +00002642
Aaron Ballman682ee422013-09-11 19:47:58 +00002643 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2644 ObjCMethodFamilyAttr::FamilyKind F;
2645 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
2646 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << Attr.getName()
2647 << IL->Ident;
John McCall86bc21f2011-03-02 11:33:24 +00002648 return;
2649 }
2650
Alp Toker314cc812014-01-25 16:55:45 +00002651 if (F == ObjCMethodFamilyAttr::OMF_init &&
2652 !method->getReturnType()->isObjCObjectPointerType()) {
John McCall31168b02011-06-15 23:02:42 +00002653 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
Alp Toker314cc812014-01-25 16:55:45 +00002654 << method->getReturnType();
John McCall31168b02011-06-15 23:02:42 +00002655 // Ignore the attribute.
2656 return;
2657 }
2658
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002659 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
Aaron Ballman36a53502014-01-16 13:03:14 +00002660 S.Context, F,
2661 Attr.getAttributeSpellingListIndex()));
John McCall86bc21f2011-03-02 11:33:24 +00002662}
2663
Chandler Carruthedc2c642011-07-02 00:01:44 +00002664static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Richard Smithdda56e42011-04-15 14:24:37 +00002665 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002666 QualType T = TD->getUnderlyingType();
Ted Kremenek7712eef2012-08-29 22:54:47 +00002667 if (!T->isCARCBridgableType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002668 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2669 return;
2670 }
2671 }
Fariborz Jahanianbebd0ba2012-05-31 23:18:32 +00002672 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2673 QualType T = PD->getType();
Ted Kremenek7712eef2012-08-29 22:54:47 +00002674 if (!T->isCARCBridgableType()) {
Fariborz Jahanianbebd0ba2012-05-31 23:18:32 +00002675 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2676 return;
2677 }
2678 }
2679 else {
Ted Kremenek05e916b2012-03-01 01:40:32 +00002680 // It is okay to include this attribute on properties, e.g.:
2681 //
2682 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2683 //
2684 // In this case it follows tradition and suppresses an error in the above
2685 // case.
Fariborz Jahaniana45495a2011-11-29 01:48:40 +00002686 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenek05e916b2012-03-01 01:40:32 +00002687 }
Michael Han99315932013-01-24 16:46:58 +00002688 D->addAttr(::new (S.Context)
2689 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2690 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002691}
2692
Fariborz Jahanian7a60b6d2015-04-16 18:38:44 +00002693static void handleObjCIndependentClass(Sema &S, Decl *D, const AttributeList &Attr) {
2694 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
2695 QualType T = TD->getUnderlyingType();
2696 if (!T->isObjCObjectPointerType()) {
2697 S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute);
2698 return;
2699 }
2700 } else {
2701 S.Diag(D->getLocation(), diag::warn_independentclass_attribute);
2702 return;
2703 }
2704 D->addAttr(::new (S.Context)
2705 ObjCIndependentClassAttr(Attr.getRange(), S.Context,
2706 Attr.getAttributeSpellingListIndex()));
2707}
2708
Chandler Carruthedc2c642011-07-02 00:01:44 +00002709static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00002710 if (!Attr.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00002711 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman00e99962013-08-31 01:11:41 +00002712 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff3405a732008-09-18 16:44:58 +00002713 return;
2714 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002715
Aaron Ballman00e99962013-08-31 01:11:41 +00002716 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002717 BlocksAttr::BlockType type;
Aaron Ballman682ee422013-09-11 19:47:58 +00002718 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2719 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
2720 << Attr.getName() << II;
Steve Naroff3405a732008-09-18 16:44:58 +00002721 return;
2722 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002723
Michael Han99315932013-01-24 16:46:58 +00002724 D->addAttr(::new (S.Context)
2725 BlocksAttr(Attr.getRange(), S.Context, type,
2726 Attr.getAttributeSpellingListIndex()));
Steve Naroff3405a732008-09-18 16:44:58 +00002727}
2728
Chandler Carruthedc2c642011-07-02 00:01:44 +00002729static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman18a78382013-11-21 00:28:23 +00002730 unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel;
Anders Carlssonc181b012008-10-05 18:05:59 +00002731 if (Attr.getNumArgs() > 0) {
Aaron Ballman00e99962013-08-31 01:11:41 +00002732 Expr *E = Attr.getArgAsExpr(0);
Anders Carlssonc181b012008-10-05 18:05:59 +00002733 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002734 if (E->isTypeDependent() || E->isValueDependent() ||
2735 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman29982272013-07-23 14:03:57 +00002736 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3bf758c2013-07-30 01:31:03 +00002737 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman29982272013-07-23 14:03:57 +00002738 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002739 return;
2740 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002741
John McCallb46f2872011-09-09 07:56:05 +00002742 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002743 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2744 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002745 return;
2746 }
John McCallb46f2872011-09-09 07:56:05 +00002747
2748 sentinel = Idx.getZExtValue();
Anders Carlssonc181b012008-10-05 18:05:59 +00002749 }
2750
Aaron Ballman18a78382013-11-21 00:28:23 +00002751 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos;
Anders Carlssonc181b012008-10-05 18:05:59 +00002752 if (Attr.getNumArgs() > 1) {
Aaron Ballman00e99962013-08-31 01:11:41 +00002753 Expr *E = Attr.getArgAsExpr(1);
Anders Carlssonc181b012008-10-05 18:05:59 +00002754 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002755 if (E->isTypeDependent() || E->isValueDependent() ||
2756 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman29982272013-07-23 14:03:57 +00002757 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3bf758c2013-07-30 01:31:03 +00002758 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman29982272013-07-23 14:03:57 +00002759 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002760 return;
2761 }
2762 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00002763
John McCallb46f2872011-09-09 07:56:05 +00002764 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002765 // FIXME: This error message could be improved, it would be nice
2766 // to say what the bounds actually are.
Chris Lattner3b054132008-11-19 05:08:23 +00002767 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2768 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002769 return;
2770 }
2771 }
2772
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002773 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +00002774 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +00002775 if (isa<FunctionNoProtoType>(FT)) {
2776 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2777 return;
2778 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002779
Chris Lattner9363e312009-03-17 23:03:47 +00002780 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002781 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002782 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002783 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002784 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002785 if (!MD->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002786 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002787 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002788 }
Eli Friedman5c5e3b72012-01-06 01:23:10 +00002789 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2790 if (!BD->isVariadic()) {
2791 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2792 return;
2793 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002794 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002795 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00002796 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Aaron Ballman12b9f652014-01-16 13:55:42 +00002797 const FunctionType *FT = Ty->isFunctionPointerType()
2798 ? D->getFunctionType()
Eric Christopherbc638a82010-12-01 22:13:54 +00002799 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002800 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002801 int m = Ty->isFunctionPointerType() ? 0 : 1;
2802 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002803 return;
2804 }
Mike Stump12b8ce12009-08-04 21:02:39 +00002805 } else {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002806 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002807 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002808 return;
2809 }
Anders Carlssonc181b012008-10-05 18:05:59 +00002810 } else {
Chris Lattner3b054132008-11-19 05:08:23 +00002811 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002812 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlssonc181b012008-10-05 18:05:59 +00002813 return;
2814 }
Michael Han99315932013-01-24 16:46:58 +00002815 D->addAttr(::new (S.Context)
2816 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2817 Attr.getAttributeSpellingListIndex()));
Anders Carlssonc181b012008-10-05 18:05:59 +00002818}
2819
Chandler Carruthedc2c642011-07-02 00:01:44 +00002820static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Alp Toker314cc812014-01-25 16:55:45 +00002821 if (D->getFunctionType() &&
2822 D->getFunctionType()->getReturnType()->isVoidType()) {
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002823 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2824 << Attr.getName() << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +00002825 return;
2826 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002827 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00002828 if (MD->getReturnType()->isVoidType()) {
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002829 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2830 << Attr.getName() << 1;
2831 return;
2832 }
2833
Aaron Ballmane7964782016-03-07 22:44:55 +00002834 // If this is spelled as the standard C++1z attribute, but not in C++1z, warn
2835 // about using it as an extension.
2836 if (!S.getLangOpts().CPlusPlus1z && Attr.isCXX11Attribute() &&
2837 !Attr.getScopeName())
Richard Smith4f902c72016-03-08 00:32:55 +00002838 S.Diag(Attr.getLoc(), diag::ext_cxx1z_attr) << Attr.getName();
Aaron Ballmane7964782016-03-07 22:44:55 +00002839
Michael Han99315932013-01-24 16:46:58 +00002840 D->addAttr(::new (S.Context)
2841 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2842 Attr.getAttributeSpellingListIndex()));
Chris Lattner237f2752009-02-14 07:37:35 +00002843}
2844
Chandler Carruthedc2c642011-07-02 00:01:44 +00002845static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002846 // weak_import only applies to variable & function declarations.
2847 bool isDef = false;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002848 if (!D->canBeWeakImported(isDef)) {
2849 if (isDef)
Reid Kleckner52d598e2013-05-20 21:53:29 +00002850 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2851 << "weak_import";
Douglas Gregord71149a2011-03-23 13:27:51 +00002852 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregore8bbc122011-09-02 00:18:52 +00002853 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian3249a1e2011-10-26 23:59:12 +00002854 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregord71149a2011-03-23 13:27:51 +00002855 // Nothing to warn about here.
2856 } else
Fariborz Jahanianea70a172010-04-13 20:22:35 +00002857 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002858 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002859
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002860 return;
2861 }
2862
Michael Han99315932013-01-24 16:46:58 +00002863 D->addAttr(::new (S.Context)
2864 WeakImportAttr(Attr.getRange(), S.Context,
2865 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002866}
2867
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002868// Handles reqd_work_group_size and work_group_size_hint.
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002869template <typename WorkGroupAttr>
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002870static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewyckyb9e4a3a2012-07-24 01:31:55 +00002871 const AttributeList &Attr) {
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00002872 uint32_t WGSize[3];
Joey Goulyb1d23a82014-05-19 14:41:38 +00002873 for (unsigned i = 0; i < 3; ++i) {
2874 const Expr *E = Attr.getArgAsExpr(i);
2875 if (!checkUInt32Argument(S, Attr, E, WGSize[i], i))
Nate Begemanf2758702009-06-26 06:32:41 +00002876 return;
Joey Goulyb1d23a82014-05-19 14:41:38 +00002877 if (WGSize[i] == 0) {
2878 S.Diag(Attr.getLoc(), diag::err_attribute_argument_is_zero)
2879 << Attr.getName() << E->getSourceRange();
2880 return;
2881 }
2882 }
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002883
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002884 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2885 if (Existing && !(Existing->getXDim() == WGSize[0] &&
2886 Existing->getYDim() == WGSize[1] &&
2887 Existing->getZDim() == WGSize[2]))
2888 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00002889
Aaron Ballman1d0d2a42013-12-02 22:38:33 +00002890 D->addAttr(::new (S.Context) WorkGroupAttr(Attr.getRange(), S.Context,
2891 WGSize[0], WGSize[1], WGSize[2],
Michael Han99315932013-01-24 16:46:58 +00002892 Attr.getAttributeSpellingListIndex()));
Nate Begemanf2758702009-06-26 06:32:41 +00002893}
2894
Xiuli Panbe6da4b2017-05-04 07:31:20 +00002895// Handles intel_reqd_sub_group_size.
2896static void handleSubGroupSize(Sema &S, Decl *D, const AttributeList &Attr) {
2897 uint32_t SGSize;
2898 const Expr *E = Attr.getArgAsExpr(0);
2899 if (!checkUInt32Argument(S, Attr, E, SGSize))
2900 return;
2901 if (SGSize == 0) {
2902 S.Diag(Attr.getLoc(), diag::err_attribute_argument_is_zero)
2903 << Attr.getName() << E->getSourceRange();
2904 return;
2905 }
2906
2907 OpenCLIntelReqdSubGroupSizeAttr *Existing =
2908 D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>();
2909 if (Existing && Existing->getSubGroupSize() != SGSize)
2910 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2911
2912 D->addAttr(::new (S.Context) OpenCLIntelReqdSubGroupSizeAttr(
2913 Attr.getRange(), S.Context, SGSize,
2914 Attr.getAttributeSpellingListIndex()));
2915}
2916
Joey Goulyaba589c2013-03-08 09:42:32 +00002917static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00002918 if (!Attr.hasParsedType()) {
2919 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2920 << Attr.getName() << 1;
2921 return;
2922 }
2923
Craig Topperc3ec1492014-05-26 06:22:03 +00002924 TypeSourceInfo *ParmTSI = nullptr;
Richard Smithb87c4652013-10-31 21:23:20 +00002925 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg(), &ParmTSI);
2926 assert(ParmTSI && "no type source info for attribute argument");
Joey Goulyaba589c2013-03-08 09:42:32 +00002927
2928 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2929 (ParmType->isBooleanType() ||
2930 !ParmType->isIntegralType(S.getASTContext()))) {
2931 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2932 << ParmType;
2933 return;
2934 }
2935
Aaron Ballmana9e05402013-12-02 22:16:55 +00002936 if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) {
Richard Smithb87c4652013-10-31 21:23:20 +00002937 if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) {
Joey Goulyaba589c2013-03-08 09:42:32 +00002938 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2939 return;
2940 }
2941 }
2942
2943 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
Aaron Ballman36a53502014-01-16 13:03:14 +00002944 ParmTSI,
2945 Attr.getAttributeSpellingListIndex()));
Joey Goulyaba589c2013-03-08 09:42:32 +00002946}
2947
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002948SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han99315932013-01-24 16:46:58 +00002949 StringRef Name,
2950 unsigned AttrSpellingListIndex) {
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002951 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2952 if (ExistingAttr->getName() == Name)
Craig Topperc3ec1492014-05-26 06:22:03 +00002953 return nullptr;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002954 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2955 Diag(Range.getBegin(), diag::note_previous_attribute);
Craig Topperc3ec1492014-05-26 06:22:03 +00002956 return nullptr;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002957 }
Michael Han99315932013-01-24 16:46:58 +00002958 return ::new (Context) SectionAttr(Range, Context, Name,
2959 AttrSpellingListIndex);
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002960}
2961
Reid Kleckner2a133222015-03-04 23:39:17 +00002962bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) {
2963 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName);
2964 if (!Error.empty()) {
2965 Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error;
2966 return false;
2967 }
2968 return true;
2969}
2970
Chandler Carruthedc2c642011-07-02 00:01:44 +00002971static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar648bf782009-02-12 17:28:23 +00002972 // Make sure that there is a string literal as the sections's single
2973 // argument.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002974 StringRef Str;
2975 SourceLocation LiteralLoc;
Tim Northover6a6b63b2013-10-01 14:34:18 +00002976 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &LiteralLoc))
Daniel Dunbar648bf782009-02-12 17:28:23 +00002977 return;
Mike Stump11289f42009-09-09 15:08:12 +00002978
Reid Kleckner2a133222015-03-04 23:39:17 +00002979 if (!S.checkSectionName(LiteralLoc, Str))
2980 return;
2981
Chris Lattner30ba6742009-08-10 19:03:04 +00002982 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002983 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
Chris Lattner20aee9b2010-01-12 20:58:53 +00002984 if (!Error.empty()) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002985 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
Chris Lattner20aee9b2010-01-12 20:58:53 +00002986 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +00002987 return;
2988 }
Mike Stump11289f42009-09-09 15:08:12 +00002989
Michael Han99315932013-01-24 16:46:58 +00002990 unsigned Index = Attr.getAttributeSpellingListIndex();
Benjamin Kramer6ee15622013-09-13 15:35:43 +00002991 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), Str, Index);
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002992 if (NewAttr)
2993 D->addAttr(NewAttr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00002994}
2995
Eric Christopher789a7ad2015-06-12 01:36:05 +00002996// Check for things we'd like to warn about, no errors or validation for now.
2997// TODO: Validation should use a backend target library that specifies
2998// the allowable subtarget features and cpus. We could use something like a
2999// TargetCodeGenInfo hook here to do validation.
3000void Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) {
3001 for (auto Str : {"tune=", "fpmath="})
3002 if (AttrStr.find(Str) != StringRef::npos)
3003 Diag(LiteralLoc, diag::warn_unsupported_target_attribute) << Str;
3004}
3005
Eric Christopher11acf732015-06-12 01:35:52 +00003006static void handleTargetAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eric Christopher11acf732015-06-12 01:35:52 +00003007 StringRef Str;
3008 SourceLocation LiteralLoc;
3009 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &LiteralLoc))
3010 return;
Eric Christopher789a7ad2015-06-12 01:36:05 +00003011 S.checkTargetAttr(LiteralLoc, Str);
Eric Christopher11acf732015-06-12 01:35:52 +00003012 unsigned Index = Attr.getAttributeSpellingListIndex();
3013 TargetAttr *NewAttr =
3014 ::new (S.Context) TargetAttr(Attr.getRange(), S.Context, Str, Index);
3015 D->addAttr(NewAttr);
3016}
3017
Chandler Carruthedc2c642011-07-02 00:01:44 +00003018static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman74eeeae2013-11-27 13:27:02 +00003019 VarDecl *VD = cast<VarDecl>(D);
3020 if (!VD->hasLocalStorage()) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003021 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Anders Carlssond277d792009-01-31 01:16:18 +00003022 return;
3023 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003024
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003025 Expr *E = Attr.getArgAsExpr(0);
3026 SourceLocation Loc = E->getExprLoc();
Craig Topperc3ec1492014-05-26 06:22:03 +00003027 FunctionDecl *FD = nullptr;
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003028 DeclarationNameInfo NI;
Aaron Ballman00e99962013-08-31 01:11:41 +00003029
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003030 // gcc only allows for simple identifiers. Since we support more than gcc, we
3031 // will warn the user.
3032 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
3033 if (DRE->hasQualifier())
3034 S.Diag(Loc, diag::warn_cleanup_ext);
3035 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
3036 NI = DRE->getNameInfo();
3037 if (!FD) {
3038 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
3039 << NI.getName();
3040 return;
3041 }
3042 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
3043 if (ULE->hasExplicitTemplateArgs())
3044 S.Diag(Loc, diag::warn_cleanup_ext);
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003045 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
3046 NI = ULE->getNameInfo();
Alp Toker67b47ac2013-10-20 18:48:56 +00003047 if (!FD) {
3048 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
3049 << NI.getName();
3050 if (ULE->getType() == S.Context.OverloadTy)
3051 S.NoteAllOverloadCandidates(ULE);
3052 return;
3053 }
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003054 } else {
3055 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
Anders Carlssond277d792009-01-31 01:16:18 +00003056 return;
3057 }
3058
Anders Carlssond277d792009-01-31 01:16:18 +00003059 if (FD->getNumParams() != 1) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003060 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3061 << NI.getName();
Anders Carlssond277d792009-01-31 01:16:18 +00003062 return;
3063 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003064
Anders Carlsson723f55d2009-02-07 23:16:50 +00003065 // We're currently more strict than GCC about what function types we accept.
3066 // If this ever proves to be a problem it should be easy to fix.
3067 QualType Ty = S.Context.getPointerType(VD->getType());
3068 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorc03a1082011-01-28 02:26:04 +00003069 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3070 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballmanc12aaff2013-09-11 01:37:41 +00003071 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
3072 << NI.getName() << ParamTy << Ty;
Anders Carlsson723f55d2009-02-07 23:16:50 +00003073 return;
3074 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003075
Michael Han99315932013-01-24 16:46:58 +00003076 D->addAttr(::new (S.Context)
3077 CleanupAttr(Attr.getRange(), S.Context, FD,
3078 Attr.getAttributeSpellingListIndex()));
Anders Carlssond277d792009-01-31 01:16:18 +00003079}
3080
Akira Hatanaka3c268af2017-03-21 02:23:00 +00003081static void handleEnumExtensibilityAttr(Sema &S, Decl *D,
3082 const AttributeList &Attr) {
3083 if (!Attr.isArgIdent(0)) {
3084 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
3085 << Attr.getName() << 0 << AANT_ArgumentIdentifier;
3086 return;
3087 }
3088
3089 EnumExtensibilityAttr::Kind ExtensibilityKind;
3090 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3091 if (!EnumExtensibilityAttr::ConvertStrToKind(II->getName(),
3092 ExtensibilityKind)) {
3093 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
3094 << Attr.getName() << II;
3095 return;
3096 }
3097
3098 D->addAttr(::new (S.Context) EnumExtensibilityAttr(
3099 Attr.getRange(), S.Context, ExtensibilityKind,
3100 Attr.getAttributeSpellingListIndex()));
3101}
3102
Mike Stumpd3bb5572009-07-24 19:02:52 +00003103/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendling44426052012-12-20 19:22:21 +00003104/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00003105static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00003106 Expr *IdxExpr = Attr.getArgAsExpr(0);
Alp Toker601b22c2014-01-21 23:35:24 +00003107 uint64_t Idx;
3108 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 1, IdxExpr, Idx))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003109 return;
Chandler Carruth743682b2010-11-16 08:35:43 +00003110
Eric Christopherb64963e2015-08-13 21:34:35 +00003111 // Make sure the format string is really a string.
Alp Toker601b22c2014-01-21 23:35:24 +00003112 QualType Ty = getFunctionOrMethodParamType(D, Idx);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003113
Eric Christopherb64963e2015-08-13 21:34:35 +00003114 bool NotNSStringTy = !isNSStringType(Ty, S.Context);
3115 if (NotNSStringTy &&
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003116 !isCFStringType(Ty, S.Context) &&
3117 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003118 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003119 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Eric Christopherb64963e2015-08-13 21:34:35 +00003120 << "a string type" << IdxExpr->getSourceRange()
3121 << getFunctionOrMethodParamRange(D, 0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003122 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003123 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003124 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003125 if (!isNSStringType(Ty, S.Context) &&
3126 !isCFStringType(Ty, S.Context) &&
3127 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003128 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003129 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Eric Christopherb64963e2015-08-13 21:34:35 +00003130 << (NotNSStringTy ? "string type" : "NSString")
Aaron Ballman2f9e88b2014-08-04 15:17:29 +00003131 << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003132 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003133 }
3134
Alp Toker601b22c2014-01-21 23:35:24 +00003135 // We cannot use the Idx returned from checkFunctionOrMethodParameterIndex
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00003136 // because that has corrected for the implicit this parameter, and is zero-
3137 // based. The attribute expects what the user wrote explicitly.
3138 llvm::APSInt Val;
3139 IdxExpr->EvaluateAsInt(Val, S.Context);
3140
Michael Han99315932013-01-24 16:46:58 +00003141 D->addAttr(::new (S.Context)
Aaron Ballmanbe50eb82013-07-30 00:48:57 +00003142 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han99315932013-01-24 16:46:58 +00003143 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00003144}
3145
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003146enum FormatAttrKind {
3147 CFStringFormat,
3148 NSStringFormat,
3149 StrftimeFormat,
3150 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00003151 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003152 InvalidFormat
3153};
3154
3155/// getFormatAttrKind - Map from format attribute names to supported format
3156/// types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003157static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramer96a44b62012-05-16 12:44:25 +00003158 return llvm::StringSwitch<FormatAttrKind>(Format)
Mehdi Amini06d367c2016-10-24 20:39:34 +00003159 // Check for formats that get handled specially.
3160 .Case("NSString", NSStringFormat)
3161 .Case("CFString", CFStringFormat)
3162 .Case("strftime", StrftimeFormat)
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003163
Mehdi Amini06d367c2016-10-24 20:39:34 +00003164 // Otherwise, check for supported formats.
3165 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3166 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3167 .Case("kprintf", SupportedFormat) // OpenBSD.
3168 .Case("freebsd_kprintf", SupportedFormat) // FreeBSD.
3169 .Case("os_trace", SupportedFormat)
3170 .Case("os_log", SupportedFormat)
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003171
Mehdi Amini06d367c2016-10-24 20:39:34 +00003172 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3173 .Default(InvalidFormat);
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003174}
3175
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003176/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendling44426052012-12-20 19:22:21 +00003177/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00003178static void handleInitPriorityAttr(Sema &S, Decl *D,
3179 const AttributeList &Attr) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003180 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003181 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3182 return;
3183 }
3184
Aaron Ballman4a611152013-11-27 16:34:09 +00003185 if (S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00003186 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3187 Attr.setInvalid();
3188 return;
3189 }
Aaron Ballman4a611152013-11-27 16:34:09 +00003190 QualType T = cast<VarDecl>(D)->getType();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00003191 if (S.Context.getAsArrayType(T))
3192 T = S.Context.getBaseElementType(T);
3193 if (!T->getAs<RecordType>()) {
3194 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3195 Attr.setInvalid();
3196 return;
3197 }
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003198
3199 Expr *E = Attr.getArgAsExpr(0);
3200 uint32_t prioritynum;
3201 if (!checkUInt32Argument(S, Attr, E, prioritynum)) {
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003202 Attr.setInvalid();
3203 return;
3204 }
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003205
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003206 if (prioritynum < 101 || prioritynum > 65535) {
3207 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00003208 << E->getSourceRange() << Attr.getName() << 101 << 65535;
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003209 Attr.setInvalid();
3210 return;
3211 }
Michael Han99315932013-01-24 16:46:58 +00003212 D->addAttr(::new (S.Context)
3213 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3214 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003215}
3216
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003217FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3218 IdentifierInfo *Format, int FormatIdx,
3219 int FirstArg,
Michael Han99315932013-01-24 16:46:58 +00003220 unsigned AttrSpellingListIndex) {
Rafael Espindola92d49452012-05-11 00:36:07 +00003221 // Check whether we already have an equivalent format attribute.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003222 for (auto *F : D->specific_attrs<FormatAttr>()) {
3223 if (F->getType() == Format &&
3224 F->getFormatIdx() == FormatIdx &&
3225 F->getFirstArg() == FirstArg) {
Rafael Espindola92d49452012-05-11 00:36:07 +00003226 // If we don't have a valid location for this attribute, adopt the
3227 // location.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003228 if (F->getLocation().isInvalid())
3229 F->setRange(Range);
Craig Topperc3ec1492014-05-26 06:22:03 +00003230 return nullptr;
Rafael Espindola92d49452012-05-11 00:36:07 +00003231 }
3232 }
3233
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003234 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3235 FirstArg, AttrSpellingListIndex);
Rafael Espindola92d49452012-05-11 00:36:07 +00003236}
3237
Mike Stumpd3bb5572009-07-24 19:02:52 +00003238/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendling44426052012-12-20 19:22:21 +00003239/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00003240static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00003241 if (!Attr.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00003242 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman00e99962013-08-31 01:11:41 +00003243 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003244 return;
3245 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003246
Chandler Carruth743682b2010-11-16 08:35:43 +00003247 // In C++ the implicit 'this' function parameter also counts, and they are
3248 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003249 bool HasImplicitThisParam = isInstanceMethod(D);
Alp Toker601b22c2014-01-21 23:35:24 +00003250 unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003251
Aaron Ballman00e99962013-08-31 01:11:41 +00003252 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3253 StringRef Format = II->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003254
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00003255 if (normalizeName(Format)) {
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003256 // If we've modified the string name, we need a new identifier for it.
3257 II = &S.Context.Idents.get(Format);
3258 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003259
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003260 // Check for supported formats.
3261 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner12161d32010-03-22 21:08:50 +00003262
3263 if (Kind == IgnoredFormat)
3264 return;
3265
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003266 if (Kind == InvalidFormat) {
Chris Lattner3b054132008-11-19 05:08:23 +00003267 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman190bad42013-12-26 16:13:50 +00003268 << Attr.getName() << II->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003269 return;
3270 }
3271
3272 // checks for the 2nd argument
Aaron Ballman00e99962013-08-31 01:11:41 +00003273 Expr *IdxExpr = Attr.getArgAsExpr(1);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003274 uint32_t Idx;
3275 if (!checkUInt32Argument(S, Attr, IdxExpr, Idx, 2))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003276 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003277
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003278 if (Idx < 1 || Idx > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00003279 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Aaron Ballmanfaed0fa2013-12-26 16:30:30 +00003280 << Attr.getName() << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003281 return;
3282 }
3283
3284 // FIXME: Do we need to bounds check?
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003285 unsigned ArgIdx = Idx - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003286
Sebastian Redl6eedcc12009-11-17 18:02:24 +00003287 if (HasImplicitThisParam) {
3288 if (ArgIdx == 0) {
Chandler Carruth743682b2010-11-16 08:35:43 +00003289 S.Diag(Attr.getLoc(),
3290 diag::err_format_attribute_implicit_this_format_string)
3291 << IdxExpr->getSourceRange();
Sebastian Redl6eedcc12009-11-17 18:02:24 +00003292 return;
3293 }
3294 ArgIdx--;
3295 }
Mike Stump11289f42009-09-09 15:08:12 +00003296
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003297 // make sure the format string is really a string
Alp Toker601b22c2014-01-21 23:35:24 +00003298 QualType Ty = getFunctionOrMethodParamType(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003299
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003300 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00003301 if (!isCFStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00003302 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003303 << "a CFString" << IdxExpr->getSourceRange()
3304 << getFunctionOrMethodParamRange(D, ArgIdx);
Daniel Dunbar980c6692008-09-26 03:32:58 +00003305 return;
3306 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003307 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00003308 // FIXME: do we need to check if the type is NSString*? What are the
3309 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003310 if (!isNSStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00003311 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003312 << "an NSString" << IdxExpr->getSourceRange()
3313 << getFunctionOrMethodParamRange(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003314 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003315 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003316 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003317 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00003318 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Aaron Ballmandfe8cc52014-08-04 15:26:33 +00003319 << "a string type" << IdxExpr->getSourceRange()
3320 << getFunctionOrMethodParamRange(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003321 return;
3322 }
3323
3324 // check the 3rd argument
Aaron Ballman00e99962013-08-31 01:11:41 +00003325 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003326 uint32_t FirstArg;
3327 if (!checkUInt32Argument(S, Attr, FirstArgExpr, FirstArg, 3))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003328 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003329
3330 // check if the function is variadic if the 3rd argument non-zero
3331 if (FirstArg != 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003332 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003333 ++NumArgs; // +1 for ...
3334 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003335 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003336 return;
3337 }
3338 }
3339
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003340 // strftime requires FirstArg to be 0 because it doesn't read from any
3341 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00003342 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003343 if (FirstArg != 0) {
Chris Lattner3b054132008-11-19 05:08:23 +00003344 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3345 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003346 return;
3347 }
3348 // if 0 it disables parameter checking (to use with e.g. va_list)
3349 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00003350 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Aaron Ballmanfaed0fa2013-12-26 16:30:30 +00003351 << Attr.getName() << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003352 return;
3353 }
3354
Aaron Ballmanf58070b2013-09-03 21:02:22 +00003355 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00003356 Idx, FirstArg,
Michael Han99315932013-01-24 16:46:58 +00003357 Attr.getAttributeSpellingListIndex());
Rafael Espindolae200f1c2012-05-13 03:25:18 +00003358 if (NewAttr)
3359 D->addAttr(NewAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003360}
3361
Chandler Carruthedc2c642011-07-02 00:01:44 +00003362static void handleTransparentUnionAttr(Sema &S, Decl *D,
3363 const AttributeList &Attr) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003364 // Try to find the underlying union declaration.
Craig Topperc3ec1492014-05-26 06:22:03 +00003365 RecordDecl *RD = nullptr;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003366 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003367 if (TD && TD->getUnderlyingType()->isUnionType())
3368 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3369 else
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003370 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003371
3372 if (!RD || !RD->isUnion()) {
Chris Lattner3b054132008-11-19 05:08:23 +00003373 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003374 << Attr.getName() << ExpectedUnion;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003375 return;
3376 }
3377
John McCallf937c022011-10-07 06:10:15 +00003378 if (!RD->isCompleteDefinition()) {
Erich Keane2fe684b2017-02-28 20:44:39 +00003379 if (!RD->isBeingDefined())
3380 S.Diag(Attr.getLoc(),
3381 diag::warn_transparent_union_attribute_not_definition);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003382 return;
3383 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003384
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003385 RecordDecl::field_iterator Field = RD->field_begin(),
3386 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003387 if (Field == FieldEnd) {
3388 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3389 return;
3390 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00003391
David Blaikie40ed2972012-06-06 20:45:41 +00003392 FieldDecl *FirstField = *Field;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003393 QualType FirstType = FirstField->getType();
Douglas Gregor21872662010-06-30 17:24:13 +00003394 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00003395 S.Diag(FirstField->getLocation(),
Douglas Gregor21872662010-06-30 17:24:13 +00003396 diag::warn_transparent_union_attribute_floating)
3397 << FirstType->isVectorType() << FirstType;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003398 return;
3399 }
3400
Alex Lorenz6f4bc4f2016-10-06 09:47:29 +00003401 if (FirstType->isIncompleteType())
3402 return;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003403 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3404 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3405 for (; Field != FieldEnd; ++Field) {
3406 QualType FieldType = Field->getType();
Alex Lorenz6f4bc4f2016-10-06 09:47:29 +00003407 if (FieldType->isIncompleteType())
3408 return;
Aaron Ballman54fe5eb2014-01-28 01:47:34 +00003409 // FIXME: this isn't fully correct; we also need to test whether the
3410 // members of the union would all have the same calling convention as the
3411 // first member of the union. Checking just the size and alignment isn't
3412 // sufficient (consider structs passed on the stack instead of in registers
3413 // as an example).
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003414 if (S.Context.getTypeSize(FieldType) != FirstSize ||
Aaron Ballman54fe5eb2014-01-28 01:47:34 +00003415 S.Context.getTypeAlign(FieldType) > FirstAlign) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003416 // Warn if we drop the attribute.
3417 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003418 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003419 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003420 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003421 diag::warn_transparent_union_attribute_field_size_align)
3422 << isSize << Field->getDeclName() << FieldBits;
3423 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003424 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003425 diag::note_transparent_union_first_field_size_align)
3426 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00003427 return;
3428 }
3429 }
3430
Michael Han99315932013-01-24 16:46:58 +00003431 RD->addAttr(::new (S.Context)
3432 TransparentUnionAttr(Attr.getRange(), S.Context,
3433 Attr.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003434}
3435
Chandler Carruthedc2c642011-07-02 00:01:44 +00003436static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003437 // Make sure that there is a string literal as the annotation's single
3438 // argument.
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003439 StringRef Str;
Tim Northover6a6b63b2013-10-01 14:34:18 +00003440 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003441 return;
Julien Lerouge5a6b6982011-09-09 22:41:49 +00003442
3443 // Don't duplicate annotations that are already set.
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003444 for (const auto *I : D->specific_attrs<AnnotateAttr>()) {
3445 if (I->getAnnotation() == Str)
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003446 return;
Julien Lerouge5a6b6982011-09-09 22:41:49 +00003447 }
Michael Han99315932013-01-24 16:46:58 +00003448
3449 D->addAttr(::new (S.Context)
Benjamin Kramer6ee15622013-09-13 15:35:43 +00003450 AnnotateAttr(Attr.getRange(), S.Context, Str,
Michael Han99315932013-01-24 16:46:58 +00003451 Attr.getAttributeSpellingListIndex()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003452}
3453
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003454static void handleAlignValueAttr(Sema &S, Decl *D,
3455 const AttributeList &Attr) {
3456 S.AddAlignValueAttr(Attr.getRange(), D, Attr.getArgAsExpr(0),
3457 Attr.getAttributeSpellingListIndex());
3458}
3459
3460void Sema::AddAlignValueAttr(SourceRange AttrRange, Decl *D, Expr *E,
3461 unsigned SpellingListIndex) {
3462 AlignValueAttr TmpAttr(AttrRange, Context, E, SpellingListIndex);
3463 SourceLocation AttrLoc = AttrRange.getBegin();
3464
3465 QualType T;
3466 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3467 T = TD->getUnderlyingType();
3468 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3469 T = VD->getType();
3470 else
3471 llvm_unreachable("Unknown decl type for align_value");
3472
3473 if (!T->isDependentType() && !T->isAnyPointerType() &&
3474 !T->isReferenceType() && !T->isMemberPointerType()) {
3475 Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only)
3476 << &TmpAttr /*TmpAttr.getName()*/ << T << D->getSourceRange();
3477 return;
3478 }
3479
3480 if (!E->isValueDependent()) {
David Majnemer0be6bd02015-07-26 09:02:21 +00003481 llvm::APSInt Alignment;
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003482 ExprResult ICE
3483 = VerifyIntegerConstantExpression(E, &Alignment,
3484 diag::err_align_value_attribute_argument_not_int,
3485 /*AllowFold*/ false);
3486 if (ICE.isInvalid())
3487 return;
3488
3489 if (!Alignment.isPowerOf2()) {
3490 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3491 << E->getSourceRange();
3492 return;
3493 }
3494
3495 D->addAttr(::new (Context)
3496 AlignValueAttr(AttrRange, Context, ICE.get(),
3497 SpellingListIndex));
3498 return;
3499 }
3500
3501 // Save dependent expressions in the AST to be instantiated.
3502 D->addAttr(::new (Context) AlignValueAttr(TmpAttr));
Hal Finkel1b0d24e2014-10-02 21:21:25 +00003503}
3504
Chandler Carruthedc2c642011-07-02 00:01:44 +00003505static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003506 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00003507 if (Attr.getNumArgs() > 1) {
Aaron Ballmanb7243382013-07-23 19:30:11 +00003508 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3509 << Attr.getName() << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003510 return;
3511 }
Aaron Ballman478faed2012-06-19 22:09:27 +00003512
Richard Smith848e1f12013-02-01 08:12:08 +00003513 if (Attr.getNumArgs() == 0) {
3514 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
Craig Topperc3ec1492014-05-26 06:22:03 +00003515 true, nullptr, Attr.getAttributeSpellingListIndex()));
Richard Smith848e1f12013-02-01 08:12:08 +00003516 return;
3517 }
3518
Aaron Ballman00e99962013-08-31 01:11:41 +00003519 Expr *E = Attr.getArgAsExpr(0);
Richard Smith44c247f2013-02-22 08:32:16 +00003520 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3521 S.Diag(Attr.getEllipsisLoc(),
3522 diag::err_pack_expansion_without_parameter_packs);
3523 return;
3524 }
3525
3526 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3527 return;
3528
David Majnemer26a1e0e2015-04-07 02:37:09 +00003529 if (E->isValueDependent()) {
3530 if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) {
3531 if (!TND->getUnderlyingType()->isDependentType()) {
3532 S.Diag(Attr.getLoc(), diag::err_alignment_dependent_typedef_name)
3533 << E->getSourceRange();
3534 return;
3535 }
3536 }
3537 }
3538
Richard Smith44c247f2013-02-22 08:32:16 +00003539 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3540 Attr.isPackExpansion());
Richard Smith848e1f12013-02-01 08:12:08 +00003541}
3542
3543void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smith44c247f2013-02-22 08:32:16 +00003544 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smith848e1f12013-02-01 08:12:08 +00003545 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3546 SourceLocation AttrLoc = AttrRange.getBegin();
3547
Richard Smith1dba27c2013-01-29 09:02:09 +00003548 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smith848e1f12013-02-01 08:12:08 +00003549 if (TmpAttr.isAlignas()) {
Richard Smith1dba27c2013-01-29 09:02:09 +00003550 // C++11 [dcl.align]p1:
3551 // An alignment-specifier may be applied to a variable or to a class
3552 // data member, but it shall not be applied to a bit-field, a function
3553 // parameter, the formal parameter of a catch clause, or a variable
3554 // declared with the register storage class specifier. An
3555 // alignment-specifier may also be applied to the declaration of a class
3556 // or enumeration type.
3557 // C11 6.7.5/2:
3558 // An alignment attribute shall not be specified in a declaration of
3559 // a typedef, or a bit-field, or a function, or a parameter, or an
3560 // object declared with the register storage-class specifier.
3561 int DiagKind = -1;
3562 if (isa<ParmVarDecl>(D)) {
3563 DiagKind = 0;
3564 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3565 if (VD->getStorageClass() == SC_Register)
3566 DiagKind = 1;
3567 if (VD->isExceptionVariable())
3568 DiagKind = 2;
3569 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3570 if (FD->isBitField())
3571 DiagKind = 3;
3572 } else if (!isa<TagDecl>(D)) {
Aaron Ballman3d216a52014-01-02 23:39:11 +00003573 Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr
Richard Smith9eaab4b2013-02-01 08:25:07 +00003574 << (TmpAttr.isC11() ? ExpectedVariableOrField
3575 : ExpectedVariableFieldOrTag);
Richard Smith1dba27c2013-01-29 09:02:09 +00003576 return;
3577 }
3578 if (DiagKind != -1) {
Richard Smith848e1f12013-02-01 08:12:08 +00003579 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Aaron Ballman3d216a52014-01-02 23:39:11 +00003580 << &TmpAttr << DiagKind;
Richard Smith1dba27c2013-01-29 09:02:09 +00003581 return;
3582 }
3583 }
3584
Chandler Carruthf40c42f2010-06-25 03:22:07 +00003585 if (E->isTypeDependent() || E->isValueDependent()) {
3586 // Save dependent expressions in the AST to be instantiated.
Richard Smith44c247f2013-02-22 08:32:16 +00003587 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3588 AA->setPackExpansion(IsPackExpansion);
3589 D->addAttr(AA);
Chandler Carruthf40c42f2010-06-25 03:22:07 +00003590 return;
3591 }
Michael Hanaf02bbe2013-02-01 01:19:17 +00003592
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003593 // FIXME: Cache the number on the Attr object?
David Majnemer0be6bd02015-07-26 09:02:21 +00003594 llvm::APSInt Alignment;
Douglas Gregore2b37442012-05-04 22:38:52 +00003595 ExprResult ICE
3596 = VerifyIntegerConstantExpression(E, &Alignment,
3597 diag::err_aligned_attribute_argument_not_int,
3598 /*AllowFold*/ false);
Richard Smithf4c51d92012-02-04 09:53:13 +00003599 if (ICE.isInvalid())
Chris Lattner4627b742008-06-28 23:50:44 +00003600 return;
Richard Smith848e1f12013-02-01 08:12:08 +00003601
David Majnemer0be6bd02015-07-26 09:02:21 +00003602 uint64_t AlignVal = Alignment.getZExtValue();
3603
Richard Smith848e1f12013-02-01 08:12:08 +00003604 // C++11 [dcl.align]p2:
3605 // -- if the constant expression evaluates to zero, the alignment
3606 // specifier shall have no effect
3607 // C11 6.7.5p6:
3608 // An alignment specification of zero has no effect.
Paul Robinsond30e2ee2015-07-14 20:52:32 +00003609 if (!(TmpAttr.isAlignas() && !Alignment)) {
David Majnemer0be6bd02015-07-26 09:02:21 +00003610 if (!llvm::isPowerOf2_64(AlignVal)) {
Paul Robinsond30e2ee2015-07-14 20:52:32 +00003611 Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3612 << E->getSourceRange();
3613 return;
3614 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00003615 }
Michael Hanaf02bbe2013-02-01 01:19:17 +00003616
David Majnemerabecae72014-02-12 20:36:10 +00003617 // Alignment calculations can wrap around if it's greater than 2**28.
David Majnemer29c69db2015-07-26 01:48:59 +00003618 unsigned MaxValidAlignment =
3619 Context.getTargetInfo().getTriple().isOSBinFormatCOFF() ? 8192
3620 : 268435456;
David Majnemer0be6bd02015-07-26 09:02:21 +00003621 if (AlignVal > MaxValidAlignment) {
David Majnemerabecae72014-02-12 20:36:10 +00003622 Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment
3623 << E->getSourceRange();
3624 return;
Aaron Ballman478faed2012-06-19 22:09:27 +00003625 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00003626
David Majnemer0be6bd02015-07-26 09:02:21 +00003627 if (Context.getTargetInfo().isTLSSupported()) {
3628 unsigned MaxTLSAlign =
3629 Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign())
3630 .getQuantity();
3631 auto *VD = dyn_cast<VarDecl>(D);
3632 if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD &&
3633 VD->getTLSKind() != VarDecl::TLS_None) {
3634 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
3635 << (unsigned)AlignVal << VD << MaxTLSAlign;
3636 return;
3637 }
3638 }
3639
Richard Smith44c247f2013-02-22 08:32:16 +00003640 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003641 ICE.get(), SpellingListIndex);
Richard Smith44c247f2013-02-22 08:32:16 +00003642 AA->setPackExpansion(IsPackExpansion);
3643 D->addAttr(AA);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003644}
3645
Michael Hanaf02bbe2013-02-01 01:19:17 +00003646void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smith44c247f2013-02-22 08:32:16 +00003647 unsigned SpellingListIndex, bool IsPackExpansion) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003648 // FIXME: Cache the number on the Attr object if non-dependent?
3649 // FIXME: Perform checking of type validity
Richard Smith44c247f2013-02-22 08:32:16 +00003650 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3651 SpellingListIndex);
3652 AA->setPackExpansion(IsPackExpansion);
3653 D->addAttr(AA);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00003654}
Chris Lattneracbc2d22008-06-27 22:18:37 +00003655
Richard Smith848e1f12013-02-01 08:12:08 +00003656void Sema::CheckAlignasUnderalignment(Decl *D) {
3657 assert(D->hasAttrs() && "no attributes on decl");
3658
David Majnemer475b25e2015-01-21 10:54:38 +00003659 QualType UnderlyingTy, DiagTy;
3660 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
3661 UnderlyingTy = DiagTy = VD->getType();
3662 } else {
3663 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D));
3664 if (EnumDecl *ED = dyn_cast<EnumDecl>(D))
3665 UnderlyingTy = ED->getIntegerType();
3666 }
3667 if (DiagTy->isDependentType() || DiagTy->isIncompleteType())
Richard Smith848e1f12013-02-01 08:12:08 +00003668 return;
3669
3670 // C++11 [dcl.align]p5, C11 6.7.5/4:
3671 // The combined effect of all alignment attributes in a declaration shall
3672 // not specify an alignment that is less strict than the alignment that
3673 // would otherwise be required for the entity being declared.
Craig Topperc3ec1492014-05-26 06:22:03 +00003674 AlignedAttr *AlignasAttr = nullptr;
Richard Smith848e1f12013-02-01 08:12:08 +00003675 unsigned Align = 0;
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003676 for (auto *I : D->specific_attrs<AlignedAttr>()) {
Richard Smith848e1f12013-02-01 08:12:08 +00003677 if (I->isAlignmentDependent())
3678 return;
3679 if (I->isAlignas())
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00003680 AlignasAttr = I;
Richard Smith848e1f12013-02-01 08:12:08 +00003681 Align = std::max(Align, I->getAlignment(Context));
3682 }
3683
3684 if (AlignasAttr && Align) {
3685 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
David Majnemer475b25e2015-01-21 10:54:38 +00003686 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy);
Richard Smith848e1f12013-02-01 08:12:08 +00003687 if (NaturalAlign > RequestedAlign)
3688 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
David Majnemer475b25e2015-01-21 10:54:38 +00003689 << DiagTy << (unsigned)NaturalAlign.getQuantity();
Richard Smith848e1f12013-02-01 08:12:08 +00003690 }
3691}
3692
David Majnemer2c4e00a2014-01-29 22:07:36 +00003693bool Sema::checkMSInheritanceAttrOnDefinition(
David Majnemer4bb09802014-02-10 19:50:15 +00003694 CXXRecordDecl *RD, SourceRange Range, bool BestCase,
David Majnemer2c4e00a2014-01-29 22:07:36 +00003695 MSInheritanceAttr::Spelling SemanticSpelling) {
3696 assert(RD->hasDefinition() && "RD has no definition!");
3697
David Majnemer98c9ee22014-02-07 00:43:07 +00003698 // We may not have seen base specifiers or any virtual methods yet. We will
3699 // have to wait until the record is defined to catch any mismatches.
3700 if (!RD->getDefinition()->isCompleteDefinition())
3701 return false;
David Majnemer2c4e00a2014-01-29 22:07:36 +00003702
David Majnemer98c9ee22014-02-07 00:43:07 +00003703 // The unspecified model never matches what a definition could need.
3704 if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance)
3705 return false;
3706
David Majnemer4bb09802014-02-10 19:50:15 +00003707 if (BestCase) {
3708 if (RD->calculateInheritanceModel() == SemanticSpelling)
3709 return false;
3710 } else {
3711 if (RD->calculateInheritanceModel() <= SemanticSpelling)
3712 return false;
3713 }
David Majnemer98c9ee22014-02-07 00:43:07 +00003714
3715 Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance)
3716 << 0 /*definition*/;
3717 Diag(RD->getDefinition()->getLocation(), diag::note_defined_here)
3718 << RD->getNameAsString();
3719 return true;
David Majnemer2c4e00a2014-01-29 22:07:36 +00003720}
3721
Alexey Bataevf278eb12015-11-19 10:13:11 +00003722/// parseModeAttrArg - Parses attribute mode string and returns parsed type
3723/// attribute.
3724static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth,
3725 bool &IntegerMode, bool &ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003726 IntegerMode = true;
3727 ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00003728 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00003729 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00003730 switch (Str[0]) {
Alexey Bataevf278eb12015-11-19 10:13:11 +00003731 case 'Q':
3732 DestWidth = 8;
3733 break;
3734 case 'H':
3735 DestWidth = 16;
3736 break;
3737 case 'S':
3738 DestWidth = 32;
3739 break;
3740 case 'D':
3741 DestWidth = 64;
3742 break;
3743 case 'X':
3744 DestWidth = 96;
3745 break;
3746 case 'T':
3747 DestWidth = 128;
3748 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00003749 }
3750 if (Str[1] == 'F') {
3751 IntegerMode = false;
3752 } else if (Str[1] == 'C') {
3753 IntegerMode = false;
3754 ComplexMode = true;
3755 } else if (Str[1] != 'I') {
3756 DestWidth = 0;
3757 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003758 break;
3759 case 4:
3760 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3761 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00003762 if (Str == "word")
Reid Klecknerf27e7522016-02-01 18:58:24 +00003763 DestWidth = S.Context.getTargetInfo().getRegisterWidth();
Daniel Dunbarafff4342009-10-18 02:09:24 +00003764 else if (Str == "byte")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003765 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00003766 break;
3767 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00003768 if (Str == "pointer")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003769 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00003770 break;
Rafael Espindolaf0dafd32013-01-07 19:58:54 +00003771 case 11:
3772 if (Str == "unwind_word")
Rafael Espindola03705972013-01-07 20:01:57 +00003773 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindolaf0dafd32013-01-07 19:58:54 +00003774 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003775 }
Alexey Bataevf278eb12015-11-19 10:13:11 +00003776}
3777
3778/// handleModeAttr - This attribute modifies the width of a decl with primitive
3779/// type.
3780///
3781/// Despite what would be logical, the mode attribute is a decl attribute, not a
3782/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3783/// HImode, not an intermediate pointer.
3784static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3785 // This attribute isn't documented, but glibc uses it. It changes
3786 // the width of an int or unsigned int to the specified size.
3787 if (!Attr.isArgIdent(0)) {
3788 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3789 << AANT_ArgumentIdentifier;
3790 return;
3791 }
3792
3793 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
Alexey Bataevf278eb12015-11-19 10:13:11 +00003794
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003795 S.AddModeAttr(Attr.getRange(), D, Name, Attr.getAttributeSpellingListIndex());
3796}
3797
3798void Sema::AddModeAttr(SourceRange AttrRange, Decl *D, IdentifierInfo *Name,
3799 unsigned SpellingListIndex, bool InInstantiation) {
3800 StringRef Str = Name->getName();
Alexey Bataevf278eb12015-11-19 10:13:11 +00003801 normalizeName(Str);
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003802 SourceLocation AttrLoc = AttrRange.getBegin();
Alexey Bataevf278eb12015-11-19 10:13:11 +00003803
3804 unsigned DestWidth = 0;
3805 bool IntegerMode = true;
3806 bool ComplexMode = false;
3807 llvm::APInt VectorSize(64, 0);
3808 if (Str.size() >= 4 && Str[0] == 'V') {
3809 // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2).
3810 size_t StrSize = Str.size();
3811 size_t VectorStringLength = 0;
3812 while ((VectorStringLength + 1) < StrSize &&
3813 isdigit(Str[VectorStringLength + 1]))
3814 ++VectorStringLength;
3815 if (VectorStringLength &&
3816 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) &&
3817 VectorSize.isPowerOf2()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003818 parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth,
Alexey Bataevf278eb12015-11-19 10:13:11 +00003819 IntegerMode, ComplexMode);
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003820 // Avoid duplicate warning from template instantiation.
3821 if (!InInstantiation)
3822 Diag(AttrLoc, diag::warn_vector_mode_deprecated);
Alexey Bataevf278eb12015-11-19 10:13:11 +00003823 } else {
3824 VectorSize = 0;
3825 }
3826 }
3827
3828 if (!VectorSize)
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003829 parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode);
3830
3831 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3832 // and friends, at least with glibc.
3833 // FIXME: Make sure floating-point mappings are accurate
3834 // FIXME: Support XF and TF types
3835 if (!DestWidth) {
3836 Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name;
3837 return;
3838 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003839
3840 QualType OldTy;
Richard Smithdda56e42011-04-15 14:24:37 +00003841 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattneracbc2d22008-06-27 22:18:37 +00003842 OldTy = TD->getUnderlyingType();
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003843 else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
3844 // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'.
3845 // Try to get type from enum declaration, default to int.
3846 OldTy = ED->getIntegerType();
3847 if (OldTy.isNull())
3848 OldTy = Context.IntTy;
3849 } else
Aaron Ballman6c8848a2016-01-19 22:54:26 +00003850 OldTy = cast<ValueDecl>(D)->getType();
Eli Friedman4735374e2009-03-03 06:41:03 +00003851
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003852 if (OldTy->isDependentType()) {
3853 D->addAttr(::new (Context)
3854 ModeAttr(AttrRange, Context, Name, SpellingListIndex));
3855 return;
3856 }
3857
Alexey Bataev326057d2015-06-19 07:46:21 +00003858 // Base type can also be a vector type (see PR17453).
3859 // Distinguish between base type and base element type.
3860 QualType OldElemTy = OldTy;
3861 if (const VectorType *VT = OldTy->getAs<VectorType>())
3862 OldElemTy = VT->getElementType();
3863
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003864 // GCC allows 'mode' attribute on enumeration types (even incomplete), except
3865 // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete
3866 // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected.
3867 if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) &&
3868 VectorSize.getBoolValue()) {
3869 Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << AttrRange;
3870 return;
3871 }
3872 bool IntegralOrAnyEnumType =
3873 OldElemTy->isIntegralOrEnumerationType() || OldElemTy->getAs<EnumType>();
3874
3875 if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() &&
3876 !IntegralOrAnyEnumType)
3877 Diag(AttrLoc, diag::err_mode_not_primitive);
Eli Friedman4735374e2009-03-03 06:41:03 +00003878 else if (IntegerMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003879 if (!IntegralOrAnyEnumType)
3880 Diag(AttrLoc, diag::err_mode_wrong_type);
Eli Friedman4735374e2009-03-03 06:41:03 +00003881 } else if (ComplexMode) {
Alexey Bataev326057d2015-06-19 07:46:21 +00003882 if (!OldElemTy->isComplexType())
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003883 Diag(AttrLoc, diag::err_mode_wrong_type);
Eli Friedman4735374e2009-03-03 06:41:03 +00003884 } else {
Alexey Bataev326057d2015-06-19 07:46:21 +00003885 if (!OldElemTy->isFloatingType())
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003886 Diag(AttrLoc, diag::err_mode_wrong_type);
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00003887 }
3888
Alexey Bataev326057d2015-06-19 07:46:21 +00003889 QualType NewElemTy;
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00003890
3891 if (IntegerMode)
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003892 NewElemTy = Context.getIntTypeForBitwidth(DestWidth,
3893 OldElemTy->isSignedIntegerType());
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00003894 else
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003895 NewElemTy = Context.getRealTypeForBitwidth(DestWidth);
Stepan Dyatkovskiyb88c30f2013-09-18 09:08:52 +00003896
Alexey Bataev326057d2015-06-19 07:46:21 +00003897 if (NewElemTy.isNull()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003898 Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003899 return;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003900 }
3901
Eli Friedman4735374e2009-03-03 06:41:03 +00003902 if (ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003903 NewElemTy = Context.getComplexType(NewElemTy);
Alexey Bataev326057d2015-06-19 07:46:21 +00003904 }
3905
3906 QualType NewTy = NewElemTy;
Alexey Bataevf278eb12015-11-19 10:13:11 +00003907 if (VectorSize.getBoolValue()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003908 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(),
3909 VectorType::GenericVector);
Alexey Bataevf278eb12015-11-19 10:13:11 +00003910 } else if (const VectorType *OldVT = OldTy->getAs<VectorType>()) {
Alexey Bataev326057d2015-06-19 07:46:21 +00003911 // Complex machine mode does not support base vector types.
3912 if (ComplexMode) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003913 Diag(AttrLoc, diag::err_complex_mode_vector_type);
Alexey Bataev326057d2015-06-19 07:46:21 +00003914 return;
3915 }
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003916 unsigned NumElements = Context.getTypeSize(OldElemTy) *
Alexey Bataev326057d2015-06-19 07:46:21 +00003917 OldVT->getNumElements() /
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003918 Context.getTypeSize(NewElemTy);
Alexey Bataev326057d2015-06-19 07:46:21 +00003919 NewTy =
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003920 Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind());
Alexey Bataev326057d2015-06-19 07:46:21 +00003921 }
3922
3923 if (NewTy.isNull()) {
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003924 Diag(AttrLoc, diag::err_mode_wrong_type);
Alexey Bataev326057d2015-06-19 07:46:21 +00003925 return;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003926 }
3927
3928 // Install the new type.
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00003929 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3930 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003931 else if (EnumDecl *ED = dyn_cast<EnumDecl>(D))
3932 ED->setIntegerType(NewTy);
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00003933 else
Aaron Ballman6c8848a2016-01-19 22:54:26 +00003934 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellaa86d88c2013-06-20 12:46:19 +00003935
Denis Zobnind9e2dcd2016-02-02 13:50:39 +00003936 D->addAttr(::new (Context)
3937 ModeAttr(AttrRange, Context, Name, SpellingListIndex));
Chris Lattneracbc2d22008-06-27 22:18:37 +00003938}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003939
Chandler Carruthedc2c642011-07-02 00:01:44 +00003940static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han99315932013-01-24 16:46:58 +00003941 D->addAttr(::new (S.Context)
3942 NoDebugAttr(Attr.getRange(), S.Context,
3943 Attr.getAttributeSpellingListIndex()));
Anders Carlsson76187b42009-02-13 06:46:13 +00003944}
3945
Paul Robinson30e41fb2014-12-15 18:57:28 +00003946AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D, SourceRange Range,
Paul Robinson080b1f32015-01-13 18:34:56 +00003947 IdentifierInfo *Ident,
Paul Robinson30e41fb2014-12-15 18:57:28 +00003948 unsigned AttrSpellingListIndex) {
3949 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
Paul Robinson080b1f32015-01-13 18:34:56 +00003950 Diag(Range.getBegin(), diag::warn_attribute_ignored) << Ident;
Paul Robinson30e41fb2014-12-15 18:57:28 +00003951 Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
3952 return nullptr;
3953 }
3954
3955 if (D->hasAttr<AlwaysInlineAttr>())
3956 return nullptr;
3957
3958 return ::new (Context) AlwaysInlineAttr(Range, Context,
3959 AttrSpellingListIndex);
3960}
3961
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00003962CommonAttr *Sema::mergeCommonAttr(Decl *D, SourceRange Range,
3963 IdentifierInfo *Ident,
3964 unsigned AttrSpellingListIndex) {
3965 if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, Range, Ident))
3966 return nullptr;
3967
3968 return ::new (Context) CommonAttr(Range, Context, AttrSpellingListIndex);
3969}
3970
3971InternalLinkageAttr *
3972Sema::mergeInternalLinkageAttr(Decl *D, SourceRange Range,
3973 IdentifierInfo *Ident,
3974 unsigned AttrSpellingListIndex) {
3975 if (auto VD = dyn_cast<VarDecl>(D)) {
3976 // Attribute applies to Var but not any subclass of it (like ParmVar,
3977 // ImplicitParm or VarTemplateSpecialization).
3978 if (VD->getKind() != Decl::Var) {
3979 Diag(Range.getBegin(), diag::warn_attribute_wrong_decl_type)
3980 << Ident << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
3981 : ExpectedVariableOrFunction);
3982 return nullptr;
3983 }
3984 // Attribute does not apply to non-static local variables.
3985 if (VD->hasLocalStorage()) {
3986 Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
3987 return nullptr;
3988 }
3989 }
3990
3991 if (checkAttrMutualExclusion<CommonAttr>(*this, D, Range, Ident))
3992 return nullptr;
3993
3994 return ::new (Context)
3995 InternalLinkageAttr(Range, Context, AttrSpellingListIndex);
3996}
3997
Paul Robinson30e41fb2014-12-15 18:57:28 +00003998MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, SourceRange Range,
3999 unsigned AttrSpellingListIndex) {
4000 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4001 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'minsize'";
4002 Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4003 return nullptr;
4004 }
4005
4006 if (D->hasAttr<MinSizeAttr>())
4007 return nullptr;
4008
4009 return ::new (Context) MinSizeAttr(Range, Context, AttrSpellingListIndex);
4010}
4011
4012OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D, SourceRange Range,
4013 unsigned AttrSpellingListIndex) {
4014 if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) {
4015 Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline;
4016 Diag(Range.getBegin(), diag::note_conflicting_attribute);
4017 D->dropAttr<AlwaysInlineAttr>();
4018 }
4019 if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) {
4020 Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize;
4021 Diag(Range.getBegin(), diag::note_conflicting_attribute);
4022 D->dropAttr<MinSizeAttr>();
4023 }
4024
4025 if (D->hasAttr<OptimizeNoneAttr>())
4026 return nullptr;
4027
4028 return ::new (Context) OptimizeNoneAttr(Range, Context,
4029 AttrSpellingListIndex);
4030}
4031
Paul Robinsonf0674352014-03-31 22:29:15 +00004032static void handleAlwaysInlineAttr(Sema &S, Decl *D,
4033 const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004034 if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, Attr.getRange(),
Charles Davis0e379112016-08-08 21:19:08 +00004035 Attr.getName()))
Akira Hatanakac8667622015-11-06 23:56:15 +00004036 return;
4037
Paul Robinson080b1f32015-01-13 18:34:56 +00004038 if (AlwaysInlineAttr *Inline = S.mergeAlwaysInlineAttr(
4039 D, Attr.getRange(), Attr.getName(),
4040 Attr.getAttributeSpellingListIndex()))
4041 D->addAttr(Inline);
Paul Robinsonf0674352014-03-31 22:29:15 +00004042}
4043
Paul Robinson080b1f32015-01-13 18:34:56 +00004044static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4045 if (MinSizeAttr *MinSize = S.mergeMinSizeAttr(
4046 D, Attr.getRange(), Attr.getAttributeSpellingListIndex()))
4047 D->addAttr(MinSize);
Paul Robinsonaae2fba2014-12-10 23:34:36 +00004048}
4049
Paul Robinsonf0674352014-03-31 22:29:15 +00004050static void handleOptimizeNoneAttr(Sema &S, Decl *D,
4051 const AttributeList &Attr) {
Paul Robinson080b1f32015-01-13 18:34:56 +00004052 if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr(
4053 D, Attr.getRange(), Attr.getAttributeSpellingListIndex()))
4054 D->addAttr(Optnone);
Paul Robinsonf0674352014-03-31 22:29:15 +00004055}
4056
Justin Lebare71b2fa2016-09-30 23:57:34 +00004057static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4058 if (checkAttrMutualExclusion<CUDASharedAttr>(S, D, Attr.getRange(),
4059 Attr.getName()))
4060 return;
4061 auto *VD = cast<VarDecl>(D);
4062 if (!VD->hasGlobalStorage()) {
4063 S.Diag(Attr.getLoc(), diag::err_cuda_nonglobal_constant);
4064 return;
4065 }
4066 D->addAttr(::new (S.Context) CUDAConstantAttr(
4067 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
4068}
4069
Justin Lebar10411012016-09-30 23:57:30 +00004070static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4071 if (checkAttrMutualExclusion<CUDAConstantAttr>(S, D, Attr.getRange(),
4072 Attr.getName()))
4073 return;
4074 auto *VD = cast<VarDecl>(D);
Justin Lebar281ce2a2016-10-02 15:24:50 +00004075 // extern __shared__ is only allowed on arrays with no length (e.g.
4076 // "int x[]").
4077 if (VD->hasExternalStorage() && !isa<IncompleteArrayType>(VD->getType())) {
Justin Lebar10411012016-09-30 23:57:30 +00004078 S.Diag(Attr.getLoc(), diag::err_cuda_extern_shared) << VD;
4079 return;
4080 }
Justin Lebaraa370bd2016-10-13 18:45:13 +00004081 if (S.getLangOpts().CUDA && VD->hasLocalStorage() &&
4082 S.CUDADiagIfHostCode(Attr.getLoc(), diag::err_cuda_host_shared)
4083 << S.CurrentCUDATarget())
4084 return;
Justin Lebar10411012016-09-30 23:57:30 +00004085 D->addAttr(::new (S.Context) CUDASharedAttr(
4086 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
4087}
4088
Chandler Carruthedc2c642011-07-02 00:01:44 +00004089static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Justin Lebar3eaaf862016-01-13 01:07:35 +00004090 if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, Attr.getRange(),
4091 Attr.getName()) ||
4092 checkAttrMutualExclusion<CUDAHostAttr>(S, D, Attr.getRange(),
4093 Attr.getName())) {
4094 return;
4095 }
Aaron Ballman3aff6332013-12-02 19:30:36 +00004096 FunctionDecl *FD = cast<FunctionDecl>(D);
Alp Toker314cc812014-01-25 16:55:45 +00004097 if (!FD->getReturnType()->isVoidType()) {
Alp Tokerf5b10792014-07-02 12:55:58 +00004098 SourceRange RTRange = FD->getReturnTypeSourceRange();
4099 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
Aaron Ballman3aff6332013-12-02 19:30:36 +00004100 << FD->getType()
Alp Tokerf5b10792014-07-02 12:55:58 +00004101 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
4102 : FixItHint());
Aaron Ballman3aff6332013-12-02 19:30:36 +00004103 return;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004104 }
Justin Lebarc66a1062016-01-20 00:26:57 +00004105 if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) {
4106 if (Method->isInstance()) {
4107 S.Diag(Method->getLocStart(), diag::err_kern_is_nonstatic_method)
4108 << Method;
4109 return;
4110 }
4111 S.Diag(Method->getLocStart(), diag::warn_kern_is_method) << Method;
4112 }
4113 // Only warn for "inline" when compiling for host, to cut down on noise.
4114 if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice)
4115 S.Diag(FD->getLocStart(), diag::warn_kern_is_inline) << FD;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004116
Aaron Ballman3aff6332013-12-02 19:30:36 +00004117 D->addAttr(::new (S.Context)
4118 CUDAGlobalAttr(Attr.getRange(), S.Context,
Eli Bendersky83860042014-09-02 22:00:06 +00004119 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00004120}
4121
Chandler Carruthedc2c642011-07-02 00:01:44 +00004122static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004123 FunctionDecl *Fn = cast<FunctionDecl>(D);
Douglas Gregor35b57532009-10-27 21:01:01 +00004124 if (!Fn->isInlineSpecified()) {
Chris Lattnerddf6ca02009-04-20 19:12:28 +00004125 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00004126 return;
4127 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00004128
Michael Han99315932013-01-24 16:46:58 +00004129 D->addAttr(::new (S.Context)
4130 GNUInlineAttr(Attr.getRange(), S.Context,
4131 Attr.getAttributeSpellingListIndex()));
Chris Lattnereaad6b72009-04-14 16:30:50 +00004132}
4133
Chandler Carruthedc2c642011-07-02 00:01:44 +00004134static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004135 if (hasDeclarator(D)) return;
Abramo Bagnara50099372010-04-30 13:10:51 +00004136
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004137 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall3882ace2011-01-05 12:14:39 +00004138 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
4139 CallingConv CC;
Richard Smitheec7cb12015-05-28 23:38:53 +00004140 if (S.CheckCallingConvAttr(Attr, CC, /*FD*/nullptr))
John McCall3882ace2011-01-05 12:14:39 +00004141 return;
4142
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004143 if (!isa<ObjCMethodDecl>(D)) {
4144 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4145 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00004146 return;
4147 }
4148
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004149 switch (Attr.getKind()) {
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004150 case AttributeList::AT_FastCall:
Michael Han99315932013-01-24 16:46:58 +00004151 D->addAttr(::new (S.Context)
4152 FastCallAttr(Attr.getRange(), S.Context,
4153 Attr.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004154 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004155 case AttributeList::AT_StdCall:
Michael Han99315932013-01-24 16:46:58 +00004156 D->addAttr(::new (S.Context)
4157 StdCallAttr(Attr.getRange(), S.Context,
4158 Attr.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004159 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004160 case AttributeList::AT_ThisCall:
Michael Han99315932013-01-24 16:46:58 +00004161 D->addAttr(::new (S.Context)
4162 ThisCallAttr(Attr.getRange(), S.Context,
4163 Attr.getAttributeSpellingListIndex()));
Douglas Gregor4d13d102010-08-30 23:30:49 +00004164 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004165 case AttributeList::AT_CDecl:
Michael Han99315932013-01-24 16:46:58 +00004166 D->addAttr(::new (S.Context)
4167 CDeclAttr(Attr.getRange(), S.Context,
4168 Attr.getAttributeSpellingListIndex()));
Abramo Bagnara50099372010-04-30 13:10:51 +00004169 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004170 case AttributeList::AT_Pascal:
Michael Han99315932013-01-24 16:46:58 +00004171 D->addAttr(::new (S.Context)
4172 PascalAttr(Attr.getRange(), S.Context,
4173 Attr.getAttributeSpellingListIndex()));
Dawn Perchik335e16b2010-09-03 01:29:35 +00004174 return;
John McCall477f2bb2016-03-03 06:39:32 +00004175 case AttributeList::AT_SwiftCall:
4176 D->addAttr(::new (S.Context)
4177 SwiftCallAttr(Attr.getRange(), S.Context,
4178 Attr.getAttributeSpellingListIndex()));
4179 return;
Reid Klecknerd7857f02014-10-24 17:42:17 +00004180 case AttributeList::AT_VectorCall:
4181 D->addAttr(::new (S.Context)
4182 VectorCallAttr(Attr.getRange(), S.Context,
4183 Attr.getAttributeSpellingListIndex()));
4184 return;
Charles Davisb5a214e2013-08-30 04:39:01 +00004185 case AttributeList::AT_MSABI:
4186 D->addAttr(::new (S.Context)
4187 MSABIAttr(Attr.getRange(), S.Context,
4188 Attr.getAttributeSpellingListIndex()));
4189 return;
4190 case AttributeList::AT_SysVABI:
4191 D->addAttr(::new (S.Context)
4192 SysVABIAttr(Attr.getRange(), S.Context,
4193 Attr.getAttributeSpellingListIndex()));
4194 return;
Erich Keane757d3172016-11-02 18:29:35 +00004195 case AttributeList::AT_RegCall:
4196 D->addAttr(::new (S.Context) RegCallAttr(
4197 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
4198 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004199 case AttributeList::AT_Pcs: {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004200 PcsAttr::PCSType PCS;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004201 switch (CC) {
4202 case CC_AAPCS:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004203 PCS = PcsAttr::AAPCS;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004204 break;
4205 case CC_AAPCS_VFP:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004206 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer25885f42012-08-14 13:24:39 +00004207 break;
4208 default:
4209 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004210 }
4211
Michael Han99315932013-01-24 16:46:58 +00004212 D->addAttr(::new (S.Context)
4213 PcsAttr(Attr.getRange(), S.Context, PCS,
4214 Attr.getAttributeSpellingListIndex()));
Derek Schuffa2020962012-10-16 22:30:41 +00004215 return;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004216 }
Guy Benyeif0a014b2012-12-25 08:53:55 +00004217 case AttributeList::AT_IntelOclBicc:
Michael Han99315932013-01-24 16:46:58 +00004218 D->addAttr(::new (S.Context)
4219 IntelOclBiccAttr(Attr.getRange(), S.Context,
4220 Attr.getAttributeSpellingListIndex()));
Guy Benyeif0a014b2012-12-25 08:53:55 +00004221 return;
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004222 case AttributeList::AT_PreserveMost:
4223 D->addAttr(::new (S.Context) PreserveMostAttr(
4224 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
4225 return;
4226 case AttributeList::AT_PreserveAll:
4227 D->addAttr(::new (S.Context) PreserveAllAttr(
4228 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
4229 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00004230 default:
4231 llvm_unreachable("unexpected attribute kind");
Abramo Bagnara50099372010-04-30 13:10:51 +00004232 }
4233}
4234
Matthias Gehre01a63382017-03-27 19:45:24 +00004235static void handleSuppressAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4236 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
4237 return;
4238
4239 std::vector<StringRef> DiagnosticIdentifiers;
4240 for (unsigned I = 0, E = Attr.getNumArgs(); I != E; ++I) {
4241 StringRef RuleName;
4242
4243 if (!S.checkStringLiteralArgumentAttr(Attr, I, RuleName, nullptr))
4244 return;
4245
4246 // FIXME: Warn if the rule name is unknown. This is tricky because only
4247 // clang-tidy knows about available rules.
4248 DiagnosticIdentifiers.push_back(RuleName);
4249 }
4250 D->addAttr(::new (S.Context) SuppressAttr(
4251 Attr.getRange(), S.Context, DiagnosticIdentifiers.data(),
4252 DiagnosticIdentifiers.size(), Attr.getAttributeSpellingListIndex()));
4253}
4254
Aaron Ballman02df2e02012-12-09 17:45:41 +00004255bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
4256 const FunctionDecl *FD) {
John McCall3882ace2011-01-05 12:14:39 +00004257 if (attr.isInvalid())
4258 return true;
4259
John McCall3b5a8f52016-03-03 00:10:03 +00004260 if (attr.hasProcessingCache()) {
4261 CC = (CallingConv) attr.getProcessingCache();
4262 return false;
4263 }
4264
Benjamin Kramer833fb9f2012-08-14 13:13:47 +00004265 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman00e99962013-08-31 01:11:41 +00004266 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall3882ace2011-01-05 12:14:39 +00004267 attr.setInvalid();
4268 return true;
4269 }
4270
Aaron Ballmanab7691c2014-01-09 22:48:32 +00004271 // TODO: diagnose uses of these conventions on the wrong target.
John McCall3882ace2011-01-05 12:14:39 +00004272 switch (attr.getKind()) {
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004273 case AttributeList::AT_CDecl: CC = CC_C; break;
4274 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
4275 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
4276 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
4277 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
John McCall477f2bb2016-03-03 06:39:32 +00004278 case AttributeList::AT_SwiftCall: CC = CC_Swift; break;
Reid Klecknerd7857f02014-10-24 17:42:17 +00004279 case AttributeList::AT_VectorCall: CC = CC_X86VectorCall; break;
Erich Keane757d3172016-11-02 18:29:35 +00004280 case AttributeList::AT_RegCall: CC = CC_X86RegCall; break;
Charles Davisb5a214e2013-08-30 04:39:01 +00004281 case AttributeList::AT_MSABI:
4282 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
4283 CC_X86_64Win64;
4284 break;
4285 case AttributeList::AT_SysVABI:
4286 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4287 CC_C;
4288 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004289 case AttributeList::AT_Pcs: {
Aaron Ballmand6600a52013-09-13 17:48:25 +00004290 StringRef StrRef;
Tim Northover6a6b63b2013-10-01 14:34:18 +00004291 if (!checkStringLiteralArgumentAttr(attr, 0, StrRef)) {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004292 attr.setInvalid();
4293 return true;
4294 }
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004295 if (StrRef == "aapcs") {
4296 CC = CC_AAPCS;
4297 break;
4298 } else if (StrRef == "aapcs-vfp") {
4299 CC = CC_AAPCS_VFP;
4300 break;
4301 }
Benjamin Kramer833fb9f2012-08-14 13:13:47 +00004302
4303 attr.setInvalid();
4304 Diag(attr.getLoc(), diag::err_invalid_pcs);
4305 return true;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00004306 }
Guy Benyeif0a014b2012-12-25 08:53:55 +00004307 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00004308 case AttributeList::AT_PreserveMost: CC = CC_PreserveMost; break;
4309 case AttributeList::AT_PreserveAll: CC = CC_PreserveAll; break;
David Blaikie8a40f702012-01-17 06:56:22 +00004310 default: llvm_unreachable("unexpected attribute kind");
John McCall3882ace2011-01-05 12:14:39 +00004311 }
4312
Aaron Ballmane91c6be2012-10-02 14:26:08 +00004313 const TargetInfo &TI = Context.getTargetInfo();
4314 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
Reid Kleckner9fde2e02015-02-26 19:43:46 +00004315 if (A != TargetInfo::CCCR_OK) {
4316 if (A == TargetInfo::CCCR_Warning)
4317 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballman02df2e02012-12-09 17:45:41 +00004318
Reid Kleckner9fde2e02015-02-26 19:43:46 +00004319 // This convention is not valid for the target. Use the default function or
4320 // method calling convention.
Alexey Bataeva7547182016-05-18 09:06:38 +00004321 bool IsCXXMethod = false, IsVariadic = false;
4322 if (FD) {
4323 IsCXXMethod = FD->isCXXInstanceMember();
4324 IsVariadic = FD->isVariadic();
4325 }
4326 CC = Context.getDefaultCallingConvention(IsVariadic, IsCXXMethod);
Aaron Ballmane91c6be2012-10-02 14:26:08 +00004327 }
4328
John McCall3b5a8f52016-03-03 00:10:03 +00004329 attr.setProcessingCache((unsigned) CC);
John McCall3882ace2011-01-05 12:14:39 +00004330 return false;
4331}
4332
John McCall477f2bb2016-03-03 06:39:32 +00004333/// Pointer-like types in the default address space.
4334static bool isValidSwiftContextType(QualType type) {
4335 if (!type->hasPointerRepresentation())
4336 return type->isDependentType();
4337 return type->getPointeeType().getAddressSpace() == 0;
4338}
4339
4340/// Pointers and references in the default address space.
4341static bool isValidSwiftIndirectResultType(QualType type) {
4342 if (auto ptrType = type->getAs<PointerType>()) {
4343 type = ptrType->getPointeeType();
4344 } else if (auto refType = type->getAs<ReferenceType>()) {
4345 type = refType->getPointeeType();
4346 } else {
4347 return type->isDependentType();
4348 }
4349 return type.getAddressSpace() == 0;
4350}
4351
4352/// Pointers and references to pointers in the default address space.
4353static bool isValidSwiftErrorResultType(QualType type) {
4354 if (auto ptrType = type->getAs<PointerType>()) {
4355 type = ptrType->getPointeeType();
4356 } else if (auto refType = type->getAs<ReferenceType>()) {
4357 type = refType->getPointeeType();
4358 } else {
4359 return type->isDependentType();
4360 }
4361 if (!type.getQualifiers().empty())
4362 return false;
4363 return isValidSwiftContextType(type);
4364}
4365
4366static void handleParameterABIAttr(Sema &S, Decl *D, const AttributeList &attr,
4367 ParameterABI abi) {
4368 S.AddParameterABIAttr(attr.getRange(), D, abi,
4369 attr.getAttributeSpellingListIndex());
4370}
4371
4372void Sema::AddParameterABIAttr(SourceRange range, Decl *D, ParameterABI abi,
4373 unsigned spellingIndex) {
4374
4375 QualType type = cast<ParmVarDecl>(D)->getType();
4376
4377 if (auto existingAttr = D->getAttr<ParameterABIAttr>()) {
4378 if (existingAttr->getABI() != abi) {
4379 Diag(range.getBegin(), diag::err_attributes_are_not_compatible)
4380 << getParameterABISpelling(abi) << existingAttr;
4381 Diag(existingAttr->getLocation(), diag::note_conflicting_attribute);
4382 return;
4383 }
4384 }
4385
4386 switch (abi) {
4387 case ParameterABI::Ordinary:
4388 llvm_unreachable("explicit attribute for ordinary parameter ABI?");
4389
4390 case ParameterABI::SwiftContext:
4391 if (!isValidSwiftContextType(type)) {
4392 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4393 << getParameterABISpelling(abi)
4394 << /*pointer to pointer */ 0 << type;
4395 }
4396 D->addAttr(::new (Context)
4397 SwiftContextAttr(range, Context, spellingIndex));
4398 return;
4399
4400 case ParameterABI::SwiftErrorResult:
4401 if (!isValidSwiftErrorResultType(type)) {
4402 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4403 << getParameterABISpelling(abi)
4404 << /*pointer to pointer */ 1 << type;
4405 }
4406 D->addAttr(::new (Context)
4407 SwiftErrorResultAttr(range, Context, spellingIndex));
4408 return;
4409
4410 case ParameterABI::SwiftIndirectResult:
4411 if (!isValidSwiftIndirectResultType(type)) {
4412 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4413 << getParameterABISpelling(abi)
4414 << /*pointer*/ 0 << type;
4415 }
4416 D->addAttr(::new (Context)
4417 SwiftIndirectResultAttr(range, Context, spellingIndex));
4418 return;
4419 }
4420 llvm_unreachable("bad parameter ABI attribute");
4421}
4422
John McCall3882ace2011-01-05 12:14:39 +00004423/// Checks a regparm attribute, returning true if it is ill-formed and
4424/// otherwise setting numParams to the appropriate value.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004425bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4426 if (Attr.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00004427 return true;
4428
Aaron Ballmanc2cbc662013-07-18 18:01:48 +00004429 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004430 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004431 return true;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00004432 }
Eli Friedman7044b762009-03-27 21:06:47 +00004433
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00004434 uint32_t NP;
Aaron Ballman00e99962013-08-31 01:11:41 +00004435 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00004436 if (!checkUInt32Argument(*this, Attr, NumParamsExpr, NP)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004437 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004438 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004439 }
4440
Douglas Gregore8bbc122011-09-02 00:18:52 +00004441 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004442 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00004443 << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004444 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004445 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004446 }
4447
Aaron Ballmanf22ef5a2013-11-21 01:50:40 +00004448 numParams = NP;
Douglas Gregore8bbc122011-09-02 00:18:52 +00004449 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004450 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregore8bbc122011-09-02 00:18:52 +00004451 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004452 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00004453 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00004454 }
4455
John McCall3882ace2011-01-05 12:14:39 +00004456 return false;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00004457}
4458
Artem Belevichbcec9da2016-06-06 22:54:57 +00004459// Checks whether an argument of launch_bounds attribute is
4460// acceptable, performs implicit conversion to Rvalue, and returns
4461// non-nullptr Expr result on success. Otherwise, it returns nullptr
4462// and may output an error.
4463static Expr *makeLaunchBoundsArgExpr(Sema &S, Expr *E,
4464 const CUDALaunchBoundsAttr &Attr,
4465 const unsigned Idx) {
Artem Belevich7093e402015-04-21 22:55:54 +00004466 if (S.DiagnoseUnexpandedParameterPack(E))
Artem Belevichbcec9da2016-06-06 22:54:57 +00004467 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004468
4469 // Accept template arguments for now as they depend on something else.
4470 // We'll get to check them when they eventually get instantiated.
4471 if (E->isValueDependent())
Artem Belevichbcec9da2016-06-06 22:54:57 +00004472 return E;
Artem Belevich7093e402015-04-21 22:55:54 +00004473
4474 llvm::APSInt I(64);
4475 if (!E->isIntegerConstantExpr(I, S.Context)) {
4476 S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type)
4477 << &Attr << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange();
Artem Belevichbcec9da2016-06-06 22:54:57 +00004478 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004479 }
4480 // Make sure we can fit it in 32 bits.
4481 if (!I.isIntN(32)) {
4482 S.Diag(E->getExprLoc(), diag::err_ice_too_large) << I.toString(10, false)
4483 << 32 << /* Unsigned */ 1;
Artem Belevichbcec9da2016-06-06 22:54:57 +00004484 return nullptr;
Artem Belevich7093e402015-04-21 22:55:54 +00004485 }
4486 if (I < 0)
4487 S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative)
4488 << &Attr << Idx << E->getSourceRange();
4489
Artem Belevichbcec9da2016-06-06 22:54:57 +00004490 // We may need to perform implicit conversion of the argument.
4491 InitializedEntity Entity = InitializedEntity::InitializeParameter(
4492 S.Context, S.Context.getConstType(S.Context.IntTy), /*consume*/ false);
4493 ExprResult ValArg = S.PerformCopyInitialization(Entity, SourceLocation(), E);
4494 assert(!ValArg.isInvalid() &&
4495 "Unexpected PerformCopyInitialization() failure.");
4496
4497 return ValArg.getAs<Expr>();
Artem Belevich7093e402015-04-21 22:55:54 +00004498}
4499
4500void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads,
4501 Expr *MinBlocks, unsigned SpellingListIndex) {
4502 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks,
4503 SpellingListIndex);
Artem Belevichbcec9da2016-06-06 22:54:57 +00004504 MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0);
4505 if (MaxThreads == nullptr)
Aaron Ballman3aff6332013-12-02 19:30:36 +00004506 return;
4507
Artem Belevichbcec9da2016-06-06 22:54:57 +00004508 if (MinBlocks) {
4509 MinBlocks = makeLaunchBoundsArgExpr(*this, MinBlocks, TmpAttr, 1);
4510 if (MinBlocks == nullptr)
4511 return;
4512 }
Artem Belevich7093e402015-04-21 22:55:54 +00004513
4514 D->addAttr(::new (Context) CUDALaunchBoundsAttr(
4515 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex));
4516}
4517
4518static void handleLaunchBoundsAttr(Sema &S, Decl *D,
4519 const AttributeList &Attr) {
4520 if (!checkAttributeAtLeastNumArgs(S, Attr, 1) ||
4521 !checkAttributeAtMostNumArgs(S, Attr, 2))
4522 return;
4523
4524 S.AddLaunchBoundsAttr(Attr.getRange(), D, Attr.getArgAsExpr(0),
4525 Attr.getNumArgs() > 1 ? Attr.getArgAsExpr(1) : nullptr,
4526 Attr.getAttributeSpellingListIndex());
Peter Collingbourne827301e2010-12-12 23:03:07 +00004527}
4528
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004529static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4530 const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00004531 if (!Attr.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00004532 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3bf758c2013-07-30 01:31:03 +00004533 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004534 return;
4535 }
Aaron Ballman00e99962013-08-31 01:11:41 +00004536
4537 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004538 return;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004539
Aaron Ballman00e99962013-08-31 01:11:41 +00004540 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004541
4542 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4543 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4544 << Attr.getName() << ExpectedFunctionOrMethod;
4545 return;
4546 }
4547
4548 uint64_t ArgumentIdx;
Alp Toker601b22c2014-01-21 23:35:24 +00004549 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 2, Attr.getArgAsExpr(1),
4550 ArgumentIdx))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004551 return;
4552
4553 uint64_t TypeTagIdx;
Alp Toker601b22c2014-01-21 23:35:24 +00004554 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 3, Attr.getArgAsExpr(2),
4555 TypeTagIdx))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004556 return;
4557
Aaron Ballmanfaed0fa2013-12-26 16:30:30 +00004558 bool IsPointer = (Attr.getName()->getName() == "pointer_with_type_tag");
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004559 if (IsPointer) {
4560 // Ensure that buffer has a pointer type.
Alp Toker601b22c2014-01-21 23:35:24 +00004561 QualType BufferTy = getFunctionOrMethodParamType(D, ArgumentIdx);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004562 if (!BufferTy->isPointerType()) {
4563 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00004564 << Attr.getName() << 0;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004565 }
4566 }
4567
Michael Han99315932013-01-24 16:46:58 +00004568 D->addAttr(::new (S.Context)
4569 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4570 ArgumentIdx, TypeTagIdx, IsPointer,
4571 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004572}
4573
4574static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4575 const AttributeList &Attr) {
Aaron Ballman00e99962013-08-31 01:11:41 +00004576 if (!Attr.isArgIdent(0)) {
Aaron Ballman29982272013-07-23 14:03:57 +00004577 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3bf758c2013-07-30 01:31:03 +00004578 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004579 return;
4580 }
Aaron Ballman00e99962013-08-31 01:11:41 +00004581
4582 if (!checkAttributeNumArgs(S, Attr, 1))
4583 return;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004584
Aaron Ballman90f8c6f2013-11-25 18:50:49 +00004585 if (!isa<VarDecl>(D)) {
4586 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4587 << Attr.getName() << ExpectedVariable;
4588 return;
4589 }
4590
Aaron Ballman00e99962013-08-31 01:11:41 +00004591 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Craig Topperc3ec1492014-05-26 06:22:03 +00004592 TypeSourceInfo *MatchingCTypeLoc = nullptr;
Richard Smithb87c4652013-10-31 21:23:20 +00004593 S.GetTypeFromParser(Attr.getMatchingCType(), &MatchingCTypeLoc);
4594 assert(MatchingCTypeLoc && "no type source info for attribute argument");
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004595
Michael Han99315932013-01-24 16:46:58 +00004596 D->addAttr(::new (S.Context)
4597 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
Richard Smithb87c4652013-10-31 21:23:20 +00004598 MatchingCTypeLoc,
Michael Han99315932013-01-24 16:46:58 +00004599 Attr.getLayoutCompatible(),
4600 Attr.getMustBeNull(),
4601 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004602}
4603
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004604static void handleXRayLogArgsAttr(Sema &S, Decl *D,
4605 const AttributeList &Attr) {
4606 uint64_t ArgCount;
Dean Michael Berris7456a282017-06-16 03:22:09 +00004607
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004608 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 1, Attr.getArgAsExpr(0),
Dean Michael Berris7456a282017-06-16 03:22:09 +00004609 ArgCount,
4610 true /* AllowImplicitThis*/))
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004611 return;
4612
4613 // ArgCount isn't a parameter index [0;n), it's a count [1;n] - hence + 1.
4614 D->addAttr(::new (S.Context)
Dean Michael Berris7456a282017-06-16 03:22:09 +00004615 XRayLogArgsAttr(Attr.getRange(), S.Context, ++ArgCount,
4616 Attr.getAttributeSpellingListIndex()));
Dean Michael Berris418da3f2017-03-06 07:08:21 +00004617}
4618
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004619//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004620// Checker-specific attribute handlers.
4621//===----------------------------------------------------------------------===//
4622
Fariborz Jahanian4eba3dc2014-06-12 16:12:30 +00004623static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType type) {
Fariborz Jahanian9c100322014-06-11 21:22:53 +00004624 return type->isDependentType() ||
Fariborz Jahanian4eba3dc2014-06-12 16:12:30 +00004625 type->isObjCRetainableType();
Fariborz Jahanian9c100322014-06-11 21:22:53 +00004626}
4627
John McCalled433932011-01-25 03:31:58 +00004628static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00004629 return type->isDependentType() ||
4630 type->isObjCObjectPointerType() ||
4631 S.Context.isObjCNSObjectType(type);
John McCalled433932011-01-25 03:31:58 +00004632}
Eugene Zelenko1ced5092016-02-12 22:53:10 +00004633
John McCalled433932011-01-25 03:31:58 +00004634static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00004635 return type->isDependentType() ||
4636 type->isPointerType() ||
4637 isValidSubjectOfNSAttribute(S, type);
John McCalled433932011-01-25 03:31:58 +00004638}
4639
Chandler Carruthedc2c642011-07-02 00:01:44 +00004640static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John McCall3b5a8f52016-03-03 00:10:03 +00004641 S.AddNSConsumedAttr(Attr.getRange(), D, Attr.getAttributeSpellingListIndex(),
4642 Attr.getKind() == AttributeList::AT_NSConsumed,
4643 /*template instantiation*/ false);
4644}
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004645
John McCall3b5a8f52016-03-03 00:10:03 +00004646void Sema::AddNSConsumedAttr(SourceRange attrRange, Decl *D,
4647 unsigned spellingIndex, bool isNSConsumed,
4648 bool isTemplateInstantiation) {
4649 ParmVarDecl *param = cast<ParmVarDecl>(D);
4650 bool typeOK;
4651
4652 if (isNSConsumed) {
4653 typeOK = isValidSubjectOfNSAttribute(*this, param->getType());
John McCalled433932011-01-25 03:31:58 +00004654 } else {
John McCall3b5a8f52016-03-03 00:10:03 +00004655 typeOK = isValidSubjectOfCFAttribute(*this, param->getType());
John McCalled433932011-01-25 03:31:58 +00004656 }
4657
4658 if (!typeOK) {
John McCall3b5a8f52016-03-03 00:10:03 +00004659 // These attributes are normally just advisory, but in ARC, ns_consumed
4660 // is significant. Allow non-dependent code to contain inappropriate
4661 // attributes even in ARC, but require template instantiations to be
4662 // set up correctly.
4663 Diag(D->getLocStart(),
4664 (isTemplateInstantiation && isNSConsumed &&
4665 getLangOpts().ObjCAutoRefCount
4666 ? diag::err_ns_attribute_wrong_parameter_type
4667 : diag::warn_ns_attribute_wrong_parameter_type))
4668 << attrRange
4669 << (isNSConsumed ? "ns_consumed" : "cf_consumed")
4670 << (isNSConsumed ? /*objc pointers*/ 0 : /*cf pointers*/ 1);
John McCalled433932011-01-25 03:31:58 +00004671 return;
4672 }
4673
John McCall3b5a8f52016-03-03 00:10:03 +00004674 if (isNSConsumed)
4675 param->addAttr(::new (Context)
4676 NSConsumedAttr(attrRange, Context, spellingIndex));
John McCalled433932011-01-25 03:31:58 +00004677 else
John McCall3b5a8f52016-03-03 00:10:03 +00004678 param->addAttr(::new (Context)
4679 CFConsumedAttr(attrRange, Context, spellingIndex));
John McCalled433932011-01-25 03:31:58 +00004680}
4681
John McCall12251882017-07-15 11:06:46 +00004682bool Sema::checkNSReturnsRetainedReturnType(SourceLocation loc,
4683 QualType type) {
4684 if (isValidSubjectOfNSReturnsRetainedAttribute(type))
4685 return false;
4686
4687 Diag(loc, diag::warn_ns_attribute_wrong_return_type)
4688 << "'ns_returns_retained'" << 0 << 0;
4689 return true;
4690}
4691
Chandler Carruthedc2c642011-07-02 00:01:44 +00004692static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4693 const AttributeList &Attr) {
John McCalled433932011-01-25 03:31:58 +00004694 QualType returnType;
Mike Stumpd3bb5572009-07-24 19:02:52 +00004695
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004696 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00004697 returnType = MD->getReturnType();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004698 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004699 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCall31168b02011-06-15 23:02:42 +00004700 return; // ignore: was handled as a type attribute
Fariborz Jahanian272b7dc2012-08-28 22:26:21 +00004701 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4702 returnType = PD->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004703 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00004704 returnType = FD->getReturnType();
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00004705 else if (auto *Param = dyn_cast<ParmVarDecl>(D)) {
4706 returnType = Param->getType()->getPointeeType();
4707 if (returnType.isNull()) {
4708 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
4709 << Attr.getName() << /*pointer-to-CF*/2
4710 << Attr.getRange();
4711 return;
4712 }
John McCall12251882017-07-15 11:06:46 +00004713 } else if (Attr.isUsedAsTypeAttr()) {
4714 return;
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00004715 } else {
4716 AttributeDeclKind ExpectedDeclKind;
4717 switch (Attr.getKind()) {
4718 default: llvm_unreachable("invalid ownership attribute");
4719 case AttributeList::AT_NSReturnsRetained:
4720 case AttributeList::AT_NSReturnsAutoreleased:
4721 case AttributeList::AT_NSReturnsNotRetained:
4722 ExpectedDeclKind = ExpectedFunctionOrMethod;
4723 break;
4724
4725 case AttributeList::AT_CFReturnsRetained:
4726 case AttributeList::AT_CFReturnsNotRetained:
4727 ExpectedDeclKind = ExpectedFunctionMethodOrParameter;
4728 break;
4729 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004730 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00004731 << Attr.getRange() << Attr.getName() << ExpectedDeclKind;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004732 return;
4733 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00004734
John McCalled433932011-01-25 03:31:58 +00004735 bool typeOK;
4736 bool cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004737 switch (Attr.getKind()) {
David Blaikie8a40f702012-01-17 06:56:22 +00004738 default: llvm_unreachable("invalid ownership attribute");
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004739 case AttributeList::AT_NSReturnsRetained:
Fariborz Jahanian4eba3dc2014-06-12 16:12:30 +00004740 typeOK = isValidSubjectOfNSReturnsRetainedAttribute(returnType);
Fariborz Jahanian9c100322014-06-11 21:22:53 +00004741 cf = false;
4742 break;
4743
4744 case AttributeList::AT_NSReturnsAutoreleased:
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004745 case AttributeList::AT_NSReturnsNotRetained:
John McCalled433932011-01-25 03:31:58 +00004746 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4747 cf = false;
4748 break;
4749
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004750 case AttributeList::AT_CFReturnsRetained:
4751 case AttributeList::AT_CFReturnsNotRetained:
John McCalled433932011-01-25 03:31:58 +00004752 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4753 cf = true;
4754 break;
4755 }
4756
4757 if (!typeOK) {
John McCall12251882017-07-15 11:06:46 +00004758 if (Attr.isUsedAsTypeAttr())
4759 return;
4760
Douglas Gregoreb6e64c2015-06-19 23:17:46 +00004761 if (isa<ParmVarDecl>(D)) {
4762 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
4763 << Attr.getName() << /*pointer-to-CF*/2
4764 << Attr.getRange();
4765 } else {
4766 // Needs to be kept in sync with warn_ns_attribute_wrong_return_type.
4767 enum : unsigned {
4768 Function,
4769 Method,
4770 Property
4771 } SubjectKind = Function;
4772 if (isa<ObjCMethodDecl>(D))
4773 SubjectKind = Method;
4774 else if (isa<ObjCPropertyDecl>(D))
4775 SubjectKind = Property;
4776 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4777 << Attr.getName() << SubjectKind << cf
4778 << Attr.getRange();
4779 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00004780 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00004781 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00004782
Chandler Carruthff4c4f02011-07-01 23:49:12 +00004783 switch (Attr.getKind()) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004784 default:
David Blaikie83d382b2011-09-23 05:06:16 +00004785 llvm_unreachable("invalid ownership attribute");
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004786 case AttributeList::AT_NSReturnsAutoreleased:
Nico Weber462fd1e2015-01-07 23:50:05 +00004787 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(
4788 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
John McCalled433932011-01-25 03:31:58 +00004789 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004790 case AttributeList::AT_CFReturnsNotRetained:
Nico Weber462fd1e2015-01-07 23:50:05 +00004791 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(
4792 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
Ted Kremenekd9c66632010-02-18 00:05:45 +00004793 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004794 case AttributeList::AT_NSReturnsNotRetained:
Nico Weber462fd1e2015-01-07 23:50:05 +00004795 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(
4796 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
Ted Kremenekd9c66632010-02-18 00:05:45 +00004797 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004798 case AttributeList::AT_CFReturnsRetained:
Nico Weber462fd1e2015-01-07 23:50:05 +00004799 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(
4800 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004801 return;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00004802 case AttributeList::AT_NSReturnsRetained:
Nico Weber462fd1e2015-01-07 23:50:05 +00004803 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(
4804 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004805 return;
4806 };
4807}
4808
John McCallcf166702011-07-22 08:53:00 +00004809static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4810 const AttributeList &attr) {
Fariborz Jahanian8bf05562013-09-19 17:52:50 +00004811 const int EP_ObjCMethod = 1;
4812 const int EP_ObjCProperty = 2;
Fariborz Jahanian5c005832013-09-19 17:18:55 +00004813
John McCallcf166702011-07-22 08:53:00 +00004814 SourceLocation loc = attr.getLoc();
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00004815 QualType resultType;
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004816 if (isa<ObjCMethodDecl>(D))
Alp Toker314cc812014-01-25 16:55:45 +00004817 resultType = cast<ObjCMethodDecl>(D)->getReturnType();
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00004818 else
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004819 resultType = cast<ObjCPropertyDecl>(D)->getType();
John McCallcf166702011-07-22 08:53:00 +00004820
Fariborz Jahanian044a5be2011-09-30 20:50:23 +00004821 if (!resultType->isReferenceType() &&
4822 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
Fariborz Jahanian8a5e9472013-09-19 16:37:20 +00004823 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
John McCallcf166702011-07-22 08:53:00 +00004824 << SourceRange(loc)
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004825 << attr.getName()
4826 << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty)
Fariborz Jahanian5c005832013-09-19 17:18:55 +00004827 << /*non-retainable pointer*/ 2;
John McCallcf166702011-07-22 08:53:00 +00004828
4829 // Drop the attribute.
4830 return;
4831 }
4832
Nico Weber462fd1e2015-01-07 23:50:05 +00004833 D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr(
4834 attr.getRange(), S.Context, attr.getAttributeSpellingListIndex()));
John McCallcf166702011-07-22 08:53:00 +00004835}
4836
Fariborz Jahanian566fff02012-09-07 23:46:23 +00004837static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4838 const AttributeList &attr) {
Aaron Ballman74eeeae2013-11-27 13:27:02 +00004839 ObjCMethodDecl *method = cast<ObjCMethodDecl>(D);
Fariborz Jahanian566fff02012-09-07 23:46:23 +00004840
Fariborz Jahanian566fff02012-09-07 23:46:23 +00004841 DeclContext *DC = method->getDeclContext();
4842 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4843 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4844 << attr.getName() << 0;
4845 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4846 return;
4847 }
4848 if (method->getMethodFamily() == OMF_dealloc) {
4849 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4850 << attr.getName() << 1;
4851 return;
4852 }
4853
Michael Han99315932013-01-24 16:46:58 +00004854 method->addAttr(::new (S.Context)
4855 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4856 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian566fff02012-09-07 23:46:23 +00004857}
4858
Aaron Ballmanfb763042013-12-02 18:05:46 +00004859static void handleCFAuditedTransferAttr(Sema &S, Decl *D,
4860 const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004861 if (checkAttrMutualExclusion<CFUnknownTransferAttr>(S, D, Attr.getRange(),
4862 Attr.getName()))
John McCall32f5fe12011-09-30 05:12:12 +00004863 return;
John McCall32f5fe12011-09-30 05:12:12 +00004864
Aaron Ballmanfb763042013-12-02 18:05:46 +00004865 D->addAttr(::new (S.Context)
4866 CFAuditedTransferAttr(Attr.getRange(), S.Context,
4867 Attr.getAttributeSpellingListIndex()));
4868}
4869
4870static void handleCFUnknownTransferAttr(Sema &S, Decl *D,
4871 const AttributeList &Attr) {
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00004872 if (checkAttrMutualExclusion<CFAuditedTransferAttr>(S, D, Attr.getRange(),
4873 Attr.getName()))
Aaron Ballmanfb763042013-12-02 18:05:46 +00004874 return;
4875
4876 D->addAttr(::new (S.Context)
4877 CFUnknownTransferAttr(Attr.getRange(), S.Context,
4878 Attr.getAttributeSpellingListIndex()));
John McCall32f5fe12011-09-30 05:12:12 +00004879}
4880
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00004881static void handleObjCBridgeAttr(Sema &S, Scope *Sc, Decl *D,
4882 const AttributeList &Attr) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004883 IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr;
Ted Kremenek2d3379e2013-11-21 07:20:34 +00004884
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00004885 if (!Parm) {
Ted Kremenek2d3379e2013-11-21 07:20:34 +00004886 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00004887 return;
4888 }
John McCall28592582015-02-01 22:34:06 +00004889
4890 // Typedefs only allow objc_bridge(id) and have some additional checking.
4891 if (auto TD = dyn_cast<TypedefNameDecl>(D)) {
4892 if (!Parm->Ident->isStr("id")) {
4893 S.Diag(Attr.getLoc(), diag::err_objc_attr_typedef_not_id)
4894 << Attr.getName();
4895 return;
4896 }
4897
4898 // Only allow 'cv void *'.
4899 QualType T = TD->getUnderlyingType();
4900 if (!T->isVoidPointerType()) {
4901 S.Diag(Attr.getLoc(), diag::err_objc_attr_typedef_not_void_pointer);
4902 return;
4903 }
4904 }
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00004905
4906 D->addAttr(::new (S.Context)
Ted Kremenek2d3379e2013-11-21 07:20:34 +00004907 ObjCBridgeAttr(Attr.getRange(), S.Context, Parm->Ident,
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00004908 Attr.getAttributeSpellingListIndex()));
4909}
4910
Fariborz Jahanian87c77912013-11-21 20:50:32 +00004911static void handleObjCBridgeMutableAttr(Sema &S, Scope *Sc, Decl *D,
4912 const AttributeList &Attr) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004913 IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr;
4914
Fariborz Jahanian87c77912013-11-21 20:50:32 +00004915 if (!Parm) {
4916 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
4917 return;
4918 }
4919
4920 D->addAttr(::new (S.Context)
4921 ObjCBridgeMutableAttr(Attr.getRange(), S.Context, Parm->Ident,
4922 Attr.getAttributeSpellingListIndex()));
4923}
4924
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00004925static void handleObjCBridgeRelatedAttr(Sema &S, Scope *Sc, Decl *D,
4926 const AttributeList &Attr) {
4927 IdentifierInfo *RelatedClass =
Craig Topperc3ec1492014-05-26 06:22:03 +00004928 Attr.isArgIdent(0) ? Attr.getArgAsIdent(0)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00004929 if (!RelatedClass) {
4930 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0;
4931 return;
4932 }
4933 IdentifierInfo *ClassMethod =
Craig Topperc3ec1492014-05-26 06:22:03 +00004934 Attr.getArgAsIdent(1) ? Attr.getArgAsIdent(1)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00004935 IdentifierInfo *InstanceMethod =
Craig Topperc3ec1492014-05-26 06:22:03 +00004936 Attr.getArgAsIdent(2) ? Attr.getArgAsIdent(2)->Ident : nullptr;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00004937 D->addAttr(::new (S.Context)
4938 ObjCBridgeRelatedAttr(Attr.getRange(), S.Context, RelatedClass,
4939 ClassMethod, InstanceMethod,
4940 Attr.getAttributeSpellingListIndex()));
4941}
4942
Argyrios Kyrtzidisd1438b42013-12-03 21:11:25 +00004943static void handleObjCDesignatedInitializer(Sema &S, Decl *D,
4944 const AttributeList &Attr) {
Fariborz Jahanian6efab6e2014-03-14 18:19:46 +00004945 ObjCInterfaceDecl *IFace;
Nico Weber462fd1e2015-01-07 23:50:05 +00004946 if (ObjCCategoryDecl *CatDecl =
4947 dyn_cast<ObjCCategoryDecl>(D->getDeclContext()))
Fariborz Jahanian6efab6e2014-03-14 18:19:46 +00004948 IFace = CatDecl->getClassInterface();
4949 else
4950 IFace = cast<ObjCInterfaceDecl>(D->getDeclContext());
Ben Langmuirc91ac9e2015-01-20 20:41:36 +00004951
4952 if (!IFace)
4953 return;
4954
Argyrios Kyrtzidis9ed9e5f2013-12-03 21:11:30 +00004955 IFace->setHasDesignatedInitializers();
Argyrios Kyrtzidise8186812013-12-07 06:08:04 +00004956 D->addAttr(::new (S.Context)
Argyrios Kyrtzidisd1438b42013-12-03 21:11:25 +00004957 ObjCDesignatedInitializerAttr(Attr.getRange(), S.Context,
4958 Attr.getAttributeSpellingListIndex()));
4959}
4960
Fariborz Jahanian451b92a2014-07-16 16:16:04 +00004961static void handleObjCRuntimeName(Sema &S, Decl *D,
4962 const AttributeList &Attr) {
Fariborz Jahaniana2e5deb2014-07-16 19:44:34 +00004963 StringRef MetaDataName;
4964 if (!S.checkStringLiteralArgumentAttr(Attr, 0, MetaDataName))
4965 return;
4966 D->addAttr(::new (S.Context)
4967 ObjCRuntimeNameAttr(Attr.getRange(), S.Context,
4968 MetaDataName,
4969 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian451b92a2014-07-16 16:16:04 +00004970}
4971
Nico Webera6916892016-06-10 18:53:04 +00004972// When a user wants to use objc_boxable with a union or struct
4973// but they don't have access to the declaration (legacy/third-party code)
4974// then they can 'enable' this feature with a typedef:
Alex Denisovfde64952015-06-26 05:28:36 +00004975// typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct;
4976static void handleObjCBoxable(Sema &S, Decl *D, const AttributeList &Attr) {
4977 bool notify = false;
4978
4979 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4980 if (RD && RD->getDefinition()) {
4981 RD = RD->getDefinition();
4982 notify = true;
4983 }
4984
4985 if (RD) {
4986 ObjCBoxableAttr *BoxableAttr = ::new (S.Context)
4987 ObjCBoxableAttr(Attr.getRange(), S.Context,
4988 Attr.getAttributeSpellingListIndex());
4989 RD->addAttr(BoxableAttr);
4990 if (notify) {
4991 // we need to notify ASTReader/ASTWriter about
4992 // modification of existing declaration
4993 if (ASTMutationListener *L = S.getASTMutationListener())
4994 L->AddedAttributeToRecord(BoxableAttr, RD);
4995 }
4996 }
4997}
4998
Chandler Carruthedc2c642011-07-02 00:01:44 +00004999static void handleObjCOwnershipAttr(Sema &S, Decl *D,
5000 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005001 if (hasDeclarator(D)) return;
John McCall31168b02011-06-15 23:02:42 +00005002
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005003 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00005004 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCall31168b02011-06-15 23:02:42 +00005005}
5006
Chandler Carruthedc2c642011-07-02 00:01:44 +00005007static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
5008 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005009 ValueDecl *vd = cast<ValueDecl>(D);
John McCall31168b02011-06-15 23:02:42 +00005010 QualType type = vd->getType();
5011
5012 if (!type->isDependentType() &&
5013 !type->isObjCLifetimeType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005014 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCall31168b02011-06-15 23:02:42 +00005015 << type;
5016 return;
5017 }
5018
5019 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5020
5021 // If we have no lifetime yet, check the lifetime we're presumably
5022 // going to infer.
5023 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
5024 lifetime = type->getObjCARCImplicitLifetime();
5025
5026 switch (lifetime) {
5027 case Qualifiers::OCL_None:
5028 assert(type->isDependentType() &&
5029 "didn't infer lifetime for non-dependent type?");
5030 break;
5031
5032 case Qualifiers::OCL_Weak: // meaningful
5033 case Qualifiers::OCL_Strong: // meaningful
5034 break;
5035
5036 case Qualifiers::OCL_ExplicitNone:
5037 case Qualifiers::OCL_Autoreleasing:
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005038 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCall31168b02011-06-15 23:02:42 +00005039 << (lifetime == Qualifiers::OCL_Autoreleasing);
5040 break;
5041 }
5042
Chandler Carruthff4c4f02011-07-01 23:49:12 +00005043 D->addAttr(::new (S.Context)
Michael Han99315932013-01-24 16:46:58 +00005044 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
5045 Attr.getAttributeSpellingListIndex()));
John McCall31168b02011-06-15 23:02:42 +00005046}
5047
Francois Picheta83957a2010-12-19 06:50:37 +00005048//===----------------------------------------------------------------------===//
5049// Microsoft specific attribute handlers.
5050//===----------------------------------------------------------------------===//
5051
Nico Weber88f5ed92016-09-13 18:55:26 +00005052UuidAttr *Sema::mergeUuidAttr(Decl *D, SourceRange Range,
5053 unsigned AttrSpellingListIndex, StringRef Uuid) {
5054 if (const auto *UA = D->getAttr<UuidAttr>()) {
Nico Weberd58c2602016-09-14 01:16:54 +00005055 if (UA->getGuid().equals_lower(Uuid))
Nico Weber88f5ed92016-09-13 18:55:26 +00005056 return nullptr;
5057 Diag(UA->getLocation(), diag::err_mismatched_uuid);
5058 Diag(Range.getBegin(), diag::note_previous_uuid);
5059 D->dropAttr<UuidAttr>();
5060 }
5061
5062 return ::new (Context) UuidAttr(Range, Context, Uuid, AttrSpellingListIndex);
5063}
5064
Chandler Carruthedc2c642011-07-02 00:01:44 +00005065static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballmandf8fe4c2013-11-24 21:35:16 +00005066 if (!S.LangOpts.CPlusPlus) {
5067 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
5068 << Attr.getName() << AttributeLangSupport::C;
5069 return;
5070 }
5071
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005072 StringRef StrRef;
5073 SourceLocation LiteralLoc;
Tim Northover6a6b63b2013-10-01 14:34:18 +00005074 if (!S.checkStringLiteralArgumentAttr(Attr, 0, StrRef, &LiteralLoc))
Reid Kleckner140c4a72013-05-17 14:04:52 +00005075 return;
Francois Pichet7da11662010-12-20 01:41:49 +00005076
David Majnemer89085342013-08-09 08:56:20 +00005077 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
5078 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
David Majnemer89085342013-08-09 08:56:20 +00005079 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
5080 StrRef = StrRef.drop_front().drop_back();
Francois Pichet7da11662010-12-20 01:41:49 +00005081
Reid Kleckner140c4a72013-05-17 14:04:52 +00005082 // Validate GUID length.
David Majnemer89085342013-08-09 08:56:20 +00005083 if (StrRef.size() != 36) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005084 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner140c4a72013-05-17 14:04:52 +00005085 return;
5086 }
Anders Carlsson19588aa2011-01-23 21:07:30 +00005087
David Majnemer89085342013-08-09 08:56:20 +00005088 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner140c4a72013-05-17 14:04:52 +00005089 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemer89085342013-08-09 08:56:20 +00005090 if (StrRef[i] != '-') {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005091 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Francois Pichet7da11662010-12-20 01:41:49 +00005092 return;
5093 }
David Majnemer89085342013-08-09 08:56:20 +00005094 } else if (!isHexDigit(StrRef[i])) {
Benjamin Kramer6ee15622013-09-13 15:35:43 +00005095 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner140c4a72013-05-17 14:04:52 +00005096 return;
Francois Pichet7da11662010-12-20 01:41:49 +00005097 }
Reid Kleckner140c4a72013-05-17 14:04:52 +00005098 }
Francois Picheta83957a2010-12-19 06:50:37 +00005099
Nico Weber469891e2017-05-05 17:05:56 +00005100 // FIXME: It'd be nice to also emit a fixit removing uuid(...) (and, if it's
5101 // the only thing in the [] list, the [] too), and add an insertion of
5102 // __declspec(uuid(...)). But sadly, neither the SourceLocs of the commas
5103 // separating attributes nor of the [ and the ] are in the AST.
Nico Weber0a234042017-05-05 17:15:08 +00005104 // Cf "SourceLocations of attribute list delimiters - [[ ... , ... ]] etc"
Nico Weber469891e2017-05-05 17:05:56 +00005105 // on cfe-dev.
5106 if (Attr.isMicrosoftAttribute()) // Check for [uuid(...)] spelling.
5107 S.Diag(Attr.getLoc(), diag::warn_atl_uuid_deprecated);
5108
Nico Weber88f5ed92016-09-13 18:55:26 +00005109 UuidAttr *UA = S.mergeUuidAttr(D, Attr.getRange(),
5110 Attr.getAttributeSpellingListIndex(), StrRef);
5111 if (UA)
5112 D->addAttr(UA);
Charles Davis163855f2010-02-16 18:27:26 +00005113}
5114
David Majnemer2c4e00a2014-01-29 22:07:36 +00005115static void handleMSInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5116 if (!S.LangOpts.CPlusPlus) {
5117 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang)
5118 << Attr.getName() << AttributeLangSupport::C;
5119 return;
5120 }
5121 MSInheritanceAttr *IA = S.mergeMSInheritanceAttr(
David Majnemer4bb09802014-02-10 19:50:15 +00005122 D, Attr.getRange(), /*BestCase=*/true,
5123 Attr.getAttributeSpellingListIndex(),
David Majnemer2c4e00a2014-01-29 22:07:36 +00005124 (MSInheritanceAttr::Spelling)Attr.getSemanticSpelling());
David Majnemer929025d2016-01-26 19:30:26 +00005125 if (IA) {
David Majnemer2c4e00a2014-01-29 22:07:36 +00005126 D->addAttr(IA);
David Majnemer929025d2016-01-26 19:30:26 +00005127 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
5128 }
David Majnemer2c4e00a2014-01-29 22:07:36 +00005129}
5130
Reid Kleckner7d6d2702014-05-01 03:16:47 +00005131static void handleDeclspecThreadAttr(Sema &S, Decl *D,
5132 const AttributeList &Attr) {
5133 VarDecl *VD = cast<VarDecl>(D);
5134 if (!S.Context.getTargetInfo().isTLSSupported()) {
5135 S.Diag(Attr.getLoc(), diag::err_thread_unsupported);
5136 return;
5137 }
5138 if (VD->getTSCSpec() != TSCS_unspecified) {
5139 S.Diag(Attr.getLoc(), diag::err_declspec_thread_on_thread_variable);
5140 return;
5141 }
5142 if (VD->hasLocalStorage()) {
5143 S.Diag(Attr.getLoc(), diag::err_thread_non_global) << "__declspec(thread)";
5144 return;
5145 }
5146 VD->addAttr(::new (S.Context) ThreadAttr(
5147 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
5148}
5149
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005150static void handleAbiTagAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5151 SmallVector<StringRef, 4> Tags;
5152 for (unsigned I = 0, E = Attr.getNumArgs(); I != E; ++I) {
5153 StringRef Tag;
5154 if (!S.checkStringLiteralArgumentAttr(Attr, I, Tag))
5155 return;
5156 Tags.push_back(Tag);
5157 }
5158
5159 if (const auto *NS = dyn_cast<NamespaceDecl>(D)) {
5160 if (!NS->isInline()) {
5161 S.Diag(Attr.getLoc(), diag::warn_attr_abi_tag_namespace) << 0;
5162 return;
5163 }
5164 if (NS->isAnonymousNamespace()) {
5165 S.Diag(Attr.getLoc(), diag::warn_attr_abi_tag_namespace) << 1;
5166 return;
5167 }
5168 if (Attr.getNumArgs() == 0)
5169 Tags.push_back(NS->getName());
5170 } else if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
5171 return;
5172
5173 // Store tags sorted and without duplicates.
5174 std::sort(Tags.begin(), Tags.end());
5175 Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end());
5176
5177 D->addAttr(::new (S.Context)
5178 AbiTagAttr(Attr.getRange(), S.Context, Tags.data(), Tags.size(),
5179 Attr.getAttributeSpellingListIndex()));
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00005180}
5181
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005182static void handleARMInterruptAttr(Sema &S, Decl *D,
5183 const AttributeList &Attr) {
5184 // Check the attribute arguments.
5185 if (Attr.getNumArgs() > 1) {
5186 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
5187 << Attr.getName() << 1;
5188 return;
5189 }
5190
5191 StringRef Str;
5192 SourceLocation ArgLoc;
5193
5194 if (Attr.getNumArgs() == 0)
5195 Str = "";
5196 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc))
5197 return;
5198
5199 ARMInterruptAttr::InterruptType Kind;
5200 if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
5201 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
5202 << Attr.getName() << Str << ArgLoc;
5203 return;
5204 }
5205
5206 unsigned Index = Attr.getAttributeSpellingListIndex();
5207 D->addAttr(::new (S.Context)
5208 ARMInterruptAttr(Attr.getLoc(), S.Context, Kind, Index));
5209}
5210
5211static void handleMSP430InterruptAttr(Sema &S, Decl *D,
5212 const AttributeList &Attr) {
5213 if (!checkAttributeNumArgs(S, Attr, 1))
5214 return;
5215
5216 if (!Attr.isArgExpr(0)) {
5217 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
5218 << AANT_ArgumentIntegerConstant;
5219 return;
5220 }
5221
5222 // FIXME: Check for decl - it should be void ()(void).
5223
5224 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
5225 llvm::APSInt NumParams(32);
5226 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
5227 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
5228 << Attr.getName() << AANT_ArgumentIntegerConstant
5229 << NumParamsExpr->getSourceRange();
5230 return;
5231 }
5232
5233 unsigned Num = NumParams.getLimitedValue(255);
5234 if ((Num & 1) || Num > 30) {
5235 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
5236 << Attr.getName() << (int)NumParams.getSExtValue()
5237 << NumParamsExpr->getSourceRange();
5238 return;
5239 }
5240
Aaron Ballman36a53502014-01-16 13:03:14 +00005241 D->addAttr(::new (S.Context)
5242 MSP430InterruptAttr(Attr.getLoc(), S.Context, Num,
5243 Attr.getAttributeSpellingListIndex()));
5244 D->addAttr(UsedAttr::CreateImplicit(S.Context));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005245}
5246
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005247static void handleMipsInterruptAttr(Sema &S, Decl *D,
5248 const AttributeList &Attr) {
5249 // Only one optional argument permitted.
5250 if (Attr.getNumArgs() > 1) {
5251 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments)
5252 << Attr.getName() << 1;
5253 return;
5254 }
5255
5256 StringRef Str;
5257 SourceLocation ArgLoc;
5258
5259 if (Attr.getNumArgs() == 0)
5260 Str = "";
5261 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc))
5262 return;
5263
5264 // Semantic checks for a function with the 'interrupt' attribute for MIPS:
5265 // a) Must be a function.
5266 // b) Must have no parameters.
5267 // c) Must have the 'void' return type.
5268 // d) Cannot have the 'mips16' attribute, as that instruction set
5269 // lacks the 'eret' instruction.
5270 // e) The attribute itself must either have no argument or one of the
5271 // valid interrupt types, see [MipsInterruptDocs].
5272
5273 if (!isFunctionOrMethod(D)) {
5274 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5275 << "'interrupt'" << ExpectedFunctionOrMethod;
5276 return;
5277 }
5278
5279 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
5280 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute)
5281 << 0;
5282 return;
5283 }
5284
5285 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5286 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute)
5287 << 1;
5288 return;
5289 }
5290
5291 if (checkAttrMutualExclusion<Mips16Attr>(S, D, Attr.getRange(),
5292 Attr.getName()))
5293 return;
5294
5295 MipsInterruptAttr::InterruptType Kind;
5296 if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
5297 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
5298 << Attr.getName() << "'" + std::string(Str) + "'";
5299 return;
5300 }
5301
5302 D->addAttr(::new (S.Context) MipsInterruptAttr(
5303 Attr.getLoc(), S.Context, Kind, Attr.getAttributeSpellingListIndex()));
5304}
5305
Alexey Bataevd51e9932016-01-15 04:06:31 +00005306static void handleAnyX86InterruptAttr(Sema &S, Decl *D,
5307 const AttributeList &Attr) {
5308 // Semantic checks for a function with the 'interrupt' attribute.
5309 // a) Must be a function.
5310 // b) Must have the 'void' return type.
5311 // c) Must take 1 or 2 arguments.
5312 // d) The 1st argument must be a pointer.
5313 // e) The 2nd argument (if any) must be an unsigned integer.
5314 if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) ||
5315 CXXMethodDecl::isStaticOverloadedOperator(
5316 cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) {
5317 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
5318 << Attr.getName() << ExpectedFunctionWithProtoType;
5319 return;
5320 }
5321 // Interrupt handler must have void return type.
5322 if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5323 S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(),
5324 diag::err_anyx86_interrupt_attribute)
5325 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5326 ? 0
5327 : 1)
5328 << 0;
5329 return;
5330 }
5331 // Interrupt handler must have 1 or 2 parameters.
5332 unsigned NumParams = getFunctionOrMethodNumParams(D);
5333 if (NumParams < 1 || NumParams > 2) {
5334 S.Diag(D->getLocStart(), diag::err_anyx86_interrupt_attribute)
5335 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5336 ? 0
5337 : 1)
5338 << 1;
5339 return;
5340 }
5341 // The first argument must be a pointer.
5342 if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) {
5343 S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(),
5344 diag::err_anyx86_interrupt_attribute)
5345 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5346 ? 0
5347 : 1)
5348 << 2;
5349 return;
5350 }
5351 // The second argument, if present, must be an unsigned integer.
5352 unsigned TypeSize =
5353 S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64
5354 ? 64
5355 : 32;
5356 if (NumParams == 2 &&
5357 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() ||
5358 S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) {
5359 S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(),
5360 diag::err_anyx86_interrupt_attribute)
5361 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5362 ? 0
5363 : 1)
5364 << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false);
5365 return;
5366 }
5367 D->addAttr(::new (S.Context) AnyX86InterruptAttr(
5368 Attr.getLoc(), S.Context, Attr.getAttributeSpellingListIndex()));
5369 D->addAttr(UsedAttr::CreateImplicit(S.Context));
5370}
5371
Dylan McKaye8232d72017-02-08 05:09:26 +00005372static void handleAVRInterruptAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5373 if (!isFunctionOrMethod(D)) {
5374 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5375 << "'interrupt'" << ExpectedFunction;
5376 return;
5377 }
5378
5379 if (!checkAttributeNumArgs(S, Attr, 0))
5380 return;
5381
5382 handleSimpleAttribute<AVRInterruptAttr>(S, D, Attr);
5383}
5384
5385static void handleAVRSignalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5386 if (!isFunctionOrMethod(D)) {
5387 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5388 << "'signal'" << ExpectedFunction;
5389 return;
5390 }
5391
5392 if (!checkAttributeNumArgs(S, Attr, 0))
5393 return;
5394
5395 handleSimpleAttribute<AVRSignalAttr>(S, D, Attr);
5396}
5397
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005398static void handleInterruptAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5399 // Dispatch the interrupt attribute based on the current target.
Alexey Bataevd51e9932016-01-15 04:06:31 +00005400 switch (S.Context.getTargetInfo().getTriple().getArch()) {
5401 case llvm::Triple::msp430:
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005402 handleMSP430InterruptAttr(S, D, Attr);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005403 break;
5404 case llvm::Triple::mipsel:
5405 case llvm::Triple::mips:
Daniel Sandersbd3f47f2015-11-27 18:03:44 +00005406 handleMipsInterruptAttr(S, D, Attr);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005407 break;
5408 case llvm::Triple::x86:
5409 case llvm::Triple::x86_64:
5410 handleAnyX86InterruptAttr(S, D, Attr);
5411 break;
Dylan McKaye8232d72017-02-08 05:09:26 +00005412 case llvm::Triple::avr:
5413 handleAVRInterruptAttr(S, D, Attr);
5414 break;
Alexey Bataevd51e9932016-01-15 04:06:31 +00005415 default:
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005416 handleARMInterruptAttr(S, D, Attr);
Alexey Bataevd51e9932016-01-15 04:06:31 +00005417 break;
5418 }
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005419}
5420
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005421static void handleAMDGPUFlatWorkGroupSizeAttr(Sema &S, Decl *D,
5422 const AttributeList &Attr) {
5423 uint32_t Min = 0;
5424 Expr *MinExpr = Attr.getArgAsExpr(0);
5425 if (!checkUInt32Argument(S, Attr, MinExpr, Min))
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005426 return;
5427
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005428 uint32_t Max = 0;
5429 Expr *MaxExpr = Attr.getArgAsExpr(1);
5430 if (!checkUInt32Argument(S, Attr, MaxExpr, Max))
5431 return;
5432
5433 if (Min == 0 && Max != 0) {
5434 S.Diag(Attr.getLoc(), diag::err_attribute_argument_invalid)
5435 << Attr.getName() << 0;
5436 return;
5437 }
5438 if (Min > Max) {
5439 S.Diag(Attr.getLoc(), diag::err_attribute_argument_invalid)
5440 << Attr.getName() << 1;
5441 return;
5442 }
5443
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005444 D->addAttr(::new (S.Context)
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005445 AMDGPUFlatWorkGroupSizeAttr(Attr.getLoc(), S.Context, Min, Max,
5446 Attr.getAttributeSpellingListIndex()));
5447}
5448
5449static void handleAMDGPUWavesPerEUAttr(Sema &S, Decl *D,
5450 const AttributeList &Attr) {
5451 uint32_t Min = 0;
5452 Expr *MinExpr = Attr.getArgAsExpr(0);
5453 if (!checkUInt32Argument(S, Attr, MinExpr, Min))
5454 return;
5455
5456 uint32_t Max = 0;
5457 if (Attr.getNumArgs() == 2) {
5458 Expr *MaxExpr = Attr.getArgAsExpr(1);
5459 if (!checkUInt32Argument(S, Attr, MaxExpr, Max))
5460 return;
5461 }
5462
5463 if (Min == 0 && Max != 0) {
5464 S.Diag(Attr.getLoc(), diag::err_attribute_argument_invalid)
5465 << Attr.getName() << 0;
5466 return;
5467 }
5468 if (Max != 0 && Min > Max) {
5469 S.Diag(Attr.getLoc(), diag::err_attribute_argument_invalid)
5470 << Attr.getName() << 1;
5471 return;
5472 }
5473
5474 D->addAttr(::new (S.Context)
5475 AMDGPUWavesPerEUAttr(Attr.getLoc(), S.Context, Min, Max,
5476 Attr.getAttributeSpellingListIndex()));
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005477}
5478
5479static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D,
5480 const AttributeList &Attr) {
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005481 uint32_t NumSGPR = 0;
5482 Expr *NumSGPRExpr = Attr.getArgAsExpr(0);
5483 if (!checkUInt32Argument(S, Attr, NumSGPRExpr, NumSGPR))
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005484 return;
5485
5486 D->addAttr(::new (S.Context)
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005487 AMDGPUNumSGPRAttr(Attr.getLoc(), S.Context, NumSGPR,
5488 Attr.getAttributeSpellingListIndex()));
5489}
5490
5491static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D,
5492 const AttributeList &Attr) {
5493 uint32_t NumVGPR = 0;
5494 Expr *NumVGPRExpr = Attr.getArgAsExpr(0);
5495 if (!checkUInt32Argument(S, Attr, NumVGPRExpr, NumVGPR))
5496 return;
5497
5498 D->addAttr(::new (S.Context)
5499 AMDGPUNumVGPRAttr(Attr.getLoc(), S.Context, NumVGPR,
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005500 Attr.getAttributeSpellingListIndex()));
5501}
5502
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005503static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D,
5504 const AttributeList& Attr) {
5505 // If we try to apply it to a function pointer, don't warn, but don't
5506 // do anything, either. It doesn't matter anyway, because there's nothing
5507 // special about calling a force_align_arg_pointer function.
5508 ValueDecl *VD = dyn_cast<ValueDecl>(D);
5509 if (VD && VD->getType()->isFunctionPointerType())
5510 return;
5511 // Also don't warn on function pointer typedefs.
5512 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
5513 if (TD && (TD->getUnderlyingType()->isFunctionPointerType() ||
5514 TD->getUnderlyingType()->isFunctionType()))
5515 return;
5516 // Attribute can only be applied to function types.
5517 if (!isa<FunctionDecl>(D)) {
5518 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
5519 << Attr.getName() << /* function */0;
5520 return;
5521 }
5522
Aaron Ballman36a53502014-01-16 13:03:14 +00005523 D->addAttr(::new (S.Context)
5524 X86ForceAlignArgPointerAttr(Attr.getRange(), S.Context,
5525 Attr.getAttributeSpellingListIndex()));
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005526}
5527
David Majnemercd3ebfe2016-05-23 17:16:12 +00005528static void handleLayoutVersion(Sema &S, Decl *D, const AttributeList &Attr) {
5529 uint32_t Version;
5530 Expr *VersionExpr = static_cast<Expr *>(Attr.getArgAsExpr(0));
5531 if (!checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), Version))
5532 return;
5533
5534 // TODO: Investigate what happens with the next major version of MSVC.
5535 if (Version != LangOptions::MSVC2015) {
5536 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
5537 << Attr.getName() << Version << VersionExpr->getSourceRange();
5538 return;
5539 }
5540
5541 D->addAttr(::new (S.Context)
5542 LayoutVersionAttr(Attr.getRange(), S.Context, Version,
5543 Attr.getAttributeSpellingListIndex()));
5544}
5545
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005546DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range,
5547 unsigned AttrSpellingListIndex) {
5548 if (D->hasAttr<DLLExportAttr>()) {
Nico Rieck60478662014-02-22 19:47:30 +00005549 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'";
Craig Topperc3ec1492014-05-26 06:22:03 +00005550 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005551 }
5552
5553 if (D->hasAttr<DLLImportAttr>())
Craig Topperc3ec1492014-05-26 06:22:03 +00005554 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005555
Aaron Ballman3f5f3e72014-01-20 16:15:55 +00005556 return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005557}
5558
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005559DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range,
5560 unsigned AttrSpellingListIndex) {
5561 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
Nico Rieck60478662014-02-22 19:47:30 +00005562 Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005563 D->dropAttr<DLLImportAttr>();
5564 }
5565
5566 if (D->hasAttr<DLLExportAttr>())
Craig Topperc3ec1492014-05-26 06:22:03 +00005567 return nullptr;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005568
Aaron Ballman3f5f3e72014-01-20 16:15:55 +00005569 return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005570}
5571
Hans Wennborge82f19c2014-06-24 23:57:05 +00005572static void handleDLLAttr(Sema &S, Decl *D, const AttributeList &A) {
Hans Wennborg5e645282014-06-24 23:57:13 +00005573 if (isa<ClassTemplatePartialSpecializationDecl>(D) &&
5574 S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
5575 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored)
5576 << A.getName();
5577 return;
5578 }
5579
Hans Wennborg606bd6d2014-11-03 14:24:45 +00005580 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
5581 if (FD->isInlined() && A.getKind() == AttributeList::AT_DLLImport &&
5582 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
5583 // MinGW doesn't allow dllimport on inline functions.
5584 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline)
5585 << A.getName();
5586 return;
5587 }
5588 }
5589
Hans Wennborg5869ec42015-09-15 21:05:30 +00005590 if (auto *MD = dyn_cast<CXXMethodDecl>(D)) {
5591 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
5592 MD->getParent()->isLambda()) {
5593 S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A.getName();
5594 return;
5595 }
5596 }
5597
Hans Wennborge82f19c2014-06-24 23:57:05 +00005598 unsigned Index = A.getAttributeSpellingListIndex();
5599 Attr *NewAttr = A.getKind() == AttributeList::AT_DLLExport
5600 ? (Attr *)S.mergeDLLExportAttr(D, A.getRange(), Index)
5601 : (Attr *)S.mergeDLLImportAttr(D, A.getRange(), Index);
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005602 if (NewAttr)
5603 D->addAttr(NewAttr);
5604}
5605
David Majnemer2c4e00a2014-01-29 22:07:36 +00005606MSInheritanceAttr *
David Majnemer4bb09802014-02-10 19:50:15 +00005607Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase,
David Majnemer2c4e00a2014-01-29 22:07:36 +00005608 unsigned AttrSpellingListIndex,
5609 MSInheritanceAttr::Spelling SemanticSpelling) {
5610 if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) {
5611 if (IA->getSemanticSpelling() == SemanticSpelling)
Craig Topperc3ec1492014-05-26 06:22:03 +00005612 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00005613 Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance)
5614 << 1 /*previous declaration*/;
5615 Diag(Range.getBegin(), diag::note_previous_ms_inheritance);
5616 D->dropAttr<MSInheritanceAttr>();
5617 }
5618
5619 CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
5620 if (RD->hasDefinition()) {
David Majnemer4bb09802014-02-10 19:50:15 +00005621 if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase,
5622 SemanticSpelling)) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005623 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00005624 }
5625 } else {
5626 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) {
5627 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
5628 << 1 /*partial specialization*/;
Craig Topperc3ec1492014-05-26 06:22:03 +00005629 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00005630 }
5631 if (RD->getDescribedClassTemplate()) {
5632 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
5633 << 0 /*primary template*/;
Craig Topperc3ec1492014-05-26 06:22:03 +00005634 return nullptr;
David Majnemer2c4e00a2014-01-29 22:07:36 +00005635 }
5636 }
5637
5638 return ::new (Context)
David Majnemer4bb09802014-02-10 19:50:15 +00005639 MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex);
David Majnemer2c4e00a2014-01-29 22:07:36 +00005640}
5641
Aaron Ballmanefe348e2014-02-18 17:36:50 +00005642static void handleCapabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5643 // The capability attributes take a single string parameter for the name of
5644 // the capability they represent. The lockable attribute does not take any
5645 // parameters. However, semantically, both attributes represent the same
5646 // concept, and so they use the same semantic attribute. Eventually, the
5647 // lockable attribute will be removed.
Aaron Ballman6c810072014-03-05 21:47:13 +00005648 //
Alp Toker958027b2014-07-14 19:42:55 +00005649 // For backward compatibility, any capability which has no specified string
Aaron Ballman6c810072014-03-05 21:47:13 +00005650 // literal will be considered a "mutex."
5651 StringRef N("mutex");
Aaron Ballmanefe348e2014-02-18 17:36:50 +00005652 SourceLocation LiteralLoc;
5653 if (Attr.getKind() == AttributeList::AT_Capability &&
5654 !S.checkStringLiteralArgumentAttr(Attr, 0, N, &LiteralLoc))
5655 return;
5656
Aaron Ballman6c810072014-03-05 21:47:13 +00005657 // Currently, there are only two names allowed for a capability: role and
5658 // mutex (case insensitive). Diagnose other capability names.
5659 if (!N.equals_lower("mutex") && !N.equals_lower("role"))
5660 S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N;
5661
Aaron Ballmanefe348e2014-02-18 17:36:50 +00005662 D->addAttr(::new (S.Context) CapabilityAttr(Attr.getRange(), S.Context, N,
5663 Attr.getAttributeSpellingListIndex()));
5664}
5665
Aaron Ballman9e9d1842014-02-21 21:05:14 +00005666static void handleAssertCapabilityAttr(Sema &S, Decl *D,
5667 const AttributeList &Attr) {
5668 D->addAttr(::new (S.Context) AssertCapabilityAttr(Attr.getRange(), S.Context,
5669 Attr.getArgAsExpr(0),
5670 Attr.getAttributeSpellingListIndex()));
5671}
5672
5673static void handleAcquireCapabilityAttr(Sema &S, Decl *D,
5674 const AttributeList &Attr) {
5675 SmallVector<Expr*, 1> Args;
Aaron Ballman18d85ae2014-03-20 16:02:49 +00005676 if (!checkLockFunAttrCommon(S, D, Attr, Args))
Aaron Ballman9e9d1842014-02-21 21:05:14 +00005677 return;
5678
5679 D->addAttr(::new (S.Context) AcquireCapabilityAttr(Attr.getRange(),
5680 S.Context,
5681 Args.data(), Args.size(),
5682 Attr.getAttributeSpellingListIndex()));
5683}
5684
5685static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D,
5686 const AttributeList &Attr) {
5687 SmallVector<Expr*, 2> Args;
5688 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
5689 return;
5690
5691 D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(Attr.getRange(),
5692 S.Context,
5693 Attr.getArgAsExpr(0),
5694 Args.data(),
5695 Args.size(),
5696 Attr.getAttributeSpellingListIndex()));
5697}
5698
5699static void handleReleaseCapabilityAttr(Sema &S, Decl *D,
5700 const AttributeList &Attr) {
Aaron Ballman9e9d1842014-02-21 21:05:14 +00005701 // Check that all arguments are lockable objects.
Aaron Ballman18d85ae2014-03-20 16:02:49 +00005702 SmallVector<Expr *, 1> Args;
Aaron Ballman69e6e7c2014-03-24 19:29:19 +00005703 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, true);
Aaron Ballman9e9d1842014-02-21 21:05:14 +00005704
Aaron Ballman18d85ae2014-03-20 16:02:49 +00005705 D->addAttr(::new (S.Context) ReleaseCapabilityAttr(
5706 Attr.getRange(), S.Context, Args.data(), Args.size(),
5707 Attr.getAttributeSpellingListIndex()));
Aaron Ballman9e9d1842014-02-21 21:05:14 +00005708}
5709
Aaron Ballmanefe348e2014-02-18 17:36:50 +00005710static void handleRequiresCapabilityAttr(Sema &S, Decl *D,
5711 const AttributeList &Attr) {
5712 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
5713 return;
5714
5715 // check that all arguments are lockable objects
5716 SmallVector<Expr*, 1> Args;
Aaron Ballman69e6e7c2014-03-24 19:29:19 +00005717 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args);
Aaron Ballmanefe348e2014-02-18 17:36:50 +00005718 if (Args.empty())
5719 return;
5720
5721 RequiresCapabilityAttr *RCA = ::new (S.Context)
5722 RequiresCapabilityAttr(Attr.getRange(), S.Context, Args.data(),
5723 Args.size(), Attr.getAttributeSpellingListIndex());
5724
5725 D->addAttr(RCA);
5726}
5727
Aaron Ballman43f40102014-11-14 22:34:56 +00005728static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5729 if (auto *NSD = dyn_cast<NamespaceDecl>(D)) {
5730 if (NSD->isAnonymousNamespace()) {
5731 S.Diag(Attr.getLoc(), diag::warn_deprecated_anonymous_namespace);
5732 // Do not want to attach the attribute to the namespace because that will
5733 // cause confusing diagnostic reports for uses of declarations within the
5734 // namespace.
5735 return;
5736 }
5737 }
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00005738
Manman Renc7890fe2016-03-16 18:50:49 +00005739 // Handle the cases where the attribute has a text message.
5740 StringRef Str, Replacement;
5741 if (Attr.isArgExpr(0) && Attr.getArgAsExpr(0) &&
5742 !S.checkStringLiteralArgumentAttr(Attr, 0, Str))
5743 return;
5744
5745 // Only support a single optional message for Declspec and CXX11.
5746 if (Attr.isDeclspecAttribute() || Attr.isCXX11Attribute())
5747 checkAttributeAtMostNumArgs(S, Attr, 1);
5748 else if (Attr.isArgExpr(1) && Attr.getArgAsExpr(1) &&
5749 !S.checkStringLiteralArgumentAttr(Attr, 1, Replacement))
5750 return;
5751
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00005752 if (!S.getLangOpts().CPlusPlus14)
5753 if (Attr.isCXX11Attribute() &&
5754 !(Attr.hasScope() && Attr.getScopeName()->isStr("gnu")))
Richard Smith4f902c72016-03-08 00:32:55 +00005755 S.Diag(Attr.getLoc(), diag::ext_cxx14_attr) << Attr.getName();
Saleem Abdulrasoolf931a382015-02-16 22:27:01 +00005756
Douglas Katzman3ed0f642016-10-14 19:55:09 +00005757 D->addAttr(::new (S.Context)
5758 DeprecatedAttr(Attr.getRange(), S.Context, Str, Replacement,
5759 Attr.getAttributeSpellingListIndex()));
5760}
5761
5762static bool isGlobalVar(const Decl *D) {
5763 if (const auto *S = dyn_cast<VarDecl>(D))
5764 return S->hasGlobalStorage();
5765 return false;
Aaron Ballman43f40102014-11-14 22:34:56 +00005766}
5767
Peter Collingbourne915df992015-05-15 18:33:32 +00005768static void handleNoSanitizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5769 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
5770 return;
5771
Benjamin Kramer1b582012016-02-13 18:11:49 +00005772 std::vector<StringRef> Sanitizers;
Peter Collingbourne915df992015-05-15 18:33:32 +00005773
5774 for (unsigned I = 0, E = Attr.getNumArgs(); I != E; ++I) {
5775 StringRef SanitizerName;
5776 SourceLocation LiteralLoc;
5777
5778 if (!S.checkStringLiteralArgumentAttr(Attr, I, SanitizerName, &LiteralLoc))
5779 return;
5780
5781 if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) == 0)
5782 S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName;
Douglas Katzman3ed0f642016-10-14 19:55:09 +00005783 else if (isGlobalVar(D) && SanitizerName != "address")
5784 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
5785 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne915df992015-05-15 18:33:32 +00005786 Sanitizers.push_back(SanitizerName);
5787 }
5788
5789 D->addAttr(::new (S.Context) NoSanitizeAttr(
5790 Attr.getRange(), S.Context, Sanitizers.data(), Sanitizers.size(),
5791 Attr.getAttributeSpellingListIndex()));
5792}
5793
5794static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D,
5795 const AttributeList &Attr) {
Aaron Ballman8b5e7ba2015-10-08 19:24:08 +00005796 StringRef AttrName = Attr.getName()->getName();
5797 normalizeName(AttrName);
Douglas Katzman3ed0f642016-10-14 19:55:09 +00005798 StringRef SanitizerName = llvm::StringSwitch<StringRef>(AttrName)
5799 .Case("no_address_safety_analysis", "address")
5800 .Case("no_sanitize_address", "address")
5801 .Case("no_sanitize_thread", "thread")
5802 .Case("no_sanitize_memory", "memory");
5803 if (isGlobalVar(D) && SanitizerName != "address")
5804 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
5805 << Attr.getName() << ExpectedFunction;
Peter Collingbourne915df992015-05-15 18:33:32 +00005806 D->addAttr(::new (S.Context)
5807 NoSanitizeAttr(Attr.getRange(), S.Context, &SanitizerName, 1,
5808 Attr.getAttributeSpellingListIndex()));
5809}
5810
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00005811static void handleInternalLinkageAttr(Sema &S, Decl *D,
5812 const AttributeList &Attr) {
5813 if (InternalLinkageAttr *Internal =
5814 S.mergeInternalLinkageAttr(D, Attr.getRange(), Attr.getName(),
5815 Attr.getAttributeSpellingListIndex()))
5816 D->addAttr(Internal);
5817}
5818
Anastasia Stulovac4bb5df2016-03-31 11:07:22 +00005819static void handleOpenCLNoSVMAttr(Sema &S, Decl *D, const AttributeList &Attr) {
5820 if (S.LangOpts.OpenCLVersion != 200)
5821 S.Diag(Attr.getLoc(), diag::err_attribute_requires_opencl_version)
5822 << Attr.getName() << "2.0" << 0;
5823 else
5824 S.Diag(Attr.getLoc(), diag::warn_opencl_attr_deprecated_ignored)
5825 << Attr.getName() << "2.0";
5826}
5827
Aaron Ballman8ee40b72013-09-09 23:33:17 +00005828/// Handles semantic checking for features that are common to all attributes,
5829/// such as checking whether a parameter was properly specified, or the correct
5830/// number of arguments were passed, etc.
5831static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
5832 const AttributeList &Attr) {
5833 // Several attributes carry different semantics than the parsing requires, so
Alex Lorenz24952fb2017-04-19 15:52:11 +00005834 // those are opted out of the common argument checks.
Aaron Ballman8ee40b72013-09-09 23:33:17 +00005835 //
5836 // We also bail on unknown and ignored attributes because those are handled
5837 // as part of the target-specific handling logic.
Alex Lorenz24952fb2017-04-19 15:52:11 +00005838 if (Attr.getKind() == AttributeList::UnknownAttribute)
Aaron Ballman8ee40b72013-09-09 23:33:17 +00005839 return false;
Aaron Ballman3aff6332013-12-02 19:30:36 +00005840 // Check whether the attribute requires specific language extensions to be
5841 // enabled.
5842 if (!Attr.diagnoseLangOpts(S))
5843 return true;
Alex Lorenz24952fb2017-04-19 15:52:11 +00005844 // Check whether the attribute appertains to the given subject.
5845 if (!Attr.diagnoseAppertainsTo(S, D))
5846 return true;
5847 if (Attr.hasCustomParsing())
5848 return false;
Aaron Ballman3aff6332013-12-02 19:30:36 +00005849
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00005850 if (Attr.getMinArgs() == Attr.getMaxArgs()) {
5851 // If there are no optional arguments, then checking for the argument count
5852 // is trivial.
5853 if (!checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
5854 return true;
5855 } else {
5856 // There are optional arguments, so checking is slightly more involved.
5857 if (Attr.getMinArgs() &&
5858 !checkAttributeAtLeastNumArgs(S, Attr, Attr.getMinArgs()))
5859 return true;
5860 else if (!Attr.hasVariadicArg() && Attr.getMaxArgs() &&
5861 !checkAttributeAtMostNumArgs(S, Attr, Attr.getMaxArgs()))
5862 return true;
5863 }
Aaron Ballman74eeeae2013-11-27 13:27:02 +00005864
Aaron Ballman8ee40b72013-09-09 23:33:17 +00005865 return false;
5866}
5867
Xiuli Pan11e13f62016-02-26 03:13:03 +00005868static void handleOpenCLAccessAttr(Sema &S, Decl *D,
5869 const AttributeList &Attr) {
5870 if (D->isInvalidDecl())
5871 return;
5872
5873 // Check if there is only one access qualifier.
5874 if (D->hasAttr<OpenCLAccessAttr>()) {
5875 S.Diag(Attr.getLoc(), diag::err_opencl_multiple_access_qualifiers)
5876 << D->getSourceRange();
5877 D->setInvalidDecl(true);
5878 return;
5879 }
5880
5881 // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an
5882 // image object can be read and written.
5883 // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe
5884 // object. Using the read_write (or __read_write) qualifier with the pipe
5885 // qualifier is a compilation error.
5886 if (const ParmVarDecl *PDecl = dyn_cast<ParmVarDecl>(D)) {
5887 const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr();
5888 if (Attr.getName()->getName().find("read_write") != StringRef::npos) {
5889 if (S.getLangOpts().OpenCLVersion < 200 || DeclTy->isPipeType()) {
5890 S.Diag(Attr.getLoc(), diag::err_opencl_invalid_read_write)
5891 << Attr.getName() << PDecl->getType() << DeclTy->isImageType();
5892 D->setInvalidDecl(true);
5893 return;
5894 }
5895 }
5896 }
5897
5898 D->addAttr(::new (S.Context) OpenCLAccessAttr(
5899 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex()));
5900}
5901
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00005902//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00005903// Top Level Sema Entry Points
5904//===----------------------------------------------------------------------===//
5905
Richard Smithf8a75c32013-08-29 00:47:48 +00005906/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
5907/// the attribute applies to decls. If the attribute is a type attribute, just
5908/// silently ignore it if a GNU attribute.
5909static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
5910 const AttributeList &Attr,
5911 bool IncludeCXX11Attributes) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005912 if (Attr.isInvalid() || Attr.getKind() == AttributeList::IgnoredAttribute)
Richard Smithf8a75c32013-08-29 00:47:48 +00005913 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00005914
Richard Smithf8a75c32013-08-29 00:47:48 +00005915 // Ignore C++11 attributes on declarator chunks: they appertain to the type
5916 // instead.
5917 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
5918 return;
5919
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005920 // Unknown attributes are automatically warned on. Target-specific attributes
5921 // which do not apply to the current target architecture are treated as
5922 // though they were unknown attributes.
5923 if (Attr.getKind() == AttributeList::UnknownAttribute ||
Bob Wilson7c730832015-07-20 22:57:31 +00005924 !Attr.existsInTarget(S.Context.getTargetInfo())) {
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005925 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute()
5926 ? diag::warn_unhandled_ms_attribute_ignored
5927 : diag::warn_unknown_attribute_ignored)
5928 << Attr.getName();
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005929 return;
5930 }
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005931
Aaron Ballman8ee40b72013-09-09 23:33:17 +00005932 if (handleCommonAttributeFeatures(S, scope, D, Attr))
5933 return;
5934
Chris Lattnerb632a6e2008-06-29 00:43:07 +00005935 switch (Attr.getKind()) {
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005936 default:
Richard Smith4f902c72016-03-08 00:32:55 +00005937 if (!Attr.isStmtAttr()) {
5938 // Type attributes are handled elsewhere; silently move on.
5939 assert(Attr.isTypeAttr() && "Non-type attribute not handled");
5940 break;
5941 }
5942 S.Diag(Attr.getLoc(), diag::err_stmt_attribute_invalid_on_decl)
5943 << Attr.getName() << D->getLocation();
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005944 break;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005945 case AttributeList::AT_Interrupt:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005946 handleInterruptAttr(S, D, Attr);
5947 break;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005948 case AttributeList::AT_X86ForceAlignArgPointer:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005949 handleX86ForceAlignArgPointerAttr(S, D, Attr);
5950 break;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005951 case AttributeList::AT_DLLExport:
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005952 case AttributeList::AT_DLLImport:
Hans Wennborge82f19c2014-06-24 23:57:05 +00005953 handleDLLAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005954 break;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005955 case AttributeList::AT_Mips16:
Simon Atanasyan2c87f532017-05-22 12:47:43 +00005956 handleSimpleAttributeWithExclusions<Mips16Attr, MicroMipsAttr,
5957 MipsInterruptAttr>(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005958 break;
Aaron Ballmanab7691c2014-01-09 22:48:32 +00005959 case AttributeList::AT_NoMips16:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005960 handleSimpleAttribute<NoMips16Attr>(S, D, Attr);
5961 break;
Simon Atanasyan2c87f532017-05-22 12:47:43 +00005962 case AttributeList::AT_MicroMips:
5963 handleSimpleAttributeWithExclusions<MicroMipsAttr, Mips16Attr>(S, D, Attr);
5964 break;
5965 case AttributeList::AT_NoMicroMips:
5966 handleSimpleAttribute<NoMicroMipsAttr>(S, D, Attr);
5967 break;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005968 case AttributeList::AT_AMDGPUFlatWorkGroupSize:
5969 handleAMDGPUFlatWorkGroupSizeAttr(S, D, Attr);
5970 break;
5971 case AttributeList::AT_AMDGPUWavesPerEU:
5972 handleAMDGPUWavesPerEUAttr(S, D, Attr);
Matt Arsenault43fae6c2014-12-04 20:38:18 +00005973 break;
5974 case AttributeList::AT_AMDGPUNumSGPR:
5975 handleAMDGPUNumSGPRAttr(S, D, Attr);
5976 break;
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00005977 case AttributeList::AT_AMDGPUNumVGPR:
5978 handleAMDGPUNumVGPRAttr(S, D, Attr);
5979 break;
Dylan McKaye8232d72017-02-08 05:09:26 +00005980 case AttributeList::AT_AVRSignal:
5981 handleAVRSignalAttr(S, D, Attr);
5982 break;
Aaron Ballman9beb5172013-12-02 15:13:14 +00005983 case AttributeList::AT_IBAction:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005984 handleSimpleAttribute<IBActionAttr>(S, D, Attr);
5985 break;
5986 case AttributeList::AT_IBOutlet:
5987 handleIBOutlet(S, D, Attr);
5988 break;
Richard Smith10876ef2013-01-17 01:30:42 +00005989 case AttributeList::AT_IBOutletCollection:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005990 handleIBOutletCollection(S, D, Attr);
5991 break;
Dmitry Polukhin85eda122016-04-11 07:48:59 +00005992 case AttributeList::AT_IFunc:
5993 handleIFuncAttr(S, D, Attr);
5994 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00005995 case AttributeList::AT_Alias:
5996 handleAliasAttr(S, D, Attr);
5997 break;
5998 case AttributeList::AT_Aligned:
5999 handleAlignedAttr(S, D, Attr);
6000 break;
Hal Finkel1b0d24e2014-10-02 21:21:25 +00006001 case AttributeList::AT_AlignValue:
6002 handleAlignValueAttr(S, D, Attr);
6003 break;
George Burgess IVe3763372016-12-22 02:50:20 +00006004 case AttributeList::AT_AllocSize:
6005 handleAllocSizeAttr(S, D, Attr);
6006 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006007 case AttributeList::AT_AlwaysInline:
Paul Robinsonf0674352014-03-31 22:29:15 +00006008 handleAlwaysInlineAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006009 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006010 case AttributeList::AT_AnalyzerNoReturn:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006011 handleAnalyzerNoReturnAttr(S, D, Attr);
6012 break;
6013 case AttributeList::AT_TLSModel:
6014 handleTLSModelAttr(S, D, Attr);
6015 break;
6016 case AttributeList::AT_Annotate:
6017 handleAnnotateAttr(S, D, Attr);
6018 break;
6019 case AttributeList::AT_Availability:
6020 handleAvailabilityAttr(S, D, Attr);
6021 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006022 case AttributeList::AT_CarriesDependency:
Richard Smithe233fbf2013-01-28 22:42:45 +00006023 handleDependencyAttr(S, scope, D, Attr);
6024 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006025 case AttributeList::AT_Common:
6026 handleCommonAttr(S, D, Attr);
6027 break;
Aaron Ballman3aff6332013-12-02 19:30:36 +00006028 case AttributeList::AT_CUDAConstant:
Justin Lebare71b2fa2016-09-30 23:57:34 +00006029 handleConstantAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006030 break;
George Burgess IV3e3bb95b2015-12-02 21:58:08 +00006031 case AttributeList::AT_PassObjectSize:
6032 handlePassObjectSizeAttr(S, D, Attr);
6033 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006034 case AttributeList::AT_Constructor:
6035 handleConstructorAttr(S, D, Attr);
6036 break;
Richard Smith10876ef2013-01-17 01:30:42 +00006037 case AttributeList::AT_CXX11NoReturn:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006038 handleSimpleAttribute<CXX11NoReturnAttr>(S, D, Attr);
6039 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006040 case AttributeList::AT_Deprecated:
Aaron Ballman43f40102014-11-14 22:34:56 +00006041 handleDeprecatedAttr(S, D, Attr);
Benjamin Kramerf435ab42012-05-16 12:19:08 +00006042 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006043 case AttributeList::AT_Destructor:
6044 handleDestructorAttr(S, D, Attr);
6045 break;
6046 case AttributeList::AT_EnableIf:
6047 handleEnableIfAttr(S, D, Attr);
6048 break;
George Burgess IV177399e2017-01-09 04:12:14 +00006049 case AttributeList::AT_DiagnoseIf:
6050 handleDiagnoseIfAttr(S, D, Attr);
6051 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006052 case AttributeList::AT_ExtVectorType:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006053 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006054 break;
Alex Lorenzd5d27e12017-03-01 18:06:25 +00006055 case AttributeList::AT_ExternalSourceSymbol:
6056 handleExternalSourceSymbolAttr(S, D, Attr);
6057 break;
Quentin Colombet4e172062012-11-01 23:55:47 +00006058 case AttributeList::AT_MinSize:
Paul Robinsonaae2fba2014-12-10 23:34:36 +00006059 handleMinSizeAttr(S, D, Attr);
Quentin Colombet4e172062012-11-01 23:55:47 +00006060 break;
Paul Robinsonf0674352014-03-31 22:29:15 +00006061 case AttributeList::AT_OptimizeNone:
6062 handleOptimizeNoneAttr(S, D, Attr);
6063 break;
Alexis Hunt724f14e2014-11-28 00:53:20 +00006064 case AttributeList::AT_FlagEnum:
6065 handleSimpleAttribute<FlagEnumAttr>(S, D, Attr);
6066 break;
Akira Hatanaka3c268af2017-03-21 02:23:00 +00006067 case AttributeList::AT_EnumExtensibility:
6068 handleEnumExtensibilityAttr(S, D, Attr);
6069 break;
Peter Collingbourne41af7c22014-05-20 17:12:51 +00006070 case AttributeList::AT_Flatten:
6071 handleSimpleAttribute<FlattenAttr>(S, D, Attr);
6072 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006073 case AttributeList::AT_Format:
6074 handleFormatAttr(S, D, Attr);
6075 break;
6076 case AttributeList::AT_FormatArg:
6077 handleFormatArgAttr(S, D, Attr);
6078 break;
6079 case AttributeList::AT_CUDAGlobal:
6080 handleGlobalAttr(S, D, Attr);
6081 break;
Aaron Ballmanf79ee272013-12-02 21:09:08 +00006082 case AttributeList::AT_CUDADevice:
Justin Lebar3eaaf862016-01-13 01:07:35 +00006083 handleSimpleAttributeWithExclusions<CUDADeviceAttr, CUDAGlobalAttr>(S, D,
6084 Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006085 break;
Aaron Ballman3aff6332013-12-02 19:30:36 +00006086 case AttributeList::AT_CUDAHost:
Justin Lebar3eaaf862016-01-13 01:07:35 +00006087 handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D,
6088 Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006089 break;
6090 case AttributeList::AT_GNUInline:
6091 handleGNUInlineAttr(S, D, Attr);
6092 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006093 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006094 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne827301e2010-12-12 23:03:07 +00006095 break;
David Majnemer631a90b2015-02-04 07:23:21 +00006096 case AttributeList::AT_Restrict:
6097 handleRestrictAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006098 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006099 case AttributeList::AT_MayAlias:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006100 handleSimpleAttribute<MayAliasAttr>(S, D, Attr);
6101 break;
6102 case AttributeList::AT_Mode:
6103 handleModeAttr(S, D, Attr);
6104 break;
David Majnemer1bf0f8e2015-07-20 22:51:52 +00006105 case AttributeList::AT_NoAlias:
6106 handleSimpleAttribute<NoAliasAttr>(S, D, Attr);
6107 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006108 case AttributeList::AT_NoCommon:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006109 handleSimpleAttribute<NoCommonAttr>(S, D, Attr);
6110 break;
Peter Collingbourneb4728c12014-05-19 22:14:34 +00006111 case AttributeList::AT_NoSplitStack:
6112 handleSimpleAttribute<NoSplitStackAttr>(S, D, Attr);
6113 break;
Ted Kremenek9aedc152014-01-17 06:24:56 +00006114 case AttributeList::AT_NonNull:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006115 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D))
6116 handleNonNullAttrParameter(S, PVD, Attr);
6117 else
6118 handleNonNullAttr(S, D, Attr);
6119 break;
Aaron Ballmanfc1951c2014-01-20 14:19:44 +00006120 case AttributeList::AT_ReturnsNonNull:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006121 handleReturnsNonNullAttr(S, D, Attr);
6122 break;
Hal Finkelee90a222014-09-26 05:04:30 +00006123 case AttributeList::AT_AssumeAligned:
6124 handleAssumeAlignedAttr(S, D, Attr);
6125 break;
Erich Keane623efd82017-03-30 21:48:55 +00006126 case AttributeList::AT_AllocAlign:
6127 handleAllocAlignAttr(S, D, Attr);
6128 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006129 case AttributeList::AT_Overloadable:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006130 handleSimpleAttribute<OverloadableAttr>(S, D, Attr);
6131 break;
6132 case AttributeList::AT_Ownership:
6133 handleOwnershipAttr(S, D, Attr);
6134 break;
6135 case AttributeList::AT_Cold:
6136 handleColdAttr(S, D, Attr);
6137 break;
6138 case AttributeList::AT_Hot:
6139 handleHotAttr(S, D, Attr);
6140 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006141 case AttributeList::AT_Naked:
Charles Davis0e379112016-08-08 21:19:08 +00006142 handleNakedAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006143 break;
6144 case AttributeList::AT_NoReturn:
6145 handleNoReturnAttr(S, D, Attr);
6146 break;
Aaron Ballmanbf7b1ee2013-12-21 16:49:29 +00006147 case AttributeList::AT_NoThrow:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006148 handleSimpleAttribute<NoThrowAttr>(S, D, Attr);
6149 break;
Aaron Ballman3aff6332013-12-02 19:30:36 +00006150 case AttributeList::AT_CUDAShared:
Justin Lebar10411012016-09-30 23:57:30 +00006151 handleSharedAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006152 break;
6153 case AttributeList::AT_VecReturn:
6154 handleVecReturnAttr(S, D, Attr);
6155 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006156 case AttributeList::AT_ObjCOwnership:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006157 handleObjCOwnershipAttr(S, D, Attr);
6158 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006159 case AttributeList::AT_ObjCPreciseLifetime:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006160 handleObjCPreciseLifetimeAttr(S, D, Attr);
6161 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006162 case AttributeList::AT_ObjCReturnsInnerPointer:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006163 handleObjCReturnsInnerPointerAttr(S, D, Attr);
6164 break;
Fariborz Jahanian566fff02012-09-07 23:46:23 +00006165 case AttributeList::AT_ObjCRequiresSuper:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006166 handleObjCRequiresSuperAttr(S, D, Attr);
6167 break;
Fariborz Jahanian0a0a3972013-11-13 23:59:17 +00006168 case AttributeList::AT_ObjCBridge:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006169 handleObjCBridgeAttr(S, scope, D, Attr);
6170 break;
Fariborz Jahanian87c77912013-11-21 20:50:32 +00006171 case AttributeList::AT_ObjCBridgeMutable:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006172 handleObjCBridgeMutableAttr(S, scope, D, Attr);
6173 break;
Fariborz Jahanian1a2519a2013-12-04 20:32:50 +00006174 case AttributeList::AT_ObjCBridgeRelated:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006175 handleObjCBridgeRelatedAttr(S, scope, D, Attr);
6176 break;
Argyrios Kyrtzidisd1438b42013-12-03 21:11:25 +00006177 case AttributeList::AT_ObjCDesignatedInitializer:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006178 handleObjCDesignatedInitializer(S, D, Attr);
6179 break;
Fariborz Jahanian451b92a2014-07-16 16:16:04 +00006180 case AttributeList::AT_ObjCRuntimeName:
6181 handleObjCRuntimeName(S, D, Attr);
6182 break;
Douglas Gregor24ae22c2016-04-01 23:23:52 +00006183 case AttributeList::AT_ObjCRuntimeVisible:
6184 handleSimpleAttribute<ObjCRuntimeVisibleAttr>(S, D, Attr);
6185 break;
Alex Denisovfde64952015-06-26 05:28:36 +00006186 case AttributeList::AT_ObjCBoxable:
6187 handleObjCBoxable(S, D, Attr);
6188 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006189 case AttributeList::AT_CFAuditedTransfer:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006190 handleCFAuditedTransferAttr(S, D, Attr);
6191 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006192 case AttributeList::AT_CFUnknownTransfer:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006193 handleCFUnknownTransferAttr(S, D, Attr);
6194 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006195 case AttributeList::AT_CFConsumed:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006196 case AttributeList::AT_NSConsumed:
6197 handleNSConsumedAttr(S, D, Attr);
6198 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006199 case AttributeList::AT_NSConsumesSelf:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006200 handleSimpleAttribute<NSConsumesSelfAttr>(S, D, Attr);
6201 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006202 case AttributeList::AT_NSReturnsAutoreleased:
6203 case AttributeList::AT_NSReturnsNotRetained:
6204 case AttributeList::AT_CFReturnsNotRetained:
6205 case AttributeList::AT_NSReturnsRetained:
6206 case AttributeList::AT_CFReturnsRetained:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006207 handleNSReturnsRetainedAttr(S, D, Attr);
6208 break;
Tanya Lattnerbcffcdf2012-07-09 22:06:01 +00006209 case AttributeList::AT_WorkGroupSizeHint:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006210 handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, Attr);
6211 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006212 case AttributeList::AT_ReqdWorkGroupSize:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006213 handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, Attr);
6214 break;
Xiuli Panbe6da4b2017-05-04 07:31:20 +00006215 case AttributeList::AT_OpenCLIntelReqdSubGroupSize:
6216 handleSubGroupSize(S, D, Attr);
6217 break;
Joey Goulyaba589c2013-03-08 09:42:32 +00006218 case AttributeList::AT_VecTypeHint:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006219 handleVecTypeHint(S, D, Attr);
6220 break;
Eric Fiselier341e8252016-09-02 18:53:31 +00006221 case AttributeList::AT_RequireConstantInit:
6222 handleSimpleAttribute<RequireConstantInitAttr>(S, D, Attr);
6223 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006224 case AttributeList::AT_InitPriority:
6225 handleInitPriorityAttr(S, D, Attr);
6226 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006227 case AttributeList::AT_Packed:
6228 handlePackedAttr(S, D, Attr);
6229 break;
6230 case AttributeList::AT_Section:
6231 handleSectionAttr(S, D, Attr);
6232 break;
Eric Christopher11acf732015-06-12 01:35:52 +00006233 case AttributeList::AT_Target:
6234 handleTargetAttr(S, D, Attr);
6235 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006236 case AttributeList::AT_Unavailable:
Aaron Ballman8b8ebdd2013-07-18 13:13:52 +00006237 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerf435ab42012-05-16 12:19:08 +00006238 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006239 case AttributeList::AT_ArcWeakrefUnavailable:
6240 handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, Attr);
6241 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006242 case AttributeList::AT_ObjCRootClass:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006243 handleSimpleAttribute<ObjCRootClassAttr>(S, D, Attr);
6244 break;
Alex Lorenza8c44ba2016-10-28 10:25:10 +00006245 case AttributeList::AT_ObjCSubclassingRestricted:
6246 handleSimpleAttribute<ObjCSubclassingRestrictedAttr>(S, D, Attr);
6247 break;
Ted Kremenekf41cf7f12013-12-10 19:43:48 +00006248 case AttributeList::AT_ObjCExplicitProtocolImpl:
Ted Kremenek438f8db2014-02-22 01:06:05 +00006249 handleObjCSuppresProtocolAttr(S, D, Attr);
Ted Kremenek28eace62013-11-23 01:01:34 +00006250 break;
6251 case AttributeList::AT_ObjCRequiresPropertyDefs:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006252 handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, Attr);
6253 break;
Aaron Ballman12b9f652014-01-16 13:55:42 +00006254 case AttributeList::AT_Unused:
Aaron Ballman0bcd6c12016-03-09 16:48:08 +00006255 handleUnusedAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006256 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006257 case AttributeList::AT_ReturnsTwice:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006258 handleSimpleAttribute<ReturnsTwiceAttr>(S, D, Attr);
6259 break;
Akira Hatanakac8667622015-11-06 23:56:15 +00006260 case AttributeList::AT_NotTailCalled:
6261 handleNotTailCalledAttr(S, D, Attr);
6262 break;
Akira Hatanaka7828b1e2015-11-13 00:42:21 +00006263 case AttributeList::AT_DisableTailCalls:
6264 handleDisableTailCallsAttr(S, D, Attr);
6265 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006266 case AttributeList::AT_Used:
6267 handleUsedAttr(S, D, Attr);
6268 break;
John McCalld041a9b2013-02-20 01:54:26 +00006269 case AttributeList::AT_Visibility:
6270 handleVisibilityAttr(S, D, Attr, false);
6271 break;
6272 case AttributeList::AT_TypeVisibility:
6273 handleVisibilityAttr(S, D, Attr, true);
6274 break;
Lubos Lunakedc13882013-07-20 15:05:36 +00006275 case AttributeList::AT_WarnUnused:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006276 handleSimpleAttribute<WarnUnusedAttr>(S, D, Attr);
6277 break;
6278 case AttributeList::AT_WarnUnusedResult:
6279 handleWarnUnusedResult(S, D, Attr);
Chris Lattner237f2752009-02-14 07:37:35 +00006280 break;
Aaron Ballman604dfec2013-12-02 17:07:07 +00006281 case AttributeList::AT_Weak:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006282 handleSimpleAttribute<WeakAttr>(S, D, Attr);
6283 break;
6284 case AttributeList::AT_WeakRef:
6285 handleWeakRefAttr(S, D, Attr);
6286 break;
6287 case AttributeList::AT_WeakImport:
6288 handleWeakImportAttr(S, D, Attr);
6289 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006290 case AttributeList::AT_TransparentUnion:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006291 handleTransparentUnionAttr(S, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006292 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006293 case AttributeList::AT_ObjCException:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006294 handleSimpleAttribute<ObjCExceptionAttr>(S, D, Attr);
6295 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006296 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006297 handleObjCMethodFamilyAttr(S, D, Attr);
John McCall86bc21f2011-03-02 11:33:24 +00006298 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006299 case AttributeList::AT_ObjCNSObject:
6300 handleObjCNSObject(S, D, Attr);
6301 break;
Fariborz Jahanian7a60b6d2015-04-16 18:38:44 +00006302 case AttributeList::AT_ObjCIndependentClass:
6303 handleObjCIndependentClass(S, D, Attr);
6304 break;
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006305 case AttributeList::AT_Blocks:
6306 handleBlocksAttr(S, D, Attr);
6307 break;
6308 case AttributeList::AT_Sentinel:
6309 handleSentinelAttr(S, D, Attr);
6310 break;
Aaron Ballmanbf7b1ee2013-12-21 16:49:29 +00006311 case AttributeList::AT_Const:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006312 handleSimpleAttribute<ConstAttr>(S, D, Attr);
6313 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006314 case AttributeList::AT_Pure:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006315 handleSimpleAttribute<PureAttr>(S, D, Attr);
6316 break;
6317 case AttributeList::AT_Cleanup:
6318 handleCleanupAttr(S, D, Attr);
6319 break;
6320 case AttributeList::AT_NoDebug:
6321 handleNoDebugAttr(S, D, Attr);
6322 break;
Aaron Ballman7c19ab12014-02-22 16:59:24 +00006323 case AttributeList::AT_NoDuplicate:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006324 handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr);
6325 break;
Yaxun Liu7d07ae72016-11-01 18:45:32 +00006326 case AttributeList::AT_Convergent:
6327 handleSimpleAttribute<ConvergentAttr>(S, D, Attr);
6328 break;
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006329 case AttributeList::AT_NoInline:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006330 handleSimpleAttribute<NoInlineAttr>(S, D, Attr);
6331 break;
6332 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
6333 handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, Attr);
6334 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006335 case AttributeList::AT_StdCall:
6336 case AttributeList::AT_CDecl:
6337 case AttributeList::AT_FastCall:
6338 case AttributeList::AT_ThisCall:
6339 case AttributeList::AT_Pascal:
Erich Keane757d3172016-11-02 18:29:35 +00006340 case AttributeList::AT_RegCall:
John McCall477f2bb2016-03-03 06:39:32 +00006341 case AttributeList::AT_SwiftCall:
Reid Klecknerd7857f02014-10-24 17:42:17 +00006342 case AttributeList::AT_VectorCall:
Charles Davisb5a214e2013-08-30 04:39:01 +00006343 case AttributeList::AT_MSABI:
6344 case AttributeList::AT_SysVABI:
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006345 case AttributeList::AT_Pcs:
Guy Benyeif0a014b2012-12-25 08:53:55 +00006346 case AttributeList::AT_IntelOclBicc:
Roman Levenstein35aa5ce2016-03-16 18:00:46 +00006347 case AttributeList::AT_PreserveMost:
6348 case AttributeList::AT_PreserveAll:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006349 handleCallConvAttr(S, D, Attr);
John McCallab26cfa2010-02-05 21:31:56 +00006350 break;
Matthias Gehre01a63382017-03-27 19:45:24 +00006351 case AttributeList::AT_Suppress:
6352 handleSuppressAttr(S, D, Attr);
6353 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006354 case AttributeList::AT_OpenCLKernel:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006355 handleSimpleAttribute<OpenCLKernelAttr>(S, D, Attr);
6356 break;
Xiuli Pan11e13f62016-02-26 03:13:03 +00006357 case AttributeList::AT_OpenCLAccess:
6358 handleOpenCLAccessAttr(S, D, Attr);
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006359 break;
Anastasia Stulovafde76222016-04-01 16:05:09 +00006360 case AttributeList::AT_OpenCLNoSVM:
6361 handleOpenCLNoSVMAttr(S, D, Attr);
6362 break;
John McCall477f2bb2016-03-03 06:39:32 +00006363 case AttributeList::AT_SwiftContext:
6364 handleParameterABIAttr(S, D, Attr, ParameterABI::SwiftContext);
6365 break;
6366 case AttributeList::AT_SwiftErrorResult:
6367 handleParameterABIAttr(S, D, Attr, ParameterABI::SwiftErrorResult);
6368 break;
6369 case AttributeList::AT_SwiftIndirectResult:
6370 handleParameterABIAttr(S, D, Attr, ParameterABI::SwiftIndirectResult);
6371 break;
Evgeniy Stepanovae6ebd32015-11-10 21:28:44 +00006372 case AttributeList::AT_InternalLinkage:
6373 handleInternalLinkageAttr(S, D, Attr);
6374 break;
Peter Collingbourne3afb2662016-04-28 17:09:37 +00006375 case AttributeList::AT_LTOVisibilityPublic:
6376 handleSimpleAttribute<LTOVisibilityPublicAttr>(S, D, Attr);
6377 break;
John McCall8d32c052012-05-22 21:28:12 +00006378
6379 // Microsoft attributes:
David Majnemercd3ebfe2016-05-23 17:16:12 +00006380 case AttributeList::AT_EmptyBases:
6381 handleSimpleAttribute<EmptyBasesAttr>(S, D, Attr);
6382 break;
6383 case AttributeList::AT_LayoutVersion:
6384 handleLayoutVersion(S, D, Attr);
6385 break;
David Majnemer8ab003a2015-02-02 19:30:52 +00006386 case AttributeList::AT_MSNoVTable:
6387 handleSimpleAttribute<MSNoVTableAttr>(S, D, Attr);
David Majnemer129f4172015-02-02 10:22:20 +00006388 break;
David Majnemer8ab003a2015-02-02 19:30:52 +00006389 case AttributeList::AT_MSStruct:
6390 handleSimpleAttribute<MSStructAttr>(S, D, Attr);
John McCall8d32c052012-05-22 21:28:12 +00006391 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006392 case AttributeList::AT_Uuid:
Chandler Carruthedc2c642011-07-02 00:01:44 +00006393 handleUuidAttr(S, D, Attr);
Francois Picheta83957a2010-12-19 06:50:37 +00006394 break;
Aaron Ballman8edb5c22013-12-18 23:44:18 +00006395 case AttributeList::AT_MSInheritance:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006396 handleMSInheritanceAttr(S, D, Attr);
6397 break;
Reid Klecknerb144d362013-05-20 14:02:37 +00006398 case AttributeList::AT_SelectAny:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006399 handleSimpleAttribute<SelectAnyAttr>(S, D, Attr);
6400 break;
Reid Kleckner7d6d2702014-05-01 03:16:47 +00006401 case AttributeList::AT_Thread:
6402 handleDeclspecThreadAttr(S, D, Attr);
6403 break;
David Majnemercd3ebfe2016-05-23 17:16:12 +00006404
Dmitry Polukhinbf17ecf2016-03-09 15:30:53 +00006405 case AttributeList::AT_AbiTag:
6406 handleAbiTagAttr(S, D, Attr);
6407 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00006408
6409 // Thread safety attributes:
DeLesley Hutchinsb6824312013-05-17 23:02:59 +00006410 case AttributeList::AT_AssertExclusiveLock:
6411 handleAssertExclusiveLockAttr(S, D, Attr);
6412 break;
6413 case AttributeList::AT_AssertSharedLock:
6414 handleAssertSharedLockAttr(S, D, Attr);
6415 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006416 case AttributeList::AT_GuardedVar:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006417 handleSimpleAttribute<GuardedVarAttr>(S, D, Attr);
6418 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006419 case AttributeList::AT_PtGuardedVar:
Michael Han3be3b442012-07-23 18:48:41 +00006420 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00006421 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006422 case AttributeList::AT_ScopedLockable:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006423 handleSimpleAttribute<ScopedLockableAttr>(S, D, Attr);
6424 break;
Peter Collingbourne915df992015-05-15 18:33:32 +00006425 case AttributeList::AT_NoSanitize:
6426 handleNoSanitizeAttr(S, D, Attr);
6427 break;
6428 case AttributeList::AT_NoSanitizeSpecific:
6429 handleNoSanitizeSpecificAttr(S, D, Attr);
Kostya Serebryany588d6ab2012-01-24 19:25:38 +00006430 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006431 case AttributeList::AT_NoThreadSafetyAnalysis:
Aaron Ballman6f9165a2013-11-27 15:24:06 +00006432 handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, Attr);
Kostya Serebryany4c0fc992013-02-26 06:58:27 +00006433 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006434 case AttributeList::AT_GuardedBy:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006435 handleGuardedByAttr(S, D, Attr);
6436 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006437 case AttributeList::AT_PtGuardedBy:
Michael Han3be3b442012-07-23 18:48:41 +00006438 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006439 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006440 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Han3be3b442012-07-23 18:48:41 +00006441 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006442 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006443 case AttributeList::AT_LockReturned:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006444 handleLockReturnedAttr(S, D, Attr);
6445 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006446 case AttributeList::AT_LocksExcluded:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006447 handleLocksExcludedAttr(S, D, Attr);
6448 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006449 case AttributeList::AT_SharedTrylockFunction:
Michael Han3be3b442012-07-23 18:48:41 +00006450 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006451 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006452 case AttributeList::AT_AcquiredBefore:
Michael Han3be3b442012-07-23 18:48:41 +00006453 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006454 break;
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006455 case AttributeList::AT_AcquiredAfter:
Michael Han3be3b442012-07-23 18:48:41 +00006456 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00006457 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00006458
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006459 // Capability analysis attributes.
6460 case AttributeList::AT_Capability:
6461 case AttributeList::AT_Lockable:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006462 handleCapabilityAttr(S, D, Attr);
6463 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006464 case AttributeList::AT_RequiresCapability:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006465 handleRequiresCapabilityAttr(S, D, Attr);
6466 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006467
6468 case AttributeList::AT_AssertCapability:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006469 handleAssertCapabilityAttr(S, D, Attr);
6470 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006471 case AttributeList::AT_AcquireCapability:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006472 handleAcquireCapabilityAttr(S, D, Attr);
6473 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006474 case AttributeList::AT_ReleaseCapability:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006475 handleReleaseCapabilityAttr(S, D, Attr);
6476 break;
Aaron Ballman9e9d1842014-02-21 21:05:14 +00006477 case AttributeList::AT_TryAcquireCapability:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006478 handleTryAcquireCapabilityAttr(S, D, Attr);
6479 break;
Aaron Ballmanefe348e2014-02-18 17:36:50 +00006480
DeLesley Hutchins8d41d992013-10-11 22:30:48 +00006481 // Consumed analysis attributes.
DeLesley Hutchins5a715c42013-08-30 22:56:34 +00006482 case AttributeList::AT_Consumable:
6483 handleConsumableAttr(S, D, Attr);
6484 break;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +00006485 case AttributeList::AT_ConsumableAutoCast:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006486 handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr);
6487 break;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +00006488 case AttributeList::AT_ConsumableSetOnRead:
Aaron Ballman8abdd0e2014-03-06 14:02:27 +00006489 handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr);
6490 break;
DeLesley Hutchins210791a2013-10-04 21:28:06 +00006491 case AttributeList::AT_CallableWhen:
6492 handleCallableWhenAttr(S, D, Attr);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00006493 break;
DeLesley Hutchins69391772013-10-17 23:23:53 +00006494 case AttributeList::AT_ParamTypestate:
6495 handleParamTypestateAttr(S, D, Attr);
6496 break;
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00006497 case AttributeList::AT_ReturnTypestate:
6498 handleReturnTypestateAttr(S, D, Attr);
6499 break;
DeLesley Hutchins33a29342013-10-11 23:03:26 +00006500 case AttributeList::AT_SetTypestate:
6501 handleSetTypestateAttr(S, D, Attr);
6502 break;
Chris Wailes9385f9f2013-10-29 20:28:41 +00006503 case AttributeList::AT_TestTypestate:
6504 handleTestTypestateAttr(S, D, Attr);
DeLesley Hutchins33a29342013-10-11 23:03:26 +00006505 break;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00006506
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00006507 // Type safety attributes.
6508 case AttributeList::AT_ArgumentWithTypeTag:
6509 handleArgumentWithTypeTagAttr(S, D, Attr);
6510 break;
6511 case AttributeList::AT_TypeTagForDatatype:
6512 handleTypeTagForDatatypeAttr(S, D, Attr);
6513 break;
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00006514 case AttributeList::AT_AnyX86NoCallerSavedRegisters:
6515 handleNoCallerSavedRegsAttr(S, D, Attr);
6516 break;
Pirama Arumuga Nainare5d2d712016-06-10 21:51:18 +00006517 case AttributeList::AT_RenderScriptKernel:
6518 handleSimpleAttribute<RenderScriptKernelAttr>(S, D, Attr);
Pirama Arumuga Nainar8b788d02016-06-09 23:34:20 +00006519 break;
Aaron Ballman7d2aecb2016-07-13 22:32:15 +00006520 // XRay attributes.
6521 case AttributeList::AT_XRayInstrument:
6522 handleSimpleAttribute<XRayInstrumentAttr>(S, D, Attr);
6523 break;
Dean Michael Berris418da3f2017-03-06 07:08:21 +00006524 case AttributeList::AT_XRayLogArgs:
6525 handleXRayLogArgsAttr(S, D, Attr);
6526 break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006527 }
6528}
6529
6530/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
6531/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherbc638a82010-12-01 22:13:54 +00006532void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourneb331b262011-01-21 02:08:45 +00006533 const AttributeList *AttrList,
Richard Smith10876ef2013-01-17 01:30:42 +00006534 bool IncludeCXX11Attributes) {
6535 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smithf8a75c32013-08-29 00:47:48 +00006536 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindolac18086a2010-02-23 22:00:30 +00006537
Joey Gouly2cd9db12013-12-13 16:15:28 +00006538 // FIXME: We should be able to handle these cases in TableGen.
Rafael Espindolac18086a2010-02-23 22:00:30 +00006539 // GCC accepts
6540 // static int a9 __attribute__((weakref));
6541 // but that looks really pointless. We reject it.
Richard Smithf8a75c32013-08-29 00:47:48 +00006542 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Aaron Ballman9f6fec42014-01-02 23:02:01 +00006543 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias)
6544 << cast<NamedDecl>(D);
Rafael Espindolab3069002013-01-16 23:49:06 +00006545 D->dropAttr<WeakRefAttr>();
Rafael Espindolac18086a2010-02-23 22:00:30 +00006546 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006547 }
Joey Gouly2cd9db12013-12-13 16:15:28 +00006548
Aaron Ballmanbe243a72014-12-04 22:45:31 +00006549 // FIXME: We should be able to handle this in TableGen as well. It would be
6550 // good to have a way to specify "these attributes must appear as a group",
6551 // for these. Additionally, it would be good to have a way to specify "these
6552 // attribute must never appear as a group" for attributes like cold and hot.
Joey Gouly2cd9db12013-12-13 16:15:28 +00006553 if (!D->hasAttr<OpenCLKernelAttr>()) {
6554 // These attributes cannot be applied to a non-kernel function.
Aaron Ballman3e424b52013-12-26 18:30:57 +00006555 if (Attr *A = D->getAttr<ReqdWorkGroupSizeAttr>()) {
Matt Arsenaultb9e9dc52014-12-05 18:03:58 +00006556 // FIXME: This emits a different error message than
6557 // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction.
Aaron Ballman3e424b52013-12-26 18:30:57 +00006558 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00006559 D->setInvalidDecl();
Matt Arsenault43cfcbc2014-12-05 18:03:55 +00006560 } else if (Attr *A = D->getAttr<WorkGroupSizeHintAttr>()) {
Aaron Ballman3e424b52013-12-26 18:30:57 +00006561 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00006562 D->setInvalidDecl();
Matt Arsenault43cfcbc2014-12-05 18:03:55 +00006563 } else if (Attr *A = D->getAttr<VecTypeHintAttr>()) {
Aaron Ballman3e424b52013-12-26 18:30:57 +00006564 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
Joey Gouly2cd9db12013-12-13 16:15:28 +00006565 D->setInvalidDecl();
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006566 } else if (Attr *A = D->getAttr<AMDGPUFlatWorkGroupSizeAttr>()) {
6567 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6568 << A << ExpectedKernelFunction;
6569 D->setInvalidDecl();
6570 } else if (Attr *A = D->getAttr<AMDGPUWavesPerEUAttr>()) {
Matt Arsenaultb9e9dc52014-12-05 18:03:58 +00006571 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6572 << A << ExpectedKernelFunction;
6573 D->setInvalidDecl();
6574 } else if (Attr *A = D->getAttr<AMDGPUNumSGPRAttr>()) {
6575 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6576 << A << ExpectedKernelFunction;
6577 D->setInvalidDecl();
Konstantin Zhuravlyov5b48d722016-09-26 01:02:57 +00006578 } else if (Attr *A = D->getAttr<AMDGPUNumVGPRAttr>()) {
6579 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6580 << A << ExpectedKernelFunction;
6581 D->setInvalidDecl();
Xiuli Panbe6da4b2017-05-04 07:31:20 +00006582 } else if (Attr *A = D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>()) {
6583 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
6584 D->setInvalidDecl();
Joey Gouly2cd9db12013-12-13 16:15:28 +00006585 }
6586 }
Chris Lattnerb632a6e2008-06-29 00:43:07 +00006587}
6588
Hiroshi Inoue939d9322017-06-30 05:40:31 +00006589// Helper for delayed processing TransparentUnion attribute.
Erich Keane2fe684b2017-02-28 20:44:39 +00006590void Sema::ProcessDeclAttributeDelayed(Decl *D, const AttributeList *AttrList) {
6591 for (const AttributeList *Attr = AttrList; Attr; Attr = Attr->getNext())
6592 if (Attr->getKind() == AttributeList::AT_TransparentUnion) {
6593 handleTransparentUnionAttr(*this, D, *Attr);
6594 break;
6595 }
6596}
6597
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00006598// Annotation attributes are the only attributes allowed after an access
6599// specifier.
6600bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
6601 const AttributeList *AttrList) {
6602 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Alexis Hunt3bc72c12012-06-19 23:57:03 +00006603 if (l->getKind() == AttributeList::AT_Annotate) {
David Majnemer706f3152014-12-14 01:05:01 +00006604 ProcessDeclAttribute(*this, nullptr, ASDecl, *l, l->isCXX11Attribute());
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00006605 } else {
6606 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
6607 return true;
6608 }
6609 }
6610
6611 return false;
6612}
6613
John McCall42856de2011-10-01 05:17:03 +00006614/// checkUnusedDeclAttributes - Check a list of attributes to see if it
6615/// contains any decl attributes that we should warn about.
6616static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
6617 for ( ; A; A = A->getNext()) {
6618 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smith810ad3e2013-01-29 10:02:16 +00006619 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCall42856de2011-10-01 05:17:03 +00006620 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
6621
6622 if (A->getKind() == AttributeList::UnknownAttribute) {
6623 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
6624 << A->getName() << A->getRange();
6625 } else {
6626 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
6627 << A->getName() << A->getRange();
6628 }
6629 }
6630}
6631
6632/// checkUnusedDeclAttributes - Given a declarator which is not being
6633/// used to build a declaration, complain about any decl attributes
6634/// which might be lying around on it.
6635void Sema::checkUnusedDeclAttributes(Declarator &D) {
6636 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
6637 ::checkUnusedDeclAttributes(*this, D.getAttributes());
6638 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
6639 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
6640}
6641
Ryan Flynn7d470f32009-07-30 03:15:39 +00006642/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett634962f2012-06-14 21:40:34 +00006643/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedmance3e2c82011-09-07 04:05:06 +00006644NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
6645 SourceLocation Loc) {
Ryan Flynnd963a492009-07-31 02:52:19 +00006646 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Craig Topperc3ec1492014-05-26 06:22:03 +00006647 NamedDecl *NewD = nullptr;
Ryan Flynn7d470f32009-07-30 03:15:39 +00006648 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Alexander Kornienko061900f2015-12-03 11:37:28 +00006649 FunctionDecl *NewFD;
6650 // FIXME: Missing call to CheckFunctionDeclaration().
Eli Friedmance3e2c82011-09-07 04:05:06 +00006651 // FIXME: Mangling?
6652 // FIXME: Is the qualifier info correct?
6653 // FIXME: Is the DeclContext correct?
Alexander Kornienko061900f2015-12-03 11:37:28 +00006654 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
6655 Loc, Loc, DeclarationName(II),
6656 FD->getType(), FD->getTypeSourceInfo(),
6657 SC_None, false/*isInlineSpecified*/,
6658 FD->hasPrototype(),
6659 false/*isConstexprSpecified*/);
Eli Friedmance3e2c82011-09-07 04:05:06 +00006660 NewD = NewFD;
6661
6662 if (FD->getQualifier())
Douglas Gregor14454802011-02-25 02:25:35 +00006663 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedmance3e2c82011-09-07 04:05:06 +00006664
6665 // Fake up parameter variables; they are declared as if this were
6666 // a typedef.
6667 QualType FDTy = FD->getType();
6668 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
6669 SmallVector<ParmVarDecl*, 16> Params;
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00006670 for (const auto &AI : FT->param_types()) {
6671 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
Eli Friedmance3e2c82011-09-07 04:05:06 +00006672 Param->setScopeInfo(0, Params.size());
6673 Params.push_back(Param);
6674 }
David Blaikie9c70e042011-09-21 18:16:56 +00006675 NewFD->setParams(Params);
John McCall3e11ebe2010-03-15 10:12:16 +00006676 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00006677 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
6678 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00006679 VD->getInnerLocStart(), VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00006680 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindola6ae7e502013-04-03 19:27:57 +00006681 VD->getStorageClass());
John McCall3e11ebe2010-03-15 10:12:16 +00006682 if (VD->getQualifier()) {
6683 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregor14454802011-02-25 02:25:35 +00006684 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCall3e11ebe2010-03-15 10:12:16 +00006685 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00006686 }
6687 return NewD;
6688}
6689
James Dennett634962f2012-06-14 21:40:34 +00006690/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynn7d470f32009-07-30 03:15:39 +00006691/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00006692void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00006693 if (W.getUsed()) return; // only do this once
6694 W.setUsed(true);
6695 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
6696 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedmance3e2c82011-09-07 04:05:06 +00006697 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Aaron Ballman36a53502014-01-16 13:03:14 +00006698 NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(),
6699 W.getLocation()));
6700 NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
Chris Lattnere6eab982009-09-08 18:10:11 +00006701 WeakTopLevelDecl.push_back(NewD);
6702 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
6703 // to insert Decl at TU scope, sorry.
6704 DeclContext *SavedContext = CurContext;
6705 CurContext = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis0098a4b2014-03-09 05:15:28 +00006706 NewD->setDeclContext(CurContext);
6707 NewD->setLexicalDeclContext(CurContext);
Chris Lattnere6eab982009-09-08 18:10:11 +00006708 PushOnScopeChains(NewD, S);
6709 CurContext = SavedContext;
6710 } else { // just add weak to existing
Aaron Ballman36a53502014-01-16 13:03:14 +00006711 ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
Ryan Flynn7d470f32009-07-30 03:15:39 +00006712 }
6713}
6714
Rafael Espindolade6a39f2013-03-02 21:41:48 +00006715void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
6716 // It's valid to "forward-declare" #pragma weak, in which case we
6717 // have to do this.
6718 LoadExternalWeakUndeclaredIdentifiers();
6719 if (!WeakUndeclaredIdentifiers.empty()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006720 NamedDecl *ND = nullptr;
Rafael Espindolade6a39f2013-03-02 21:41:48 +00006721 if (VarDecl *VD = dyn_cast<VarDecl>(D))
6722 if (VD->isExternC())
6723 ND = VD;
6724 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
6725 if (FD->isExternC())
6726 ND = FD;
6727 if (ND) {
6728 if (IdentifierInfo *Id = ND->getIdentifier()) {
Chandler Carruthf85d9822015-03-26 08:32:49 +00006729 auto I = WeakUndeclaredIdentifiers.find(Id);
Rafael Espindolade6a39f2013-03-02 21:41:48 +00006730 if (I != WeakUndeclaredIdentifiers.end()) {
6731 WeakInfo W = I->second;
6732 DeclApplyPragmaWeak(S, ND, W);
6733 WeakUndeclaredIdentifiers[Id] = W;
6734 }
6735 }
6736 }
6737 }
6738}
6739
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006740/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
6741/// it, apply them to D. This is a bit tricky because PD can have attributes
6742/// specified in many different places, and we need to find and apply them all.
Richard Smithf8a75c32013-08-29 00:47:48 +00006743void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006744 // Apply decl attributes from the DeclSpec if present.
John McCall53fa7142010-12-24 02:08:15 +00006745 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smithf8a75c32013-08-29 00:47:48 +00006746 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpd3bb5572009-07-24 19:02:52 +00006747
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006748 // Walk the declarator structure, applying decl attributes that were in a type
6749 // position to the decl itself. This handles cases like:
6750 // int *__attr__(x)** D;
6751 // when X is a decl attribute.
6752 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
6753 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithf8a75c32013-08-29 00:47:48 +00006754 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpd3bb5572009-07-24 19:02:52 +00006755
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006756 // Finally, apply any attributes on the decl itself.
6757 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smithf8a75c32013-08-29 00:47:48 +00006758 ProcessDeclAttributeList(S, D, Attrs);
Alex Lorenz9e7bf162017-04-18 14:33:39 +00006759
6760 // Apply additional attributes specified by '#pragma clang attribute'.
6761 AddPragmaAttributes(S, D);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00006762}
John McCall28a6aea2009-11-04 02:18:39 +00006763
John McCall31168b02011-06-15 23:02:42 +00006764/// Is the given declaration allowed to use a forbidden type?
John McCallb61e14e2015-10-27 04:54:50 +00006765/// If so, it'll still be annotated with an attribute that makes it
6766/// illegal to actually use.
6767static bool isForbiddenTypeAllowed(Sema &S, Decl *decl,
6768 const DelayedDiagnostic &diag,
John McCallc6af8c62015-10-28 05:03:19 +00006769 UnavailableAttr::ImplicitReason &reason) {
John McCall31168b02011-06-15 23:02:42 +00006770 // Private ivars are always okay. Unfortunately, people don't
6771 // always properly make their ivars private, even in system headers.
6772 // Plus we need to make fields okay, too.
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00006773 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
6774 !isa<FunctionDecl>(decl))
John McCall31168b02011-06-15 23:02:42 +00006775 return false;
6776
John McCallc6af8c62015-10-28 05:03:19 +00006777 // Silently accept unsupported uses of __weak in both user and system
6778 // declarations when it's been disabled, for ease of integration with
6779 // -fno-objc-arc files. We do have to take some care against attempts
6780 // to define such things; for now, we've only done that for ivars
6781 // and properties.
6782 if ((isa<ObjCIvarDecl>(decl) || isa<ObjCPropertyDecl>(decl))) {
6783 if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled ||
6784 diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) {
6785 reason = UnavailableAttr::IR_ForbiddenWeak;
6786 return true;
6787 }
John McCallb61e14e2015-10-27 04:54:50 +00006788 }
6789
John McCallc6af8c62015-10-28 05:03:19 +00006790 // Allow all sorts of things in system headers.
6791 if (S.Context.getSourceManager().isInSystemHeader(decl->getLocation())) {
6792 // Currently, all the failures dealt with this way are due to ARC
6793 // restrictions.
6794 reason = UnavailableAttr::IR_ARCForbiddenType;
6795 return true;
John McCallb61e14e2015-10-27 04:54:50 +00006796 }
6797
6798 return false;
John McCall31168b02011-06-15 23:02:42 +00006799}
6800
6801/// Handle a delayed forbidden-type diagnostic.
6802static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
6803 Decl *decl) {
John McCallc6af8c62015-10-28 05:03:19 +00006804 auto reason = UnavailableAttr::IR_None;
6805 if (decl && isForbiddenTypeAllowed(S, decl, diag, reason)) {
6806 assert(reason && "didn't set reason?");
6807 decl->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", reason,
6808 diag.Loc));
John McCall31168b02011-06-15 23:02:42 +00006809 return;
6810 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00006811 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00006812 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer474261a2012-06-02 10:20:41 +00006813 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00006814 // kind of forbidden type messages on unavailable functions.
6815 if (FD->hasAttr<UnavailableAttr>() &&
6816 diag.getForbiddenTypeDiagnostic() ==
6817 diag::err_arc_array_param_no_ownership) {
6818 diag.Triggered = true;
6819 return;
6820 }
6821 }
John McCall31168b02011-06-15 23:02:42 +00006822
6823 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
6824 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
6825 diag.Triggered = true;
6826}
6827
Manman Ren45b1ab12016-05-06 19:57:16 +00006828static const AvailabilityAttr *getAttrForPlatform(ASTContext &Context,
6829 const Decl *D) {
6830 // Check each AvailabilityAttr to find the one for this platform.
6831 for (const auto *A : D->attrs()) {
6832 if (const auto *Avail = dyn_cast<AvailabilityAttr>(A)) {
6833 // FIXME: this is copied from CheckAvailability. We should try to
6834 // de-duplicate.
6835
6836 // Check if this is an App Extension "platform", and if so chop off
6837 // the suffix for matching with the actual platform.
6838 StringRef ActualPlatform = Avail->getPlatform()->getName();
6839 StringRef RealizedPlatform = ActualPlatform;
6840 if (Context.getLangOpts().AppExt) {
6841 size_t suffix = RealizedPlatform.rfind("_app_extension");
6842 if (suffix != StringRef::npos)
6843 RealizedPlatform = RealizedPlatform.slice(0, suffix);
6844 }
6845
6846 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
6847
6848 // Match the platform name.
6849 if (RealizedPlatform == TargetPlatform)
6850 return Avail;
6851 }
6852 }
6853 return nullptr;
6854}
6855
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00006856/// \brief whether we should emit a diagnostic for \c K and \c DeclVersion in
6857/// the context of \c Ctx. For example, we should emit an unavailable diagnostic
6858/// in a deprecated context, but not the other way around.
6859static bool ShouldDiagnoseAvailabilityInContext(Sema &S, AvailabilityResult K,
6860 VersionTuple DeclVersion,
6861 Decl *Ctx) {
6862 assert(K != AR_Available && "Expected an unavailable declaration here!");
6863
6864 // Checks if we should emit the availability diagnostic in the context of C.
6865 auto CheckContext = [&](const Decl *C) {
6866 if (K == AR_NotYetIntroduced) {
6867 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, C))
6868 if (AA->getIntroduced() >= DeclVersion)
6869 return true;
6870 } else if (K == AR_Deprecated)
6871 if (C->isDeprecated())
6872 return true;
6873
6874 if (C->isUnavailable())
6875 return true;
6876 return false;
6877 };
6878
6879 // FIXME: This is a temporary workaround! Some existing Apple headers depends
6880 // on nested declarations in an @interface having the availability of the
6881 // interface when they really shouldn't: they are members of the enclosing
6882 // context, and can referenced from there.
6883 if (S.OriginalLexicalContext && cast<Decl>(S.OriginalLexicalContext) != Ctx) {
6884 auto *OrigCtx = cast<Decl>(S.OriginalLexicalContext);
6885 if (CheckContext(OrigCtx))
6886 return false;
6887
6888 // An implementation implicitly has the availability of the interface.
6889 if (auto *CatOrImpl = dyn_cast<ObjCImplDecl>(OrigCtx)) {
6890 if (const ObjCInterfaceDecl *Interface = CatOrImpl->getClassInterface())
6891 if (CheckContext(Interface))
6892 return false;
6893 }
6894 // A category implicitly has the availability of the interface.
6895 else if (auto *CatD = dyn_cast<ObjCCategoryDecl>(OrigCtx))
6896 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface())
6897 if (CheckContext(Interface))
6898 return false;
6899 }
6900
6901 do {
6902 if (CheckContext(Ctx))
6903 return false;
6904
6905 // An implementation implicitly has the availability of the interface.
6906 if (auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) {
6907 if (const ObjCInterfaceDecl *Interface = CatOrImpl->getClassInterface())
6908 if (CheckContext(Interface))
6909 return false;
6910 }
6911 // A category implicitly has the availability of the interface.
6912 else if (auto *CatD = dyn_cast<ObjCCategoryDecl>(Ctx))
6913 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface())
6914 if (CheckContext(Interface))
6915 return false;
6916 } while ((Ctx = cast_or_null<Decl>(Ctx->getDeclContext())));
6917
6918 return true;
6919}
6920
Alex Lorenzc9a369f2017-06-22 17:02:24 +00006921static bool
6922shouldDiagnoseAvailabilityByDefault(const ASTContext &Context,
6923 const VersionTuple &DeploymentVersion,
6924 const VersionTuple &DeclVersion) {
6925 const auto &Triple = Context.getTargetInfo().getTriple();
6926 VersionTuple ForceAvailabilityFromVersion;
6927 switch (Triple.getOS()) {
6928 case llvm::Triple::IOS:
6929 case llvm::Triple::TvOS:
6930 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/11);
6931 break;
6932 case llvm::Triple::WatchOS:
6933 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/4);
6934 break;
6935 case llvm::Triple::Darwin:
6936 case llvm::Triple::MacOSX:
6937 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/10, /*Minor=*/13);
6938 break;
6939 default:
6940 // New targets should always warn about availability.
6941 return Triple.getVendor() == llvm::Triple::Apple;
6942 }
6943 return DeploymentVersion >= ForceAvailabilityFromVersion ||
6944 DeclVersion >= ForceAvailabilityFromVersion;
6945}
6946
Erik Pilkington4042f3c2017-07-05 17:08:56 +00006947static NamedDecl *findEnclosingDeclToAnnotate(Decl *OrigCtx) {
6948 for (Decl *Ctx = OrigCtx; Ctx;
6949 Ctx = cast_or_null<Decl>(Ctx->getDeclContext())) {
6950 if (isa<TagDecl>(Ctx) || isa<FunctionDecl>(Ctx) || isa<ObjCMethodDecl>(Ctx))
6951 return cast<NamedDecl>(Ctx);
6952 if (auto *CD = dyn_cast<ObjCContainerDecl>(Ctx)) {
6953 if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx))
6954 return Imp->getClassInterface();
6955 return CD;
6956 }
6957 }
6958
6959 return dyn_cast<NamedDecl>(OrigCtx);
6960}
6961
6962/// Actually emit an availability diagnostic for a reference to an unavailable
6963/// decl.
6964///
6965/// \param Ctx The context that the reference occurred in
6966/// \param ReferringDecl The exact declaration that was referenced.
6967/// \param OffendingDecl A related decl to \c ReferringDecl that has an
6968/// availability attribute corrisponding to \c K attached to it. Note that this
6969/// may not be the same as ReferringDecl, i.e. if an EnumDecl is annotated and
6970/// we refer to a member EnumConstantDecl, ReferringDecl is the EnumConstantDecl
6971/// and OffendingDecl is the EnumDecl.
Erik Pilkington796a3e22016-08-05 22:59:03 +00006972static void DoEmitAvailabilityWarning(Sema &S, AvailabilityResult K,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00006973 Decl *Ctx, const NamedDecl *ReferringDecl,
6974 const NamedDecl *OffendingDecl,
Aaron Ballmanfb237522014-10-15 15:37:51 +00006975 StringRef Message, SourceLocation Loc,
6976 const ObjCInterfaceDecl *UnknownObjCClass,
6977 const ObjCPropertyDecl *ObjCProperty,
6978 bool ObjCPropertyAccess) {
6979 // Diagnostics for deprecated or unavailable.
6980 unsigned diag, diag_message, diag_fwdclass_message;
John McCallb61e14e2015-10-27 04:54:50 +00006981 unsigned diag_available_here = diag::note_availability_specified_here;
Erik Pilkington4042f3c2017-07-05 17:08:56 +00006982 SourceLocation NoteLocation = OffendingDecl->getLocation();
Aaron Ballmanfb237522014-10-15 15:37:51 +00006983
6984 // Matches 'diag::note_property_attribute' options.
6985 unsigned property_note_select;
6986
6987 // Matches diag::note_availability_specified_here.
6988 unsigned available_here_select_kind;
6989
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00006990 VersionTuple DeclVersion;
Erik Pilkington4042f3c2017-07-05 17:08:56 +00006991 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, OffendingDecl))
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00006992 DeclVersion = AA->getIntroduced();
6993
6994 if (!ShouldDiagnoseAvailabilityInContext(S, K, DeclVersion, Ctx))
6995 return;
6996
Aaron Ballmanfb237522014-10-15 15:37:51 +00006997 switch (K) {
Erik Pilkington796a3e22016-08-05 22:59:03 +00006998 case AR_Deprecated:
Aaron Ballmanfb237522014-10-15 15:37:51 +00006999 diag = !ObjCPropertyAccess ? diag::warn_deprecated
7000 : diag::warn_property_method_deprecated;
7001 diag_message = diag::warn_deprecated_message;
7002 diag_fwdclass_message = diag::warn_deprecated_fwdclass_message;
7003 property_note_select = /* deprecated */ 0;
7004 available_here_select_kind = /* deprecated */ 2;
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007005 if (const auto *attr = OffendingDecl->getAttr<DeprecatedAttr>())
Erich Keanea32910d2017-03-23 18:51:54 +00007006 NoteLocation = attr->getLocation();
Aaron Ballmanfb237522014-10-15 15:37:51 +00007007 break;
7008
Erik Pilkington796a3e22016-08-05 22:59:03 +00007009 case AR_Unavailable:
Aaron Ballmanfb237522014-10-15 15:37:51 +00007010 diag = !ObjCPropertyAccess ? diag::err_unavailable
7011 : diag::err_property_method_unavailable;
7012 diag_message = diag::err_unavailable_message;
7013 diag_fwdclass_message = diag::warn_unavailable_fwdclass_message;
7014 property_note_select = /* unavailable */ 1;
7015 available_here_select_kind = /* unavailable */ 0;
John McCallb61e14e2015-10-27 04:54:50 +00007016
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007017 if (auto attr = OffendingDecl->getAttr<UnavailableAttr>()) {
John McCallc6af8c62015-10-28 05:03:19 +00007018 if (attr->isImplicit() && attr->getImplicitReason()) {
7019 // Most of these failures are due to extra restrictions in ARC;
7020 // reflect that in the primary diagnostic when applicable.
7021 auto flagARCError = [&] {
7022 if (S.getLangOpts().ObjCAutoRefCount &&
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007023 S.getSourceManager().isInSystemHeader(
7024 OffendingDecl->getLocation()))
John McCallc6af8c62015-10-28 05:03:19 +00007025 diag = diag::err_unavailable_in_arc;
7026 };
7027
7028 switch (attr->getImplicitReason()) {
7029 case UnavailableAttr::IR_None: break;
7030
7031 case UnavailableAttr::IR_ARCForbiddenType:
7032 flagARCError();
7033 diag_available_here = diag::note_arc_forbidden_type;
7034 break;
7035
7036 case UnavailableAttr::IR_ForbiddenWeak:
7037 if (S.getLangOpts().ObjCWeakRuntime)
7038 diag_available_here = diag::note_arc_weak_disabled;
7039 else
7040 diag_available_here = diag::note_arc_weak_no_runtime;
7041 break;
7042
7043 case UnavailableAttr::IR_ARCForbiddenConversion:
7044 flagARCError();
7045 diag_available_here = diag::note_performs_forbidden_arc_conversion;
7046 break;
7047
7048 case UnavailableAttr::IR_ARCInitReturnsUnrelated:
7049 flagARCError();
7050 diag_available_here = diag::note_arc_init_returns_unrelated;
7051 break;
7052
7053 case UnavailableAttr::IR_ARCFieldWithOwnership:
7054 flagARCError();
7055 diag_available_here = diag::note_arc_field_with_ownership;
7056 break;
7057 }
7058 }
John McCallb61e14e2015-10-27 04:54:50 +00007059 }
Aaron Ballmanfb237522014-10-15 15:37:51 +00007060 break;
7061
Alex Lorenzc9a369f2017-06-22 17:02:24 +00007062 case AR_NotYetIntroduced: {
7063 // We would like to emit the diagnostic even if -Wunguarded-availability is
7064 // not specified for deployment targets >= to iOS 11 or equivalent or
7065 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
7066 // later.
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007067 const AvailabilityAttr *AA =
7068 getAttrForPlatform(S.getASTContext(), OffendingDecl);
Alex Lorenzc9a369f2017-06-22 17:02:24 +00007069 VersionTuple Introduced = AA->getIntroduced();
7070 bool NewWarning = shouldDiagnoseAvailabilityByDefault(
7071 S.Context, S.Context.getTargetInfo().getPlatformMinVersion(),
7072 Introduced);
7073 diag = NewWarning ? diag::warn_partial_availability_new
7074 : diag::warn_partial_availability;
7075 diag_message = NewWarning ? diag::warn_partial_message_new
7076 : diag::warn_partial_message;
7077 diag_fwdclass_message = NewWarning ? diag::warn_partial_fwdclass_message_new
7078 : diag::warn_partial_fwdclass_message;
Nico Weber0055a192015-03-19 19:18:22 +00007079 property_note_select = /* partial */ 2;
7080 available_here_select_kind = /* partial */ 3;
7081 break;
Alex Lorenzc9a369f2017-06-22 17:02:24 +00007082 }
Erik Pilkington796a3e22016-08-05 22:59:03 +00007083
7084 case AR_Available:
7085 llvm_unreachable("Warning for availability of available declaration?");
Aaron Ballmanfb237522014-10-15 15:37:51 +00007086 }
7087
Manman Renc7890fe2016-03-16 18:50:49 +00007088 CharSourceRange UseRange;
7089 StringRef Replacement;
Erik Pilkington796a3e22016-08-05 22:59:03 +00007090 if (K == AR_Deprecated) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007091 if (auto attr = OffendingDecl->getAttr<DeprecatedAttr>())
Manman Renc7890fe2016-03-16 18:50:49 +00007092 Replacement = attr->getReplacement();
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007093 if (auto attr = getAttrForPlatform(S.Context, OffendingDecl))
Manman Ren75bc6762016-03-21 17:30:55 +00007094 Replacement = attr->getReplacement();
Manman Renc7890fe2016-03-16 18:50:49 +00007095
7096 if (!Replacement.empty())
7097 UseRange =
7098 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
7099 }
7100
Aaron Ballmanfb237522014-10-15 15:37:51 +00007101 if (!Message.empty()) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007102 S.Diag(Loc, diag_message) << ReferringDecl << Message
Manman Renc7890fe2016-03-16 18:50:49 +00007103 << (UseRange.isValid() ?
7104 FixItHint::CreateReplacement(UseRange, Replacement) : FixItHint());
Aaron Ballmanfb237522014-10-15 15:37:51 +00007105 if (ObjCProperty)
7106 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
7107 << ObjCProperty->getDeclName() << property_note_select;
7108 } else if (!UnknownObjCClass) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007109 S.Diag(Loc, diag) << ReferringDecl
Manman Renc7890fe2016-03-16 18:50:49 +00007110 << (UseRange.isValid() ?
7111 FixItHint::CreateReplacement(UseRange, Replacement) : FixItHint());
Aaron Ballmanfb237522014-10-15 15:37:51 +00007112 if (ObjCProperty)
7113 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
7114 << ObjCProperty->getDeclName() << property_note_select;
7115 } else {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007116 S.Diag(Loc, diag_fwdclass_message) << ReferringDecl
Manman Renc7890fe2016-03-16 18:50:49 +00007117 << (UseRange.isValid() ?
7118 FixItHint::CreateReplacement(UseRange, Replacement) : FixItHint());
Aaron Ballmanfb237522014-10-15 15:37:51 +00007119 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
7120 }
7121
Manman Ren45b1ab12016-05-06 19:57:16 +00007122 // The declaration can have multiple availability attributes, we are looking
7123 // at one of them.
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007124 const AvailabilityAttr *A = getAttrForPlatform(S.Context, OffendingDecl);
Manman Ren45b1ab12016-05-06 19:57:16 +00007125 if (A && A->isInherited()) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007126 for (const Decl *Redecl = OffendingDecl->getMostRecentDecl(); Redecl;
Manman Ren45b1ab12016-05-06 19:57:16 +00007127 Redecl = Redecl->getPreviousDecl()) {
7128 const AvailabilityAttr *AForRedecl = getAttrForPlatform(S.Context,
7129 Redecl);
7130 if (AForRedecl && !AForRedecl->isInherited()) {
7131 // If D is a declaration with inherited attributes, the note should
7132 // point to the declaration with actual attributes.
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007133 S.Diag(Redecl->getLocation(), diag_available_here) << OffendingDecl
Manman Ren45b1ab12016-05-06 19:57:16 +00007134 << available_here_select_kind;
7135 break;
7136 }
7137 }
7138 }
7139 else
Erich Keanea32910d2017-03-23 18:51:54 +00007140 S.Diag(NoteLocation, diag_available_here)
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007141 << OffendingDecl << available_here_select_kind;
Manman Ren45b1ab12016-05-06 19:57:16 +00007142
Erik Pilkington796a3e22016-08-05 22:59:03 +00007143 if (K == AR_NotYetIntroduced)
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007144 if (const auto *Enclosing = findEnclosingDeclToAnnotate(Ctx)) {
7145 if (auto *TD = dyn_cast<TagDecl>(Enclosing))
7146 if (TD->getDeclName().isEmpty()) {
7147 S.Diag(TD->getLocation(), diag::note_partial_availability_silence)
7148 << /*Anonymous*/1 << TD->getKindName();
7149 return;
7150 }
7151 S.Diag(Enclosing->getLocation(), diag::note_partial_availability_silence)
7152 << /*Named*/0 << Enclosing;
7153 }
Aaron Ballmanfb237522014-10-15 15:37:51 +00007154}
7155
7156static void handleDelayedAvailabilityCheck(Sema &S, DelayedDiagnostic &DD,
7157 Decl *Ctx) {
Erik Pilkingtona8003972016-10-28 21:39:27 +00007158 assert(DD.Kind == DelayedDiagnostic::Availability &&
7159 "Expected an availability diagnostic here");
7160
Aaron Ballmanfb237522014-10-15 15:37:51 +00007161 DD.Triggered = true;
Nico Weber0055a192015-03-19 19:18:22 +00007162 DoEmitAvailabilityWarning(
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007163 S, DD.getAvailabilityResult(), Ctx, DD.getAvailabilityReferringDecl(),
7164 DD.getAvailabilityOffendingDecl(), DD.getAvailabilityMessage(), DD.Loc,
7165 DD.getUnknownObjCClass(), DD.getObjCProperty(), false);
Aaron Ballmanfb237522014-10-15 15:37:51 +00007166}
7167
John McCall2ec85372012-05-07 06:16:41 +00007168void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
7169 assert(DelayedDiagnostics.getCurrentPool());
John McCall6347b682012-05-07 06:16:58 +00007170 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall2ec85372012-05-07 06:16:41 +00007171 DelayedDiagnostics.popWithoutEmitting(state);
John McCallc1465822011-02-14 07:13:47 +00007172
John McCall2ec85372012-05-07 06:16:41 +00007173 // When delaying diagnostics to run in the context of a parsed
7174 // declaration, we only want to actually emit anything if parsing
7175 // succeeds.
7176 if (!decl) return;
John McCallc1465822011-02-14 07:13:47 +00007177
John McCall2ec85372012-05-07 06:16:41 +00007178 // We emit all the active diagnostics in this pool or any of its
7179 // parents. In general, we'll get one pool for the decl spec
7180 // and a child pool for each declarator; in a decl group like:
7181 // deprecated_typedef foo, *bar, baz();
7182 // only the declarator pops will be passed decls. This is correct;
7183 // we really do need to consider delayed diagnostics from the decl spec
7184 // for each of the different declarations.
John McCall6347b682012-05-07 06:16:58 +00007185 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall2ec85372012-05-07 06:16:41 +00007186 do {
John McCall6347b682012-05-07 06:16:58 +00007187 for (DelayedDiagnosticPool::pool_iterator
John McCall2ec85372012-05-07 06:16:41 +00007188 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
7189 // This const_cast is a bit lame. Really, Triggered should be mutable.
7190 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCallc1465822011-02-14 07:13:47 +00007191 if (diag.Triggered)
John McCall86121512010-01-27 03:50:35 +00007192 continue;
7193
John McCallc1465822011-02-14 07:13:47 +00007194 switch (diag.Kind) {
Erik Pilkingtona8003972016-10-28 21:39:27 +00007195 case DelayedDiagnostic::Availability:
Ted Kremenekb79ee572013-12-18 23:30:06 +00007196 // Don't bother giving deprecation/unavailable diagnostics if
7197 // the decl is invalid.
John McCall18a962b2012-01-26 20:04:03 +00007198 if (!decl->isInvalidDecl())
Aaron Ballmanfb237522014-10-15 15:37:51 +00007199 handleDelayedAvailabilityCheck(*this, diag, decl);
John McCall86121512010-01-27 03:50:35 +00007200 break;
7201
7202 case DelayedDiagnostic::Access:
John McCall2ec85372012-05-07 06:16:41 +00007203 HandleDelayedAccessCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00007204 break;
John McCall31168b02011-06-15 23:02:42 +00007205
7206 case DelayedDiagnostic::ForbiddenType:
John McCall2ec85372012-05-07 06:16:41 +00007207 handleDelayedForbiddenType(*this, diag, decl);
John McCall31168b02011-06-15 23:02:42 +00007208 break;
John McCall86121512010-01-27 03:50:35 +00007209 }
7210 }
John McCall2ec85372012-05-07 06:16:41 +00007211 } while ((pool = pool->getParent()));
John McCall28a6aea2009-11-04 02:18:39 +00007212}
7213
John McCall6347b682012-05-07 06:16:58 +00007214/// Given a set of delayed diagnostics, re-emit them as if they had
7215/// been delayed in the current context instead of in the given pool.
7216/// Essentially, this just moves them to the current pool.
7217void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
7218 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
7219 assert(curPool && "re-emitting in undelayed context not supported");
7220 curPool->steal(pool);
7221}
7222
Erik Pilkington796a3e22016-08-05 22:59:03 +00007223void Sema::EmitAvailabilityWarning(AvailabilityResult AR,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007224 const NamedDecl *ReferringDecl,
7225 const NamedDecl *OffendingDecl,
7226 StringRef Message, SourceLocation Loc,
Ted Kremenekb79ee572013-12-18 23:30:06 +00007227 const ObjCInterfaceDecl *UnknownObjCClass,
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007228 const ObjCPropertyDecl *ObjCProperty,
Fariborz Jahanian89ea9612014-06-16 17:25:41 +00007229 bool ObjCPropertyAccess) {
John McCall28a6aea2009-11-04 02:18:39 +00007230 // Delay if we're currently parsing a declaration.
Erik Pilkingtona8003972016-10-28 21:39:27 +00007231 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007232 DelayedDiagnostics.add(
7233 DelayedDiagnostic::makeAvailability(
7234 AR, Loc, ReferringDecl, OffendingDecl, UnknownObjCClass,
7235 ObjCProperty, Message, ObjCPropertyAccess));
John McCall28a6aea2009-11-04 02:18:39 +00007236 return;
7237 }
7238
Ted Kremenekb79ee572013-12-18 23:30:06 +00007239 Decl *Ctx = cast<Decl>(getCurLexicalContext());
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007240 DoEmitAvailabilityWarning(*this, AR, Ctx, ReferringDecl, OffendingDecl,
7241 Message, Loc, UnknownObjCClass, ObjCProperty,
7242 ObjCPropertyAccess);
John McCall28a6aea2009-11-04 02:18:39 +00007243}
Erik Pilkington48c7cc92016-07-29 17:37:38 +00007244
Erik Pilkington5cd57172016-08-16 17:44:11 +00007245namespace {
7246
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00007247/// Returns true if the given statement can be a body-like child of \p Parent.
7248bool isBodyLikeChildStmt(const Stmt *S, const Stmt *Parent) {
7249 switch (Parent->getStmtClass()) {
7250 case Stmt::IfStmtClass:
7251 return cast<IfStmt>(Parent)->getThen() == S ||
7252 cast<IfStmt>(Parent)->getElse() == S;
7253 case Stmt::WhileStmtClass:
7254 return cast<WhileStmt>(Parent)->getBody() == S;
7255 case Stmt::DoStmtClass:
7256 return cast<DoStmt>(Parent)->getBody() == S;
7257 case Stmt::ForStmtClass:
7258 return cast<ForStmt>(Parent)->getBody() == S;
7259 case Stmt::CXXForRangeStmtClass:
7260 return cast<CXXForRangeStmt>(Parent)->getBody() == S;
7261 case Stmt::ObjCForCollectionStmtClass:
7262 return cast<ObjCForCollectionStmt>(Parent)->getBody() == S;
7263 case Stmt::CaseStmtClass:
7264 case Stmt::DefaultStmtClass:
7265 return cast<SwitchCase>(Parent)->getSubStmt() == S;
7266 default:
7267 return false;
7268 }
7269}
7270
7271class StmtUSEFinder : public RecursiveASTVisitor<StmtUSEFinder> {
7272 const Stmt *Target;
7273
7274public:
7275 bool VisitStmt(Stmt *S) { return S != Target; }
7276
7277 /// Returns true if the given statement is present in the given declaration.
7278 static bool isContained(const Stmt *Target, const Decl *D) {
7279 StmtUSEFinder Visitor;
7280 Visitor.Target = Target;
7281 return !Visitor.TraverseDecl(const_cast<Decl *>(D));
7282 }
7283};
7284
7285/// Traverses the AST and finds the last statement that used a given
7286/// declaration.
7287class LastDeclUSEFinder : public RecursiveASTVisitor<LastDeclUSEFinder> {
7288 const Decl *D;
7289
7290public:
7291 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
7292 if (DRE->getDecl() == D)
7293 return false;
7294 return true;
7295 }
7296
7297 static const Stmt *findLastStmtThatUsesDecl(const Decl *D,
7298 const CompoundStmt *Scope) {
7299 LastDeclUSEFinder Visitor;
7300 Visitor.D = D;
7301 for (auto I = Scope->body_rbegin(), E = Scope->body_rend(); I != E; ++I) {
7302 const Stmt *S = *I;
7303 if (!Visitor.TraverseStmt(const_cast<Stmt *>(S)))
7304 return S;
7305 }
7306 return nullptr;
7307 }
7308};
7309
Erik Pilkington5cd57172016-08-16 17:44:11 +00007310/// \brief This class implements -Wunguarded-availability.
7311///
7312/// This is done with a traversal of the AST of a function that makes reference
7313/// to a partially available declaration. Whenever we encounter an \c if of the
7314/// form: \c if(@available(...)), we use the version from the condition to visit
7315/// the then statement.
7316class DiagnoseUnguardedAvailability
7317 : public RecursiveASTVisitor<DiagnoseUnguardedAvailability> {
7318 typedef RecursiveASTVisitor<DiagnoseUnguardedAvailability> Base;
7319
7320 Sema &SemaRef;
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007321 Decl *Ctx;
Erik Pilkington5cd57172016-08-16 17:44:11 +00007322
7323 /// Stack of potentially nested 'if (@available(...))'s.
7324 SmallVector<VersionTuple, 8> AvailabilityStack;
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00007325 SmallVector<const Stmt *, 16> StmtStack;
Erik Pilkington5cd57172016-08-16 17:44:11 +00007326
7327 void DiagnoseDeclAvailability(NamedDecl *D, SourceRange Range);
7328
7329public:
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007330 DiagnoseUnguardedAvailability(Sema &SemaRef, Decl *Ctx)
7331 : SemaRef(SemaRef), Ctx(Ctx) {
7332 AvailabilityStack.push_back(
7333 SemaRef.Context.getTargetInfo().getPlatformMinVersion());
Erik Pilkington5cd57172016-08-16 17:44:11 +00007334 }
7335
Alex Lorenz6f911122017-05-16 13:58:53 +00007336 bool TraverseDecl(Decl *D) {
7337 // Avoid visiting nested functions to prevent duplicate warnings.
7338 if (!D || isa<FunctionDecl>(D))
7339 return true;
7340 return Base::TraverseDecl(D);
7341 }
7342
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00007343 bool TraverseStmt(Stmt *S) {
7344 if (!S)
7345 return true;
7346 StmtStack.push_back(S);
7347 bool Result = Base::TraverseStmt(S);
7348 StmtStack.pop_back();
7349 return Result;
7350 }
7351
Erik Pilkington5cd57172016-08-16 17:44:11 +00007352 void IssueDiagnostics(Stmt *S) { TraverseStmt(S); }
7353
7354 bool TraverseIfStmt(IfStmt *If);
7355
Alex Lorenz6f911122017-05-16 13:58:53 +00007356 bool TraverseLambdaExpr(LambdaExpr *E) { return true; }
7357
Erik Pilkington6ac77a62017-05-22 15:41:12 +00007358 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *PRE) {
7359 if (PRE->isClassReceiver())
7360 DiagnoseDeclAvailability(PRE->getClassReceiver(), PRE->getReceiverLocation());
7361 return true;
7362 }
7363
Erik Pilkington5cd57172016-08-16 17:44:11 +00007364 bool VisitObjCMessageExpr(ObjCMessageExpr *Msg) {
7365 if (ObjCMethodDecl *D = Msg->getMethodDecl())
7366 DiagnoseDeclAvailability(
7367 D, SourceRange(Msg->getSelectorStartLoc(), Msg->getLocEnd()));
7368 return true;
7369 }
7370
7371 bool VisitDeclRefExpr(DeclRefExpr *DRE) {
7372 DiagnoseDeclAvailability(DRE->getDecl(),
7373 SourceRange(DRE->getLocStart(), DRE->getLocEnd()));
7374 return true;
7375 }
7376
7377 bool VisitMemberExpr(MemberExpr *ME) {
7378 DiagnoseDeclAvailability(ME->getMemberDecl(),
7379 SourceRange(ME->getLocStart(), ME->getLocEnd()));
7380 return true;
7381 }
7382
Alex Lorenz0a484ba2017-05-24 15:15:29 +00007383 bool VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) {
7384 SemaRef.Diag(E->getLocStart(), diag::warn_at_available_unchecked_use)
7385 << (!SemaRef.getLangOpts().ObjC1);
7386 return true;
7387 }
7388
Erik Pilkington5cd57172016-08-16 17:44:11 +00007389 bool VisitTypeLoc(TypeLoc Ty);
7390};
7391
7392void DiagnoseUnguardedAvailability::DiagnoseDeclAvailability(
7393 NamedDecl *D, SourceRange Range) {
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007394 AvailabilityResult Result;
7395 const NamedDecl *OffendingDecl;
7396 std::tie(Result, OffendingDecl) =
7397 SemaRef.ShouldDiagnoseAvailabilityOfDecl(D, nullptr);
7398 if (Result != AR_Available) {
Erik Pilkington5cd57172016-08-16 17:44:11 +00007399 // All other diagnostic kinds have already been handled in
7400 // DiagnoseAvailabilityOfDecl.
7401 if (Result != AR_NotYetIntroduced)
7402 return;
7403
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007404 const AvailabilityAttr *AA =
7405 getAttrForPlatform(SemaRef.getASTContext(), OffendingDecl);
Erik Pilkington5cd57172016-08-16 17:44:11 +00007406 VersionTuple Introduced = AA->getIntroduced();
7407
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007408 if (AvailabilityStack.back() >= Introduced)
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007409 return;
7410
7411 // If the context of this function is less available than D, we should not
7412 // emit a diagnostic.
7413 if (!ShouldDiagnoseAvailabilityInContext(SemaRef, Result, Introduced, Ctx))
7414 return;
7415
Alex Lorenzc9a369f2017-06-22 17:02:24 +00007416 // We would like to emit the diagnostic even if -Wunguarded-availability is
7417 // not specified for deployment targets >= to iOS 11 or equivalent or
7418 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
7419 // later.
7420 unsigned DiagKind =
7421 shouldDiagnoseAvailabilityByDefault(
7422 SemaRef.Context,
7423 SemaRef.Context.getTargetInfo().getPlatformMinVersion(), Introduced)
7424 ? diag::warn_unguarded_availability_new
7425 : diag::warn_unguarded_availability;
7426
7427 SemaRef.Diag(Range.getBegin(), DiagKind)
Erik Pilkington5cd57172016-08-16 17:44:11 +00007428 << Range << D
7429 << AvailabilityAttr::getPrettyPlatformName(
7430 SemaRef.getASTContext().getTargetInfo().getPlatformName())
7431 << Introduced.getAsString();
7432
Erik Pilkington4042f3c2017-07-05 17:08:56 +00007433 SemaRef.Diag(OffendingDecl->getLocation(),
7434 diag::note_availability_specified_here)
7435 << OffendingDecl << /* partial */ 3;
Erik Pilkington5cd57172016-08-16 17:44:11 +00007436
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00007437 auto FixitDiag =
7438 SemaRef.Diag(Range.getBegin(), diag::note_unguarded_available_silence)
7439 << Range << D
7440 << (SemaRef.getLangOpts().ObjC1 ? /*@available*/ 0
7441 : /*__builtin_available*/ 1);
7442
7443 // Find the statement which should be enclosed in the if @available check.
7444 if (StmtStack.empty())
7445 return;
7446 const Stmt *StmtOfUse = StmtStack.back();
7447 const CompoundStmt *Scope = nullptr;
7448 for (const Stmt *S : llvm::reverse(StmtStack)) {
7449 if (const auto *CS = dyn_cast<CompoundStmt>(S)) {
7450 Scope = CS;
7451 break;
7452 }
7453 if (isBodyLikeChildStmt(StmtOfUse, S)) {
7454 // The declaration won't be seen outside of the statement, so we don't
7455 // have to wrap the uses of any declared variables in if (@available).
7456 // Therefore we can avoid setting Scope here.
7457 break;
7458 }
7459 StmtOfUse = S;
7460 }
7461 const Stmt *LastStmtOfUse = nullptr;
7462 if (isa<DeclStmt>(StmtOfUse) && Scope) {
7463 for (const Decl *D : cast<DeclStmt>(StmtOfUse)->decls()) {
7464 if (StmtUSEFinder::isContained(StmtStack.back(), D)) {
7465 LastStmtOfUse = LastDeclUSEFinder::findLastStmtThatUsesDecl(D, Scope);
7466 break;
7467 }
7468 }
7469 }
7470
7471 const SourceManager &SM = SemaRef.getSourceManager();
7472 SourceLocation IfInsertionLoc =
7473 SM.getExpansionLoc(StmtOfUse->getLocStart());
7474 SourceLocation StmtEndLoc =
7475 SM.getExpansionRange(
7476 (LastStmtOfUse ? LastStmtOfUse : StmtOfUse)->getLocEnd())
7477 .second;
7478 if (SM.getFileID(IfInsertionLoc) != SM.getFileID(StmtEndLoc))
7479 return;
7480
7481 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM);
7482 const char *ExtraIndentation = " ";
7483 std::string FixItString;
7484 llvm::raw_string_ostream FixItOS(FixItString);
7485 FixItOS << "if (" << (SemaRef.getLangOpts().ObjC1 ? "@available"
7486 : "__builtin_available")
Alex Lorenze1fb64e2017-05-09 15:34:46 +00007487 << "("
7488 << AvailabilityAttr::getPlatformNameSourceSpelling(
7489 SemaRef.getASTContext().getTargetInfo().getPlatformName())
Alex Lorenz9c5c2bf2017-05-05 16:42:44 +00007490 << " " << Introduced.getAsString() << ", *)) {\n"
7491 << Indentation << ExtraIndentation;
7492 FixitDiag << FixItHint::CreateInsertion(IfInsertionLoc, FixItOS.str());
7493 SourceLocation ElseInsertionLoc = Lexer::findLocationAfterToken(
7494 StmtEndLoc, tok::semi, SM, SemaRef.getLangOpts(),
7495 /*SkipTrailingWhitespaceAndNewLine=*/false);
7496 if (ElseInsertionLoc.isInvalid())
7497 ElseInsertionLoc =
7498 Lexer::getLocForEndOfToken(StmtEndLoc, 0, SM, SemaRef.getLangOpts());
7499 FixItOS.str().clear();
7500 FixItOS << "\n"
7501 << Indentation << "} else {\n"
7502 << Indentation << ExtraIndentation
7503 << "// Fallback on earlier versions\n"
7504 << Indentation << "}";
7505 FixitDiag << FixItHint::CreateInsertion(ElseInsertionLoc, FixItOS.str());
Erik Pilkington5cd57172016-08-16 17:44:11 +00007506 }
7507}
7508
7509bool DiagnoseUnguardedAvailability::VisitTypeLoc(TypeLoc Ty) {
7510 const Type *TyPtr = Ty.getTypePtr();
7511 SourceRange Range{Ty.getBeginLoc(), Ty.getEndLoc()};
7512
Erik Pilkington6ac77a62017-05-22 15:41:12 +00007513 if (Range.isInvalid())
7514 return true;
7515
Erik Pilkington5cd57172016-08-16 17:44:11 +00007516 if (const TagType *TT = dyn_cast<TagType>(TyPtr)) {
7517 TagDecl *TD = TT->getDecl();
7518 DiagnoseDeclAvailability(TD, Range);
7519
7520 } else if (const TypedefType *TD = dyn_cast<TypedefType>(TyPtr)) {
7521 TypedefNameDecl *D = TD->getDecl();
7522 DiagnoseDeclAvailability(D, Range);
7523
7524 } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) {
7525 if (NamedDecl *D = ObjCO->getInterface())
7526 DiagnoseDeclAvailability(D, Range);
7527 }
7528
7529 return true;
7530}
7531
7532bool DiagnoseUnguardedAvailability::TraverseIfStmt(IfStmt *If) {
7533 VersionTuple CondVersion;
7534 if (auto *E = dyn_cast<ObjCAvailabilityCheckExpr>(If->getCond())) {
7535 CondVersion = E->getVersion();
7536
7537 // If we're using the '*' case here or if this check is redundant, then we
7538 // use the enclosing version to check both branches.
7539 if (CondVersion.empty() || CondVersion <= AvailabilityStack.back())
7540 return Base::TraverseStmt(If->getThen()) &&
7541 Base::TraverseStmt(If->getElse());
7542 } else {
7543 // This isn't an availability checking 'if', we can just continue.
7544 return Base::TraverseIfStmt(If);
7545 }
7546
7547 AvailabilityStack.push_back(CondVersion);
7548 bool ShouldContinue = TraverseStmt(If->getThen());
7549 AvailabilityStack.pop_back();
7550
7551 return ShouldContinue && TraverseStmt(If->getElse());
7552}
7553
7554} // end anonymous namespace
7555
7556void Sema::DiagnoseUnguardedAvailabilityViolations(Decl *D) {
7557 Stmt *Body = nullptr;
7558
7559 if (auto *FD = D->getAsFunction()) {
7560 // FIXME: We only examine the pattern decl for availability violations now,
7561 // but we should also examine instantiated templates.
7562 if (FD->isTemplateInstantiation())
7563 return;
7564
7565 Body = FD->getBody();
7566 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
7567 Body = MD->getBody();
Alex Lorenz28559ce2017-04-26 14:20:02 +00007568 else if (auto *BD = dyn_cast<BlockDecl>(D))
7569 Body = BD->getBody();
Erik Pilkington5cd57172016-08-16 17:44:11 +00007570
7571 assert(Body && "Need a body here!");
7572
Erik Pilkingtonf35114c2016-10-25 19:05:50 +00007573 DiagnoseUnguardedAvailability(*this, D).IssueDiagnostics(Body);
Erik Pilkington5cd57172016-08-16 17:44:11 +00007574}