blob: 63e99fdb0f546af719fea9d457a76029fa76ef05 [file] [log] [blame]
Chris Lattner6b6b5372008-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
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +000017#include "clang/AST/CXXInheritance.h"
John McCall384aff82010-08-25 07:42:41 +000018#include "clang/AST/DeclCXX.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000021#include "clang/AST/Expr.h"
Rafael Espindolad7a60ad2013-02-26 19:13:56 +000022#include "clang/AST/Mangle.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000023#include "clang/Basic/CharInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000024#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000025#include "clang/Basic/TargetInfo.h"
Benjamin Kramer1a343e22013-09-13 15:35:43 +000026#include "clang/Lex/Preprocessor.h"
John McCall19510852010-08-20 18:27:03 +000027#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000028#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000029#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000030#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000031#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000032using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000033using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000034
John McCall883cc2c2011-03-02 12:29:23 +000035/// These constants match the enumerated choices of
36/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000037enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000038 ExpectedFunction,
39 ExpectedUnion,
40 ExpectedVariableOrFunction,
41 ExpectedFunctionOrMethod,
42 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000043 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000044 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000045 ExpectedFunctionMethodOrParameter,
46 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000047 ExpectedVariable,
48 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000049 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000050 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000051 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000052 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000053 ExpectedTLSVar,
54 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000055 ExpectedVariableFieldOrTag,
Aaron Ballman37a89532013-07-18 14:56:42 +000056 ExpectedTypeOrNamespace,
57 ExpectedObjectiveCInterface
John McCall883cc2c2011-03-02 12:29:23 +000058};
59
Chris Lattnere5c5ee12008-06-29 00:16:31 +000060//===----------------------------------------------------------------------===//
61// Helper functions
62//===----------------------------------------------------------------------===//
63
Chandler Carruth87c44602011-07-01 23:49:12 +000064static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000065 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000067 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000068 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000069 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000070 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000071 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000072 Ty = decl->getUnderlyingType();
73 else
74 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000075
Chris Lattner6b6b5372008-06-26 18:38:35 +000076 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000077 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000078 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000079 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000080
John McCall183700f2009-09-21 23:43:11 +000081 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000082}
83
Daniel Dunbar35682492008-09-26 04:12:28 +000084// FIXME: We should provide an abstraction around a method or function
85// to provide the following bits of information.
86
Nuno Lopesd20254f2009-12-20 23:11:08 +000087/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000088/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000089static bool isFunction(const Decl *D) {
90 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000091}
92
93/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000094/// type (function or function-typed variable) or an Objective-C
95/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000096static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000097 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000098}
99
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000100/// isFunctionOrMethodOrBlock - Return true if the given decl has function
101/// type (function or function-typed variable) or an Objective-C
102/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000103static bool isFunctionOrMethodOrBlock(const Decl *D) {
104 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000105 return true;
106 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000107 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000108 QualType Ty = V->getType();
109 return Ty->isBlockPointerType();
110 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000111 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000112}
113
John McCall711c52b2011-01-05 12:14:39 +0000114/// Return true if the given decl has a declarator that should have
115/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000116static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000117 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000118 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
119 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000120}
121
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000122/// hasFunctionProto - Return true if the given decl has a argument
123/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000124/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000125static bool hasFunctionProto(const Decl *D) {
126 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000127 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000128 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000129 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000130 return true;
131 }
132}
133
134/// getFunctionOrMethodNumArgs - Return number of function or method
135/// arguments. It is an error to call this on a K&R function (use
136/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000137static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
138 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000139 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000140 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000141 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000142 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000143}
144
Chandler Carruth87c44602011-07-01 23:49:12 +0000145static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
146 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000147 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000148 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000149 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000150
Chandler Carruth87c44602011-07-01 23:49:12 +0000151 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000152}
153
Chandler Carruth87c44602011-07-01 23:49:12 +0000154static QualType getFunctionOrMethodResultType(const Decl *D) {
155 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000156 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000157 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000158}
159
Chandler Carruth87c44602011-07-01 23:49:12 +0000160static bool isFunctionOrMethodVariadic(const Decl *D) {
161 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000162 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000163 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000164 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000165 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000166 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000167 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000168 }
169}
170
Chandler Carruth87c44602011-07-01 23:49:12 +0000171static bool isInstanceMethod(const Decl *D) {
172 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000173 return MethodDecl->isInstance();
174 return false;
175}
176
Chris Lattner6b6b5372008-06-26 18:38:35 +0000177static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000178 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000179 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000180 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000181
John McCall506b57e2010-05-17 21:00:27 +0000182 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
183 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000184 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000185
John McCall506b57e2010-05-17 21:00:27 +0000186 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000187
Chris Lattner6b6b5372008-06-26 18:38:35 +0000188 // FIXME: Should we walk the chain of classes?
189 return ClsName == &Ctx.Idents.get("NSString") ||
190 ClsName == &Ctx.Idents.get("NSMutableString");
191}
192
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000193static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000194 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000195 if (!PT)
196 return false;
197
Ted Kremenek6217b802009-07-29 21:53:49 +0000198 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000199 if (!RT)
200 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000201
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000202 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000203 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000204 return false;
205
206 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
207}
208
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000209/// \brief Check if the attribute has exactly as many args as Num. May
210/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000211static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
212 unsigned int Num) {
213 if (Attr.getNumArgs() != Num) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +0000214 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
215 << Attr.getName() << Num;
Chandler Carruth1731e202011-07-11 23:30:35 +0000216 return false;
217 }
218
219 return true;
220}
221
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000222
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000223/// \brief Check if the attribute has at least as many args as Num. May
224/// output an error.
225static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
226 unsigned int Num) {
227 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000228 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
229 return false;
230 }
231
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000232 return true;
233}
234
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000235/// \brief Check if IdxExpr is a valid argument index for a function or
236/// instance method D. May output an error.
237///
238/// \returns true if IdxExpr is a valid index.
239static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
240 StringRef AttrName,
241 SourceLocation AttrLoc,
242 unsigned AttrArgNum,
243 const Expr *IdxExpr,
244 uint64_t &Idx)
245{
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000246 assert(isFunctionOrMethod(D));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000247
248 // In C++ the implicit 'this' function parameter also counts.
249 // Parameters are counted from one.
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000250 bool HP = hasFunctionProto(D);
251 bool HasImplicitThisParam = isInstanceMethod(D);
252 bool IV = HP && isFunctionOrMethodVariadic(D);
253 unsigned NumArgs = (HP ? getFunctionOrMethodNumArgs(D) : 0) +
254 HasImplicitThisParam;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000255
256 llvm::APSInt IdxInt;
257 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
258 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000259 std::string Name = std::string("'") + AttrName.str() + std::string("'");
260 S.Diag(AttrLoc, diag::err_attribute_argument_n_type) << Name.c_str()
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000261 << AttrArgNum << AANT_ArgumentIntegerConstant << IdxExpr->getSourceRange();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000262 return false;
263 }
264
265 Idx = IdxInt.getLimitedValue();
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000266 if (Idx < 1 || (!IV && Idx > NumArgs)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000267 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
268 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
269 return false;
270 }
271 Idx--; // Convert to zero-based.
272 if (HasImplicitThisParam) {
273 if (Idx == 0) {
274 S.Diag(AttrLoc,
275 diag::err_attribute_invalid_implicit_this_argument)
276 << AttrName << IdxExpr->getSourceRange();
277 return false;
278 }
279 --Idx;
280 }
281
282 return true;
283}
284
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000285///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000286/// \brief Check if passed in Decl is a field or potentially shared global var
287/// \return true if the Decl is a field or potentially shared global variable
288///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000289static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000290 if (isa<FieldDecl>(D))
291 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000292 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Richard Smith38afbc72013-04-13 02:43:54 +0000293 return vd->hasGlobalStorage() && !vd->getTLSKind();
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000294
295 return false;
296}
297
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000298/// \brief Check if the passed-in expression is of type int or bool.
299static bool isIntOrBool(Expr *Exp) {
300 QualType QT = Exp->getType();
301 return QT->isBooleanType() || QT->isIntegerType();
302}
303
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000304
305// Check to see if the type is a smart pointer of some kind. We assume
306// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000307static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
308 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
309 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000310 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000311 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000312
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000313 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
314 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000315 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000316 return false;
317
318 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000319}
320
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000321/// \brief Check if passed in Decl is a pointer type.
322/// Note that this function may produce an error message.
323/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000324static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
325 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000326 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000327 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000328 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000329 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000330
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000331 if (const RecordType *RT = QT->getAs<RecordType>()) {
332 // If it's an incomplete type, it could be a smart pointer; skip it.
333 // (We don't want to force template instantiation if we can avoid it,
334 // since that would alter the order in which templates are instantiated.)
335 if (RT->isIncompleteType())
336 return true;
337
338 if (threadSafetyCheckIsSmartPointer(S, RT))
339 return true;
340 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000341
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000342 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000343 << Attr.getName()->getName() << QT;
344 } else {
345 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
346 << Attr.getName();
347 }
348 return false;
349}
350
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000351/// \brief Checks that the passed in QualType either is of RecordType or points
352/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000353static const RecordType *getRecordType(QualType QT) {
354 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000355 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000356
357 // Now check if we point to record type.
358 if (const PointerType *PT = QT->getAs<PointerType>())
359 return PT->getPointeeType()->getAs<RecordType>();
360
361 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000362}
363
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000364
Jordy Rosefad5de92012-05-08 03:27:22 +0000365static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
366 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000367 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
368 if (RT->getDecl()->getAttr<LockableAttr>())
369 return true;
370 return false;
371}
372
373
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000374/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000375/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000376static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
377 QualType Ty) {
378 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000379
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000380 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000381 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000382 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000383 << Attr.getName() << Ty.getAsString();
384 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000385 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000386
Michael Hanf1aae3b2012-08-03 17:40:43 +0000387 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000388 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000389 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000390
391 // Allow smart pointers to be used as lockable objects.
392 // FIXME -- Check the type that the smart pointer points to.
393 if (threadSafetyCheckIsSmartPointer(S, RT))
394 return;
395
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000396 // Check if the type is lockable.
397 RecordDecl *RD = RT->getDecl();
398 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000399 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000400
401 // Else check if any base classes are lockable.
402 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
403 CXXBasePaths BPaths(false, false);
404 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
405 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000406 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000407
408 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
409 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000410}
411
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000412/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000413/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000414/// \param Sidx The attribute argument index to start checking with.
415/// \param ParamIdxOk Whether an argument can be indexing into a function
416/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000417static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000418 const AttributeList &Attr,
419 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000420 int Sidx = 0,
421 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000422 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Aaron Ballman624421f2013-08-31 01:11:41 +0000423 Expr *ArgExp = Attr.getArgAsExpr(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000424
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000425 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000426 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000427 Args.push_back(ArgExp);
428 continue;
429 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000430
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000431 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000432 if (StrLit->getLength() == 0 ||
433 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000434 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000435 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000436 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000437 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000438 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000439
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000440 // We allow constant strings to be used as a placeholder for expressions
441 // that are not valid C++ syntax, but warn that they are ignored.
442 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
443 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000444 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000445 continue;
446 }
447
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000448 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000449
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000450 // A pointer to member expression of the form &MyClass::mu is treated
451 // specially -- we need to look at the type of the member.
452 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
453 if (UOp->getOpcode() == UO_AddrOf)
454 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
455 if (DRE->getDecl()->isCXXInstanceMember())
456 ArgTy = DRE->getDecl()->getType();
457
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000458 // First see if we can just cast to record type, or point to record type.
459 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000460
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000461 // Now check if we index into a record type function param.
462 if(!RT && ParamIdxOk) {
463 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000464 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
465 if(FD && IL) {
466 unsigned int NumParams = FD->getNumParams();
467 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000468 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
469 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
470 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000471 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
472 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000473 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000474 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000475 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476 }
477 }
478
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000479 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000480
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000481 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000482 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000483}
484
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000485//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000486// Attribute Implementations
487//===----------------------------------------------------------------------===//
488
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000489// FIXME: All this manual attribute parsing code is gross. At the
490// least add some helper functions to check most argument patterns (#
491// and types of args).
492
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000493enum ThreadAttributeDeclKind {
494 ThreadExpectedFieldOrGlobalVar,
495 ThreadExpectedFunctionOrMethod,
496 ThreadExpectedClassOrStruct
497};
498
Michael Hanf1aae3b2012-08-03 17:40:43 +0000499static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000500 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000501 // D must be either a member field or global (potentially shared) variable.
502 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000503 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
504 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000505 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000506 }
507
Michael Handc691572012-07-23 18:48:41 +0000508 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000509}
510
Michael Handc691572012-07-23 18:48:41 +0000511static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
512 if (!checkGuardedVarAttrCommon(S, D, Attr))
513 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000514
Michael Han51d8c522013-01-24 16:46:58 +0000515 D->addAttr(::new (S.Context)
516 GuardedVarAttr(Attr.getRange(), S.Context,
517 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000518}
519
Michael Hanf1aae3b2012-08-03 17:40:43 +0000520static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000521 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000522 if (!checkGuardedVarAttrCommon(S, D, Attr))
523 return;
524
525 if (!threadSafetyCheckIsPointer(S, D, Attr))
526 return;
527
Michael Han51d8c522013-01-24 16:46:58 +0000528 D->addAttr(::new (S.Context)
529 PtGuardedVarAttr(Attr.getRange(), S.Context,
530 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000531}
532
Michael Hanf1aae3b2012-08-03 17:40:43 +0000533static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
534 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000535 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000536 // D must be either a member field or global (potentially shared) variable.
537 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000538 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
539 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000540 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541 }
542
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000543 SmallVector<Expr*, 1> Args;
544 // check that all arguments are lockable objects
545 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
546 unsigned Size = Args.size();
547 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000548 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000549
Michael Handc691572012-07-23 18:48:41 +0000550 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000551
Michael Handc691572012-07-23 18:48:41 +0000552 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000553}
554
Michael Handc691572012-07-23 18:48:41 +0000555static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
556 Expr *Arg = 0;
557 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
558 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000559
Michael Handc691572012-07-23 18:48:41 +0000560 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
561}
562
Michael Hanf1aae3b2012-08-03 17:40:43 +0000563static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000564 const AttributeList &Attr) {
565 Expr *Arg = 0;
566 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
567 return;
568
569 if (!threadSafetyCheckIsPointer(S, D, Attr))
570 return;
571
572 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
573 S.Context, Arg));
574}
575
Michael Hanf1aae3b2012-08-03 17:40:43 +0000576static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000577 const AttributeList &Attr) {
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000578 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000579 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000580 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
581 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000582 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000583 }
584
Michael Handc691572012-07-23 18:48:41 +0000585 return true;
586}
587
588static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
589 if (!checkLockableAttrCommon(S, D, Attr))
590 return;
591
592 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
593}
594
Michael Hanf1aae3b2012-08-03 17:40:43 +0000595static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000596 const AttributeList &Attr) {
597 if (!checkLockableAttrCommon(S, D, Attr))
598 return;
599
Michael Han51d8c522013-01-24 16:46:58 +0000600 D->addAttr(::new (S.Context)
601 ScopedLockableAttr(Attr.getRange(), S.Context,
602 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000603}
604
Kostya Serebryany85aee962013-02-26 06:58:27 +0000605static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
606 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000607 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000608 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
609 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000610 return;
611 }
612
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000613 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000614 S.Context));
615}
616
Kostya Serebryany85aee962013-02-26 06:58:27 +0000617static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000618 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000619 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000620 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000621 << Attr.getName() << ExpectedFunctionOrMethod;
622 return;
623 }
624
Michael Han51d8c522013-01-24 16:46:58 +0000625 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000626 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
627 Attr.getAttributeSpellingListIndex()));
628}
629
630static void handleNoSanitizeMemory(Sema &S, Decl *D,
631 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000632 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
633 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
634 << Attr.getName() << ExpectedFunctionOrMethod;
635 return;
636 }
637
638 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
639 S.Context));
640}
641
642static void handleNoSanitizeThread(Sema &S, Decl *D,
643 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000644 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
645 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
646 << Attr.getName() << ExpectedFunctionOrMethod;
647 return;
648 }
649
650 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
651 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000652}
653
Michael Hanf1aae3b2012-08-03 17:40:43 +0000654static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
655 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000656 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000658 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000659
660 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000661 ValueDecl *VD = dyn_cast<ValueDecl>(D);
662 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000663 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
664 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000665 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000666 }
667
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000668 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000669 QualType QT = VD->getType();
670 if (!QT->isDependentType()) {
671 const RecordType *RT = getRecordType(QT);
672 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000673 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000674 << Attr.getName();
675 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 }
677 }
678
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000679 // Check that all arguments are lockable objects.
680 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000681 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000682 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000683
Michael Handc691572012-07-23 18:48:41 +0000684 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000685}
686
Michael Hanf1aae3b2012-08-03 17:40:43 +0000687static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000688 const AttributeList &Attr) {
689 SmallVector<Expr*, 1> Args;
690 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
691 return;
692
693 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000694 D->addAttr(::new (S.Context)
695 AcquiredAfterAttr(Attr.getRange(), S.Context,
696 StartArg, Args.size(),
697 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000698}
699
Michael Hanf1aae3b2012-08-03 17:40:43 +0000700static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000701 const AttributeList &Attr) {
702 SmallVector<Expr*, 1> Args;
703 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
704 return;
705
706 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000707 D->addAttr(::new (S.Context)
708 AcquiredBeforeAttr(Attr.getRange(), S.Context,
709 StartArg, Args.size(),
710 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000711}
712
Michael Hanf1aae3b2012-08-03 17:40:43 +0000713static bool checkLockFunAttrCommon(Sema &S, Decl *D,
714 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000715 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000716 // zero or more arguments ok
717
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000718 // check that the attribute is applied to a function
719 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000720 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
721 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000722 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000723 }
724
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000725 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000726 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000727
Michael Handc691572012-07-23 18:48:41 +0000728 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000729}
730
Michael Hanf1aae3b2012-08-03 17:40:43 +0000731static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000732 const AttributeList &Attr) {
733 SmallVector<Expr*, 1> Args;
734 if (!checkLockFunAttrCommon(S, D, Attr, Args))
735 return;
736
737 unsigned Size = Args.size();
738 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000739 D->addAttr(::new (S.Context)
740 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
741 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000742}
743
Michael Hanf1aae3b2012-08-03 17:40:43 +0000744static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000745 const AttributeList &Attr) {
746 SmallVector<Expr*, 1> Args;
747 if (!checkLockFunAttrCommon(S, D, Attr, Args))
748 return;
749
750 unsigned Size = Args.size();
751 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000752 D->addAttr(::new (S.Context)
753 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
754 StartArg, Size,
755 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000756}
757
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000758static void handleAssertSharedLockAttr(Sema &S, Decl *D,
759 const AttributeList &Attr) {
760 SmallVector<Expr*, 1> Args;
761 if (!checkLockFunAttrCommon(S, D, Attr, Args))
762 return;
763
764 unsigned Size = Args.size();
765 Expr **StartArg = Size == 0 ? 0 : &Args[0];
766 D->addAttr(::new (S.Context)
767 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
768 Attr.getAttributeSpellingListIndex()));
769}
770
771static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
772 const AttributeList &Attr) {
773 SmallVector<Expr*, 1> Args;
774 if (!checkLockFunAttrCommon(S, D, Attr, Args))
775 return;
776
777 unsigned Size = Args.size();
778 Expr **StartArg = Size == 0 ? 0 : &Args[0];
779 D->addAttr(::new (S.Context)
780 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
781 StartArg, Size,
782 Attr.getAttributeSpellingListIndex()));
783}
784
785
Michael Hanf1aae3b2012-08-03 17:40:43 +0000786static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
787 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000788 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000789 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000790 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000791
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000792 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000793 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
794 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000795 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000796 }
797
Aaron Ballman624421f2013-08-31 01:11:41 +0000798 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000799 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000800 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000801 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000802 }
803
804 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000805 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000806
Michael Handc691572012-07-23 18:48:41 +0000807 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000808}
809
Michael Hanf1aae3b2012-08-03 17:40:43 +0000810static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000811 const AttributeList &Attr) {
812 SmallVector<Expr*, 2> Args;
813 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
814 return;
815
Michael Han51d8c522013-01-24 16:46:58 +0000816 D->addAttr(::new (S.Context)
817 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000818 Attr.getArgAsExpr(0),
819 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000820 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000821}
822
Michael Hanf1aae3b2012-08-03 17:40:43 +0000823static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000824 const AttributeList &Attr) {
825 SmallVector<Expr*, 2> Args;
826 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
827 return;
828
Michael Han51d8c522013-01-24 16:46:58 +0000829 D->addAttr(::new (S.Context)
830 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000831 Attr.getArgAsExpr(0),
832 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000833 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000834}
835
Michael Hanf1aae3b2012-08-03 17:40:43 +0000836static bool checkLocksRequiredCommon(Sema &S, Decl *D,
837 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000838 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000839 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000840 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000841
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000842 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000843 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
844 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000845 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000846 }
847
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000848 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000849 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000850 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000851 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000852
Michael Handc691572012-07-23 18:48:41 +0000853 return true;
854}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000855
Michael Hanf1aae3b2012-08-03 17:40:43 +0000856static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000857 const AttributeList &Attr) {
858 SmallVector<Expr*, 1> Args;
859 if (!checkLocksRequiredCommon(S, D, Attr, Args))
860 return;
861
862 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000863 D->addAttr(::new (S.Context)
864 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
865 StartArg, Args.size(),
866 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000867}
868
Michael Hanf1aae3b2012-08-03 17:40:43 +0000869static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000870 const AttributeList &Attr) {
871 SmallVector<Expr*, 1> Args;
872 if (!checkLocksRequiredCommon(S, D, Attr, Args))
873 return;
874
875 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000876 D->addAttr(::new (S.Context)
877 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
878 StartArg, Args.size(),
879 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000880}
881
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000882static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000883 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000884 // zero or more arguments ok
885
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000886 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000887 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
888 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000889 return;
890 }
891
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000892 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000893 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000894 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000895 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000896 Expr **StartArg = Size == 0 ? 0 : &Args[0];
897
Michael Han51d8c522013-01-24 16:46:58 +0000898 D->addAttr(::new (S.Context)
899 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
900 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000901}
902
903static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000904 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000905 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000906 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
907 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000908 return;
909 }
910
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000911 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000912 SmallVector<Expr*, 1> Args;
913 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
914 unsigned Size = Args.size();
915 if (Size == 0)
916 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000917
Michael Han51d8c522013-01-24 16:46:58 +0000918 D->addAttr(::new (S.Context)
919 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
920 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000921}
922
923static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000924 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000925 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000926 return;
927
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000928 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000929 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
930 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000931 return;
932 }
933
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000934 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000935 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000936 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000937 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000938 if (Size == 0)
939 return;
940 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000941
Michael Han51d8c522013-01-24 16:46:58 +0000942 D->addAttr(::new (S.Context)
943 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
944 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000945}
946
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000947static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikiea33ab602013-09-06 01:28:43 +0000948 ConsumableAttr::ConsumedState DefaultState;
949
950 if (Attr.isArgIdent(0)) {
Aaron Ballmand0686072013-09-11 19:47:58 +0000951 IdentifierLoc *IL = Attr.getArgAsIdent(0);
952 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
953 DefaultState)) {
954 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
955 << Attr.getName() << IL->Ident;
David Blaikiea33ab602013-09-06 01:28:43 +0000956 return;
957 }
David Blaikiea33ab602013-09-06 01:28:43 +0000958 } else {
959 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
960 << Attr.getName() << AANT_ArgumentIdentifier;
961 return;
962 }
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000963
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000964 if (!isa<CXXRecordDecl>(D)) {
965 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
966 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000967 return;
968 }
969
970 D->addAttr(::new (S.Context)
David Blaikiea33ab602013-09-06 01:28:43 +0000971 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000972 Attr.getAttributeSpellingListIndex()));
973}
974
975static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
976 const AttributeList &Attr) {
977 ASTContext &CurrContext = S.getASTContext();
978 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
979
980 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
981 if (!RD->hasAttr<ConsumableAttr>()) {
982 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
983 RD->getNameAsString();
984
985 return false;
986 }
987 }
988
989 return true;
990}
991
992static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000993 if (!isa<CXXMethodDecl>(D)) {
994 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
995 Attr.getName() << ExpectedMethod;
996 return;
997 }
998
999 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1000 return;
1001
1002 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001003 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001004 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001005}
1006
1007static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1008 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001009 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001010 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1011 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001012 return;
1013 }
1014
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001015 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1016 return;
1017
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001018 D->addAttr(::new (S.Context)
1019 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001020 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001021}
1022
1023static void handleTestsConsumedAttr(Sema &S, Decl *D,
1024 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001025 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001026 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1027 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001028 return;
1029 }
1030
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001031 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1032 return;
1033
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001034 D->addAttr(::new (S.Context)
1035 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001036 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001037}
1038
1039static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1040 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001041 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001042 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1043 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001044 return;
1045 }
1046
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001047 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1048 return;
1049
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001050 D->addAttr(::new (S.Context)
1051 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001052 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001053}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001054
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001055static void handleReturnTypestateAttr(Sema &S, Decl *D,
1056 const AttributeList &Attr) {
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001057 ReturnTypestateAttr::ConsumedState ReturnState;
1058
1059 if (Attr.isArgIdent(0)) {
Aaron Ballmand0686072013-09-11 19:47:58 +00001060 IdentifierLoc *IL = Attr.getArgAsIdent(0);
1061 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1062 ReturnState)) {
1063 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
1064 << Attr.getName() << IL->Ident;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001065 return;
1066 }
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001067 } else {
1068 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1069 Attr.getName() << AANT_ArgumentIdentifier;
1070 return;
1071 }
1072
1073 if (!isa<FunctionDecl>(D)) {
1074 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1075 Attr.getName() << ExpectedFunction;
1076 return;
1077 }
1078
1079 // FIXME: This check is currently being done in the analysis. It can be
1080 // enabled here only after the parser propagates attributes at
1081 // template specialization definition, not declaration.
1082 //QualType ReturnType;
1083 //
1084 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1085 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1086 //
1087 //} else {
1088 //
1089 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1090 //}
1091 //
1092 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1093 //
1094 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1095 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1096 // ReturnType.getAsString();
1097 // return;
1098 //}
1099
1100 D->addAttr(::new (S.Context)
1101 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1102 Attr.getAttributeSpellingListIndex()));
1103}
1104
Chandler Carruth1b03c872011-07-02 00:01:44 +00001105static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1106 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001107 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1108 if (TD == 0) {
1109 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1110 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001111 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001112 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001113 }
Mike Stumpbf916502009-07-24 19:02:52 +00001114
Richard Smitha4fa9002013-01-13 02:11:23 +00001115 // Remember this typedef decl, we will need it later for diagnostics.
1116 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001117}
1118
Chandler Carruth1b03c872011-07-02 00:01:44 +00001119static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001120 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001121 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001122 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001123 // If the alignment is less than or equal to 8 bits, the packed attribute
1124 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001125 if (!FD->getType()->isDependentType() &&
1126 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001127 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001128 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001129 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001130 else
Michael Han51d8c522013-01-24 16:46:58 +00001131 FD->addAttr(::new (S.Context)
1132 PackedAttr(Attr.getRange(), S.Context,
1133 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001134 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001135 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001136}
1137
Chandler Carruth1b03c872011-07-02 00:01:44 +00001138static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001139 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001140 RD->addAttr(::new (S.Context)
1141 MsStructAttr(Attr.getRange(), S.Context,
1142 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001143 else
1144 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1145}
1146
Chandler Carruth1b03c872011-07-02 00:01:44 +00001147static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001148 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001149 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001150 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001151 D->addAttr(::new (S.Context)
1152 IBActionAttr(Attr.getRange(), S.Context,
1153 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001154 return;
1155 }
1156
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001157 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001158}
1159
Ted Kremenek2f041d02011-09-29 07:02:25 +00001160static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1161 // The IBOutlet/IBOutletCollection attributes only apply to instance
1162 // variables or properties of Objective-C classes. The outlet must also
1163 // have an object reference type.
1164 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1165 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001166 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001167 << Attr.getName() << VD->getType() << 0;
1168 return false;
1169 }
1170 }
1171 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1172 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001173 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001174 << Attr.getName() << PD->getType() << 1;
1175 return false;
1176 }
1177 }
1178 else {
1179 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1180 return false;
1181 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001182
Ted Kremenek2f041d02011-09-29 07:02:25 +00001183 return true;
1184}
1185
Chandler Carruth1b03c872011-07-02 00:01:44 +00001186static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek2f041d02011-09-29 07:02:25 +00001187 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001188 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001189
Michael Han51d8c522013-01-24 16:46:58 +00001190 D->addAttr(::new (S.Context)
1191 IBOutletAttr(Attr.getRange(), S.Context,
1192 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001193}
1194
Chandler Carruth1b03c872011-07-02 00:01:44 +00001195static void handleIBOutletCollection(Sema &S, Decl *D,
1196 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001197
1198 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001199 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001200 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1201 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001202 return;
1203 }
1204
Ted Kremenek2f041d02011-09-29 07:02:25 +00001205 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001206 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001207
Aaron Ballman624421f2013-08-31 01:11:41 +00001208 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1209 IdentifierInfo *II;
1210 SourceLocation ILS;
1211 if (IL) {
1212 II = IL->Ident;
1213 ILS = IL->Loc;
1214 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001215 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001216 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001217
John McCallb3d87482010-08-24 05:47:05 +00001218 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001219 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001220 if (!TypeRep) {
1221 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1222 return;
1223 }
John McCallb3d87482010-08-24 05:47:05 +00001224 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001225 // Diagnose use of non-object type in iboutletcollection attribute.
1226 // FIXME. Gnu attribute extension ignores use of builtin types in
1227 // attributes. So, __attribute__((iboutletcollection(char))) will be
1228 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001229 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001230 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1231 return;
1232 }
Michael Han51d8c522013-01-24 16:46:58 +00001233 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001234 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001235 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001236}
1237
Chandler Carruthd309c812011-07-01 23:49:16 +00001238static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001239 if (const RecordType *UT = T->getAsUnionType())
1240 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1241 RecordDecl *UD = UT->getDecl();
1242 for (RecordDecl::field_iterator it = UD->field_begin(),
1243 itend = UD->field_end(); it != itend; ++it) {
1244 QualType QT = it->getType();
1245 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1246 T = QT;
1247 return;
1248 }
1249 }
1250 }
1251}
1252
Nuno Lopes587de5b2012-05-24 00:22:00 +00001253static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001254 if (!isFunctionOrMethod(D)) {
1255 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001256 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001257 return;
1258 }
1259
Nuno Lopes587de5b2012-05-24 00:22:00 +00001260 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1261 return;
1262
Nuno Lopes587de5b2012-05-24 00:22:00 +00001263 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001264 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001265 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001266 uint64_t Idx;
1267 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1268 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001269 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001270
1271 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001272 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001273 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001274 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1275 << Attr.getName() << AANT_ArgumentIntegerConstant
1276 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001277 return;
1278 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001279 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001280 }
1281
1282 // check if the function returns a pointer
1283 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1284 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001285 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001286 }
1287
Michael Han51d8c522013-01-24 16:46:58 +00001288 D->addAttr(::new (S.Context)
1289 AllocSizeAttr(Attr.getRange(), S.Context,
1290 SizeArgs.data(), SizeArgs.size(),
1291 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001292}
1293
Chandler Carruth1b03c872011-07-02 00:01:44 +00001294static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001295 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1296 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001297 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001298 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001299 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001300 return;
1301 }
Mike Stumpbf916502009-07-24 19:02:52 +00001302
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001303 SmallVector<unsigned, 8> NonNullArgs;
1304 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001305 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001306 uint64_t Idx;
1307 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1308 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001309 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001310
1311 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001312 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001313 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001314
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001315 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001316 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001317 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001318 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001319 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001320 }
Mike Stumpbf916502009-07-24 19:02:52 +00001321
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001322 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001323 }
Mike Stumpbf916502009-07-24 19:02:52 +00001324
1325 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1326 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001327 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001328 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1329 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001330 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001331 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001332 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001333 }
Mike Stumpbf916502009-07-24 19:02:52 +00001334
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001335 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001336 if (NonNullArgs.empty()) {
1337 // Warn the trivial case only if attribute is not coming from a
1338 // macro instantiation.
1339 if (Attr.getLoc().isFileID())
1340 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001341 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001342 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001343 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001344
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001345 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001346 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001347 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001348 D->addAttr(::new (S.Context)
1349 NonNullAttr(Attr.getRange(), S.Context, start, size,
1350 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001351}
1352
Chandler Carruth1b03c872011-07-02 00:01:44 +00001353static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001354 // This attribute must be applied to a function declaration.
1355 // The first argument to the attribute must be a string,
1356 // the name of the resource, for example "malloc".
1357 // The following arguments must be argument indexes, the arguments must be
1358 // of integer type for Returns, otherwise of pointer type.
1359 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001360 // after being held. free() should be __attribute((ownership_takes)), whereas
1361 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001362
Aaron Ballman624421f2013-08-31 01:11:41 +00001363 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001364 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001365 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001366 return;
1367 }
1368 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001369 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001370 switch (AL.getKind()) {
1371 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001372 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001373 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001374 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1375 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001376 return;
1377 }
Jordy Rose2a479922010-08-12 08:54:03 +00001378 break;
1379 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001380 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001381 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001382 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1383 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001384 return;
1385 }
Jordy Rose2a479922010-08-12 08:54:03 +00001386 break;
1387 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001388 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001389 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001390 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001391 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001392 return;
1393 }
Jordy Rose2a479922010-08-12 08:54:03 +00001394 break;
1395 default:
1396 // This should never happen given how we are called.
1397 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001398 }
1399
Chandler Carruth87c44602011-07-01 23:49:12 +00001400 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001401 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1402 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403 return;
1404 }
1405
Aaron Ballman624421f2013-08-31 01:11:41 +00001406 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001407
1408 // Normalize the argument, __foo__ becomes foo.
1409 if (Module.startswith("__") && Module.endswith("__"))
1410 Module = Module.substr(2, Module.size() - 4);
1411
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001412
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001413 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001414 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1415 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001416 uint64_t Idx;
1417 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001418 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001419 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001420
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001421 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001422 case OwnershipAttr::Takes:
1423 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001424 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001425 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001426 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1427 // FIXME: Should also highlight argument in decl.
1428 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001429 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001430 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001431 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001432 continue;
1433 }
1434 break;
1435 }
Sean Huntcf807c42010-08-18 23:23:40 +00001436 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001437 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001438 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001439 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001440 llvm::APSInt ArgNum(32);
1441 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1442 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1443 S.Diag(AL.getLoc(), diag::err_ownership_type)
1444 << "ownership_returns" << "integer"
1445 << IdxExpr->getSourceRange();
1446 return;
1447 }
1448 }
1449 break;
1450 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001451 } // switch
1452
1453 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001454 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001455 i = D->specific_attr_begin<OwnershipAttr>(),
1456 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001457 i != e; ++i) {
1458 if ((*i)->getOwnKind() != K) {
1459 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1460 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001461 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001462 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1463 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001464 }
1465 }
1466 }
1467 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001468 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001469 }
1470
1471 unsigned* start = OwnershipArgs.data();
1472 unsigned size = OwnershipArgs.size();
1473 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001474
1475 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001476 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1477 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001478 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001479 }
Sean Huntcf807c42010-08-18 23:23:40 +00001480
Michael Han51d8c522013-01-24 16:46:58 +00001481 D->addAttr(::new (S.Context)
1482 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1483 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001484}
1485
Chandler Carruth1b03c872011-07-02 00:01:44 +00001486static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001487 // Check the attribute arguments.
1488 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001489 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1490 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001491 return;
1492 }
1493
Chandler Carruth87c44602011-07-01 23:49:12 +00001494 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001495 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001496 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001497 return;
1498 }
1499
Chandler Carruth87c44602011-07-01 23:49:12 +00001500 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001501
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001502 // gcc rejects
1503 // class c {
1504 // static int a __attribute__((weakref ("v2")));
1505 // static int b() __attribute__((weakref ("f3")));
1506 // };
1507 // and ignores the attributes of
1508 // void f(void) {
1509 // static int a __attribute__((weakref ("v2")));
1510 // }
1511 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001512 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001513 if (!Ctx->isFileContext()) {
1514 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001515 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001516 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001517 }
1518
1519 // The GCC manual says
1520 //
1521 // At present, a declaration to which `weakref' is attached can only
1522 // be `static'.
1523 //
1524 // It also says
1525 //
1526 // Without a TARGET,
1527 // given as an argument to `weakref' or to `alias', `weakref' is
1528 // equivalent to `weak'.
1529 //
1530 // gcc 4.4.1 will accept
1531 // int a7 __attribute__((weakref));
1532 // as
1533 // int a7 __attribute__((weak));
1534 // This looks like a bug in gcc. We reject that for now. We should revisit
1535 // it if this behaviour is actually used.
1536
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001537 // GCC rejects
1538 // static ((alias ("y"), weakref)).
1539 // Should we? How to check that weakref is before or after alias?
1540
Aaron Ballmanbe116e22013-09-09 23:40:31 +00001541 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1542 // of transforming it into an AliasAttr. The WeakRefAttr never uses the
1543 // StringRef parameter it was given anyway.
Aaron Ballman624421f2013-08-31 01:11:41 +00001544 if (Attr.isArgExpr(0)) {
1545 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001546 Arg = Arg->IgnoreParenCasts();
1547 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1548
Douglas Gregor5cee1192011-07-27 05:40:30 +00001549 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001550 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001551 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001552 return;
1553 }
1554 // GCC will accept anything as the argument of weakref. Should we
1555 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001556 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001557 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001558 }
1559
Michael Han51d8c522013-01-24 16:46:58 +00001560 D->addAttr(::new (S.Context)
1561 WeakRefAttr(Attr.getRange(), S.Context,
1562 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001563}
1564
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001565/// \brief Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
1566/// If not emit an error and return false. If the argument is an identifier it
1567/// will emit an error with a fixit hint and treat it as if it was a string
1568/// literal.
1569static bool checkStringLiteralArgument(Sema &S, StringRef &Str,
1570 const AttributeList &Attr,
1571 unsigned ArgNum,
1572 SourceLocation *ArgLocation = 0) {
1573 // Look for identifiers. If we have one emit a hint to fix it to a literal.
1574 if (Attr.isArgIdent(ArgNum)) {
1575 IdentifierLoc *Loc = Attr.getArgAsIdent(ArgNum);
1576 S.Diag(Loc->Loc, diag::err_attribute_argument_type)
1577 << Attr.getName() << AANT_ArgumentString
1578 << FixItHint::CreateInsertion(Loc->Loc, "\"")
1579 << FixItHint::CreateInsertion(S.PP.getLocForEndOfToken(Loc->Loc), "\"");
1580 Str = Loc->Ident->getName();
1581 if (ArgLocation)
1582 *ArgLocation = Loc->Loc;
1583 return true;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001584 }
Mike Stumpbf916502009-07-24 19:02:52 +00001585
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001586 // Now check for an actual string literal.
1587 Expr *ArgExpr = Attr.getArgAsExpr(ArgNum);
1588 StringLiteral *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
1589 if (ArgLocation)
1590 *ArgLocation = ArgExpr->getLocStart();
1591
1592 if (!Literal || !Literal->isAscii()) {
1593 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
1594 << Attr.getName() << AANT_ArgumentString;
1595 return false;
1596 }
1597
1598 Str = Literal->getString();
1599 return true;
1600}
1601
1602static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1603 StringRef Str;
1604 if (!checkStringLiteralArgument(S, Str, Attr, 0))
1605 return;
1606
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001607 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001608 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1609 return;
1610 }
1611
Chris Lattner6b6b5372008-06-26 18:38:35 +00001612 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001613
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001614 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
Michael Han51d8c522013-01-24 16:46:58 +00001615 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001616}
1617
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001618static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001619 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1620 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1621 << Attr.getName() << ExpectedFunctionOrMethod;
1622 return;
1623 }
1624
Michael Han51d8c522013-01-24 16:46:58 +00001625 D->addAttr(::new (S.Context)
1626 MinSizeAttr(Attr.getRange(), S.Context,
1627 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001628}
1629
Benjamin Krameree409a92012-05-12 21:10:52 +00001630static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001631 if (!isa<FunctionDecl>(D)) {
1632 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1633 << Attr.getName() << ExpectedFunction;
1634 return;
1635 }
1636
1637 if (D->hasAttr<HotAttr>()) {
1638 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1639 << Attr.getName() << "hot";
1640 return;
1641 }
1642
Michael Han51d8c522013-01-24 16:46:58 +00001643 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1644 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001645}
1646
1647static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001648 if (!isa<FunctionDecl>(D)) {
1649 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1650 << Attr.getName() << ExpectedFunction;
1651 return;
1652 }
1653
1654 if (D->hasAttr<ColdAttr>()) {
1655 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1656 << Attr.getName() << "cold";
1657 return;
1658 }
1659
Michael Han51d8c522013-01-24 16:46:58 +00001660 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1661 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001662}
1663
Chandler Carruth1b03c872011-07-02 00:01:44 +00001664static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001665 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001666 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001667 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001668 return;
1669 }
1670
Michael Han51d8c522013-01-24 16:46:58 +00001671 D->addAttr(::new (S.Context)
1672 NakedAttr(Attr.getRange(), S.Context,
1673 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001674}
1675
Chandler Carruth1b03c872011-07-02 00:01:44 +00001676static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1677 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001678 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001679 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001680 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001681 return;
1682 }
Mike Stumpbf916502009-07-24 19:02:52 +00001683
Michael Han51d8c522013-01-24 16:46:58 +00001684 D->addAttr(::new (S.Context)
1685 AlwaysInlineAttr(Attr.getRange(), S.Context,
1686 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001687}
1688
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001689static void handleTLSModelAttr(Sema &S, Decl *D,
1690 const AttributeList &Attr) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001691 StringRef Model;
1692 SourceLocation LiteralLoc;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001693 // Check that it is a string.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001694 if (!checkStringLiteralArgument(S, Model, Attr, 0, &LiteralLoc))
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001695 return;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001696
Richard Smith38afbc72013-04-13 02:43:54 +00001697 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001698 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1699 << Attr.getName() << ExpectedTLSVar;
1700 return;
1701 }
1702
1703 // Check that the value.
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001704 if (Model != "global-dynamic" && Model != "local-dynamic"
1705 && Model != "initial-exec" && Model != "local-exec") {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001706 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001707 return;
1708 }
1709
Michael Han51d8c522013-01-24 16:46:58 +00001710 D->addAttr(::new (S.Context)
1711 TLSModelAttr(Attr.getRange(), S.Context, Model,
1712 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001713}
1714
Chandler Carruth1b03c872011-07-02 00:01:44 +00001715static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001716 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001717 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001718 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001719 D->addAttr(::new (S.Context)
1720 MallocAttr(Attr.getRange(), S.Context,
1721 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001722 return;
1723 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001724 }
1725
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001726 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001727}
1728
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00001730 D->addAttr(::new (S.Context)
1731 MayAliasAttr(Attr.getRange(), S.Context,
1732 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001733}
1734
Chandler Carruth1b03c872011-07-02 00:01:44 +00001735static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001736 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001737 D->addAttr(::new (S.Context)
1738 NoCommonAttr(Attr.getRange(), S.Context,
1739 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001740 else
1741 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001742 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001743}
1744
Chandler Carruth1b03c872011-07-02 00:01:44 +00001745static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001746 if (S.LangOpts.CPlusPlus) {
1747 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1748 return;
1749 }
1750
Chandler Carruth87c44602011-07-01 23:49:12 +00001751 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001752 D->addAttr(::new (S.Context)
1753 CommonAttr(Attr.getRange(), S.Context,
1754 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001755 else
1756 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001757 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001758}
1759
Chandler Carruth1b03c872011-07-02 00:01:44 +00001760static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001761 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001762
1763 if (S.CheckNoReturnAttr(attr)) return;
1764
Chandler Carruth87c44602011-07-01 23:49:12 +00001765 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001766 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001767 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001768 return;
1769 }
1770
Michael Han51d8c522013-01-24 16:46:58 +00001771 D->addAttr(::new (S.Context)
1772 NoReturnAttr(attr.getRange(), S.Context,
1773 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001774}
1775
1776bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001777 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001778 attr.setInvalid();
1779 return true;
1780 }
1781
1782 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001783}
1784
Chandler Carruth1b03c872011-07-02 00:01:44 +00001785static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1786 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001787
1788 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1789 // because 'analyzer_noreturn' does not impact the type.
Chandler Carruth87c44602011-07-01 23:49:12 +00001790 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1791 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001792 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1793 && !VD->getType()->isFunctionPointerType())) {
1794 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001795 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001796 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001797 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001798 return;
1799 }
1800 }
1801
Michael Han51d8c522013-01-24 16:46:58 +00001802 D->addAttr(::new (S.Context)
1803 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1804 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001805}
1806
Richard Smithcd8ab512013-01-17 01:30:42 +00001807static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1808 const AttributeList &Attr) {
1809 // C++11 [dcl.attr.noreturn]p1:
1810 // The attribute may be applied to the declarator-id in a function
1811 // declaration.
1812 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1813 if (!FD) {
1814 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1815 << Attr.getName() << ExpectedFunctionOrMethod;
1816 return;
1817 }
1818
Michael Han51d8c522013-01-24 16:46:58 +00001819 D->addAttr(::new (S.Context)
1820 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1821 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001822}
1823
John Thompson35cc9622010-08-09 21:53:52 +00001824// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001825static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001826/*
1827 Returning a Vector Class in Registers
1828
Eric Christopherf48f3672010-12-01 22:13:54 +00001829 According to the PPU ABI specifications, a class with a single member of
1830 vector type is returned in memory when used as the return value of a function.
1831 This results in inefficient code when implementing vector classes. To return
1832 the value in a single vector register, add the vecreturn attribute to the
1833 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001834
1835 Example:
1836
1837 struct Vector
1838 {
1839 __vector float xyzw;
1840 } __attribute__((vecreturn));
1841
1842 Vector Add(Vector lhs, Vector rhs)
1843 {
1844 Vector result;
1845 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1846 return result; // This will be returned in a register
1847 }
1848*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001849 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001850 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001851 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001852 return;
1853 }
1854
Chandler Carruth87c44602011-07-01 23:49:12 +00001855 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001856 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1857 return;
1858 }
1859
Chandler Carruth87c44602011-07-01 23:49:12 +00001860 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001861 int count = 0;
1862
1863 if (!isa<CXXRecordDecl>(record)) {
1864 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1865 return;
1866 }
1867
1868 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1869 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1870 return;
1871 }
1872
Eric Christopherf48f3672010-12-01 22:13:54 +00001873 for (RecordDecl::field_iterator iter = record->field_begin();
1874 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001875 if ((count == 1) || !iter->getType()->isVectorType()) {
1876 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1877 return;
1878 }
1879 count++;
1880 }
1881
Michael Han51d8c522013-01-24 16:46:58 +00001882 D->addAttr(::new (S.Context)
1883 VecReturnAttr(Attr.getRange(), S.Context,
1884 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001885}
1886
Richard Smith3a2b7a12013-01-28 22:42:45 +00001887static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1888 const AttributeList &Attr) {
1889 if (isa<ParmVarDecl>(D)) {
1890 // [[carries_dependency]] can only be applied to a parameter if it is a
1891 // parameter of a function declaration or lambda.
1892 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1893 S.Diag(Attr.getLoc(),
1894 diag::err_carries_dependency_param_not_function_decl);
1895 return;
1896 }
1897 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001898 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001899 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001900 return;
1901 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001902
1903 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1904 Attr.getRange(), S.Context,
1905 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001906}
1907
Chandler Carruth1b03c872011-07-02 00:01:44 +00001908static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001909 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001910 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001911 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001912 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001913 return;
1914 }
Mike Stumpbf916502009-07-24 19:02:52 +00001915
Michael Han51d8c522013-01-24 16:46:58 +00001916 D->addAttr(::new (S.Context)
1917 UnusedAttr(Attr.getRange(), S.Context,
1918 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001919}
1920
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001921static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1922 const AttributeList &Attr) {
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001923 if (!isa<FunctionDecl>(D)) {
1924 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1925 << Attr.getName() << ExpectedFunction;
1926 return;
1927 }
1928
Michael Han51d8c522013-01-24 16:46:58 +00001929 D->addAttr(::new (S.Context)
1930 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1931 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001932}
1933
Chandler Carruth1b03c872011-07-02 00:01:44 +00001934static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001935 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00001936 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001937 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1938 return;
1939 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001940 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001941 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001942 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001943 return;
1944 }
Mike Stumpbf916502009-07-24 19:02:52 +00001945
Michael Han51d8c522013-01-24 16:46:58 +00001946 D->addAttr(::new (S.Context)
1947 UsedAttr(Attr.getRange(), S.Context,
1948 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001949}
1950
Chandler Carruth1b03c872011-07-02 00:01:44 +00001951static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001952 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001953 if (Attr.getNumArgs() > 1) {
1954 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001955 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001956 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001957
1958 int priority = 65535; // FIXME: Do not hardcode such constants.
1959 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001960 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001961 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001962 if (E->isTypeDependent() || E->isValueDependent() ||
1963 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001964 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001965 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001966 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001967 return;
1968 }
1969 priority = Idx.getZExtValue();
1970 }
Mike Stumpbf916502009-07-24 19:02:52 +00001971
Chandler Carruth87c44602011-07-01 23:49:12 +00001972 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001973 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001974 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001975 return;
1976 }
1977
Michael Han51d8c522013-01-24 16:46:58 +00001978 D->addAttr(::new (S.Context)
1979 ConstructorAttr(Attr.getRange(), S.Context, priority,
1980 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001981}
1982
Chandler Carruth1b03c872011-07-02 00:01:44 +00001983static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001984 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001985 if (Attr.getNumArgs() > 1) {
1986 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001987 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001988 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001989
1990 int priority = 65535; // FIXME: Do not hardcode such constants.
1991 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001992 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001993 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001994 if (E->isTypeDependent() || E->isValueDependent() ||
1995 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001996 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001997 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001998 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001999 return;
2000 }
2001 priority = Idx.getZExtValue();
2002 }
Mike Stumpbf916502009-07-24 19:02:52 +00002003
Chandler Carruth87c44602011-07-01 23:49:12 +00002004 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002005 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002006 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002007 return;
2008 }
2009
Michael Han51d8c522013-01-24 16:46:58 +00002010 D->addAttr(::new (S.Context)
2011 DestructorAttr(Attr.getRange(), S.Context, priority,
2012 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002013}
2014
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002015template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002016static void handleAttrWithMessage(Sema &S, Decl *D,
2017 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002018 unsigned NumArgs = Attr.getNumArgs();
2019 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002020 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002021 return;
2022 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002023
2024 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002025 StringRef Str;
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002026 if (NumArgs == 1 && !checkStringLiteralArgument(S, Str, Attr, 0))
2027 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002028
Michael Han51d8c522013-01-24 16:46:58 +00002029 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2030 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002031}
2032
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002033static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2034 const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002035 D->addAttr(::new (S.Context)
2036 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2037 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002038}
2039
Patrick Beardb2f68202012-04-06 18:12:22 +00002040static void handleObjCRootClassAttr(Sema &S, Decl *D,
2041 const AttributeList &Attr) {
2042 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002043 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2044 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002045 return;
2046 }
2047
Michael Han51d8c522013-01-24 16:46:58 +00002048 D->addAttr(::new (S.Context)
2049 ObjCRootClassAttr(Attr.getRange(), S.Context,
2050 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002051}
2052
Michael Han51d8c522013-01-24 16:46:58 +00002053static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2054 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002055 if (!isa<ObjCInterfaceDecl>(D)) {
2056 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2057 return;
2058 }
2059
Michael Han51d8c522013-01-24 16:46:58 +00002060 D->addAttr(::new (S.Context)
2061 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2062 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002063}
2064
Jordy Rosefad5de92012-05-08 03:27:22 +00002065static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2066 IdentifierInfo *Platform,
2067 VersionTuple Introduced,
2068 VersionTuple Deprecated,
2069 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002070 StringRef PlatformName
2071 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2072 if (PlatformName.empty())
2073 PlatformName = Platform->getName();
2074
2075 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2076 // of these steps are needed).
2077 if (!Introduced.empty() && !Deprecated.empty() &&
2078 !(Introduced <= Deprecated)) {
2079 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2080 << 1 << PlatformName << Deprecated.getAsString()
2081 << 0 << Introduced.getAsString();
2082 return true;
2083 }
2084
2085 if (!Introduced.empty() && !Obsoleted.empty() &&
2086 !(Introduced <= Obsoleted)) {
2087 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2088 << 2 << PlatformName << Obsoleted.getAsString()
2089 << 0 << Introduced.getAsString();
2090 return true;
2091 }
2092
2093 if (!Deprecated.empty() && !Obsoleted.empty() &&
2094 !(Deprecated <= Obsoleted)) {
2095 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2096 << 2 << PlatformName << Obsoleted.getAsString()
2097 << 1 << Deprecated.getAsString();
2098 return true;
2099 }
2100
2101 return false;
2102}
2103
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002104/// \brief Check whether the two versions match.
2105///
2106/// If either version tuple is empty, then they are assumed to match. If
2107/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2108static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2109 bool BeforeIsOkay) {
2110 if (X.empty() || Y.empty())
2111 return true;
2112
2113 if (X == Y)
2114 return true;
2115
2116 if (BeforeIsOkay && X < Y)
2117 return true;
2118
2119 return false;
2120}
2121
Rafael Espindola51be6e32013-01-08 22:04:34 +00002122AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002123 IdentifierInfo *Platform,
2124 VersionTuple Introduced,
2125 VersionTuple Deprecated,
2126 VersionTuple Obsoleted,
2127 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002128 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002129 bool Override,
2130 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002131 VersionTuple MergedIntroduced = Introduced;
2132 VersionTuple MergedDeprecated = Deprecated;
2133 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002134 bool FoundAny = false;
2135
Rafael Espindola98ae8342012-05-10 02:50:16 +00002136 if (D->hasAttrs()) {
2137 AttrVec &Attrs = D->getAttrs();
2138 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2139 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2140 if (!OldAA) {
2141 ++i;
2142 continue;
2143 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002144
Rafael Espindola98ae8342012-05-10 02:50:16 +00002145 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2146 if (OldPlatform != Platform) {
2147 ++i;
2148 continue;
2149 }
2150
2151 FoundAny = true;
2152 VersionTuple OldIntroduced = OldAA->getIntroduced();
2153 VersionTuple OldDeprecated = OldAA->getDeprecated();
2154 VersionTuple OldObsoleted = OldAA->getObsoleted();
2155 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002156
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002157 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2158 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2159 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2160 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002161 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002162 if (Override) {
2163 int Which = -1;
2164 VersionTuple FirstVersion;
2165 VersionTuple SecondVersion;
2166 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2167 Which = 0;
2168 FirstVersion = OldIntroduced;
2169 SecondVersion = Introduced;
2170 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2171 Which = 1;
2172 FirstVersion = Deprecated;
2173 SecondVersion = OldDeprecated;
2174 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2175 Which = 2;
2176 FirstVersion = Obsoleted;
2177 SecondVersion = OldObsoleted;
2178 }
2179
2180 if (Which == -1) {
2181 Diag(OldAA->getLocation(),
2182 diag::warn_mismatched_availability_override_unavail)
2183 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2184 } else {
2185 Diag(OldAA->getLocation(),
2186 diag::warn_mismatched_availability_override)
2187 << Which
2188 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2189 << FirstVersion.getAsString() << SecondVersion.getAsString();
2190 }
2191 Diag(Range.getBegin(), diag::note_overridden_method);
2192 } else {
2193 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2194 Diag(Range.getBegin(), diag::note_previous_attribute);
2195 }
2196
Rafael Espindola98ae8342012-05-10 02:50:16 +00002197 Attrs.erase(Attrs.begin() + i);
2198 --e;
2199 continue;
2200 }
2201
2202 VersionTuple MergedIntroduced2 = MergedIntroduced;
2203 VersionTuple MergedDeprecated2 = MergedDeprecated;
2204 VersionTuple MergedObsoleted2 = MergedObsoleted;
2205
2206 if (MergedIntroduced2.empty())
2207 MergedIntroduced2 = OldIntroduced;
2208 if (MergedDeprecated2.empty())
2209 MergedDeprecated2 = OldDeprecated;
2210 if (MergedObsoleted2.empty())
2211 MergedObsoleted2 = OldObsoleted;
2212
2213 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2214 MergedIntroduced2, MergedDeprecated2,
2215 MergedObsoleted2)) {
2216 Attrs.erase(Attrs.begin() + i);
2217 --e;
2218 continue;
2219 }
2220
2221 MergedIntroduced = MergedIntroduced2;
2222 MergedDeprecated = MergedDeprecated2;
2223 MergedObsoleted = MergedObsoleted2;
2224 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002225 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002226 }
2227
2228 if (FoundAny &&
2229 MergedIntroduced == Introduced &&
2230 MergedDeprecated == Deprecated &&
2231 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002232 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002233
Ted Kremenekcb344392013-04-06 00:34:27 +00002234 // Only create a new attribute if !Override, but we want to do
2235 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002236 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002237 MergedDeprecated, MergedObsoleted) &&
2238 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002239 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2240 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002241 Obsoleted, IsUnavailable, Message,
2242 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002243 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002244 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002245}
2246
Chandler Carruth1b03c872011-07-02 00:01:44 +00002247static void handleAvailabilityAttr(Sema &S, Decl *D,
2248 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002249 if (!checkAttributeNumArgs(S, Attr, 1))
2250 return;
2251 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002252 unsigned Index = Attr.getAttributeSpellingListIndex();
2253
Aaron Ballman624421f2013-08-31 01:11:41 +00002254 IdentifierInfo *II = Platform->Ident;
2255 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2256 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2257 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002258
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002259 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2260 if (!ND) {
2261 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2262 return;
2263 }
2264
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002265 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2266 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2267 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002268 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002269 StringRef Str;
2270 const StringLiteral *SE =
2271 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2272 if (SE)
2273 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002274
Aaron Ballman624421f2013-08-31 01:11:41 +00002275 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002276 Introduced.Version,
2277 Deprecated.Version,
2278 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002279 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002280 /*Override=*/false,
2281 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002282 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002283 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002284}
2285
John McCalld4c3d662013-02-20 01:54:26 +00002286template <class T>
2287static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2288 typename T::VisibilityType value,
2289 unsigned attrSpellingListIndex) {
2290 T *existingAttr = D->getAttr<T>();
2291 if (existingAttr) {
2292 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2293 if (existingValue == value)
2294 return NULL;
2295 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2296 S.Diag(range.getBegin(), diag::note_previous_attribute);
2297 D->dropAttr<T>();
2298 }
2299 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2300}
2301
Rafael Espindola599f1b72012-05-13 03:25:18 +00002302VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002303 VisibilityAttr::VisibilityType Vis,
2304 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002305 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2306 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002307}
2308
John McCalld4c3d662013-02-20 01:54:26 +00002309TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2310 TypeVisibilityAttr::VisibilityType Vis,
2311 unsigned AttrSpellingListIndex) {
2312 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2313 AttrSpellingListIndex);
2314}
2315
2316static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2317 bool isTypeVisibility) {
2318 // Visibility attributes don't mean anything on a typedef.
2319 if (isa<TypedefNameDecl>(D)) {
2320 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2321 << Attr.getName();
2322 return;
2323 }
2324
2325 // 'type_visibility' can only go on a type or namespace.
2326 if (isTypeVisibility &&
2327 !(isa<TagDecl>(D) ||
2328 isa<ObjCInterfaceDecl>(D) ||
2329 isa<NamespaceDecl>(D))) {
2330 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2331 << Attr.getName() << ExpectedTypeOrNamespace;
2332 return;
2333 }
2334
Benjamin Kramerae3a83f2013-09-09 15:08:57 +00002335 // Check that the argument is a string literal.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002336 StringRef TypeStr;
2337 SourceLocation LiteralLoc;
2338 if (!checkStringLiteralArgument(S, TypeStr, Attr, 0, &LiteralLoc))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002339 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002340
Sean Huntcf807c42010-08-18 23:23:40 +00002341 VisibilityAttr::VisibilityType type;
Aaron Ballmand0686072013-09-11 19:47:58 +00002342 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002343 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported)
Aaron Ballmand0686072013-09-11 19:47:58 +00002344 << Attr.getName() << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002345 return;
2346 }
Aaron Ballmand0686072013-09-11 19:47:58 +00002347
2348 // Complain about attempts to use protected visibility on targets
2349 // (like Darwin) that don't support it.
2350 if (type == VisibilityAttr::Protected &&
2351 !S.Context.getTargetInfo().hasProtectedVisibility()) {
2352 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2353 type = VisibilityAttr::Default;
2354 }
Mike Stumpbf916502009-07-24 19:02:52 +00002355
Michael Han51d8c522013-01-24 16:46:58 +00002356 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002357 clang::Attr *newAttr;
2358 if (isTypeVisibility) {
2359 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2360 (TypeVisibilityAttr::VisibilityType) type,
2361 Index);
2362 } else {
2363 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2364 }
2365 if (newAttr)
2366 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002367}
2368
Chandler Carruth1b03c872011-07-02 00:01:44 +00002369static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2370 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002371 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2372 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002373 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002374 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002375 return;
2376 }
2377
Aaron Ballman624421f2013-08-31 01:11:41 +00002378 if (!Attr.isArgIdent(0)) {
2379 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2380 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002381 return;
2382 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002383
Aaron Ballmand0686072013-09-11 19:47:58 +00002384 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2385 ObjCMethodFamilyAttr::FamilyKind F;
2386 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
2387 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << Attr.getName()
2388 << IL->Ident;
John McCalld5313b02011-03-02 11:33:24 +00002389 return;
2390 }
2391
Aaron Ballmand0686072013-09-11 19:47:58 +00002392 if (F == ObjCMethodFamilyAttr::OMF_init &&
John McCallf85e1932011-06-15 23:02:42 +00002393 !method->getResultType()->isObjCObjectPointerType()) {
2394 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2395 << method->getResultType();
2396 // Ignore the attribute.
2397 return;
2398 }
2399
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002400 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
Aaron Ballmand0686072013-09-11 19:47:58 +00002401 S.Context, F));
John McCalld5313b02011-03-02 11:33:24 +00002402}
2403
Chandler Carruth1b03c872011-07-02 00:01:44 +00002404static void handleObjCExceptionAttr(Sema &S, Decl *D,
2405 const AttributeList &Attr) {
Chris Lattner0db29ec2009-02-14 08:09:34 +00002406 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2407 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002408 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2409 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002410 return;
2411 }
Mike Stumpbf916502009-07-24 19:02:52 +00002412
Michael Han51d8c522013-01-24 16:46:58 +00002413 D->addAttr(::new (S.Context)
2414 ObjCExceptionAttr(Attr.getRange(), S.Context,
2415 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002416}
2417
Chandler Carruth1b03c872011-07-02 00:01:44 +00002418static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Richard Smith162e1c12011-04-15 14:24:37 +00002419 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002420 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002421 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002422 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2423 return;
2424 }
2425 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002426 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2427 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002428 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002429 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2430 return;
2431 }
2432 }
2433 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002434 // It is okay to include this attribute on properties, e.g.:
2435 //
2436 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2437 //
2438 // In this case it follows tradition and suppresses an error in the above
2439 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002440 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002441 }
Michael Han51d8c522013-01-24 16:46:58 +00002442 D->addAttr(::new (S.Context)
2443 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2444 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002445}
2446
Mike Stumpbf916502009-07-24 19:02:52 +00002447static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002448handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002449 if (!isa<FunctionDecl>(D)) {
2450 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2451 return;
2452 }
2453
Michael Han51d8c522013-01-24 16:46:58 +00002454 D->addAttr(::new (S.Context)
2455 OverloadableAttr(Attr.getRange(), S.Context,
2456 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002457}
2458
Chandler Carruth1b03c872011-07-02 00:01:44 +00002459static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002460 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002461 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002462 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002463 return;
2464 }
Mike Stumpbf916502009-07-24 19:02:52 +00002465
Aaron Ballman624421f2013-08-31 01:11:41 +00002466 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002467 BlocksAttr::BlockType type;
Aaron Ballmand0686072013-09-11 19:47:58 +00002468 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2469 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
2470 << Attr.getName() << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002471 return;
2472 }
Mike Stumpbf916502009-07-24 19:02:52 +00002473
Michael Han51d8c522013-01-24 16:46:58 +00002474 D->addAttr(::new (S.Context)
2475 BlocksAttr(Attr.getRange(), S.Context, type,
2476 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002477}
2478
Chandler Carruth1b03c872011-07-02 00:01:44 +00002479static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002480 // check the attribute arguments.
2481 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002482 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002483 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002484 }
2485
John McCall3323fad2011-09-09 07:56:05 +00002486 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002487 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002488 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002489 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002490 if (E->isTypeDependent() || E->isValueDependent() ||
2491 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002492 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002493 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002494 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002495 return;
2496 }
Mike Stumpbf916502009-07-24 19:02:52 +00002497
John McCall3323fad2011-09-09 07:56:05 +00002498 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002499 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2500 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002501 return;
2502 }
John McCall3323fad2011-09-09 07:56:05 +00002503
2504 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002505 }
2506
John McCall3323fad2011-09-09 07:56:05 +00002507 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002508 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002509 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002510 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002511 if (E->isTypeDependent() || E->isValueDependent() ||
2512 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002513 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002514 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002515 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002516 return;
2517 }
2518 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002519
John McCall3323fad2011-09-09 07:56:05 +00002520 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002521 // FIXME: This error message could be improved, it would be nice
2522 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002523 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2524 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002525 return;
2526 }
2527 }
2528
Chandler Carruth87c44602011-07-01 23:49:12 +00002529 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002530 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002531 if (isa<FunctionNoProtoType>(FT)) {
2532 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2533 return;
2534 }
Mike Stumpbf916502009-07-24 19:02:52 +00002535
Chris Lattner897cd902009-03-17 23:03:47 +00002536 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002537 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002538 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002539 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002540 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002541 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002542 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002543 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002544 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002545 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2546 if (!BD->isVariadic()) {
2547 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2548 return;
2549 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002550 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002551 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002552 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002553 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002554 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002555 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002556 int m = Ty->isFunctionPointerType() ? 0 : 1;
2557 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002558 return;
2559 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002560 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002561 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002562 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002563 return;
2564 }
Anders Carlsson77091822008-10-05 18:05:59 +00002565 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002566 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002567 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002568 return;
2569 }
Michael Han51d8c522013-01-24 16:46:58 +00002570 D->addAttr(::new (S.Context)
2571 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2572 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002573}
2574
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002575static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002576 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2577 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2578 else
2579 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2580}
2581
Chandler Carruth1b03c872011-07-02 00:01:44 +00002582static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002583 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002584 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002585 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002586 return;
2587 }
Mike Stumpbf916502009-07-24 19:02:52 +00002588
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002589 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2590 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2591 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002592 return;
2593 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002594 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2595 if (MD->getResultType()->isVoidType()) {
2596 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2597 << Attr.getName() << 1;
2598 return;
2599 }
2600
Michael Han51d8c522013-01-24 16:46:58 +00002601 D->addAttr(::new (S.Context)
2602 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2603 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002604}
2605
Chandler Carruth1b03c872011-07-02 00:01:44 +00002606static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002607 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002608 if (isa<CXXRecordDecl>(D)) {
2609 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2610 return;
2611 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002612 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2613 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002614 return;
2615 }
2616
Chandler Carruth87c44602011-07-01 23:49:12 +00002617 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002618
Michael Han51d8c522013-01-24 16:46:58 +00002619 nd->addAttr(::new (S.Context)
2620 WeakAttr(Attr.getRange(), S.Context,
2621 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002622}
2623
Chandler Carruth1b03c872011-07-02 00:01:44 +00002624static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002625 // weak_import only applies to variable & function declarations.
2626 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002627 if (!D->canBeWeakImported(isDef)) {
2628 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002629 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2630 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002631 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002632 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002633 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002634 // Nothing to warn about here.
2635 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002636 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002637 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002638
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002639 return;
2640 }
2641
Michael Han51d8c522013-01-24 16:46:58 +00002642 D->addAttr(::new (S.Context)
2643 WeakImportAttr(Attr.getRange(), S.Context,
2644 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002645}
2646
Tanya Lattner0df579e2012-07-09 22:06:01 +00002647// Handles reqd_work_group_size and work_group_size_hint.
2648static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002649 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002650 unsigned WGSize[3];
2651 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002652 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002653 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002654 if (E->isTypeDependent() || E->isValueDependent() ||
2655 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002656 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2657 << Attr.getName() << AANT_ArgumentIntegerConstant
2658 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002659 return;
2660 }
2661 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2662 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002663
2664 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2665 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2666 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2667 if (!(A->getXDim() == WGSize[0] &&
2668 A->getYDim() == WGSize[1] &&
2669 A->getZDim() == WGSize[2])) {
2670 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2671 Attr.getName();
2672 }
2673 }
2674
2675 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2676 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2677 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2678 if (!(A->getXDim() == WGSize[0] &&
2679 A->getYDim() == WGSize[1] &&
2680 A->getZDim() == WGSize[2])) {
2681 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2682 Attr.getName();
2683 }
2684 }
2685
2686 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2687 D->addAttr(::new (S.Context)
2688 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002689 WGSize[0], WGSize[1], WGSize[2],
2690 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002691 else
2692 D->addAttr(::new (S.Context)
2693 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002694 WGSize[0], WGSize[1], WGSize[2],
2695 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002696}
2697
Joey Gouly37453b92013-03-08 09:42:32 +00002698static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2699 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2700
Aaron Ballman624421f2013-08-31 01:11:41 +00002701 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002702 return;
2703
Aaron Ballman624421f2013-08-31 01:11:41 +00002704 if (!Attr.hasParsedType()) {
2705 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2706 << Attr.getName() << 1;
2707 return;
2708 }
2709
Joey Gouly37453b92013-03-08 09:42:32 +00002710 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2711
2712 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2713 (ParmType->isBooleanType() ||
2714 !ParmType->isIntegralType(S.getASTContext()))) {
2715 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2716 << ParmType;
2717 return;
2718 }
2719
2720 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2721 D->hasAttr<VecTypeHintAttr>()) {
2722 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2723 if (A->getTypeHint() != ParmType) {
2724 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2725 return;
2726 }
2727 }
2728
2729 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2730 ParmType, Attr.getLoc()));
2731}
2732
Rafael Espindola599f1b72012-05-13 03:25:18 +00002733SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002734 StringRef Name,
2735 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002736 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2737 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002738 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002739 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2740 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002741 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002742 }
Michael Han51d8c522013-01-24 16:46:58 +00002743 return ::new (Context) SectionAttr(Range, Context, Name,
2744 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002745}
2746
Chandler Carruth1b03c872011-07-02 00:01:44 +00002747static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002748 // Make sure that there is a string literal as the sections's single
2749 // argument.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002750 StringRef Str;
2751 SourceLocation LiteralLoc;
2752 if (!checkStringLiteralArgument(S, Str, Attr, 0, &LiteralLoc))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002753 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002754
Chris Lattner797c3c42009-08-10 19:03:04 +00002755 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002756 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002757 if (!Error.empty()) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002758 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002759 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002760 return;
2761 }
Mike Stump1eb44332009-09-09 15:08:12 +00002762
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002763 // This attribute cannot be applied to local variables.
2764 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002765 S.Diag(LiteralLoc, diag::err_attribute_section_local_variable);
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002766 return;
2767 }
Michael Han51d8c522013-01-24 16:46:58 +00002768
2769 unsigned Index = Attr.getAttributeSpellingListIndex();
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002770 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), Str, Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002771 if (NewAttr)
2772 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002773}
2774
Chris Lattner6b6b5372008-06-26 18:38:35 +00002775
Chandler Carruth1b03c872011-07-02 00:01:44 +00002776static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002777 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002778 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002779 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002780 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002781 D->addAttr(::new (S.Context)
2782 NoThrowAttr(Attr.getRange(), S.Context,
2783 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002784 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002785}
2786
Chandler Carruth1b03c872011-07-02 00:01:44 +00002787static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002788 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002789 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002790 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002791 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002792 D->addAttr(::new (S.Context)
2793 ConstAttr(Attr.getRange(), S.Context,
2794 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002795 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002796}
2797
Chandler Carruth1b03c872011-07-02 00:01:44 +00002798static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002799 D->addAttr(::new (S.Context)
2800 PureAttr(Attr.getRange(), S.Context,
2801 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002802}
2803
Chandler Carruth1b03c872011-07-02 00:01:44 +00002804static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002805 VarDecl *VD = dyn_cast<VarDecl>(D);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002806 if (!VD || !VD->hasLocalStorage()) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002807 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002808 return;
2809 }
Mike Stumpbf916502009-07-24 19:02:52 +00002810
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002811 Expr *E = Attr.getArgAsExpr(0);
2812 SourceLocation Loc = E->getExprLoc();
2813 FunctionDecl *FD = 0;
2814 DeclarationNameInfo NI;
Aaron Ballman624421f2013-08-31 01:11:41 +00002815
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002816 // gcc only allows for simple identifiers. Since we support more than gcc, we
2817 // will warn the user.
2818 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
2819 if (DRE->hasQualifier())
2820 S.Diag(Loc, diag::warn_cleanup_ext);
2821 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
2822 NI = DRE->getNameInfo();
2823 if (!FD) {
2824 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
2825 << NI.getName();
2826 return;
2827 }
2828 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
2829 if (ULE->hasExplicitTemplateArgs())
2830 S.Diag(Loc, diag::warn_cleanup_ext);
Mike Stumpbf916502009-07-24 19:02:52 +00002831
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002832 // This will diagnose the case where the function cannot be found.
2833 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
2834 NI = ULE->getNameInfo();
2835 } else {
2836 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002837 return;
2838 }
2839
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002840 if (FD->getNumParams() != 1) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002841 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
2842 << NI.getName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002843 return;
2844 }
Mike Stumpbf916502009-07-24 19:02:52 +00002845
Anders Carlsson89941c12009-02-07 23:16:50 +00002846 // We're currently more strict than GCC about what function types we accept.
2847 // If this ever proves to be a problem it should be easy to fix.
2848 QualType Ty = S.Context.getPointerType(VD->getType());
2849 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002850 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2851 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002852 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
2853 << NI.getName() << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00002854 return;
2855 }
Mike Stumpbf916502009-07-24 19:02:52 +00002856
Michael Han51d8c522013-01-24 16:46:58 +00002857 D->addAttr(::new (S.Context)
2858 CleanupAttr(Attr.getRange(), S.Context, FD,
2859 Attr.getAttributeSpellingListIndex()));
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002860}
2861
Mike Stumpbf916502009-07-24 19:02:52 +00002862/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002863/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002864static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002865 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002866 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002867 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002868 return;
2869 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002870
Aaron Ballman624421f2013-08-31 01:11:41 +00002871 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002872 uint64_t ArgIdx;
2873 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
2874 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002875 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002876
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002877 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002878 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002879
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002880 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2881 if (not_nsstring_type &&
2882 !isCFStringType(Ty, S.Context) &&
2883 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002884 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002885 // FIXME: Should highlight the actual expression that has the wrong type.
2886 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002887 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002888 << IdxExpr->getSourceRange();
2889 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002890 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002891 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002892 if (!isNSStringType(Ty, S.Context) &&
2893 !isCFStringType(Ty, S.Context) &&
2894 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002895 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002896 // FIXME: Should highlight the actual expression that has the wrong type.
2897 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002898 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002899 << IdxExpr->getSourceRange();
2900 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002901 }
2902
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002903 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
2904 // because that has corrected for the implicit this parameter, and is zero-
2905 // based. The attribute expects what the user wrote explicitly.
2906 llvm::APSInt Val;
2907 IdxExpr->EvaluateAsInt(Val, S.Context);
2908
Michael Han51d8c522013-01-24 16:46:58 +00002909 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002910 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00002911 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002912}
2913
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002914enum FormatAttrKind {
2915 CFStringFormat,
2916 NSStringFormat,
2917 StrftimeFormat,
2918 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002919 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002920 InvalidFormat
2921};
2922
2923/// getFormatAttrKind - Map from format attribute names to supported format
2924/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002925static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002926 return llvm::StringSwitch<FormatAttrKind>(Format)
2927 // Check for formats that get handled specially.
2928 .Case("NSString", NSStringFormat)
2929 .Case("CFString", CFStringFormat)
2930 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002931
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002932 // Otherwise, check for supported formats.
2933 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2934 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2935 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002936
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002937 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2938 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002939}
2940
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002941/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002942/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002943static void handleInitPriorityAttr(Sema &S, Decl *D,
2944 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002945 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002946 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2947 return;
2948 }
2949
Chandler Carruth87c44602011-07-01 23:49:12 +00002950 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002951 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2952 Attr.setInvalid();
2953 return;
2954 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002955 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002956 if (S.Context.getAsArrayType(T))
2957 T = S.Context.getBaseElementType(T);
2958 if (!T->getAs<RecordType>()) {
2959 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2960 Attr.setInvalid();
2961 return;
2962 }
2963
Aaron Ballman624421f2013-08-31 01:11:41 +00002964 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002965
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002966 llvm::APSInt priority(32);
2967 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2968 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002969 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2970 << Attr.getName() << AANT_ArgumentIntegerConstant
2971 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002972 Attr.setInvalid();
2973 return;
2974 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002975 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002976 if (prioritynum < 101 || prioritynum > 65535) {
2977 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2978 << priorityExpr->getSourceRange();
2979 Attr.setInvalid();
2980 return;
2981 }
Michael Han51d8c522013-01-24 16:46:58 +00002982 D->addAttr(::new (S.Context)
2983 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
2984 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002985}
2986
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00002987FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
2988 IdentifierInfo *Format, int FormatIdx,
2989 int FirstArg,
Michael Han51d8c522013-01-24 16:46:58 +00002990 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002991 // Check whether we already have an equivalent format attribute.
2992 for (specific_attr_iterator<FormatAttr>
2993 i = D->specific_attr_begin<FormatAttr>(),
2994 e = D->specific_attr_end<FormatAttr>();
2995 i != e ; ++i) {
2996 FormatAttr *f = *i;
2997 if (f->getType() == Format &&
2998 f->getFormatIdx() == FormatIdx &&
2999 f->getFirstArg() == FirstArg) {
3000 // If we don't have a valid location for this attribute, adopt the
3001 // location.
3002 if (f->getLocation().isInvalid())
3003 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003004 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003005 }
3006 }
3007
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003008 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3009 FirstArg, AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003010}
3011
Mike Stumpbf916502009-07-24 19:02:52 +00003012/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003013/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003014static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003015 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003016 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003017 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003018 return;
3019 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003020
Chandler Carruth87c44602011-07-01 23:49:12 +00003021 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003022 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003023 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003024 return;
3025 }
3026
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003027 // In C++ the implicit 'this' function parameter also counts, and they are
3028 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003029 bool HasImplicitThisParam = isInstanceMethod(D);
3030 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003031 unsigned FirstIdx = 1;
3032
Aaron Ballman624421f2013-08-31 01:11:41 +00003033 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3034 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003035
3036 // Normalize the argument, __foo__ becomes foo.
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003037 if (Format.startswith("__") && Format.endswith("__")) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003038 Format = Format.substr(2, Format.size() - 4);
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003039 // If we've modified the string name, we need a new identifier for it.
3040 II = &S.Context.Idents.get(Format);
3041 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003042
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003043 // Check for supported formats.
3044 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003045
3046 if (Kind == IgnoredFormat)
3047 return;
3048
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003049 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003050 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003051 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003052 return;
3053 }
3054
3055 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003056 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003057 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003058 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3059 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003060 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003061 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003062 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003063 return;
3064 }
3065
3066 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003067 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003068 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003069 return;
3070 }
3071
3072 // FIXME: Do we need to bounds check?
3073 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003074
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003075 if (HasImplicitThisParam) {
3076 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003077 S.Diag(Attr.getLoc(),
3078 diag::err_format_attribute_implicit_this_format_string)
3079 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003080 return;
3081 }
3082 ArgIdx--;
3083 }
Mike Stump1eb44332009-09-09 15:08:12 +00003084
Chris Lattner6b6b5372008-06-26 18:38:35 +00003085 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003086 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003087
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003088 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003089 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003090 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3091 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003092 return;
3093 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003094 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003095 // FIXME: do we need to check if the type is NSString*? What are the
3096 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003097 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003098 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003099 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3100 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003101 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003102 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003103 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003104 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003105 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003106 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3107 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003108 return;
3109 }
3110
3111 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003112 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003113 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003114 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3115 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003116 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003117 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003118 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003119 return;
3120 }
3121
3122 // check if the function is variadic if the 3rd argument non-zero
3123 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003124 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003125 ++NumArgs; // +1 for ...
3126 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003127 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003128 return;
3129 }
3130 }
3131
Chris Lattner3c73c412008-11-19 08:23:25 +00003132 // strftime requires FirstArg to be 0 because it doesn't read from any
3133 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003134 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003135 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003136 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3137 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003138 return;
3139 }
3140 // if 0 it disables parameter checking (to use with e.g. va_list)
3141 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003142 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003143 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003144 return;
3145 }
3146
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003147 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00003148 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003149 FirstArg.getZExtValue(),
3150 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003151 if (NewAttr)
3152 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003153}
3154
Chandler Carruth1b03c872011-07-02 00:01:44 +00003155static void handleTransparentUnionAttr(Sema &S, Decl *D,
3156 const AttributeList &Attr) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003157 // Try to find the underlying union declaration.
3158 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003159 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003160 if (TD && TD->getUnderlyingType()->isUnionType())
3161 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3162 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003163 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003164
3165 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003166 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003167 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003168 return;
3169 }
3170
John McCall5e1cdac2011-10-07 06:10:15 +00003171 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003172 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003173 diag::warn_transparent_union_attribute_not_definition);
3174 return;
3175 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003176
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003177 RecordDecl::field_iterator Field = RD->field_begin(),
3178 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003179 if (Field == FieldEnd) {
3180 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3181 return;
3182 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003183
David Blaikie581deb32012-06-06 20:45:41 +00003184 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003185 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003186 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003187 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003188 diag::warn_transparent_union_attribute_floating)
3189 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003190 return;
3191 }
3192
3193 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3194 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3195 for (; Field != FieldEnd; ++Field) {
3196 QualType FieldType = Field->getType();
3197 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3198 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3199 // Warn if we drop the attribute.
3200 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003201 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003202 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003203 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003204 diag::warn_transparent_union_attribute_field_size_align)
3205 << isSize << Field->getDeclName() << FieldBits;
3206 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003207 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003208 diag::note_transparent_union_first_field_size_align)
3209 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003210 return;
3211 }
3212 }
3213
Michael Han51d8c522013-01-24 16:46:58 +00003214 RD->addAttr(::new (S.Context)
3215 TransparentUnionAttr(Attr.getRange(), S.Context,
3216 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003217}
3218
Chandler Carruth1b03c872011-07-02 00:01:44 +00003219static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003220 // Make sure that there is a string literal as the annotation's single
3221 // argument.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003222 StringRef Str;
3223 if (!checkStringLiteralArgument(S, Str, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003224 return;
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003225
3226 // Don't duplicate annotations that are already set.
3227 for (specific_attr_iterator<AnnotateAttr>
3228 i = D->specific_attr_begin<AnnotateAttr>(),
3229 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003230 if ((*i)->getAnnotation() == Str)
3231 return;
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003232 }
Michael Han51d8c522013-01-24 16:46:58 +00003233
3234 D->addAttr(::new (S.Context)
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003235 AnnotateAttr(Attr.getRange(), S.Context, Str,
Michael Han51d8c522013-01-24 16:46:58 +00003236 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003237}
3238
Chandler Carruth1b03c872011-07-02 00:01:44 +00003239static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003240 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003241 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003242 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3243 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003244 return;
3245 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003246
Richard Smithbe507b62013-02-01 08:12:08 +00003247 if (Attr.getNumArgs() == 0) {
3248 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3249 true, 0, Attr.getAttributeSpellingListIndex()));
3250 return;
3251 }
3252
Aaron Ballman624421f2013-08-31 01:11:41 +00003253 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003254 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3255 S.Diag(Attr.getEllipsisLoc(),
3256 diag::err_pack_expansion_without_parameter_packs);
3257 return;
3258 }
3259
3260 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3261 return;
3262
3263 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3264 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003265}
3266
3267void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003268 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003269 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3270 SourceLocation AttrLoc = AttrRange.getBegin();
3271
Richard Smith4cd81c52013-01-29 09:02:09 +00003272 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003273 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003274 // C++11 [dcl.align]p1:
3275 // An alignment-specifier may be applied to a variable or to a class
3276 // data member, but it shall not be applied to a bit-field, a function
3277 // parameter, the formal parameter of a catch clause, or a variable
3278 // declared with the register storage class specifier. An
3279 // alignment-specifier may also be applied to the declaration of a class
3280 // or enumeration type.
3281 // C11 6.7.5/2:
3282 // An alignment attribute shall not be specified in a declaration of
3283 // a typedef, or a bit-field, or a function, or a parameter, or an
3284 // object declared with the register storage-class specifier.
3285 int DiagKind = -1;
3286 if (isa<ParmVarDecl>(D)) {
3287 DiagKind = 0;
3288 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3289 if (VD->getStorageClass() == SC_Register)
3290 DiagKind = 1;
3291 if (VD->isExceptionVariable())
3292 DiagKind = 2;
3293 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3294 if (FD->isBitField())
3295 DiagKind = 3;
3296 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003297 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3298 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003299 << (TmpAttr.isC11() ? ExpectedVariableOrField
3300 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003301 return;
3302 }
3303 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003304 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003305 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003306 return;
3307 }
3308 }
3309
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003310 if (E->isTypeDependent() || E->isValueDependent()) {
3311 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003312 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3313 AA->setPackExpansion(IsPackExpansion);
3314 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003315 return;
3316 }
Michael Hana31f65b2013-02-01 01:19:17 +00003317
Sean Huntcf807c42010-08-18 23:23:40 +00003318 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003319 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003320 ExprResult ICE
3321 = VerifyIntegerConstantExpression(E, &Alignment,
3322 diag::err_aligned_attribute_argument_not_int,
3323 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003324 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003325 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003326
3327 // C++11 [dcl.align]p2:
3328 // -- if the constant expression evaluates to zero, the alignment
3329 // specifier shall have no effect
3330 // C11 6.7.5p6:
3331 // An alignment specification of zero has no effect.
3332 if (!(TmpAttr.isAlignas() && !Alignment) &&
3333 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003334 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3335 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003336 return;
3337 }
Michael Hana31f65b2013-02-01 01:19:17 +00003338
Richard Smithbe507b62013-02-01 08:12:08 +00003339 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003340 // We've already verified it's a power of 2, now let's make sure it's
3341 // 8192 or less.
3342 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003343 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003344 << E->getSourceRange();
3345 return;
3346 }
3347 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003348
Richard Smithf6565a92013-02-22 08:32:16 +00003349 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3350 ICE.take(), SpellingListIndex);
3351 AA->setPackExpansion(IsPackExpansion);
3352 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003353}
3354
Michael Hana31f65b2013-02-01 01:19:17 +00003355void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003356 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003357 // FIXME: Cache the number on the Attr object if non-dependent?
3358 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003359 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3360 SpellingListIndex);
3361 AA->setPackExpansion(IsPackExpansion);
3362 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003363}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003364
Richard Smithbe507b62013-02-01 08:12:08 +00003365void Sema::CheckAlignasUnderalignment(Decl *D) {
3366 assert(D->hasAttrs() && "no attributes on decl");
3367
3368 QualType Ty;
3369 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3370 Ty = VD->getType();
3371 else
3372 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003373 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003374 return;
3375
3376 // C++11 [dcl.align]p5, C11 6.7.5/4:
3377 // The combined effect of all alignment attributes in a declaration shall
3378 // not specify an alignment that is less strict than the alignment that
3379 // would otherwise be required for the entity being declared.
3380 AlignedAttr *AlignasAttr = 0;
3381 unsigned Align = 0;
3382 for (specific_attr_iterator<AlignedAttr>
3383 I = D->specific_attr_begin<AlignedAttr>(),
3384 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3385 if (I->isAlignmentDependent())
3386 return;
3387 if (I->isAlignas())
3388 AlignasAttr = *I;
3389 Align = std::max(Align, I->getAlignment(Context));
3390 }
3391
3392 if (AlignasAttr && Align) {
3393 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3394 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3395 if (NaturalAlign > RequestedAlign)
3396 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3397 << Ty << (unsigned)NaturalAlign.getQuantity();
3398 }
3399}
3400
Chandler Carruthd309c812011-07-01 23:49:16 +00003401/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003402/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003403///
Mike Stumpbf916502009-07-24 19:02:52 +00003404/// Despite what would be logical, the mode attribute is a decl attribute, not a
3405/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3406/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003407static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003408 // This attribute isn't documented, but glibc uses it. It changes
3409 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003410 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003411 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3412 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003413 return;
3414 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003415
Aaron Ballman624421f2013-08-31 01:11:41 +00003416 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3417 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003418
3419 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003420 if (Str.startswith("__") && Str.endswith("__"))
3421 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003422
3423 unsigned DestWidth = 0;
3424 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003425 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003426 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003427 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003428 switch (Str[0]) {
3429 case 'Q': DestWidth = 8; break;
3430 case 'H': DestWidth = 16; break;
3431 case 'S': DestWidth = 32; break;
3432 case 'D': DestWidth = 64; break;
3433 case 'X': DestWidth = 96; break;
3434 case 'T': DestWidth = 128; break;
3435 }
3436 if (Str[1] == 'F') {
3437 IntegerMode = false;
3438 } else if (Str[1] == 'C') {
3439 IntegerMode = false;
3440 ComplexMode = true;
3441 } else if (Str[1] != 'I') {
3442 DestWidth = 0;
3443 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003444 break;
3445 case 4:
3446 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3447 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003448 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003449 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003450 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003451 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003452 break;
3453 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003454 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003455 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003456 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003457 case 11:
3458 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003459 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003460 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003461 }
3462
3463 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003464 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003465 OldTy = TD->getUnderlyingType();
3466 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3467 OldTy = VD->getType();
3468 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003469 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003470 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003471 return;
3472 }
Eli Friedman73397492009-03-03 06:41:03 +00003473
John McCall183700f2009-09-21 23:43:11 +00003474 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003475 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3476 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003477 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003478 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3479 } else if (ComplexMode) {
3480 if (!OldTy->isComplexType())
3481 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3482 } else {
3483 if (!OldTy->isFloatingType())
3484 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3485 }
3486
Mike Stump390b4cc2009-05-16 07:39:55 +00003487 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3488 // and friends, at least with glibc.
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003489 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3490 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003491 // FIXME: Make sure floating-point mappings are accurate
3492 // FIXME: Support XF and TF types
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003493 QualType NewTy;
3494 switch (DestWidth) {
3495 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003496 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003497 return;
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003498 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003499 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003500 return;
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003501 case 8:
3502 if (!IntegerMode) {
3503 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3504 return;
3505 }
3506 if (OldTy->isSignedIntegerType())
3507 NewTy = S.Context.SignedCharTy;
3508 else
3509 NewTy = S.Context.UnsignedCharTy;
3510 break;
3511 case 16:
3512 if (!IntegerMode) {
3513 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3514 return;
3515 }
3516 if (OldTy->isSignedIntegerType())
3517 NewTy = S.Context.ShortTy;
3518 else
3519 NewTy = S.Context.UnsignedShortTy;
3520 break;
3521 case 32:
3522 if (!IntegerMode)
3523 NewTy = S.Context.FloatTy;
3524 else if (OldTy->isSignedIntegerType())
3525 NewTy = S.Context.IntTy;
3526 else
3527 NewTy = S.Context.UnsignedIntTy;
3528 break;
3529 case 64:
3530 if (!IntegerMode)
3531 NewTy = S.Context.DoubleTy;
3532 else if (OldTy->isSignedIntegerType())
3533 if (S.Context.getTargetInfo().getLongWidth() == 64)
3534 NewTy = S.Context.LongTy;
3535 else
3536 NewTy = S.Context.LongLongTy;
3537 else
3538 if (S.Context.getTargetInfo().getLongWidth() == 64)
3539 NewTy = S.Context.UnsignedLongTy;
3540 else
3541 NewTy = S.Context.UnsignedLongLongTy;
3542 break;
3543 case 96:
3544 NewTy = S.Context.LongDoubleTy;
3545 break;
3546 case 128:
3547 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3548 &llvm::APFloat::PPCDoubleDouble) {
3549 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3550 return;
3551 }
3552 if (IntegerMode) {
3553 if (OldTy->isSignedIntegerType())
3554 NewTy = S.Context.Int128Ty;
3555 else
3556 NewTy = S.Context.UnsignedInt128Ty;
3557 } else
3558 NewTy = S.Context.LongDoubleTy;
3559 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003560 }
3561
Eli Friedman73397492009-03-03 06:41:03 +00003562 if (ComplexMode) {
3563 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003564 }
3565
3566 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003567 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3568 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3569 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003570 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003571
3572 D->addAttr(::new (S.Context)
3573 ModeAttr(Attr.getRange(), S.Context, Name,
3574 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003575}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003576
Chandler Carruth1b03c872011-07-02 00:01:44 +00003577static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nick Lewycky78d1a102012-07-24 01:40:49 +00003578 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3579 if (!VD->hasGlobalStorage())
3580 S.Diag(Attr.getLoc(),
3581 diag::warn_attribute_requires_functions_or_static_globals)
3582 << Attr.getName();
3583 } else if (!isFunctionOrMethod(D)) {
3584 S.Diag(Attr.getLoc(),
3585 diag::warn_attribute_requires_functions_or_static_globals)
3586 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003587 return;
3588 }
Mike Stumpbf916502009-07-24 19:02:52 +00003589
Michael Han51d8c522013-01-24 16:46:58 +00003590 D->addAttr(::new (S.Context)
3591 NoDebugAttr(Attr.getRange(), S.Context,
3592 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003593}
3594
Chandler Carruth1b03c872011-07-02 00:01:44 +00003595static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003596 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003597 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003598 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003599 return;
3600 }
Mike Stumpbf916502009-07-24 19:02:52 +00003601
Michael Han51d8c522013-01-24 16:46:58 +00003602 D->addAttr(::new (S.Context)
3603 NoInlineAttr(Attr.getRange(), S.Context,
3604 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003605}
3606
Chandler Carruth1b03c872011-07-02 00:01:44 +00003607static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3608 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003609 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003610 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003611 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003612 return;
3613 }
3614
Michael Han51d8c522013-01-24 16:46:58 +00003615 D->addAttr(::new (S.Context)
3616 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3617 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003618}
3619
Chandler Carruth1b03c872011-07-02 00:01:44 +00003620static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003621 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003622 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003623 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003624 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003625 return;
3626 }
3627
Michael Han51d8c522013-01-24 16:46:58 +00003628 D->addAttr(::new (S.Context)
3629 CUDAConstantAttr(Attr.getRange(), S.Context,
3630 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003631 } else {
3632 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3633 }
3634}
3635
Chandler Carruth1b03c872011-07-02 00:01:44 +00003636static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003637 if (S.LangOpts.CUDA) {
3638 // check the attribute arguments.
3639 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003640 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3641 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003642 return;
3643 }
3644
Chandler Carruth87c44602011-07-01 23:49:12 +00003645 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003646 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003647 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003648 return;
3649 }
3650
Michael Han51d8c522013-01-24 16:46:58 +00003651 D->addAttr(::new (S.Context)
3652 CUDADeviceAttr(Attr.getRange(), S.Context,
3653 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003654 } else {
3655 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3656 }
3657}
3658
Chandler Carruth1b03c872011-07-02 00:01:44 +00003659static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003660 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003661 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003662 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003663 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003664 return;
3665 }
3666
Chandler Carruth87c44602011-07-01 23:49:12 +00003667 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003668 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003669 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003670 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003671 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3672 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003673 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003674 "void");
3675 } else {
3676 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3677 << FD->getType();
3678 }
3679 return;
3680 }
3681
Michael Han51d8c522013-01-24 16:46:58 +00003682 D->addAttr(::new (S.Context)
3683 CUDAGlobalAttr(Attr.getRange(), S.Context,
3684 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003685 } else {
3686 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3687 }
3688}
3689
Chandler Carruth1b03c872011-07-02 00:01:44 +00003690static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003691 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003692 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003693 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003694 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003695 return;
3696 }
3697
Michael Han51d8c522013-01-24 16:46:58 +00003698 D->addAttr(::new (S.Context)
3699 CUDAHostAttr(Attr.getRange(), S.Context,
3700 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003701 } else {
3702 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3703 }
3704}
3705
Chandler Carruth1b03c872011-07-02 00:01:44 +00003706static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003707 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003708 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003709 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003710 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003711 return;
3712 }
3713
Michael Han51d8c522013-01-24 16:46:58 +00003714 D->addAttr(::new (S.Context)
3715 CUDASharedAttr(Attr.getRange(), S.Context,
3716 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003717 } else {
3718 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3719 }
3720}
3721
Chandler Carruth1b03c872011-07-02 00:01:44 +00003722static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003723 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003724 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003725 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003726 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003727 return;
3728 }
Mike Stumpbf916502009-07-24 19:02:52 +00003729
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003730 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003731 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003732 return;
3733 }
Mike Stumpbf916502009-07-24 19:02:52 +00003734
Michael Han51d8c522013-01-24 16:46:58 +00003735 D->addAttr(::new (S.Context)
3736 GNUInlineAttr(Attr.getRange(), S.Context,
3737 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003738}
3739
Chandler Carruth1b03c872011-07-02 00:01:44 +00003740static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003741 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003742
Aaron Ballmanfff32482012-12-09 17:45:41 +00003743 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003744 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003745 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3746 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003747 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003748 return;
3749
Chandler Carruth87c44602011-07-01 23:49:12 +00003750 if (!isa<ObjCMethodDecl>(D)) {
3751 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3752 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003753 return;
3754 }
3755
Chandler Carruth87c44602011-07-01 23:49:12 +00003756 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003757 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003758 D->addAttr(::new (S.Context)
3759 FastCallAttr(Attr.getRange(), S.Context,
3760 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003761 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003762 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003763 D->addAttr(::new (S.Context)
3764 StdCallAttr(Attr.getRange(), S.Context,
3765 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003766 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003767 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003768 D->addAttr(::new (S.Context)
3769 ThisCallAttr(Attr.getRange(), S.Context,
3770 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003771 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003772 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003773 D->addAttr(::new (S.Context)
3774 CDeclAttr(Attr.getRange(), S.Context,
3775 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003776 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003777 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003778 D->addAttr(::new (S.Context)
3779 PascalAttr(Attr.getRange(), S.Context,
3780 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003781 return;
Charles Davise8519c32013-08-30 04:39:01 +00003782 case AttributeList::AT_MSABI:
3783 D->addAttr(::new (S.Context)
3784 MSABIAttr(Attr.getRange(), S.Context,
3785 Attr.getAttributeSpellingListIndex()));
3786 return;
3787 case AttributeList::AT_SysVABI:
3788 D->addAttr(::new (S.Context)
3789 SysVABIAttr(Attr.getRange(), S.Context,
3790 Attr.getAttributeSpellingListIndex()));
3791 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003792 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003793 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003794 switch (CC) {
3795 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003796 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003797 break;
3798 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003799 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003800 break;
3801 default:
3802 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003803 }
3804
Michael Han51d8c522013-01-24 16:46:58 +00003805 D->addAttr(::new (S.Context)
3806 PcsAttr(Attr.getRange(), S.Context, PCS,
3807 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003808 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003809 }
Derek Schuff263366f2012-10-16 22:30:41 +00003810 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003811 D->addAttr(::new (S.Context)
3812 PnaclCallAttr(Attr.getRange(), S.Context,
3813 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003814 return;
Guy Benyei38980082012-12-25 08:53:55 +00003815 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003816 D->addAttr(::new (S.Context)
3817 IntelOclBiccAttr(Attr.getRange(), S.Context,
3818 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003819 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003820
Abramo Bagnarae215f722010-04-30 13:10:51 +00003821 default:
3822 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003823 }
3824}
3825
Chandler Carruth1b03c872011-07-02 00:01:44 +00003826static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003827 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003828}
3829
Guy Benyei1db70402013-03-24 13:58:12 +00003830static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00003831 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00003832 llvm::APSInt ArgNum(32);
3833 if (E->isTypeDependent() || E->isValueDependent() ||
3834 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003835 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3836 << Attr.getName() << AANT_ArgumentIntegerConstant
3837 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00003838 return;
3839 }
3840
3841 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
3842 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
3843}
3844
Aaron Ballmanfff32482012-12-09 17:45:41 +00003845bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3846 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003847 if (attr.isInvalid())
3848 return true;
3849
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003850 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00003851 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00003852 attr.setInvalid();
3853 return true;
3854 }
3855
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003856 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3857 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003858 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003859 case AttributeList::AT_CDecl: CC = CC_C; break;
3860 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3861 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3862 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3863 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00003864 case AttributeList::AT_MSABI:
3865 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
3866 CC_X86_64Win64;
3867 break;
3868 case AttributeList::AT_SysVABI:
3869 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
3870 CC_C;
3871 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00003872 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00003873 StringLiteral *Str = 0;
3874 if (attr.isArgExpr(0))
3875 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
3876
Douglas Gregor5cee1192011-07-27 05:40:30 +00003877 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003878 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
3879 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003880 attr.setInvalid();
3881 return true;
3882 }
3883
Chris Lattner5f9e2722011-07-23 10:55:15 +00003884 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003885 if (StrRef == "aapcs") {
3886 CC = CC_AAPCS;
3887 break;
3888 } else if (StrRef == "aapcs-vfp") {
3889 CC = CC_AAPCS_VFP;
3890 break;
3891 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003892
3893 attr.setInvalid();
3894 Diag(attr.getLoc(), diag::err_invalid_pcs);
3895 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003896 }
Derek Schuff263366f2012-10-16 22:30:41 +00003897 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003898 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003899 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003900 }
3901
Aaron Ballman82bfa192012-10-02 14:26:08 +00003902 const TargetInfo &TI = Context.getTargetInfo();
3903 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3904 if (A == TargetInfo::CCCR_Warning) {
3905 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003906
3907 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3908 if (FD)
3909 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3910 TargetInfo::CCMT_NonMember;
3911 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003912 }
3913
John McCall711c52b2011-01-05 12:14:39 +00003914 return false;
3915}
3916
Chandler Carruth1b03c872011-07-02 00:01:44 +00003917static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003918 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003919
3920 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003921 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003922 return;
3923
Chandler Carruth87c44602011-07-01 23:49:12 +00003924 if (!isa<ObjCMethodDecl>(D)) {
3925 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3926 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003927 return;
3928 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003929
Michael Han51d8c522013-01-24 16:46:58 +00003930 D->addAttr(::new (S.Context)
3931 RegparmAttr(Attr.getRange(), S.Context, numParams,
3932 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003933}
3934
3935/// Checks a regparm attribute, returning true if it is ill-formed and
3936/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003937bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3938 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003939 return true;
3940
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003941 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003942 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003943 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003944 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003945
Aaron Ballman624421f2013-08-31 01:11:41 +00003946 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003947 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003948 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003949 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003950 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3951 << Attr.getName() << AANT_ArgumentIntegerConstant
3952 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003953 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003954 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003955 }
3956
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003957 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003958 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003959 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003960 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003961 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003962 }
3963
John McCall711c52b2011-01-05 12:14:39 +00003964 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003965 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003966 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003967 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003968 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003969 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003970 }
3971
John McCall711c52b2011-01-05 12:14:39 +00003972 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003973}
3974
Chandler Carruth1b03c872011-07-02 00:01:44 +00003975static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003976 if (S.LangOpts.CUDA) {
3977 // check the attribute arguments.
3978 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003979 // FIXME: 0 is not okay.
3980 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003981 return;
3982 }
3983
Chandler Carruth87c44602011-07-01 23:49:12 +00003984 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003985 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003986 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003987 return;
3988 }
3989
Aaron Ballman624421f2013-08-31 01:11:41 +00003990 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003991 llvm::APSInt MaxThreads(32);
3992 if (MaxThreadsExpr->isTypeDependent() ||
3993 MaxThreadsExpr->isValueDependent() ||
3994 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003995 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003996 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003997 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00003998 return;
3999 }
4000
4001 llvm::APSInt MinBlocks(32);
4002 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004003 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004004 if (MinBlocksExpr->isTypeDependent() ||
4005 MinBlocksExpr->isValueDependent() ||
4006 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004007 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004008 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004009 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004010 return;
4011 }
4012 }
4013
Michael Han51d8c522013-01-24 16:46:58 +00004014 D->addAttr(::new (S.Context)
4015 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4016 MaxThreads.getZExtValue(),
4017 MinBlocks.getZExtValue(),
4018 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004019 } else {
4020 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4021 }
4022}
4023
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004024static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4025 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004026 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004027 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004028 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004029 return;
4030 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004031
4032 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004033 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004034
Aaron Ballman624421f2013-08-31 01:11:41 +00004035 StringRef AttrName = Attr.getName()->getName();
4036 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004037
4038 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4039 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4040 << Attr.getName() << ExpectedFunctionOrMethod;
4041 return;
4042 }
4043
4044 uint64_t ArgumentIdx;
4045 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4046 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004047 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004048 return;
4049
4050 uint64_t TypeTagIdx;
4051 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4052 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004053 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004054 return;
4055
4056 bool IsPointer = (AttrName == "pointer_with_type_tag");
4057 if (IsPointer) {
4058 // Ensure that buffer has a pointer type.
4059 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4060 if (!BufferTy->isPointerType()) {
4061 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004062 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004063 }
4064 }
4065
Michael Han51d8c522013-01-24 16:46:58 +00004066 D->addAttr(::new (S.Context)
4067 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4068 ArgumentIdx, TypeTagIdx, IsPointer,
4069 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004070}
4071
4072static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4073 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004074 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004075 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004076 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004077 return;
4078 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004079
4080 if (!checkAttributeNumArgs(S, Attr, 1))
4081 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004082
Aaron Ballman624421f2013-08-31 01:11:41 +00004083 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004084 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4085
Michael Han51d8c522013-01-24 16:46:58 +00004086 D->addAttr(::new (S.Context)
4087 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4088 MatchingCType,
4089 Attr.getLayoutCompatible(),
4090 Attr.getMustBeNull(),
4091 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004092}
4093
Chris Lattner0744e5f2008-06-29 00:23:49 +00004094//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004095// Checker-specific attribute handlers.
4096//===----------------------------------------------------------------------===//
4097
John McCallc7ad3812011-01-25 03:31:58 +00004098static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004099 return type->isDependentType() ||
4100 type->isObjCObjectPointerType() ||
4101 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004102}
4103static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004104 return type->isDependentType() ||
4105 type->isPointerType() ||
4106 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004107}
4108
Chandler Carruth1b03c872011-07-02 00:01:44 +00004109static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004110 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004111 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004112 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004113 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004114 return;
4115 }
4116
4117 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004118 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004119 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4120 cf = false;
4121 } else {
4122 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4123 cf = true;
4124 }
4125
4126 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004127 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004128 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004129 return;
4130 }
4131
4132 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004133 param->addAttr(::new (S.Context)
4134 CFConsumedAttr(Attr.getRange(), S.Context,
4135 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004136 else
Michael Han51d8c522013-01-24 16:46:58 +00004137 param->addAttr(::new (S.Context)
4138 NSConsumedAttr(Attr.getRange(), S.Context,
4139 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004140}
4141
Chandler Carruth1b03c872011-07-02 00:01:44 +00004142static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4143 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004144 if (!isa<ObjCMethodDecl>(D)) {
4145 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004146 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004147 return;
4148 }
4149
Michael Han51d8c522013-01-24 16:46:58 +00004150 D->addAttr(::new (S.Context)
4151 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4152 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004153}
4154
Chandler Carruth1b03c872011-07-02 00:01:44 +00004155static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4156 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004157
John McCallc7ad3812011-01-25 03:31:58 +00004158 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004159
Chandler Carruth87c44602011-07-01 23:49:12 +00004160 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004161 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004162 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004163 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004164 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004165 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4166 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004167 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004168 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004169 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004170 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004171 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004172 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004173 return;
4174 }
Mike Stumpbf916502009-07-24 19:02:52 +00004175
John McCallc7ad3812011-01-25 03:31:58 +00004176 bool typeOK;
4177 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004178 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004179 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004180 case AttributeList::AT_NSReturnsAutoreleased:
4181 case AttributeList::AT_NSReturnsRetained:
4182 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004183 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4184 cf = false;
4185 break;
4186
Sean Hunt8e083e72012-06-19 23:57:03 +00004187 case AttributeList::AT_CFReturnsRetained:
4188 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004189 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4190 cf = true;
4191 break;
4192 }
4193
4194 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004195 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004196 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004197 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004198 }
Mike Stumpbf916502009-07-24 19:02:52 +00004199
Chandler Carruth87c44602011-07-01 23:49:12 +00004200 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004201 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004202 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004203 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004204 D->addAttr(::new (S.Context)
4205 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4206 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004207 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004208 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004209 D->addAttr(::new (S.Context)
4210 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4211 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004212 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004213 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004214 D->addAttr(::new (S.Context)
4215 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4216 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004217 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004218 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004219 D->addAttr(::new (S.Context)
4220 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4221 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004222 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004223 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004224 D->addAttr(::new (S.Context)
4225 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4226 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004227 return;
4228 };
4229}
4230
John McCalldc7c5ad2011-07-22 08:53:00 +00004231static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4232 const AttributeList &attr) {
4233 SourceLocation loc = attr.getLoc();
4234
4235 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4236
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004237 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004238 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004239 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004240 return;
4241 }
4242
4243 // Check that the method returns a normal pointer.
4244 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004245
4246 if (!resultType->isReferenceType() &&
4247 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004248 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4249 << SourceRange(loc)
4250 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4251
4252 // Drop the attribute.
4253 return;
4254 }
4255
Michael Han51d8c522013-01-24 16:46:58 +00004256 method->addAttr(::new (S.Context)
4257 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4258 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004259}
4260
Fariborz Jahanian84101132012-09-07 23:46:23 +00004261static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4262 const AttributeList &attr) {
4263 SourceLocation loc = attr.getLoc();
4264 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4265
4266 if (!method) {
4267 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4268 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4269 return;
4270 }
4271 DeclContext *DC = method->getDeclContext();
4272 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4273 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4274 << attr.getName() << 0;
4275 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4276 return;
4277 }
4278 if (method->getMethodFamily() == OMF_dealloc) {
4279 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4280 << attr.getName() << 1;
4281 return;
4282 }
4283
Michael Han51d8c522013-01-24 16:46:58 +00004284 method->addAttr(::new (S.Context)
4285 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4286 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004287}
4288
John McCall8dfac0b2011-09-30 05:12:12 +00004289/// Handle cf_audited_transfer and cf_unknown_transfer.
4290static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4291 if (!isa<FunctionDecl>(D)) {
4292 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004293 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004294 return;
4295 }
4296
Sean Hunt8e083e72012-06-19 23:57:03 +00004297 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004298
4299 // Check whether there's a conflicting attribute already present.
4300 Attr *Existing;
4301 if (IsAudited) {
4302 Existing = D->getAttr<CFUnknownTransferAttr>();
4303 } else {
4304 Existing = D->getAttr<CFAuditedTransferAttr>();
4305 }
4306 if (Existing) {
4307 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4308 << A.getName()
4309 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4310 << A.getRange() << Existing->getRange();
4311 return;
4312 }
4313
4314 // All clear; add the attribute.
4315 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004316 D->addAttr(::new (S.Context)
4317 CFAuditedTransferAttr(A.getRange(), S.Context,
4318 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004319 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004320 D->addAttr(::new (S.Context)
4321 CFUnknownTransferAttr(A.getRange(), S.Context,
4322 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004323 }
4324}
4325
John McCallfe98da02011-09-29 07:17:38 +00004326static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4327 const AttributeList &Attr) {
4328 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4329 if (!RD || RD->isUnion()) {
4330 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004331 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004332 }
4333
Aaron Ballman624421f2013-08-31 01:11:41 +00004334 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004335
4336 // In Objective-C, verify that the type names an Objective-C type.
4337 // We don't want to check this outside of ObjC because people sometimes
4338 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004339 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004340 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004341 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004342 Sema::LookupOrdinaryName);
4343 if (S.LookupName(R, Sc)) {
4344 NamedDecl *Target = R.getFoundDecl();
4345 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4346 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4347 S.Diag(Target->getLocStart(), diag::note_declared_at);
4348 }
4349 }
4350 }
4351
Michael Han51d8c522013-01-24 16:46:58 +00004352 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004353 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004354 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004355}
4356
Chandler Carruth1b03c872011-07-02 00:01:44 +00004357static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4358 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004359 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004360
Chandler Carruth87c44602011-07-01 23:49:12 +00004361 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004362 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004363}
4364
Chandler Carruth1b03c872011-07-02 00:01:44 +00004365static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4366 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004367 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004368 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004369 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004370 return;
4371 }
4372
Chandler Carruth87c44602011-07-01 23:49:12 +00004373 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004374 QualType type = vd->getType();
4375
4376 if (!type->isDependentType() &&
4377 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004378 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004379 << type;
4380 return;
4381 }
4382
4383 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4384
4385 // If we have no lifetime yet, check the lifetime we're presumably
4386 // going to infer.
4387 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4388 lifetime = type->getObjCARCImplicitLifetime();
4389
4390 switch (lifetime) {
4391 case Qualifiers::OCL_None:
4392 assert(type->isDependentType() &&
4393 "didn't infer lifetime for non-dependent type?");
4394 break;
4395
4396 case Qualifiers::OCL_Weak: // meaningful
4397 case Qualifiers::OCL_Strong: // meaningful
4398 break;
4399
4400 case Qualifiers::OCL_ExplicitNone:
4401 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004402 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004403 << (lifetime == Qualifiers::OCL_Autoreleasing);
4404 break;
4405 }
4406
Chandler Carruth87c44602011-07-01 23:49:12 +00004407 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004408 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4409 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004410}
4411
Francois Pichet11542142010-12-19 06:50:37 +00004412//===----------------------------------------------------------------------===//
4413// Microsoft specific attribute handlers.
4414//===----------------------------------------------------------------------===//
4415
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004416// Check if MS extensions or some other language extensions are enabled. If
4417// not, issue a diagnostic that the given attribute is unused.
4418static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4419 bool OtherExtension = false) {
4420 if (S.LangOpts.MicrosoftExt || OtherExtension)
4421 return true;
4422 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4423 return false;
4424}
4425
Chandler Carruth1b03c872011-07-02 00:01:44 +00004426static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004427 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4428 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004429
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004430 StringRef StrRef;
4431 SourceLocation LiteralLoc;
4432 if (!checkStringLiteralArgument(S, StrRef, Attr, 0, &LiteralLoc))
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004433 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004434
David Majnemerbb0ed292013-08-09 08:56:20 +00004435 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4436 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
David Majnemerbb0ed292013-08-09 08:56:20 +00004437 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4438 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004439
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004440 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004441 if (StrRef.size() != 36) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004442 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004443 return;
4444 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004445
David Majnemerbb0ed292013-08-09 08:56:20 +00004446 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004447 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004448 if (StrRef[i] != '-') {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004449 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Francois Pichetd3d3be92010-12-20 01:41:49 +00004450 return;
4451 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004452 } else if (!isHexDigit(StrRef[i])) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004453 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004454 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004455 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004456 }
Francois Pichet11542142010-12-19 06:50:37 +00004457
David Majnemerbb0ed292013-08-09 08:56:20 +00004458 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4459 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004460}
4461
John McCallc052dbb2012-05-22 21:28:12 +00004462static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004463 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004464 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004465
4466 AttributeList::Kind Kind = Attr.getKind();
4467 if (Kind == AttributeList::AT_SingleInheritance)
4468 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004469 ::new (S.Context)
4470 SingleInheritanceAttr(Attr.getRange(), S.Context,
4471 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004472 else if (Kind == AttributeList::AT_MultipleInheritance)
4473 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004474 ::new (S.Context)
4475 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4476 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004477 else if (Kind == AttributeList::AT_VirtualInheritance)
4478 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004479 ::new (S.Context)
4480 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4481 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004482}
4483
4484static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004485 if (!checkMicrosoftExt(S, Attr))
4486 return;
4487
4488 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004489 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004490 D->addAttr(
4491 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4492 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004493}
4494
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004495static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004496 if (!checkMicrosoftExt(S, Attr))
4497 return;
4498 D->addAttr(::new (S.Context)
4499 ForceInlineAttr(Attr.getRange(), S.Context,
4500 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004501}
4502
Reid Klecknera7225342013-05-20 14:02:37 +00004503static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4504 if (!checkMicrosoftExt(S, Attr))
4505 return;
4506 // Check linkage after possibly merging declaratinos. See
4507 // checkAttributesAfterMerging().
4508 D->addAttr(::new (S.Context)
4509 SelectAnyAttr(Attr.getRange(), S.Context,
4510 Attr.getAttributeSpellingListIndex()));
4511}
4512
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004513/// Handles semantic checking for features that are common to all attributes,
4514/// such as checking whether a parameter was properly specified, or the correct
4515/// number of arguments were passed, etc.
4516static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
4517 const AttributeList &Attr) {
4518 // Several attributes carry different semantics than the parsing requires, so
4519 // those are opted out of the common handling.
4520 //
4521 // We also bail on unknown and ignored attributes because those are handled
4522 // as part of the target-specific handling logic.
4523 if (Attr.hasCustomParsing() ||
4524 Attr.getKind() == AttributeList::UnknownAttribute ||
4525 Attr.getKind() == AttributeList::IgnoredAttribute)
4526 return false;
4527
4528 // If there are no optional arguments, then checking for the argument count
4529 // is trivial.
4530 if (Attr.getMinArgs() == Attr.getMaxArgs() &&
4531 !checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
4532 return true;
4533 return false;
4534}
4535
Ted Kremenekb71368d2009-05-09 02:44:38 +00004536//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004537// Top Level Sema Entry Points
4538//===----------------------------------------------------------------------===//
4539
Richard Smith4a97b8e2013-08-29 00:47:48 +00004540/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4541/// the attribute applies to decls. If the attribute is a type attribute, just
4542/// silently ignore it if a GNU attribute.
4543static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4544 const AttributeList &Attr,
4545 bool IncludeCXX11Attributes) {
4546 if (Attr.isInvalid())
4547 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004548
Richard Smith4a97b8e2013-08-29 00:47:48 +00004549 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4550 // instead.
4551 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4552 return;
4553
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004554 if (handleCommonAttributeFeatures(S, scope, D, Attr))
4555 return;
4556
Chris Lattner803d0802008-06-29 00:43:07 +00004557 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004558 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4559 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4560 case AttributeList::AT_IBOutletCollection:
4561 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004562 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004563 case AttributeList::AT_ObjCGC:
4564 case AttributeList::AT_VectorSize:
4565 case AttributeList::AT_NeonVectorType:
4566 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004567 case AttributeList::AT_Ptr32:
4568 case AttributeList::AT_Ptr64:
4569 case AttributeList::AT_SPtr:
4570 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004571 // Ignore these, these are type attributes, handled by
4572 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004573 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004574 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4575 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4576 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4577 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004578 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004579 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004580 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004581 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004582 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4583 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4584 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004585 handleDependencyAttr(S, scope, D, Attr);
4586 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004587 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4588 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4589 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004590 case AttributeList::AT_CXX11NoReturn:
4591 handleCXX11NoReturnAttr(S, D, Attr);
4592 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004593 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004594 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004595 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004596 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4597 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004598 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004599 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004600 case AttributeList::AT_MinSize:
4601 handleMinSizeAttr(S, D, Attr);
4602 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004603 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4604 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4605 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004606 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4607 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004608 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4609 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004610 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004611 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004612 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4613 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004614 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004615 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4616 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004617 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004618 case AttributeList::AT_ownership_returns:
4619 case AttributeList::AT_ownership_takes:
4620 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004621 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004622 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4623 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4624 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4625 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4626 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4627 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4628 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004629
Sean Hunt8e083e72012-06-19 23:57:03 +00004630 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004631 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004632 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004633 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004634
Sean Hunt8e083e72012-06-19 23:57:03 +00004635 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004636 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4637
Fariborz Jahanian84101132012-09-07 23:46:23 +00004638 case AttributeList::AT_ObjCRequiresSuper:
4639 handleObjCRequiresSuperAttr(S, D, Attr); break;
4640
Sean Hunt8e083e72012-06-19 23:57:03 +00004641 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004642 handleNSBridgedAttr(S, scope, D, Attr); break;
4643
Sean Hunt8e083e72012-06-19 23:57:03 +00004644 case AttributeList::AT_CFAuditedTransfer:
4645 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004646 handleCFTransferAttr(S, D, Attr); break;
4647
Ted Kremenekb71368d2009-05-09 02:44:38 +00004648 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004649 case AttributeList::AT_CFConsumed:
4650 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4651 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004652 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004653
Sean Hunt8e083e72012-06-19 23:57:03 +00004654 case AttributeList::AT_NSReturnsAutoreleased:
4655 case AttributeList::AT_NSReturnsNotRetained:
4656 case AttributeList::AT_CFReturnsNotRetained:
4657 case AttributeList::AT_NSReturnsRetained:
4658 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004659 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004660
Tanya Lattner0df579e2012-07-09 22:06:01 +00004661 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004662 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004663 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004664
Joey Gouly37453b92013-03-08 09:42:32 +00004665 case AttributeList::AT_VecTypeHint:
4666 handleVecTypeHint(S, D, Attr); break;
4667
Sean Hunt8e083e72012-06-19 23:57:03 +00004668 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004669 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004670
Sean Hunt8e083e72012-06-19 23:57:03 +00004671 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4672 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4673 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004674 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004675 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004676 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004677 handleArcWeakrefUnavailableAttr (S, D, Attr);
4678 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004679 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004680 handleObjCRootClassAttr(S, D, Attr);
4681 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004682 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004683 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004684 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004685 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4686 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004687 handleReturnsTwiceAttr(S, D, Attr);
4688 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004689 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004690 case AttributeList::AT_Visibility:
4691 handleVisibilityAttr(S, D, Attr, false);
4692 break;
4693 case AttributeList::AT_TypeVisibility:
4694 handleVisibilityAttr(S, D, Attr, true);
4695 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004696 case AttributeList::AT_WarnUnused:
4697 handleWarnUnusedAttr(S, D, Attr);
4698 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004699 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004700 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004701 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4702 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4703 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4704 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004705 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004706 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004707 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004708 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004709 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004710 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004711 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004712 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004713 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4714 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4715 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4716 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4717 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4718 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4719 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4720 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4721 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004722 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004723 // Just ignore
4724 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004725 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004726 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004727 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004728 case AttributeList::AT_StdCall:
4729 case AttributeList::AT_CDecl:
4730 case AttributeList::AT_FastCall:
4731 case AttributeList::AT_ThisCall:
4732 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004733 case AttributeList::AT_MSABI:
4734 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004735 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004736 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004737 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004738 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004739 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004740 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004741 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004742 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004743 case AttributeList::AT_OpenCLImageAccess:
4744 handleOpenCLImageAccessAttr(S, D, Attr);
4745 break;
John McCallc052dbb2012-05-22 21:28:12 +00004746
4747 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004748 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004749 handleMsStructAttr(S, D, Attr);
4750 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004751 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004752 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004753 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004754 case AttributeList::AT_SingleInheritance:
4755 case AttributeList::AT_MultipleInheritance:
4756 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004757 handleInheritanceAttr(S, D, Attr);
4758 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004759 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004760 handlePortabilityAttr(S, D, Attr);
4761 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004762 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004763 handleForceInlineAttr(S, D, Attr);
4764 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004765 case AttributeList::AT_SelectAny:
4766 handleSelectAnyAttr(S, D, Attr);
4767 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004768
4769 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004770 case AttributeList::AT_AssertExclusiveLock:
4771 handleAssertExclusiveLockAttr(S, D, Attr);
4772 break;
4773 case AttributeList::AT_AssertSharedLock:
4774 handleAssertSharedLockAttr(S, D, Attr);
4775 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004776 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004777 handleGuardedVarAttr(S, D, Attr);
4778 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004779 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004780 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004781 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004782 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004783 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004784 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004785 case AttributeList::AT_NoSanitizeAddress:
4786 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004787 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004788 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004789 handleNoThreadSafetyAnalysis(S, D, Attr);
4790 break;
4791 case AttributeList::AT_NoSanitizeThread:
4792 handleNoSanitizeThread(S, D, Attr);
4793 break;
4794 case AttributeList::AT_NoSanitizeMemory:
4795 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004796 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004797 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004798 handleLockableAttr(S, D, Attr);
4799 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004800 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004801 handleGuardedByAttr(S, D, Attr);
4802 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004803 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004804 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004805 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004806 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004807 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004808 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004809 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004810 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004811 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004812 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004813 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004814 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004815 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004816 handleLockReturnedAttr(S, D, Attr);
4817 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004818 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004819 handleLocksExcludedAttr(S, D, Attr);
4820 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004821 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004822 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004823 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004824 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004825 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004826 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004827 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004828 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004829 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004830 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004831 handleUnlockFunAttr(S, D, Attr);
4832 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004833 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004834 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004835 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004836 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004837 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004838 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004839
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004840 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00004841 case AttributeList::AT_Consumable:
4842 handleConsumableAttr(S, D, Attr);
4843 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004844 case AttributeList::AT_Consumes:
4845 handleConsumesAttr(S, D, Attr);
4846 break;
4847 case AttributeList::AT_CallableWhenUnconsumed:
4848 handleCallableWhenUnconsumedAttr(S, D, Attr);
4849 break;
4850 case AttributeList::AT_TestsConsumed:
4851 handleTestsConsumedAttr(S, D, Attr);
4852 break;
4853 case AttributeList::AT_TestsUnconsumed:
4854 handleTestsUnconsumedAttr(S, D, Attr);
4855 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00004856 case AttributeList::AT_ReturnTypestate:
4857 handleReturnTypestateAttr(S, D, Attr);
4858 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004859
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004860 // Type safety attributes.
4861 case AttributeList::AT_ArgumentWithTypeTag:
4862 handleArgumentWithTypeTagAttr(S, D, Attr);
4863 break;
4864 case AttributeList::AT_TypeTagForDatatype:
4865 handleTypeTagForDatatypeAttr(S, D, Attr);
4866 break;
4867
Chris Lattner803d0802008-06-29 00:43:07 +00004868 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004869 // Ask target about the attribute.
4870 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4871 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004872 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4873 diag::warn_unhandled_ms_attribute_ignored :
4874 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004875 break;
4876 }
4877}
4878
4879/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4880/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004881void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004882 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004883 bool IncludeCXX11Attributes) {
4884 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00004885 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004886
4887 // GCC accepts
4888 // static int a9 __attribute__((weakref));
4889 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00004890 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004891 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004892 cast<NamedDecl>(D)->getNameAsString();
4893 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004894 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004895 }
4896}
4897
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004898// Annotation attributes are the only attributes allowed after an access
4899// specifier.
4900bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4901 const AttributeList *AttrList) {
4902 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004903 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004904 handleAnnotateAttr(*this, ASDecl, *l);
4905 } else {
4906 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4907 return true;
4908 }
4909 }
4910
4911 return false;
4912}
4913
John McCalle82247a2011-10-01 05:17:03 +00004914/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4915/// contains any decl attributes that we should warn about.
4916static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4917 for ( ; A; A = A->getNext()) {
4918 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004919 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004920 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4921
4922 if (A->getKind() == AttributeList::UnknownAttribute) {
4923 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4924 << A->getName() << A->getRange();
4925 } else {
4926 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4927 << A->getName() << A->getRange();
4928 }
4929 }
4930}
4931
4932/// checkUnusedDeclAttributes - Given a declarator which is not being
4933/// used to build a declaration, complain about any decl attributes
4934/// which might be lying around on it.
4935void Sema::checkUnusedDeclAttributes(Declarator &D) {
4936 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4937 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4938 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4939 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4940}
4941
Ryan Flynne25ff832009-07-30 03:15:39 +00004942/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004943/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004944NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4945 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004946 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004947 NamedDecl *NewD = 0;
4948 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004949 FunctionDecl *NewFD;
4950 // FIXME: Missing call to CheckFunctionDeclaration().
4951 // FIXME: Mangling?
4952 // FIXME: Is the qualifier info correct?
4953 // FIXME: Is the DeclContext correct?
4954 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4955 Loc, Loc, DeclarationName(II),
4956 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004957 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00004958 FD->hasPrototype(),
4959 false/*isConstexprSpecified*/);
4960 NewD = NewFD;
4961
4962 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004963 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004964
4965 // Fake up parameter variables; they are declared as if this were
4966 // a typedef.
4967 QualType FDTy = FD->getType();
4968 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4969 SmallVector<ParmVarDecl*, 16> Params;
4970 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4971 AE = FT->arg_type_end(); AI != AE; ++AI) {
4972 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4973 Param->setScopeInfo(0, Params.size());
4974 Params.push_back(Param);
4975 }
David Blaikie4278c652011-09-21 18:16:56 +00004976 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004977 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004978 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4979 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004980 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004981 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004982 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00004983 if (VD->getQualifier()) {
4984 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004985 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004986 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004987 }
4988 return NewD;
4989}
4990
James Dennett1dfbd922012-06-14 21:40:34 +00004991/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00004992/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004993void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004994 if (W.getUsed()) return; // only do this once
4995 W.setUsed(true);
4996 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4997 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004998 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004999 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5000 NDId->getName()));
5001 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005002 WeakTopLevelDecl.push_back(NewD);
5003 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5004 // to insert Decl at TU scope, sorry.
5005 DeclContext *SavedContext = CurContext;
5006 CurContext = Context.getTranslationUnitDecl();
5007 PushOnScopeChains(NewD, S);
5008 CurContext = SavedContext;
5009 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005010 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005011 }
5012}
5013
Rafael Espindola65611bf2013-03-02 21:41:48 +00005014void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5015 // It's valid to "forward-declare" #pragma weak, in which case we
5016 // have to do this.
5017 LoadExternalWeakUndeclaredIdentifiers();
5018 if (!WeakUndeclaredIdentifiers.empty()) {
5019 NamedDecl *ND = NULL;
5020 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5021 if (VD->isExternC())
5022 ND = VD;
5023 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5024 if (FD->isExternC())
5025 ND = FD;
5026 if (ND) {
5027 if (IdentifierInfo *Id = ND->getIdentifier()) {
5028 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5029 = WeakUndeclaredIdentifiers.find(Id);
5030 if (I != WeakUndeclaredIdentifiers.end()) {
5031 WeakInfo W = I->second;
5032 DeclApplyPragmaWeak(S, ND, W);
5033 WeakUndeclaredIdentifiers[Id] = W;
5034 }
5035 }
5036 }
5037 }
5038}
5039
Chris Lattner0744e5f2008-06-29 00:23:49 +00005040/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5041/// it, apply them to D. This is a bit tricky because PD can have attributes
5042/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005043void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005044 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005045 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005046 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005047
Chris Lattner0744e5f2008-06-29 00:23:49 +00005048 // Walk the declarator structure, applying decl attributes that were in a type
5049 // position to the decl itself. This handles cases like:
5050 // int *__attr__(x)** D;
5051 // when X is a decl attribute.
5052 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5053 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005054 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005055
Chris Lattner0744e5f2008-06-29 00:23:49 +00005056 // Finally, apply any attributes on the decl itself.
5057 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005058 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005059}
John McCall54abf7d2009-11-04 02:18:39 +00005060
John McCallf85e1932011-06-15 23:02:42 +00005061/// Is the given declaration allowed to use a forbidden type?
5062static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5063 // Private ivars are always okay. Unfortunately, people don't
5064 // always properly make their ivars private, even in system headers.
5065 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005066 // Function declarations in sys headers will be marked unavailable.
5067 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5068 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005069 return false;
5070
5071 // Require it to be declared in a system header.
5072 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5073}
5074
5075/// Handle a delayed forbidden-type diagnostic.
5076static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5077 Decl *decl) {
5078 if (decl && isForbiddenTypeAllowed(S, decl)) {
5079 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5080 "this system declaration uses an unsupported type"));
5081 return;
5082 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005083 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005084 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005085 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005086 // kind of forbidden type messages on unavailable functions.
5087 if (FD->hasAttr<UnavailableAttr>() &&
5088 diag.getForbiddenTypeDiagnostic() ==
5089 diag::err_arc_array_param_no_ownership) {
5090 diag.Triggered = true;
5091 return;
5092 }
5093 }
John McCallf85e1932011-06-15 23:02:42 +00005094
5095 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5096 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5097 diag.Triggered = true;
5098}
5099
John McCall92576642012-05-07 06:16:41 +00005100void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5101 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005102 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005103 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005104
John McCall92576642012-05-07 06:16:41 +00005105 // When delaying diagnostics to run in the context of a parsed
5106 // declaration, we only want to actually emit anything if parsing
5107 // succeeds.
5108 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005109
John McCall92576642012-05-07 06:16:41 +00005110 // We emit all the active diagnostics in this pool or any of its
5111 // parents. In general, we'll get one pool for the decl spec
5112 // and a child pool for each declarator; in a decl group like:
5113 // deprecated_typedef foo, *bar, baz();
5114 // only the declarator pops will be passed decls. This is correct;
5115 // we really do need to consider delayed diagnostics from the decl spec
5116 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005117 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005118 do {
John McCall13489672012-05-07 06:16:58 +00005119 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005120 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5121 // This const_cast is a bit lame. Really, Triggered should be mutable.
5122 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005123 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005124 continue;
5125
John McCalleee1d542011-02-14 07:13:47 +00005126 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005127 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005128 // Don't bother giving deprecation diagnostics if the decl is invalid.
5129 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005130 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005131 break;
5132
5133 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005134 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005135 break;
John McCallf85e1932011-06-15 23:02:42 +00005136
5137 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005138 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005139 break;
John McCall2f514482010-01-27 03:50:35 +00005140 }
5141 }
John McCall92576642012-05-07 06:16:41 +00005142 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005143}
5144
John McCall13489672012-05-07 06:16:58 +00005145/// Given a set of delayed diagnostics, re-emit them as if they had
5146/// been delayed in the current context instead of in the given pool.
5147/// Essentially, this just moves them to the current pool.
5148void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5149 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5150 assert(curPool && "re-emitting in undelayed context not supported");
5151 curPool->steal(pool);
5152}
5153
John McCall54abf7d2009-11-04 02:18:39 +00005154static bool isDeclDeprecated(Decl *D) {
5155 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005156 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005157 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005158 // A category implicitly has the availability of the interface.
5159 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5160 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005161 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5162 return false;
5163}
5164
Eli Friedmanc3b23082012-08-08 21:52:41 +00005165static void
5166DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5167 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005168 const ObjCInterfaceDecl *UnknownObjCClass,
5169 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005170 DeclarationName Name = D->getDeclName();
5171 if (!Message.empty()) {
5172 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5173 S.Diag(D->getLocation(),
5174 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5175 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005176 if (ObjCPropery)
5177 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5178 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005179 } else if (!UnknownObjCClass) {
5180 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5181 S.Diag(D->getLocation(),
5182 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5183 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005184 if (ObjCPropery)
5185 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5186 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005187 } else {
5188 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5189 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5190 }
5191}
5192
John McCall9c3087b2010-08-26 02:13:20 +00005193void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005194 Decl *Ctx) {
5195 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005196 return;
5197
John McCall2f514482010-01-27 03:50:35 +00005198 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005199 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5200 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005201 DD.getUnknownObjCClass(),
5202 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005203}
5204
Chris Lattner5f9e2722011-07-23 10:55:15 +00005205void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005206 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005207 const ObjCInterfaceDecl *UnknownObjCClass,
5208 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005209 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005210 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005211 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5212 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005213 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005214 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005215 return;
5216 }
5217
5218 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005219 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005220 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005221 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005222}