blob: 1fc1a7cc4888461d2541a8361aa00594c6695286 [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"
John McCall19510852010-08-20 18:27:03 +000026#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000027#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000028#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000029#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000030#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000031using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000032using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000033
John McCall883cc2c2011-03-02 12:29:23 +000034/// These constants match the enumerated choices of
35/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000036enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000037 ExpectedFunction,
38 ExpectedUnion,
39 ExpectedVariableOrFunction,
40 ExpectedFunctionOrMethod,
41 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000042 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000043 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000044 ExpectedFunctionMethodOrParameter,
45 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000046 ExpectedVariable,
47 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000048 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000049 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000050 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000051 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000052 ExpectedTLSVar,
53 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000054 ExpectedVariableFieldOrTag,
55 ExpectedTypeOrNamespace
John McCall883cc2c2011-03-02 12:29:23 +000056};
57
Chris Lattnere5c5ee12008-06-29 00:16:31 +000058//===----------------------------------------------------------------------===//
59// Helper functions
60//===----------------------------------------------------------------------===//
61
Chandler Carruth87c44602011-07-01 23:49:12 +000062static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000063 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000064 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000065 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000067 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000068 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000069 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000070 Ty = decl->getUnderlyingType();
71 else
72 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000073
Chris Lattner6b6b5372008-06-26 18:38:35 +000074 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000075 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000076 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000077 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000078
John McCall183700f2009-09-21 23:43:11 +000079 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000080}
81
Daniel Dunbar35682492008-09-26 04:12:28 +000082// FIXME: We should provide an abstraction around a method or function
83// to provide the following bits of information.
84
Nuno Lopesd20254f2009-12-20 23:11:08 +000085/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000086/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000087static bool isFunction(const Decl *D) {
88 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000089}
90
91/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000092/// type (function or function-typed variable) or an Objective-C
93/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000094static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000095 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000096}
97
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000098/// isFunctionOrMethodOrBlock - Return true if the given decl has function
99/// type (function or function-typed variable) or an Objective-C
100/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000101static bool isFunctionOrMethodOrBlock(const Decl *D) {
102 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000103 return true;
104 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000105 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000106 QualType Ty = V->getType();
107 return Ty->isBlockPointerType();
108 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000109 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000110}
111
John McCall711c52b2011-01-05 12:14:39 +0000112/// Return true if the given decl has a declarator that should have
113/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000114static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000115 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000116 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
117 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000118}
119
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000120/// hasFunctionProto - Return true if the given decl has a argument
121/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000122/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000123static bool hasFunctionProto(const Decl *D) {
124 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000125 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000126 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000127 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000128 return true;
129 }
130}
131
132/// getFunctionOrMethodNumArgs - Return number of function or method
133/// arguments. It is an error to call this on a K&R function (use
134/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000135static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
136 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000137 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000138 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000139 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000140 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000141}
142
Chandler Carruth87c44602011-07-01 23:49:12 +0000143static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
144 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000145 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000146 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000147 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000148
Chandler Carruth87c44602011-07-01 23:49:12 +0000149 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000150}
151
Chandler Carruth87c44602011-07-01 23:49:12 +0000152static QualType getFunctionOrMethodResultType(const Decl *D) {
153 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000154 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000155 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000156}
157
Chandler Carruth87c44602011-07-01 23:49:12 +0000158static bool isFunctionOrMethodVariadic(const Decl *D) {
159 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000160 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000161 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000162 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000163 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000164 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000165 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000166 }
167}
168
Chandler Carruth87c44602011-07-01 23:49:12 +0000169static bool isInstanceMethod(const Decl *D) {
170 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000171 return MethodDecl->isInstance();
172 return false;
173}
174
Chris Lattner6b6b5372008-06-26 18:38:35 +0000175static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000176 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000177 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000178 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000179
John McCall506b57e2010-05-17 21:00:27 +0000180 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
181 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000182 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000183
John McCall506b57e2010-05-17 21:00:27 +0000184 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000185
Chris Lattner6b6b5372008-06-26 18:38:35 +0000186 // FIXME: Should we walk the chain of classes?
187 return ClsName == &Ctx.Idents.get("NSString") ||
188 ClsName == &Ctx.Idents.get("NSMutableString");
189}
190
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000191static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000192 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000193 if (!PT)
194 return false;
195
Ted Kremenek6217b802009-07-29 21:53:49 +0000196 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000197 if (!RT)
198 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000199
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000200 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000201 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000202 return false;
203
204 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
205}
206
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000207/// \brief Check if the attribute has exactly as many args as Num. May
208/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000209static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
210 unsigned int Num) {
211 if (Attr.getNumArgs() != Num) {
212 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
213 return false;
214 }
215
216 return true;
217}
218
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000219
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000220/// \brief Check if the attribute has at least as many args as Num. May
221/// output an error.
222static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
223 unsigned int Num) {
224 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000225 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
226 return false;
227 }
228
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000229 return true;
230}
231
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000232/// \brief Check if IdxExpr is a valid argument index for a function or
233/// instance method D. May output an error.
234///
235/// \returns true if IdxExpr is a valid index.
236static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
237 StringRef AttrName,
238 SourceLocation AttrLoc,
239 unsigned AttrArgNum,
240 const Expr *IdxExpr,
241 uint64_t &Idx)
242{
243 assert(isFunctionOrMethod(D) && hasFunctionProto(D));
244
245 // In C++ the implicit 'this' function parameter also counts.
246 // Parameters are counted from one.
247 const bool HasImplicitThisParam = isInstanceMethod(D);
248 const unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
249 const unsigned FirstIdx = 1;
250
251 llvm::APSInt IdxInt;
252 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
253 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
254 S.Diag(AttrLoc, diag::err_attribute_argument_n_not_int)
255 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
256 return false;
257 }
258
259 Idx = IdxInt.getLimitedValue();
260 if (Idx < FirstIdx || (!isFunctionOrMethodVariadic(D) && Idx > NumArgs)) {
261 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
262 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
263 return false;
264 }
265 Idx--; // Convert to zero-based.
266 if (HasImplicitThisParam) {
267 if (Idx == 0) {
268 S.Diag(AttrLoc,
269 diag::err_attribute_invalid_implicit_this_argument)
270 << AttrName << IdxExpr->getSourceRange();
271 return false;
272 }
273 --Idx;
274 }
275
276 return true;
277}
278
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000279///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000280/// \brief Check if passed in Decl is a field or potentially shared global var
281/// \return true if the Decl is a field or potentially shared global variable
282///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000283static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000284 if (isa<FieldDecl>(D))
285 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000286 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Richard Smith38afbc72013-04-13 02:43:54 +0000287 return vd->hasGlobalStorage() && !vd->getTLSKind();
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000288
289 return false;
290}
291
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000292/// \brief Check if the passed-in expression is of type int or bool.
293static bool isIntOrBool(Expr *Exp) {
294 QualType QT = Exp->getType();
295 return QT->isBooleanType() || QT->isIntegerType();
296}
297
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000298
299// Check to see if the type is a smart pointer of some kind. We assume
300// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000301static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
302 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
303 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000304 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000305 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000306
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000307 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
308 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000309 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000310 return false;
311
312 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000313}
314
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000315/// \brief Check if passed in Decl is a pointer type.
316/// Note that this function may produce an error message.
317/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000318static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
319 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000320 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000321 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000322 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000323 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000324
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000325 if (const RecordType *RT = QT->getAs<RecordType>()) {
326 // If it's an incomplete type, it could be a smart pointer; skip it.
327 // (We don't want to force template instantiation if we can avoid it,
328 // since that would alter the order in which templates are instantiated.)
329 if (RT->isIncompleteType())
330 return true;
331
332 if (threadSafetyCheckIsSmartPointer(S, RT))
333 return true;
334 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000335
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000336 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000337 << Attr.getName()->getName() << QT;
338 } else {
339 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
340 << Attr.getName();
341 }
342 return false;
343}
344
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000345/// \brief Checks that the passed in QualType either is of RecordType or points
346/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000347static const RecordType *getRecordType(QualType QT) {
348 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000349 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000350
351 // Now check if we point to record type.
352 if (const PointerType *PT = QT->getAs<PointerType>())
353 return PT->getPointeeType()->getAs<RecordType>();
354
355 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000356}
357
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000358
Jordy Rosefad5de92012-05-08 03:27:22 +0000359static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
360 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000361 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
362 if (RT->getDecl()->getAttr<LockableAttr>())
363 return true;
364 return false;
365}
366
367
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000368/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000369/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000370static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
371 QualType Ty) {
372 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000373
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000374 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000375 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000376 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000377 << Attr.getName() << Ty.getAsString();
378 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000379 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000380
Michael Hanf1aae3b2012-08-03 17:40:43 +0000381 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000382 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000383 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000384
385 // Allow smart pointers to be used as lockable objects.
386 // FIXME -- Check the type that the smart pointer points to.
387 if (threadSafetyCheckIsSmartPointer(S, RT))
388 return;
389
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000390 // Check if the type is lockable.
391 RecordDecl *RD = RT->getDecl();
392 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000393 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000394
395 // Else check if any base classes are lockable.
396 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
397 CXXBasePaths BPaths(false, false);
398 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
399 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000400 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000401
402 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
403 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000404}
405
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000406/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000407/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000408/// \param Sidx The attribute argument index to start checking with.
409/// \param ParamIdxOk Whether an argument can be indexing into a function
410/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000411static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000412 const AttributeList &Attr,
413 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000414 int Sidx = 0,
415 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000416 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000417 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000418
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000419 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000420 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000421 Args.push_back(ArgExp);
422 continue;
423 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000424
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000425 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000426 if (StrLit->getLength() == 0 ||
427 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000428 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000429 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000430 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000431 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000432 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000433
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000434 // We allow constant strings to be used as a placeholder for expressions
435 // that are not valid C++ syntax, but warn that they are ignored.
436 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
437 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000438 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000439 continue;
440 }
441
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000442 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000443
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000444 // A pointer to member expression of the form &MyClass::mu is treated
445 // specially -- we need to look at the type of the member.
446 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
447 if (UOp->getOpcode() == UO_AddrOf)
448 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
449 if (DRE->getDecl()->isCXXInstanceMember())
450 ArgTy = DRE->getDecl()->getType();
451
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000452 // First see if we can just cast to record type, or point to record type.
453 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000454
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000455 // Now check if we index into a record type function param.
456 if(!RT && ParamIdxOk) {
457 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000458 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
459 if(FD && IL) {
460 unsigned int NumParams = FD->getNumParams();
461 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000462 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
463 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
464 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000465 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
466 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000467 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000468 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000469 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000470 }
471 }
472
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000473 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000474
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000475 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000477}
478
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000479//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000480// Attribute Implementations
481//===----------------------------------------------------------------------===//
482
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000483// FIXME: All this manual attribute parsing code is gross. At the
484// least add some helper functions to check most argument patterns (#
485// and types of args).
486
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000487enum ThreadAttributeDeclKind {
488 ThreadExpectedFieldOrGlobalVar,
489 ThreadExpectedFunctionOrMethod,
490 ThreadExpectedClassOrStruct
491};
492
Michael Hanf1aae3b2012-08-03 17:40:43 +0000493static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000494 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000495 assert(!Attr.isInvalid());
496
497 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000498 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000499
500 // D must be either a member field or global (potentially shared) variable.
501 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000502 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
503 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000504 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000505 }
506
Michael Handc691572012-07-23 18:48:41 +0000507 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000508}
509
Michael Handc691572012-07-23 18:48:41 +0000510static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
511 if (!checkGuardedVarAttrCommon(S, D, Attr))
512 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000513
Michael Han51d8c522013-01-24 16:46:58 +0000514 D->addAttr(::new (S.Context)
515 GuardedVarAttr(Attr.getRange(), S.Context,
516 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000517}
518
Michael Hanf1aae3b2012-08-03 17:40:43 +0000519static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000520 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000521 if (!checkGuardedVarAttrCommon(S, D, Attr))
522 return;
523
524 if (!threadSafetyCheckIsPointer(S, D, Attr))
525 return;
526
Michael Han51d8c522013-01-24 16:46:58 +0000527 D->addAttr(::new (S.Context)
528 PtGuardedVarAttr(Attr.getRange(), S.Context,
529 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000530}
531
Michael Hanf1aae3b2012-08-03 17:40:43 +0000532static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
533 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000534 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000535 assert(!Attr.isInvalid());
536
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000537 if (!checkAttributeNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000538 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000539
540 // D must be either a member field or global (potentially shared) variable.
541 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000542 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
543 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000544 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000545 }
546
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000547 SmallVector<Expr*, 1> Args;
548 // check that all arguments are lockable objects
549 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
550 unsigned Size = Args.size();
551 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000552 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000553
Michael Handc691572012-07-23 18:48:41 +0000554 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000555
Michael Handc691572012-07-23 18:48:41 +0000556 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000557}
558
Michael Handc691572012-07-23 18:48:41 +0000559static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
560 Expr *Arg = 0;
561 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
562 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000563
Michael Handc691572012-07-23 18:48:41 +0000564 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
565}
566
Michael Hanf1aae3b2012-08-03 17:40:43 +0000567static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000568 const AttributeList &Attr) {
569 Expr *Arg = 0;
570 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
571 return;
572
573 if (!threadSafetyCheckIsPointer(S, D, Attr))
574 return;
575
576 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
577 S.Context, Arg));
578}
579
Michael Hanf1aae3b2012-08-03 17:40:43 +0000580static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000581 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000582 assert(!Attr.isInvalid());
583
584 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000585 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000586
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000587 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000588 if (!isa<CXXRecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000589 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
590 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000591 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000592 }
593
Michael Handc691572012-07-23 18:48:41 +0000594 return true;
595}
596
597static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
598 if (!checkLockableAttrCommon(S, D, Attr))
599 return;
600
601 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
602}
603
Michael Hanf1aae3b2012-08-03 17:40:43 +0000604static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000605 const AttributeList &Attr) {
606 if (!checkLockableAttrCommon(S, D, Attr))
607 return;
608
Michael Han51d8c522013-01-24 16:46:58 +0000609 D->addAttr(::new (S.Context)
610 ScopedLockableAttr(Attr.getRange(), S.Context,
611 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000612}
613
Kostya Serebryany85aee962013-02-26 06:58:27 +0000614static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
615 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000616 assert(!Attr.isInvalid());
617
618 if (!checkAttributeNumArgs(S, Attr, 0))
619 return;
620
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000621 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000622 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
623 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000624 return;
625 }
626
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000627 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000628 S.Context));
629}
630
Kostya Serebryany85aee962013-02-26 06:58:27 +0000631static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000632 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000633 assert(!Attr.isInvalid());
634
635 if (!checkAttributeNumArgs(S, Attr, 0))
636 return;
637
638 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000639 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000640 << Attr.getName() << ExpectedFunctionOrMethod;
641 return;
642 }
643
Michael Han51d8c522013-01-24 16:46:58 +0000644 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000645 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
646 Attr.getAttributeSpellingListIndex()));
647}
648
649static void handleNoSanitizeMemory(Sema &S, Decl *D,
650 const AttributeList &Attr) {
651 assert(!Attr.isInvalid());
652
653 if (!checkAttributeNumArgs(S, Attr, 0))
654 return;
655
656 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
657 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
658 << Attr.getName() << ExpectedFunctionOrMethod;
659 return;
660 }
661
662 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
663 S.Context));
664}
665
666static void handleNoSanitizeThread(Sema &S, Decl *D,
667 const AttributeList &Attr) {
668 assert(!Attr.isInvalid());
669
670 if (!checkAttributeNumArgs(S, Attr, 0))
671 return;
672
673 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
674 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
675 << Attr.getName() << ExpectedFunctionOrMethod;
676 return;
677 }
678
679 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
680 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000681}
682
Michael Hanf1aae3b2012-08-03 17:40:43 +0000683static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
684 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000685 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000686 assert(!Attr.isInvalid());
687
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000688 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000689 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000690
691 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000692 ValueDecl *VD = dyn_cast<ValueDecl>(D);
693 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000694 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
695 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000696 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000697 }
698
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000699 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000700 QualType QT = VD->getType();
701 if (!QT->isDependentType()) {
702 const RecordType *RT = getRecordType(QT);
703 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000704 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000705 << Attr.getName();
706 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000707 }
708 }
709
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000710 // Check that all arguments are lockable objects.
711 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000712 if (Args.size() == 0)
713 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000714
Michael Handc691572012-07-23 18:48:41 +0000715 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000716}
717
Michael Hanf1aae3b2012-08-03 17:40:43 +0000718static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000719 const AttributeList &Attr) {
720 SmallVector<Expr*, 1> Args;
721 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
722 return;
723
724 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000725 D->addAttr(::new (S.Context)
726 AcquiredAfterAttr(Attr.getRange(), S.Context,
727 StartArg, Args.size(),
728 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000729}
730
Michael Hanf1aae3b2012-08-03 17:40:43 +0000731static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000732 const AttributeList &Attr) {
733 SmallVector<Expr*, 1> Args;
734 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
735 return;
736
737 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000738 D->addAttr(::new (S.Context)
739 AcquiredBeforeAttr(Attr.getRange(), S.Context,
740 StartArg, Args.size(),
741 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000742}
743
Michael Hanf1aae3b2012-08-03 17:40:43 +0000744static bool checkLockFunAttrCommon(Sema &S, Decl *D,
745 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000746 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000747 assert(!Attr.isInvalid());
748
749 // zero or more arguments ok
750
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000751 // check that the attribute is applied to a function
752 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000753 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
754 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000755 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000756 }
757
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000758 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000759 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000760
Michael Handc691572012-07-23 18:48:41 +0000761 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000762}
763
Michael Hanf1aae3b2012-08-03 17:40:43 +0000764static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000765 const AttributeList &Attr) {
766 SmallVector<Expr*, 1> Args;
767 if (!checkLockFunAttrCommon(S, D, Attr, Args))
768 return;
769
770 unsigned Size = Args.size();
771 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000772 D->addAttr(::new (S.Context)
773 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
774 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000775}
776
Michael Hanf1aae3b2012-08-03 17:40:43 +0000777static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000778 const AttributeList &Attr) {
779 SmallVector<Expr*, 1> Args;
780 if (!checkLockFunAttrCommon(S, D, Attr, Args))
781 return;
782
783 unsigned Size = Args.size();
784 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000785 D->addAttr(::new (S.Context)
786 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
787 StartArg, Size,
788 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000789}
790
Michael Hanf1aae3b2012-08-03 17:40:43 +0000791static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
792 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000793 SmallVector<Expr*, 2> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000794 assert(!Attr.isInvalid());
795
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000796 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000797 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000798
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000799 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000800 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
801 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000802 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000803 }
804
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000805 if (!isIntOrBool(Attr.getArg(0))) {
806 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
Michael Handc691572012-07-23 18:48:41 +0000807 << Attr.getName();
808 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000809 }
810
811 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000812 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000813
Michael Handc691572012-07-23 18:48:41 +0000814 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000815}
816
Michael Hanf1aae3b2012-08-03 17:40:43 +0000817static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000818 const AttributeList &Attr) {
819 SmallVector<Expr*, 2> Args;
820 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
821 return;
822
823 unsigned Size = Args.size();
824 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000825 D->addAttr(::new (S.Context)
826 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
827 Attr.getArg(0), StartArg, Size,
828 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000829}
830
Michael Hanf1aae3b2012-08-03 17:40:43 +0000831static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000832 const AttributeList &Attr) {
833 SmallVector<Expr*, 2> Args;
834 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
835 return;
836
837 unsigned Size = Args.size();
838 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000839 D->addAttr(::new (S.Context)
840 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
841 Attr.getArg(0), StartArg, Size,
842 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000843}
844
Michael Hanf1aae3b2012-08-03 17:40:43 +0000845static bool checkLocksRequiredCommon(Sema &S, Decl *D,
846 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000847 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000848 assert(!Attr.isInvalid());
849
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000850 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000851 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000852
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000853 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000854 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
855 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000856 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000857 }
858
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000859 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000860 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000861 if (Args.size() == 0)
862 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000863
Michael Handc691572012-07-23 18:48:41 +0000864 return true;
865}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000866
Michael Hanf1aae3b2012-08-03 17:40:43 +0000867static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000868 const AttributeList &Attr) {
869 SmallVector<Expr*, 1> Args;
870 if (!checkLocksRequiredCommon(S, D, Attr, Args))
871 return;
872
873 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000874 D->addAttr(::new (S.Context)
875 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
876 StartArg, Args.size(),
877 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000878}
879
Michael Hanf1aae3b2012-08-03 17:40:43 +0000880static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000881 const AttributeList &Attr) {
882 SmallVector<Expr*, 1> Args;
883 if (!checkLocksRequiredCommon(S, D, Attr, Args))
884 return;
885
886 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000887 D->addAttr(::new (S.Context)
888 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
889 StartArg, Args.size(),
890 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000891}
892
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000893static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000894 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000895 assert(!Attr.isInvalid());
896
897 // zero or more arguments ok
898
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000899 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000900 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
901 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000902 return;
903 }
904
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000905 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000906 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000907 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000908 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000909 Expr **StartArg = Size == 0 ? 0 : &Args[0];
910
Michael Han51d8c522013-01-24 16:46:58 +0000911 D->addAttr(::new (S.Context)
912 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
913 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000914}
915
916static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000917 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000918 assert(!Attr.isInvalid());
919
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000920 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000921 return;
922
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000923 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000924 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
925 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000926 return;
927 }
928
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000929 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000930 SmallVector<Expr*, 1> Args;
931 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
932 unsigned Size = Args.size();
933 if (Size == 0)
934 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000935
Michael Han51d8c522013-01-24 16:46:58 +0000936 D->addAttr(::new (S.Context)
937 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
938 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000939}
940
941static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000942 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000943 assert(!Attr.isInvalid());
944
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000945 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000946 return;
947
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000948 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000949 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
950 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000951 return;
952 }
953
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000954 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000955 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000956 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000957 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000958 if (Size == 0)
959 return;
960 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000961
Michael Han51d8c522013-01-24 16:46:58 +0000962 D->addAttr(::new (S.Context)
963 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
964 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000965}
966
967
Chandler Carruth1b03c872011-07-02 00:01:44 +0000968static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
969 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +0000970 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
971 if (TD == 0) {
972 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
973 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +0000974 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000975 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000976 }
Mike Stumpbf916502009-07-24 19:02:52 +0000977
Richard Smitha4fa9002013-01-13 02:11:23 +0000978 // Remember this typedef decl, we will need it later for diagnostics.
979 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000980}
981
Chandler Carruth1b03c872011-07-02 00:01:44 +0000982static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000983 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000984 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000985 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000986
Chandler Carruth87c44602011-07-01 23:49:12 +0000987 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000988 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000989 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000990 // If the alignment is less than or equal to 8 bits, the packed attribute
991 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +0000992 if (!FD->getType()->isDependentType() &&
993 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000994 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000995 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000996 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000997 else
Michael Han51d8c522013-01-24 16:46:58 +0000998 FD->addAttr(::new (S.Context)
999 PackedAttr(Attr.getRange(), S.Context,
1000 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001001 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001002 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001003}
1004
Chandler Carruth1b03c872011-07-02 00:01:44 +00001005static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001006 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001007 RD->addAttr(::new (S.Context)
1008 MsStructAttr(Attr.getRange(), S.Context,
1009 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001010 else
1011 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1012}
1013
Chandler Carruth1b03c872011-07-02 00:01:44 +00001014static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +00001015 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001016 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +00001017 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001018
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001019 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001020 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001021 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001022 D->addAttr(::new (S.Context)
1023 IBActionAttr(Attr.getRange(), S.Context,
1024 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001025 return;
1026 }
1027
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001028 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001029}
1030
Ted Kremenek2f041d02011-09-29 07:02:25 +00001031static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1032 // The IBOutlet/IBOutletCollection attributes only apply to instance
1033 // variables or properties of Objective-C classes. The outlet must also
1034 // have an object reference type.
1035 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1036 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001037 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001038 << Attr.getName() << VD->getType() << 0;
1039 return false;
1040 }
1041 }
1042 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1043 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001044 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001045 << Attr.getName() << PD->getType() << 1;
1046 return false;
1047 }
1048 }
1049 else {
1050 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1051 return false;
1052 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001053
Ted Kremenek2f041d02011-09-29 07:02:25 +00001054 return true;
1055}
1056
Chandler Carruth1b03c872011-07-02 00:01:44 +00001057static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001058 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001059 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001060 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001061
1062 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001063 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001064
Michael Han51d8c522013-01-24 16:46:58 +00001065 D->addAttr(::new (S.Context)
1066 IBOutletAttr(Attr.getRange(), S.Context,
1067 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001068}
1069
Chandler Carruth1b03c872011-07-02 00:01:44 +00001070static void handleIBOutletCollection(Sema &S, Decl *D,
1071 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001072
1073 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001074 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001075 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1076 return;
1077 }
1078
Ted Kremenek2f041d02011-09-29 07:02:25 +00001079 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001080 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001081
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001082 IdentifierInfo *II = Attr.getParameterName();
1083 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001084 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001085
John McCallb3d87482010-08-24 05:47:05 +00001086 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001087 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001088 if (!TypeRep) {
1089 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1090 return;
1091 }
John McCallb3d87482010-08-24 05:47:05 +00001092 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001093 // Diagnose use of non-object type in iboutletcollection attribute.
1094 // FIXME. Gnu attribute extension ignores use of builtin types in
1095 // attributes. So, __attribute__((iboutletcollection(char))) will be
1096 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001097 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001098 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1099 return;
1100 }
Michael Han51d8c522013-01-24 16:46:58 +00001101 D->addAttr(::new (S.Context)
1102 IBOutletCollectionAttr(Attr.getRange(),S.Context,
1103 QT, Attr.getParameterLoc(),
1104 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001105}
1106
Chandler Carruthd309c812011-07-01 23:49:16 +00001107static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001108 if (const RecordType *UT = T->getAsUnionType())
1109 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1110 RecordDecl *UD = UT->getDecl();
1111 for (RecordDecl::field_iterator it = UD->field_begin(),
1112 itend = UD->field_end(); it != itend; ++it) {
1113 QualType QT = it->getType();
1114 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1115 T = QT;
1116 return;
1117 }
1118 }
1119 }
1120}
1121
Nuno Lopes587de5b2012-05-24 00:22:00 +00001122static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001123 if (!isFunctionOrMethod(D)) {
1124 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1125 << "alloc_size" << ExpectedFunctionOrMethod;
1126 return;
1127 }
1128
Nuno Lopes587de5b2012-05-24 00:22:00 +00001129 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1130 return;
1131
1132 // In C++ the implicit 'this' function parameter also counts, and they are
1133 // counted from one.
1134 bool HasImplicitThisParam = isInstanceMethod(D);
Argyrios Kyrtzidis28965bf2013-02-22 06:58:28 +00001135 unsigned NumArgs;
1136 if (hasFunctionProto(D))
1137 NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
1138 else
1139 NumArgs = 0;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001140
1141 SmallVector<unsigned, 8> SizeArgs;
1142
1143 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1144 E = Attr.arg_end(); I!=E; ++I) {
1145 // The argument must be an integer constant expression.
1146 Expr *Ex = *I;
1147 llvm::APSInt ArgNum;
1148 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1149 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
1150 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1151 << "alloc_size" << Ex->getSourceRange();
1152 return;
1153 }
1154
1155 uint64_t x = ArgNum.getZExtValue();
1156
1157 if (x < 1 || x > NumArgs) {
1158 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1159 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
1160 return;
1161 }
1162
1163 --x;
1164 if (HasImplicitThisParam) {
1165 if (x == 0) {
1166 S.Diag(Attr.getLoc(),
1167 diag::err_attribute_invalid_implicit_this_argument)
1168 << "alloc_size" << Ex->getSourceRange();
1169 return;
1170 }
1171 --x;
1172 }
1173
1174 // check if the function argument is of an integer type
1175 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
1176 if (!T->isIntegerType()) {
1177 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1178 << "alloc_size" << Ex->getSourceRange();
1179 return;
1180 }
1181
Nuno Lopes587de5b2012-05-24 00:22:00 +00001182 SizeArgs.push_back(x);
1183 }
1184
1185 // check if the function returns a pointer
1186 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1187 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1188 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
1189 }
1190
Michael Han51d8c522013-01-24 16:46:58 +00001191 D->addAttr(::new (S.Context)
1192 AllocSizeAttr(Attr.getRange(), S.Context,
1193 SizeArgs.data(), SizeArgs.size(),
1194 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001195}
1196
Chandler Carruth1b03c872011-07-02 00:01:44 +00001197static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001198 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1199 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001200 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001201 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001202 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001203 return;
1204 }
Mike Stumpbf916502009-07-24 19:02:52 +00001205
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001206 // In C++ the implicit 'this' function parameter also counts, and they are
1207 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001208 bool HasImplicitThisParam = isInstanceMethod(D);
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001209 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001210
1211 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001212 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001213
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001214 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1215 E = Attr.arg_end(); I != E; ++I) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001216 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001217 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001218 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001219 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1220 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001221 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1222 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001223 return;
1224 }
Mike Stumpbf916502009-07-24 19:02:52 +00001225
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001226 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001227
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001228 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001229 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001230 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001231 return;
1232 }
Mike Stumpbf916502009-07-24 19:02:52 +00001233
Ted Kremenek465172f2008-07-21 22:09:15 +00001234 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001235 if (HasImplicitThisParam) {
1236 if (x == 0) {
1237 S.Diag(Attr.getLoc(),
1238 diag::err_attribute_invalid_implicit_this_argument)
1239 << "nonnull" << Ex->getSourceRange();
1240 return;
1241 }
1242 --x;
1243 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001244
1245 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001246 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001247 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001248
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001249 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001250 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001251 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001252 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001253 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001254 }
Mike Stumpbf916502009-07-24 19:02:52 +00001255
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001256 NonNullArgs.push_back(x);
1257 }
Mike Stumpbf916502009-07-24 19:02:52 +00001258
1259 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1260 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001261 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001262 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1263 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001264 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001265 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001266 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001267 }
Mike Stumpbf916502009-07-24 19:02:52 +00001268
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001269 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001270 if (NonNullArgs.empty()) {
1271 // Warn the trivial case only if attribute is not coming from a
1272 // macro instantiation.
1273 if (Attr.getLoc().isFileID())
1274 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001275 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001276 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001277 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001278
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001279 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001280 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001281 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001282 D->addAttr(::new (S.Context)
1283 NonNullAttr(Attr.getRange(), S.Context, start, size,
1284 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001285}
1286
Chandler Carruth1b03c872011-07-02 00:01:44 +00001287static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001288 // This attribute must be applied to a function declaration.
1289 // The first argument to the attribute must be a string,
1290 // the name of the resource, for example "malloc".
1291 // The following arguments must be argument indexes, the arguments must be
1292 // of integer type for Returns, otherwise of pointer type.
1293 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001294 // after being held. free() should be __attribute((ownership_takes)), whereas
1295 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001296
1297 if (!AL.getParameterName()) {
1298 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1299 << AL.getName()->getName() << 1;
1300 return;
1301 }
1302 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001303 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001304 switch (AL.getKind()) {
1305 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001306 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001307 if (AL.getNumArgs() < 1) {
1308 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1309 return;
1310 }
Jordy Rose2a479922010-08-12 08:54:03 +00001311 break;
1312 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001313 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001314 if (AL.getNumArgs() < 1) {
1315 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1316 return;
1317 }
Jordy Rose2a479922010-08-12 08:54:03 +00001318 break;
1319 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001320 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001321 if (AL.getNumArgs() > 1) {
1322 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1323 << AL.getNumArgs() + 1;
1324 return;
1325 }
Jordy Rose2a479922010-08-12 08:54:03 +00001326 break;
1327 default:
1328 // This should never happen given how we are called.
1329 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001330 }
1331
Chandler Carruth87c44602011-07-01 23:49:12 +00001332 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001333 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1334 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001335 return;
1336 }
1337
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001338 // In C++ the implicit 'this' function parameter also counts, and they are
1339 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001340 bool HasImplicitThisParam = isInstanceMethod(D);
1341 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001342
Chris Lattner5f9e2722011-07-23 10:55:15 +00001343 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001344
1345 // Normalize the argument, __foo__ becomes foo.
1346 if (Module.startswith("__") && Module.endswith("__"))
1347 Module = Module.substr(2, Module.size() - 4);
1348
Chris Lattner5f9e2722011-07-23 10:55:15 +00001349 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001350
Jordy Rose2a479922010-08-12 08:54:03 +00001351 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1352 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001353
Peter Collingbourne7a730022010-11-23 20:45:58 +00001354 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001355 llvm::APSInt ArgNum(32);
1356 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1357 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1358 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1359 << AL.getName()->getName() << IdxExpr->getSourceRange();
1360 continue;
1361 }
1362
1363 unsigned x = (unsigned) ArgNum.getZExtValue();
1364
1365 if (x > NumArgs || x < 1) {
1366 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1367 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1368 continue;
1369 }
1370 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001371 if (HasImplicitThisParam) {
1372 if (x == 0) {
1373 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1374 << "ownership" << IdxExpr->getSourceRange();
1375 return;
1376 }
1377 --x;
1378 }
1379
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001380 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001381 case OwnershipAttr::Takes:
1382 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001383 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001384 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001385 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1386 // FIXME: Should also highlight argument in decl.
1387 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001388 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001389 << "pointer"
1390 << IdxExpr->getSourceRange();
1391 continue;
1392 }
1393 break;
1394 }
Sean Huntcf807c42010-08-18 23:23:40 +00001395 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001396 if (AL.getNumArgs() > 1) {
1397 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001398 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001399 llvm::APSInt ArgNum(32);
1400 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1401 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1402 S.Diag(AL.getLoc(), diag::err_ownership_type)
1403 << "ownership_returns" << "integer"
1404 << IdxExpr->getSourceRange();
1405 return;
1406 }
1407 }
1408 break;
1409 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001410 } // switch
1411
1412 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001413 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001414 i = D->specific_attr_begin<OwnershipAttr>(),
1415 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001416 i != e; ++i) {
1417 if ((*i)->getOwnKind() != K) {
1418 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1419 I!=E; ++I) {
1420 if (x == *I) {
1421 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1422 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001423 }
1424 }
1425 }
1426 }
1427 OwnershipArgs.push_back(x);
1428 }
1429
1430 unsigned* start = OwnershipArgs.data();
1431 unsigned size = OwnershipArgs.size();
1432 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001433
1434 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1435 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1436 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001437 }
Sean Huntcf807c42010-08-18 23:23:40 +00001438
Michael Han51d8c522013-01-24 16:46:58 +00001439 D->addAttr(::new (S.Context)
1440 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1441 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001442}
1443
Chandler Carruth1b03c872011-07-02 00:01:44 +00001444static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001445 // Check the attribute arguments.
1446 if (Attr.getNumArgs() > 1) {
1447 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1448 return;
1449 }
1450
Chandler Carruth87c44602011-07-01 23:49:12 +00001451 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001452 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001453 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001454 return;
1455 }
1456
Chandler Carruth87c44602011-07-01 23:49:12 +00001457 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001458
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001459 // gcc rejects
1460 // class c {
1461 // static int a __attribute__((weakref ("v2")));
1462 // static int b() __attribute__((weakref ("f3")));
1463 // };
1464 // and ignores the attributes of
1465 // void f(void) {
1466 // static int a __attribute__((weakref ("v2")));
1467 // }
1468 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001469 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001470 if (!Ctx->isFileContext()) {
1471 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001472 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001473 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001474 }
1475
1476 // The GCC manual says
1477 //
1478 // At present, a declaration to which `weakref' is attached can only
1479 // be `static'.
1480 //
1481 // It also says
1482 //
1483 // Without a TARGET,
1484 // given as an argument to `weakref' or to `alias', `weakref' is
1485 // equivalent to `weak'.
1486 //
1487 // gcc 4.4.1 will accept
1488 // int a7 __attribute__((weakref));
1489 // as
1490 // int a7 __attribute__((weak));
1491 // This looks like a bug in gcc. We reject that for now. We should revisit
1492 // it if this behaviour is actually used.
1493
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001494 // GCC rejects
1495 // static ((alias ("y"), weakref)).
1496 // Should we? How to check that weakref is before or after alias?
1497
1498 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001499 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001500 Arg = Arg->IgnoreParenCasts();
1501 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1502
Douglas Gregor5cee1192011-07-27 05:40:30 +00001503 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001504 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1505 << "weakref" << 1;
1506 return;
1507 }
1508 // GCC will accept anything as the argument of weakref. Should we
1509 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001510 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001511 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001512 }
1513
Michael Han51d8c522013-01-24 16:46:58 +00001514 D->addAttr(::new (S.Context)
1515 WeakRefAttr(Attr.getRange(), S.Context,
1516 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001517}
1518
Chandler Carruth1b03c872011-07-02 00:01:44 +00001519static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001520 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001521 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001522 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001523 return;
1524 }
Mike Stumpbf916502009-07-24 19:02:52 +00001525
Peter Collingbourne7a730022010-11-23 20:45:58 +00001526 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001527 Arg = Arg->IgnoreParenCasts();
1528 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001529
Douglas Gregor5cee1192011-07-27 05:40:30 +00001530 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001531 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001532 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001533 return;
1534 }
Mike Stumpbf916502009-07-24 19:02:52 +00001535
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001536 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001537 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1538 return;
1539 }
1540
Chris Lattner6b6b5372008-06-26 18:38:35 +00001541 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001542
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001543 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001544 Str->getString(),
1545 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001546}
1547
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001548static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1549 // Check the attribute arguments.
1550 if (!checkAttributeNumArgs(S, Attr, 0))
1551 return;
1552
1553 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1554 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1555 << Attr.getName() << ExpectedFunctionOrMethod;
1556 return;
1557 }
1558
Michael Han51d8c522013-01-24 16:46:58 +00001559 D->addAttr(::new (S.Context)
1560 MinSizeAttr(Attr.getRange(), S.Context,
1561 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001562}
1563
Benjamin Krameree409a92012-05-12 21:10:52 +00001564static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1565 // Check the attribute arguments.
1566 if (!checkAttributeNumArgs(S, Attr, 0))
1567 return;
1568
1569 if (!isa<FunctionDecl>(D)) {
1570 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1571 << Attr.getName() << ExpectedFunction;
1572 return;
1573 }
1574
1575 if (D->hasAttr<HotAttr>()) {
1576 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1577 << Attr.getName() << "hot";
1578 return;
1579 }
1580
Michael Han51d8c522013-01-24 16:46:58 +00001581 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1582 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001583}
1584
1585static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1586 // Check the attribute arguments.
1587 if (!checkAttributeNumArgs(S, Attr, 0))
1588 return;
1589
1590 if (!isa<FunctionDecl>(D)) {
1591 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1592 << Attr.getName() << ExpectedFunction;
1593 return;
1594 }
1595
1596 if (D->hasAttr<ColdAttr>()) {
1597 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1598 << Attr.getName() << "cold";
1599 return;
1600 }
1601
Michael Han51d8c522013-01-24 16:46:58 +00001602 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1603 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001604}
1605
Chandler Carruth1b03c872011-07-02 00:01:44 +00001606static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001607 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001608 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001609 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001610
Chandler Carruth87c44602011-07-01 23:49:12 +00001611 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001612 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001613 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001614 return;
1615 }
1616
Michael Han51d8c522013-01-24 16:46:58 +00001617 D->addAttr(::new (S.Context)
1618 NakedAttr(Attr.getRange(), S.Context,
1619 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001620}
1621
Chandler Carruth1b03c872011-07-02 00:01:44 +00001622static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1623 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001624 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001625 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001626 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1627 return;
1628 }
1629
Chandler Carruth87c44602011-07-01 23:49:12 +00001630 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001631 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001632 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001633 return;
1634 }
Mike Stumpbf916502009-07-24 19:02:52 +00001635
Michael Han51d8c522013-01-24 16:46:58 +00001636 D->addAttr(::new (S.Context)
1637 AlwaysInlineAttr(Attr.getRange(), S.Context,
1638 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001639}
1640
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001641static void handleTLSModelAttr(Sema &S, Decl *D,
1642 const AttributeList &Attr) {
1643 // Check the attribute arguments.
1644 if (Attr.getNumArgs() != 1) {
1645 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1646 return;
1647 }
1648
1649 Expr *Arg = Attr.getArg(0);
1650 Arg = Arg->IgnoreParenCasts();
1651 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1652
1653 // Check that it is a string.
1654 if (!Str) {
1655 S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model";
1656 return;
1657 }
1658
Richard Smith38afbc72013-04-13 02:43:54 +00001659 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001660 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1661 << Attr.getName() << ExpectedTLSVar;
1662 return;
1663 }
1664
1665 // Check that the value.
1666 StringRef Model = Str->getString();
1667 if (Model != "global-dynamic" && Model != "local-dynamic"
1668 && Model != "initial-exec" && Model != "local-exec") {
1669 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1670 return;
1671 }
1672
Michael Han51d8c522013-01-24 16:46:58 +00001673 D->addAttr(::new (S.Context)
1674 TLSModelAttr(Attr.getRange(), S.Context, Model,
1675 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001676}
1677
Chandler Carruth1b03c872011-07-02 00:01:44 +00001678static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001679 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001680 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001681 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1682 return;
1683 }
Mike Stump1eb44332009-09-09 15:08:12 +00001684
Chandler Carruth87c44602011-07-01 23:49:12 +00001685 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001686 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001687 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001688 D->addAttr(::new (S.Context)
1689 MallocAttr(Attr.getRange(), S.Context,
1690 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001691 return;
1692 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001693 }
1694
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001695 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001696}
1697
Chandler Carruth1b03c872011-07-02 00:01:44 +00001698static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001699 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001700 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001701 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001702
Michael Han51d8c522013-01-24 16:46:58 +00001703 D->addAttr(::new (S.Context)
1704 MayAliasAttr(Attr.getRange(), S.Context,
1705 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001706}
1707
Chandler Carruth1b03c872011-07-02 00:01:44 +00001708static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001709 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001710 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001711 D->addAttr(::new (S.Context)
1712 NoCommonAttr(Attr.getRange(), S.Context,
1713 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001714 else
1715 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001716 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001717}
1718
Chandler Carruth1b03c872011-07-02 00:01:44 +00001719static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001720 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001721 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001722 D->addAttr(::new (S.Context)
1723 CommonAttr(Attr.getRange(), S.Context,
1724 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001725 else
1726 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001727 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001728}
1729
Chandler Carruth1b03c872011-07-02 00:01:44 +00001730static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001731 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001732
1733 if (S.CheckNoReturnAttr(attr)) return;
1734
Chandler Carruth87c44602011-07-01 23:49:12 +00001735 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001736 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001737 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001738 return;
1739 }
1740
Michael Han51d8c522013-01-24 16:46:58 +00001741 D->addAttr(::new (S.Context)
1742 NoReturnAttr(attr.getRange(), S.Context,
1743 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001744}
1745
1746bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001747 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001748 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1749 attr.setInvalid();
1750 return true;
1751 }
1752
1753 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001754}
1755
Chandler Carruth1b03c872011-07-02 00:01:44 +00001756static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1757 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001758
1759 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1760 // because 'analyzer_noreturn' does not impact the type.
1761
Chandler Carruth1731e202011-07-11 23:30:35 +00001762 if(!checkAttributeNumArgs(S, Attr, 0))
1763 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001764
Chandler Carruth87c44602011-07-01 23:49:12 +00001765 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1766 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001767 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1768 && !VD->getType()->isFunctionPointerType())) {
1769 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001770 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001771 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001772 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001773 return;
1774 }
1775 }
1776
Michael Han51d8c522013-01-24 16:46:58 +00001777 D->addAttr(::new (S.Context)
1778 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1779 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001780}
1781
Richard Smithcd8ab512013-01-17 01:30:42 +00001782static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1783 const AttributeList &Attr) {
1784 // C++11 [dcl.attr.noreturn]p1:
1785 // The attribute may be applied to the declarator-id in a function
1786 // declaration.
1787 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1788 if (!FD) {
1789 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1790 << Attr.getName() << ExpectedFunctionOrMethod;
1791 return;
1792 }
1793
Michael Han51d8c522013-01-24 16:46:58 +00001794 D->addAttr(::new (S.Context)
1795 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1796 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001797}
1798
John Thompson35cc9622010-08-09 21:53:52 +00001799// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001800static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001801/*
1802 Returning a Vector Class in Registers
1803
Eric Christopherf48f3672010-12-01 22:13:54 +00001804 According to the PPU ABI specifications, a class with a single member of
1805 vector type is returned in memory when used as the return value of a function.
1806 This results in inefficient code when implementing vector classes. To return
1807 the value in a single vector register, add the vecreturn attribute to the
1808 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001809
1810 Example:
1811
1812 struct Vector
1813 {
1814 __vector float xyzw;
1815 } __attribute__((vecreturn));
1816
1817 Vector Add(Vector lhs, Vector rhs)
1818 {
1819 Vector result;
1820 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1821 return result; // This will be returned in a register
1822 }
1823*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001824 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001825 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001826 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001827 return;
1828 }
1829
Chandler Carruth87c44602011-07-01 23:49:12 +00001830 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001831 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1832 return;
1833 }
1834
Chandler Carruth87c44602011-07-01 23:49:12 +00001835 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001836 int count = 0;
1837
1838 if (!isa<CXXRecordDecl>(record)) {
1839 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1840 return;
1841 }
1842
1843 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1844 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1845 return;
1846 }
1847
Eric Christopherf48f3672010-12-01 22:13:54 +00001848 for (RecordDecl::field_iterator iter = record->field_begin();
1849 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001850 if ((count == 1) || !iter->getType()->isVectorType()) {
1851 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1852 return;
1853 }
1854 count++;
1855 }
1856
Michael Han51d8c522013-01-24 16:46:58 +00001857 D->addAttr(::new (S.Context)
1858 VecReturnAttr(Attr.getRange(), S.Context,
1859 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001860}
1861
Richard Smith3a2b7a12013-01-28 22:42:45 +00001862static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1863 const AttributeList &Attr) {
1864 if (isa<ParmVarDecl>(D)) {
1865 // [[carries_dependency]] can only be applied to a parameter if it is a
1866 // parameter of a function declaration or lambda.
1867 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1868 S.Diag(Attr.getLoc(),
1869 diag::err_carries_dependency_param_not_function_decl);
1870 return;
1871 }
1872 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001873 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001874 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001875 return;
1876 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001877
1878 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1879 Attr.getRange(), S.Context,
1880 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001881}
1882
Chandler Carruth1b03c872011-07-02 00:01:44 +00001883static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001884 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001885 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001886 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001887 return;
1888 }
Mike Stumpbf916502009-07-24 19:02:52 +00001889
Chandler Carruth87c44602011-07-01 23:49:12 +00001890 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001891 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001892 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001893 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001894 return;
1895 }
Mike Stumpbf916502009-07-24 19:02:52 +00001896
Michael Han51d8c522013-01-24 16:46:58 +00001897 D->addAttr(::new (S.Context)
1898 UnusedAttr(Attr.getRange(), S.Context,
1899 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001900}
1901
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001902static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1903 const AttributeList &Attr) {
1904 // check the attribute arguments.
1905 if (Attr.hasParameterOrArguments()) {
1906 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1907 return;
1908 }
1909
1910 if (!isa<FunctionDecl>(D)) {
1911 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1912 << Attr.getName() << ExpectedFunction;
1913 return;
1914 }
1915
Michael Han51d8c522013-01-24 16:46:58 +00001916 D->addAttr(::new (S.Context)
1917 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1918 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001919}
1920
Chandler Carruth1b03c872011-07-02 00:01:44 +00001921static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001922 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001923 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001924 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1925 return;
1926 }
Mike Stumpbf916502009-07-24 19:02:52 +00001927
Chandler Carruth87c44602011-07-01 23:49:12 +00001928 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001929 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001930 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1931 return;
1932 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001933 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001934 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001935 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001936 return;
1937 }
Mike Stumpbf916502009-07-24 19:02:52 +00001938
Michael Han51d8c522013-01-24 16:46:58 +00001939 D->addAttr(::new (S.Context)
1940 UsedAttr(Attr.getRange(), S.Context,
1941 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001942}
1943
Chandler Carruth1b03c872011-07-02 00:01:44 +00001944static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001945 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001946 if (Attr.getNumArgs() > 1) {
1947 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001948 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001949 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001950
1951 int priority = 65535; // FIXME: Do not hardcode such constants.
1952 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001953 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001954 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001955 if (E->isTypeDependent() || E->isValueDependent() ||
1956 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001957 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001958 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001959 return;
1960 }
1961 priority = Idx.getZExtValue();
1962 }
Mike Stumpbf916502009-07-24 19:02:52 +00001963
Chandler Carruth87c44602011-07-01 23:49:12 +00001964 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001965 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001966 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001967 return;
1968 }
1969
Michael Han51d8c522013-01-24 16:46:58 +00001970 D->addAttr(::new (S.Context)
1971 ConstructorAttr(Attr.getRange(), S.Context, priority,
1972 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001973}
1974
Chandler Carruth1b03c872011-07-02 00:01:44 +00001975static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001976 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001977 if (Attr.getNumArgs() > 1) {
1978 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001979 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001980 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001981
1982 int priority = 65535; // FIXME: Do not hardcode such constants.
1983 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001984 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001985 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001986 if (E->isTypeDependent() || E->isValueDependent() ||
1987 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001988 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001989 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001990 return;
1991 }
1992 priority = Idx.getZExtValue();
1993 }
Mike Stumpbf916502009-07-24 19:02:52 +00001994
Chandler Carruth87c44602011-07-01 23:49:12 +00001995 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001996 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001997 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001998 return;
1999 }
2000
Michael Han51d8c522013-01-24 16:46:58 +00002001 D->addAttr(::new (S.Context)
2002 DestructorAttr(Attr.getRange(), S.Context, priority,
2003 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002004}
2005
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002006template <typename AttrTy>
2007static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
2008 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002009 unsigned NumArgs = Attr.getNumArgs();
2010 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002011 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002012 return;
2013 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002014
2015 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002016 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00002017 if (NumArgs == 1) {
2018 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002019 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002020 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002021 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002022 return;
2023 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002024 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002025 }
Mike Stumpbf916502009-07-24 19:02:52 +00002026
Michael Han51d8c522013-01-24 16:46:58 +00002027 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2028 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002029}
2030
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002031static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2032 const AttributeList &Attr) {
2033 unsigned NumArgs = Attr.getNumArgs();
2034 if (NumArgs > 0) {
2035 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2036 return;
2037 }
2038
Michael Han51d8c522013-01-24 16:46:58 +00002039 D->addAttr(::new (S.Context)
2040 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2041 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002042}
2043
Patrick Beardb2f68202012-04-06 18:12:22 +00002044static void handleObjCRootClassAttr(Sema &S, Decl *D,
2045 const AttributeList &Attr) {
2046 if (!isa<ObjCInterfaceDecl>(D)) {
2047 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2048 return;
2049 }
2050
2051 unsigned NumArgs = Attr.getNumArgs();
2052 if (NumArgs > 0) {
2053 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2054 return;
2055 }
2056
Michael Han51d8c522013-01-24 16:46:58 +00002057 D->addAttr(::new (S.Context)
2058 ObjCRootClassAttr(Attr.getRange(), S.Context,
2059 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002060}
2061
Michael Han51d8c522013-01-24 16:46:58 +00002062static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2063 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002064 if (!isa<ObjCInterfaceDecl>(D)) {
2065 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2066 return;
2067 }
2068
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002069 unsigned NumArgs = Attr.getNumArgs();
2070 if (NumArgs > 0) {
2071 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2072 return;
2073 }
2074
Michael Han51d8c522013-01-24 16:46:58 +00002075 D->addAttr(::new (S.Context)
2076 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2077 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002078}
2079
Jordy Rosefad5de92012-05-08 03:27:22 +00002080static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2081 IdentifierInfo *Platform,
2082 VersionTuple Introduced,
2083 VersionTuple Deprecated,
2084 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002085 StringRef PlatformName
2086 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2087 if (PlatformName.empty())
2088 PlatformName = Platform->getName();
2089
2090 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2091 // of these steps are needed).
2092 if (!Introduced.empty() && !Deprecated.empty() &&
2093 !(Introduced <= Deprecated)) {
2094 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2095 << 1 << PlatformName << Deprecated.getAsString()
2096 << 0 << Introduced.getAsString();
2097 return true;
2098 }
2099
2100 if (!Introduced.empty() && !Obsoleted.empty() &&
2101 !(Introduced <= Obsoleted)) {
2102 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2103 << 2 << PlatformName << Obsoleted.getAsString()
2104 << 0 << Introduced.getAsString();
2105 return true;
2106 }
2107
2108 if (!Deprecated.empty() && !Obsoleted.empty() &&
2109 !(Deprecated <= Obsoleted)) {
2110 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2111 << 2 << PlatformName << Obsoleted.getAsString()
2112 << 1 << Deprecated.getAsString();
2113 return true;
2114 }
2115
2116 return false;
2117}
2118
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002119/// \brief Check whether the two versions match.
2120///
2121/// If either version tuple is empty, then they are assumed to match. If
2122/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2123static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2124 bool BeforeIsOkay) {
2125 if (X.empty() || Y.empty())
2126 return true;
2127
2128 if (X == Y)
2129 return true;
2130
2131 if (BeforeIsOkay && X < Y)
2132 return true;
2133
2134 return false;
2135}
2136
Rafael Espindola51be6e32013-01-08 22:04:34 +00002137AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002138 IdentifierInfo *Platform,
2139 VersionTuple Introduced,
2140 VersionTuple Deprecated,
2141 VersionTuple Obsoleted,
2142 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002143 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002144 bool Override,
2145 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002146 VersionTuple MergedIntroduced = Introduced;
2147 VersionTuple MergedDeprecated = Deprecated;
2148 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002149 bool FoundAny = false;
2150
Rafael Espindola98ae8342012-05-10 02:50:16 +00002151 if (D->hasAttrs()) {
2152 AttrVec &Attrs = D->getAttrs();
2153 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2154 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2155 if (!OldAA) {
2156 ++i;
2157 continue;
2158 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002159
Rafael Espindola98ae8342012-05-10 02:50:16 +00002160 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2161 if (OldPlatform != Platform) {
2162 ++i;
2163 continue;
2164 }
2165
2166 FoundAny = true;
2167 VersionTuple OldIntroduced = OldAA->getIntroduced();
2168 VersionTuple OldDeprecated = OldAA->getDeprecated();
2169 VersionTuple OldObsoleted = OldAA->getObsoleted();
2170 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002171
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002172 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2173 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2174 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2175 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002176 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002177 if (Override) {
2178 int Which = -1;
2179 VersionTuple FirstVersion;
2180 VersionTuple SecondVersion;
2181 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2182 Which = 0;
2183 FirstVersion = OldIntroduced;
2184 SecondVersion = Introduced;
2185 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2186 Which = 1;
2187 FirstVersion = Deprecated;
2188 SecondVersion = OldDeprecated;
2189 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2190 Which = 2;
2191 FirstVersion = Obsoleted;
2192 SecondVersion = OldObsoleted;
2193 }
2194
2195 if (Which == -1) {
2196 Diag(OldAA->getLocation(),
2197 diag::warn_mismatched_availability_override_unavail)
2198 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2199 } else {
2200 Diag(OldAA->getLocation(),
2201 diag::warn_mismatched_availability_override)
2202 << Which
2203 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2204 << FirstVersion.getAsString() << SecondVersion.getAsString();
2205 }
2206 Diag(Range.getBegin(), diag::note_overridden_method);
2207 } else {
2208 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2209 Diag(Range.getBegin(), diag::note_previous_attribute);
2210 }
2211
Rafael Espindola98ae8342012-05-10 02:50:16 +00002212 Attrs.erase(Attrs.begin() + i);
2213 --e;
2214 continue;
2215 }
2216
2217 VersionTuple MergedIntroduced2 = MergedIntroduced;
2218 VersionTuple MergedDeprecated2 = MergedDeprecated;
2219 VersionTuple MergedObsoleted2 = MergedObsoleted;
2220
2221 if (MergedIntroduced2.empty())
2222 MergedIntroduced2 = OldIntroduced;
2223 if (MergedDeprecated2.empty())
2224 MergedDeprecated2 = OldDeprecated;
2225 if (MergedObsoleted2.empty())
2226 MergedObsoleted2 = OldObsoleted;
2227
2228 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2229 MergedIntroduced2, MergedDeprecated2,
2230 MergedObsoleted2)) {
2231 Attrs.erase(Attrs.begin() + i);
2232 --e;
2233 continue;
2234 }
2235
2236 MergedIntroduced = MergedIntroduced2;
2237 MergedDeprecated = MergedDeprecated2;
2238 MergedObsoleted = MergedObsoleted2;
2239 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002240 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002241 }
2242
2243 if (FoundAny &&
2244 MergedIntroduced == Introduced &&
2245 MergedDeprecated == Deprecated &&
2246 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002247 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002248
Ted Kremenekcb344392013-04-06 00:34:27 +00002249 // Only create a new attribute if !Override, but we want to do
2250 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002251 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002252 MergedDeprecated, MergedObsoleted) &&
2253 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002254 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2255 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002256 Obsoleted, IsUnavailable, Message,
2257 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002258 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002259 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002260}
2261
Chandler Carruth1b03c872011-07-02 00:01:44 +00002262static void handleAvailabilityAttr(Sema &S, Decl *D,
2263 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002264 IdentifierInfo *Platform = Attr.getParameterName();
2265 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002266 unsigned Index = Attr.getAttributeSpellingListIndex();
2267
Rafael Espindola3b294362012-05-06 19:56:25 +00002268 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002269 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2270 << Platform;
2271
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002272 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2273 if (!ND) {
2274 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2275 return;
2276 }
2277
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002278 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2279 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2280 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002281 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002282 StringRef Str;
2283 const StringLiteral *SE =
2284 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2285 if (SE)
2286 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002287
Rafael Espindola51be6e32013-01-08 22:04:34 +00002288 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002289 Platform,
2290 Introduced.Version,
2291 Deprecated.Version,
2292 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002293 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002294 /*Override=*/false,
2295 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002296 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002297 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002298}
2299
John McCalld4c3d662013-02-20 01:54:26 +00002300template <class T>
2301static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2302 typename T::VisibilityType value,
2303 unsigned attrSpellingListIndex) {
2304 T *existingAttr = D->getAttr<T>();
2305 if (existingAttr) {
2306 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2307 if (existingValue == value)
2308 return NULL;
2309 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2310 S.Diag(range.getBegin(), diag::note_previous_attribute);
2311 D->dropAttr<T>();
2312 }
2313 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2314}
2315
Rafael Espindola599f1b72012-05-13 03:25:18 +00002316VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002317 VisibilityAttr::VisibilityType Vis,
2318 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002319 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2320 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002321}
2322
John McCalld4c3d662013-02-20 01:54:26 +00002323TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2324 TypeVisibilityAttr::VisibilityType Vis,
2325 unsigned AttrSpellingListIndex) {
2326 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2327 AttrSpellingListIndex);
2328}
2329
2330static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2331 bool isTypeVisibility) {
2332 // Visibility attributes don't mean anything on a typedef.
2333 if (isa<TypedefNameDecl>(D)) {
2334 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2335 << Attr.getName();
2336 return;
2337 }
2338
2339 // 'type_visibility' can only go on a type or namespace.
2340 if (isTypeVisibility &&
2341 !(isa<TagDecl>(D) ||
2342 isa<ObjCInterfaceDecl>(D) ||
2343 isa<NamespaceDecl>(D))) {
2344 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2345 << Attr.getName() << ExpectedTypeOrNamespace;
2346 return;
2347 }
2348
Chris Lattner6b6b5372008-06-26 18:38:35 +00002349 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002350 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002351 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002352
Peter Collingbourne7a730022010-11-23 20:45:58 +00002353 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002354 Arg = Arg->IgnoreParenCasts();
2355 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002356
Douglas Gregor5cee1192011-07-27 05:40:30 +00002357 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002358 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld4c3d662013-02-20 01:54:26 +00002359 << (isTypeVisibility ? "type_visibility" : "visibility") << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002360 return;
2361 }
Mike Stumpbf916502009-07-24 19:02:52 +00002362
Chris Lattner5f9e2722011-07-23 10:55:15 +00002363 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002364 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002365
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002366 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002367 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002368 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002369 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002370 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002371 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002372 else if (TypeStr == "protected") {
2373 // Complain about attempts to use protected visibility on targets
2374 // (like Darwin) that don't support it.
2375 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2376 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2377 type = VisibilityAttr::Default;
2378 } else {
2379 type = VisibilityAttr::Protected;
2380 }
2381 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002382 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002383 return;
2384 }
Mike Stumpbf916502009-07-24 19:02:52 +00002385
Michael Han51d8c522013-01-24 16:46:58 +00002386 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002387 clang::Attr *newAttr;
2388 if (isTypeVisibility) {
2389 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2390 (TypeVisibilityAttr::VisibilityType) type,
2391 Index);
2392 } else {
2393 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2394 }
2395 if (newAttr)
2396 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002397}
2398
Chandler Carruth1b03c872011-07-02 00:01:44 +00002399static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2400 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002401 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2402 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002403 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002404 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002405 return;
2406 }
2407
Chandler Carruth87c44602011-07-01 23:49:12 +00002408 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2409 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2410 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002411 << "objc_method_family" << 1;
2412 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002413 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002414 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002415 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002416 return;
2417 }
2418
Chris Lattner5f9e2722011-07-23 10:55:15 +00002419 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002420 ObjCMethodFamilyAttr::FamilyKind family;
2421 if (param == "none")
2422 family = ObjCMethodFamilyAttr::OMF_None;
2423 else if (param == "alloc")
2424 family = ObjCMethodFamilyAttr::OMF_alloc;
2425 else if (param == "copy")
2426 family = ObjCMethodFamilyAttr::OMF_copy;
2427 else if (param == "init")
2428 family = ObjCMethodFamilyAttr::OMF_init;
2429 else if (param == "mutableCopy")
2430 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2431 else if (param == "new")
2432 family = ObjCMethodFamilyAttr::OMF_new;
2433 else {
2434 // Just warn and ignore it. This is future-proof against new
2435 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002436 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002437 return;
2438 }
2439
John McCallf85e1932011-06-15 23:02:42 +00002440 if (family == ObjCMethodFamilyAttr::OMF_init &&
2441 !method->getResultType()->isObjCObjectPointerType()) {
2442 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2443 << method->getResultType();
2444 // Ignore the attribute.
2445 return;
2446 }
2447
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002448 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002449 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002450}
2451
Chandler Carruth1b03c872011-07-02 00:01:44 +00002452static void handleObjCExceptionAttr(Sema &S, Decl *D,
2453 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002454 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002455 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002456
Chris Lattner0db29ec2009-02-14 08:09:34 +00002457 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2458 if (OCI == 0) {
2459 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2460 return;
2461 }
Mike Stumpbf916502009-07-24 19:02:52 +00002462
Michael Han51d8c522013-01-24 16:46:58 +00002463 D->addAttr(::new (S.Context)
2464 ObjCExceptionAttr(Attr.getRange(), S.Context,
2465 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002466}
2467
Chandler Carruth1b03c872011-07-02 00:01:44 +00002468static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002469 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002470 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002471 return;
2472 }
Richard Smith162e1c12011-04-15 14:24:37 +00002473 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002474 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002475 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002476 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2477 return;
2478 }
2479 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002480 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2481 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002482 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002483 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2484 return;
2485 }
2486 }
2487 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002488 // It is okay to include this attribute on properties, e.g.:
2489 //
2490 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2491 //
2492 // In this case it follows tradition and suppresses an error in the above
2493 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002494 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002495 }
Michael Han51d8c522013-01-24 16:46:58 +00002496 D->addAttr(::new (S.Context)
2497 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2498 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002499}
2500
Mike Stumpbf916502009-07-24 19:02:52 +00002501static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002502handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002503 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002504 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002505 return;
2506 }
2507
2508 if (!isa<FunctionDecl>(D)) {
2509 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2510 return;
2511 }
2512
Michael Han51d8c522013-01-24 16:46:58 +00002513 D->addAttr(::new (S.Context)
2514 OverloadableAttr(Attr.getRange(), S.Context,
2515 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002516}
2517
Chandler Carruth1b03c872011-07-02 00:01:44 +00002518static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002519 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002520 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002521 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002522 return;
2523 }
Mike Stumpbf916502009-07-24 19:02:52 +00002524
Steve Naroff9eae5762008-09-18 16:44:58 +00002525 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002526 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002527 return;
2528 }
Mike Stumpbf916502009-07-24 19:02:52 +00002529
Sean Huntcf807c42010-08-18 23:23:40 +00002530 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002531 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002532 type = BlocksAttr::ByRef;
2533 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002534 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002535 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002536 return;
2537 }
Mike Stumpbf916502009-07-24 19:02:52 +00002538
Michael Han51d8c522013-01-24 16:46:58 +00002539 D->addAttr(::new (S.Context)
2540 BlocksAttr(Attr.getRange(), S.Context, type,
2541 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002542}
2543
Chandler Carruth1b03c872011-07-02 00:01:44 +00002544static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002545 // check the attribute arguments.
2546 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002547 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002548 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002549 }
2550
John McCall3323fad2011-09-09 07:56:05 +00002551 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002552 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002553 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002554 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002555 if (E->isTypeDependent() || E->isValueDependent() ||
2556 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002557 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002558 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002559 return;
2560 }
Mike Stumpbf916502009-07-24 19:02:52 +00002561
John McCall3323fad2011-09-09 07:56:05 +00002562 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002563 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2564 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002565 return;
2566 }
John McCall3323fad2011-09-09 07:56:05 +00002567
2568 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002569 }
2570
John McCall3323fad2011-09-09 07:56:05 +00002571 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002572 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002573 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002574 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002575 if (E->isTypeDependent() || E->isValueDependent() ||
2576 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002577 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002578 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002579 return;
2580 }
2581 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002582
John McCall3323fad2011-09-09 07:56:05 +00002583 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002584 // FIXME: This error message could be improved, it would be nice
2585 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002586 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2587 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002588 return;
2589 }
2590 }
2591
Chandler Carruth87c44602011-07-01 23:49:12 +00002592 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002593 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002594 if (isa<FunctionNoProtoType>(FT)) {
2595 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2596 return;
2597 }
Mike Stumpbf916502009-07-24 19:02:52 +00002598
Chris Lattner897cd902009-03-17 23:03:47 +00002599 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002600 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002601 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002602 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002603 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002604 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002605 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002606 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002607 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002608 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2609 if (!BD->isVariadic()) {
2610 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2611 return;
2612 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002613 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002614 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002615 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002616 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002617 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002618 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002619 int m = Ty->isFunctionPointerType() ? 0 : 1;
2620 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002621 return;
2622 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002623 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002624 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002625 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002626 return;
2627 }
Anders Carlsson77091822008-10-05 18:05:59 +00002628 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002629 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002630 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002631 return;
2632 }
Michael Han51d8c522013-01-24 16:46:58 +00002633 D->addAttr(::new (S.Context)
2634 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2635 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002636}
2637
Chandler Carruth1b03c872011-07-02 00:01:44 +00002638static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002639 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002640 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002641 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002642
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002643 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002644 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002645 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002646 return;
2647 }
Mike Stumpbf916502009-07-24 19:02:52 +00002648
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002649 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2650 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2651 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002652 return;
2653 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002654 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2655 if (MD->getResultType()->isVoidType()) {
2656 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2657 << Attr.getName() << 1;
2658 return;
2659 }
2660
Michael Han51d8c522013-01-24 16:46:58 +00002661 D->addAttr(::new (S.Context)
2662 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2663 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002664}
2665
Chandler Carruth1b03c872011-07-02 00:01:44 +00002666static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002667 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002668 if (Attr.hasParameterOrArguments()) {
2669 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002670 return;
2671 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002672
Chandler Carruth87c44602011-07-01 23:49:12 +00002673 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002674 if (isa<CXXRecordDecl>(D)) {
2675 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2676 return;
2677 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002678 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2679 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002680 return;
2681 }
2682
Chandler Carruth87c44602011-07-01 23:49:12 +00002683 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002684
Michael Han51d8c522013-01-24 16:46:58 +00002685 nd->addAttr(::new (S.Context)
2686 WeakAttr(Attr.getRange(), S.Context,
2687 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002688}
2689
Chandler Carruth1b03c872011-07-02 00:01:44 +00002690static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002691 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002692 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002693 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002694
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002695
2696 // weak_import only applies to variable & function declarations.
2697 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002698 if (!D->canBeWeakImported(isDef)) {
2699 if (isDef)
2700 S.Diag(Attr.getLoc(),
2701 diag::warn_attribute_weak_import_invalid_on_definition)
2702 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002703 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002704 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002705 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002706 // Nothing to warn about here.
2707 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002708 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002709 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002710
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002711 return;
2712 }
2713
Michael Han51d8c522013-01-24 16:46:58 +00002714 D->addAttr(::new (S.Context)
2715 WeakImportAttr(Attr.getRange(), S.Context,
2716 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002717}
2718
Tanya Lattner0df579e2012-07-09 22:06:01 +00002719// Handles reqd_work_group_size and work_group_size_hint.
2720static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002721 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002722 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2723 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2724
Nate Begeman6f3d8382009-06-26 06:32:41 +00002725 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002726 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002727
2728 unsigned WGSize[3];
2729 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002730 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002731 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002732 if (E->isTypeDependent() || E->isValueDependent() ||
2733 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002734 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002735 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002736 return;
2737 }
2738 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2739 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002740
2741 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2742 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2743 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2744 if (!(A->getXDim() == WGSize[0] &&
2745 A->getYDim() == WGSize[1] &&
2746 A->getZDim() == WGSize[2])) {
2747 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2748 Attr.getName();
2749 }
2750 }
2751
2752 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2753 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2754 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2755 if (!(A->getXDim() == WGSize[0] &&
2756 A->getYDim() == WGSize[1] &&
2757 A->getZDim() == WGSize[2])) {
2758 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2759 Attr.getName();
2760 }
2761 }
2762
2763 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2764 D->addAttr(::new (S.Context)
2765 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002766 WGSize[0], WGSize[1], WGSize[2],
2767 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002768 else
2769 D->addAttr(::new (S.Context)
2770 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002771 WGSize[0], WGSize[1], WGSize[2],
2772 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002773}
2774
Joey Gouly37453b92013-03-08 09:42:32 +00002775static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2776 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2777
2778 // Attribute has 1 argument.
2779 if (!checkAttributeNumArgs(S, Attr, 1))
2780 return;
2781
2782 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2783
2784 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2785 (ParmType->isBooleanType() ||
2786 !ParmType->isIntegralType(S.getASTContext()))) {
2787 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2788 << ParmType;
2789 return;
2790 }
2791
2792 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2793 D->hasAttr<VecTypeHintAttr>()) {
2794 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2795 if (A->getTypeHint() != ParmType) {
2796 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2797 return;
2798 }
2799 }
2800
2801 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2802 ParmType, Attr.getLoc()));
2803}
2804
Joey Gouly96cead52013-03-14 09:54:43 +00002805static void handleEndianAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2806 if (!dyn_cast<VarDecl>(D))
2807 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) << "endian"
2808 << 9;
2809 StringRef EndianType = Attr.getParameterName()->getName();
2810 if (EndianType != "host" && EndianType != "device")
2811 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_endian) << EndianType;
2812}
2813
Rafael Espindola599f1b72012-05-13 03:25:18 +00002814SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002815 StringRef Name,
2816 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002817 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2818 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002819 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002820 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2821 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002822 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002823 }
Michael Han51d8c522013-01-24 16:46:58 +00002824 return ::new (Context) SectionAttr(Range, Context, Name,
2825 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002826}
2827
Chandler Carruth1b03c872011-07-02 00:01:44 +00002828static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002829 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002830 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002831 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002832
2833 // Make sure that there is a string literal as the sections's single
2834 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002835 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002836 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002837 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002838 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002839 return;
2840 }
Mike Stump1eb44332009-09-09 15:08:12 +00002841
Chris Lattner797c3c42009-08-10 19:03:04 +00002842 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002843 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002844 if (!Error.empty()) {
2845 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2846 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002847 return;
2848 }
Mike Stump1eb44332009-09-09 15:08:12 +00002849
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002850 // This attribute cannot be applied to local variables.
2851 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2852 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2853 return;
2854 }
Michael Han51d8c522013-01-24 16:46:58 +00002855
2856 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002857 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002858 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002859 if (NewAttr)
2860 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002861}
2862
Chris Lattner6b6b5372008-06-26 18:38:35 +00002863
Chandler Carruth1b03c872011-07-02 00:01:44 +00002864static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002865 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002866 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002867 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002868 return;
2869 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002870
Chandler Carruth87c44602011-07-01 23:49:12 +00002871 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002872 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002873 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002874 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002875 D->addAttr(::new (S.Context)
2876 NoThrowAttr(Attr.getRange(), S.Context,
2877 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002878 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002879}
2880
Chandler Carruth1b03c872011-07-02 00:01:44 +00002881static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002882 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002883 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002884 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002885 return;
2886 }
Mike Stumpbf916502009-07-24 19:02:52 +00002887
Chandler Carruth87c44602011-07-01 23:49:12 +00002888 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002889 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002890 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002891 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002892 D->addAttr(::new (S.Context)
2893 ConstAttr(Attr.getRange(), S.Context,
2894 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002895 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002896}
2897
Chandler Carruth1b03c872011-07-02 00:01:44 +00002898static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002899 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002900 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002901 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002902
Michael Han51d8c522013-01-24 16:46:58 +00002903 D->addAttr(::new (S.Context)
2904 PureAttr(Attr.getRange(), S.Context,
2905 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002906}
2907
Chandler Carruth1b03c872011-07-02 00:01:44 +00002908static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002909 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002910 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2911 return;
2912 }
Mike Stumpbf916502009-07-24 19:02:52 +00002913
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002914 if (Attr.getNumArgs() != 0) {
2915 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2916 return;
2917 }
Mike Stumpbf916502009-07-24 19:02:52 +00002918
Chandler Carruth87c44602011-07-01 23:49:12 +00002919 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002920
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002921 if (!VD || !VD->hasLocalStorage()) {
2922 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2923 return;
2924 }
Mike Stumpbf916502009-07-24 19:02:52 +00002925
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002926 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002927 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002928 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002929 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2930 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002931 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002932 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002933 Attr.getParameterName();
2934 return;
2935 }
Mike Stumpbf916502009-07-24 19:02:52 +00002936
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002937 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2938 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002939 S.Diag(Attr.getParameterLoc(),
2940 diag::err_attribute_cleanup_arg_not_function)
2941 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002942 return;
2943 }
2944
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002945 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002946 S.Diag(Attr.getParameterLoc(),
2947 diag::err_attribute_cleanup_func_must_take_one_arg)
2948 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002949 return;
2950 }
Mike Stumpbf916502009-07-24 19:02:52 +00002951
Anders Carlsson89941c12009-02-07 23:16:50 +00002952 // We're currently more strict than GCC about what function types we accept.
2953 // If this ever proves to be a problem it should be easy to fix.
2954 QualType Ty = S.Context.getPointerType(VD->getType());
2955 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002956 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2957 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002958 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002959 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2960 Attr.getParameterName() << ParamTy << Ty;
2961 return;
2962 }
Mike Stumpbf916502009-07-24 19:02:52 +00002963
Michael Han51d8c522013-01-24 16:46:58 +00002964 D->addAttr(::new (S.Context)
2965 CleanupAttr(Attr.getRange(), S.Context, FD,
2966 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002967 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002968 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002969}
2970
Mike Stumpbf916502009-07-24 19:02:52 +00002971/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002972/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002973static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002974 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002975 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002976
Chandler Carruth87c44602011-07-01 23:49:12 +00002977 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002978 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002979 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002980 return;
2981 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002982
2983 // In C++ the implicit 'this' function parameter also counts, and they are
2984 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002985 bool HasImplicitThisParam = isInstanceMethod(D);
2986 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002987 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002988
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002989 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002990 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002991 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002992 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2993 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002994 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2995 << "format" << 2 << IdxExpr->getSourceRange();
2996 return;
2997 }
Mike Stumpbf916502009-07-24 19:02:52 +00002998
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002999 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
3000 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
3001 << "format" << 2 << IdxExpr->getSourceRange();
3002 return;
3003 }
Mike Stumpbf916502009-07-24 19:02:52 +00003004
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003005 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003006
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003007 if (HasImplicitThisParam) {
3008 if (ArgIdx == 0) {
3009 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
3010 << "format_arg" << IdxExpr->getSourceRange();
3011 return;
3012 }
3013 ArgIdx--;
3014 }
3015
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003016 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003017 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00003018
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003019 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
3020 if (not_nsstring_type &&
3021 !isCFStringType(Ty, S.Context) &&
3022 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003023 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003024 // FIXME: Should highlight the actual expression that has the wrong type.
3025 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003026 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003027 << IdxExpr->getSourceRange();
3028 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003029 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003030 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003031 if (!isNSStringType(Ty, S.Context) &&
3032 !isCFStringType(Ty, S.Context) &&
3033 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003034 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003035 // FIXME: Should highlight the actual expression that has the wrong type.
3036 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003037 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003038 << IdxExpr->getSourceRange();
3039 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003040 }
3041
Michael Han51d8c522013-01-24 16:46:58 +00003042 D->addAttr(::new (S.Context)
3043 FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(),
3044 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003045}
3046
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003047enum FormatAttrKind {
3048 CFStringFormat,
3049 NSStringFormat,
3050 StrftimeFormat,
3051 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00003052 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003053 InvalidFormat
3054};
3055
3056/// getFormatAttrKind - Map from format attribute names to supported format
3057/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003058static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003059 return llvm::StringSwitch<FormatAttrKind>(Format)
3060 // Check for formats that get handled specially.
3061 .Case("NSString", NSStringFormat)
3062 .Case("CFString", CFStringFormat)
3063 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003064
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003065 // Otherwise, check for supported formats.
3066 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3067 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3068 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003069
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003070 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3071 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003072}
3073
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003074/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003075/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003076static void handleInitPriorityAttr(Sema &S, Decl *D,
3077 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003078 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003079 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3080 return;
3081 }
3082
Chandler Carruth87c44602011-07-01 23:49:12 +00003083 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003084 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3085 Attr.setInvalid();
3086 return;
3087 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003088 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003089 if (S.Context.getAsArrayType(T))
3090 T = S.Context.getBaseElementType(T);
3091 if (!T->getAs<RecordType>()) {
3092 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3093 Attr.setInvalid();
3094 return;
3095 }
3096
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003097 if (Attr.getNumArgs() != 1) {
3098 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3099 Attr.setInvalid();
3100 return;
3101 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00003102 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003103
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003104 llvm::APSInt priority(32);
3105 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3106 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
3107 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3108 << "init_priority" << priorityExpr->getSourceRange();
3109 Attr.setInvalid();
3110 return;
3111 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003112 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003113 if (prioritynum < 101 || prioritynum > 65535) {
3114 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3115 << priorityExpr->getSourceRange();
3116 Attr.setInvalid();
3117 return;
3118 }
Michael Han51d8c522013-01-24 16:46:58 +00003119 D->addAttr(::new (S.Context)
3120 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3121 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003122}
3123
Rafael Espindola599f1b72012-05-13 03:25:18 +00003124FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003125 int FormatIdx, int FirstArg,
3126 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003127 // Check whether we already have an equivalent format attribute.
3128 for (specific_attr_iterator<FormatAttr>
3129 i = D->specific_attr_begin<FormatAttr>(),
3130 e = D->specific_attr_end<FormatAttr>();
3131 i != e ; ++i) {
3132 FormatAttr *f = *i;
3133 if (f->getType() == Format &&
3134 f->getFormatIdx() == FormatIdx &&
3135 f->getFirstArg() == FirstArg) {
3136 // If we don't have a valid location for this attribute, adopt the
3137 // location.
3138 if (f->getLocation().isInvalid())
3139 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003140 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003141 }
3142 }
3143
Michael Han51d8c522013-01-24 16:46:58 +00003144 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3145 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003146}
3147
Mike Stumpbf916502009-07-24 19:02:52 +00003148/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003149/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003150static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003151
Chris Lattner545dd342008-06-28 23:36:30 +00003152 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003153 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00003154 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003155 return;
3156 }
3157
Chris Lattner545dd342008-06-28 23:36:30 +00003158 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003159 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003160 return;
3161 }
3162
Chandler Carruth87c44602011-07-01 23:49:12 +00003163 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003164 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003165 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003166 return;
3167 }
3168
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003169 // In C++ the implicit 'this' function parameter also counts, and they are
3170 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003171 bool HasImplicitThisParam = isInstanceMethod(D);
3172 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003173 unsigned FirstIdx = 1;
3174
Chris Lattner5f9e2722011-07-23 10:55:15 +00003175 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003176
3177 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003178 if (Format.startswith("__") && Format.endswith("__"))
3179 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003180
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003181 // Check for supported formats.
3182 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003183
3184 if (Kind == IgnoredFormat)
3185 return;
3186
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003187 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003188 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003189 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003190 return;
3191 }
3192
3193 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003194 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003195 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003196 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3197 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003198 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003199 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003200 return;
3201 }
3202
3203 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003204 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003205 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003206 return;
3207 }
3208
3209 // FIXME: Do we need to bounds check?
3210 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003211
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003212 if (HasImplicitThisParam) {
3213 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003214 S.Diag(Attr.getLoc(),
3215 diag::err_format_attribute_implicit_this_format_string)
3216 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003217 return;
3218 }
3219 ArgIdx--;
3220 }
Mike Stump1eb44332009-09-09 15:08:12 +00003221
Chris Lattner6b6b5372008-06-26 18:38:35 +00003222 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003223 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003224
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003225 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003226 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003227 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3228 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003229 return;
3230 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003231 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003232 // FIXME: do we need to check if the type is NSString*? What are the
3233 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003234 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003235 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003236 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3237 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003238 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003239 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003240 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003241 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003242 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003243 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3244 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003245 return;
3246 }
3247
3248 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003249 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003250 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003251 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3252 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003253 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003254 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003255 return;
3256 }
3257
3258 // check if the function is variadic if the 3rd argument non-zero
3259 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003260 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003261 ++NumArgs; // +1 for ...
3262 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003263 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003264 return;
3265 }
3266 }
3267
Chris Lattner3c73c412008-11-19 08:23:25 +00003268 // strftime requires FirstArg to be 0 because it doesn't read from any
3269 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003270 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003271 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003272 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3273 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003274 return;
3275 }
3276 // if 0 it disables parameter checking (to use with e.g. va_list)
3277 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003278 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003279 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003280 return;
3281 }
3282
Rafael Espindola599f1b72012-05-13 03:25:18 +00003283 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3284 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003285 FirstArg.getZExtValue(),
3286 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003287 if (NewAttr)
3288 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003289}
3290
Chandler Carruth1b03c872011-07-02 00:01:44 +00003291static void handleTransparentUnionAttr(Sema &S, Decl *D,
3292 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003293 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003294 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003295 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003296
Chris Lattner6b6b5372008-06-26 18:38:35 +00003297
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003298 // Try to find the underlying union declaration.
3299 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003300 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003301 if (TD && TD->getUnderlyingType()->isUnionType())
3302 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3303 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003304 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003305
3306 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003307 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003308 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003309 return;
3310 }
3311
John McCall5e1cdac2011-10-07 06:10:15 +00003312 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003313 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003314 diag::warn_transparent_union_attribute_not_definition);
3315 return;
3316 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003317
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003318 RecordDecl::field_iterator Field = RD->field_begin(),
3319 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003320 if (Field == FieldEnd) {
3321 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3322 return;
3323 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003324
David Blaikie581deb32012-06-06 20:45:41 +00003325 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003326 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003327 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003328 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003329 diag::warn_transparent_union_attribute_floating)
3330 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003331 return;
3332 }
3333
3334 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3335 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3336 for (; Field != FieldEnd; ++Field) {
3337 QualType FieldType = Field->getType();
3338 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3339 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3340 // Warn if we drop the attribute.
3341 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003342 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003343 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003344 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003345 diag::warn_transparent_union_attribute_field_size_align)
3346 << isSize << Field->getDeclName() << FieldBits;
3347 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003348 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003349 diag::note_transparent_union_first_field_size_align)
3350 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003351 return;
3352 }
3353 }
3354
Michael Han51d8c522013-01-24 16:46:58 +00003355 RD->addAttr(::new (S.Context)
3356 TransparentUnionAttr(Attr.getRange(), S.Context,
3357 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003358}
3359
Chandler Carruth1b03c872011-07-02 00:01:44 +00003360static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003361 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003362 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003363 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003364
Peter Collingbourne7a730022010-11-23 20:45:58 +00003365 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003366 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003367
Chris Lattner6b6b5372008-06-26 18:38:35 +00003368 // Make sure that there is a string literal as the annotation's single
3369 // argument.
3370 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00003371 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00003372 return;
3373 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003374
3375 // Don't duplicate annotations that are already set.
3376 for (specific_attr_iterator<AnnotateAttr>
3377 i = D->specific_attr_begin<AnnotateAttr>(),
3378 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3379 if ((*i)->getAnnotation() == SE->getString())
3380 return;
3381 }
Michael Han51d8c522013-01-24 16:46:58 +00003382
3383 D->addAttr(::new (S.Context)
3384 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3385 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003386}
3387
Chandler Carruth1b03c872011-07-02 00:01:44 +00003388static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003389 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003390 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003391 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003392 return;
3393 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003394
Richard Smithbe507b62013-02-01 08:12:08 +00003395 if (Attr.getNumArgs() == 0) {
3396 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3397 true, 0, Attr.getAttributeSpellingListIndex()));
3398 return;
3399 }
3400
Richard Smithf6565a92013-02-22 08:32:16 +00003401 Expr *E = Attr.getArg(0);
3402 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3403 S.Diag(Attr.getEllipsisLoc(),
3404 diag::err_pack_expansion_without_parameter_packs);
3405 return;
3406 }
3407
3408 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3409 return;
3410
3411 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3412 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003413}
3414
3415void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003416 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003417 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3418 SourceLocation AttrLoc = AttrRange.getBegin();
3419
Richard Smith4cd81c52013-01-29 09:02:09 +00003420 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003421 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003422 // C++11 [dcl.align]p1:
3423 // An alignment-specifier may be applied to a variable or to a class
3424 // data member, but it shall not be applied to a bit-field, a function
3425 // parameter, the formal parameter of a catch clause, or a variable
3426 // declared with the register storage class specifier. An
3427 // alignment-specifier may also be applied to the declaration of a class
3428 // or enumeration type.
3429 // C11 6.7.5/2:
3430 // An alignment attribute shall not be specified in a declaration of
3431 // a typedef, or a bit-field, or a function, or a parameter, or an
3432 // object declared with the register storage-class specifier.
3433 int DiagKind = -1;
3434 if (isa<ParmVarDecl>(D)) {
3435 DiagKind = 0;
3436 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3437 if (VD->getStorageClass() == SC_Register)
3438 DiagKind = 1;
3439 if (VD->isExceptionVariable())
3440 DiagKind = 2;
3441 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3442 if (FD->isBitField())
3443 DiagKind = 3;
3444 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003445 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3446 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003447 << (TmpAttr.isC11() ? ExpectedVariableOrField
3448 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003449 return;
3450 }
3451 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003452 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003453 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003454 return;
3455 }
3456 }
3457
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003458 if (E->isTypeDependent() || E->isValueDependent()) {
3459 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003460 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3461 AA->setPackExpansion(IsPackExpansion);
3462 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003463 return;
3464 }
Michael Hana31f65b2013-02-01 01:19:17 +00003465
Sean Huntcf807c42010-08-18 23:23:40 +00003466 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003467 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003468 ExprResult ICE
3469 = VerifyIntegerConstantExpression(E, &Alignment,
3470 diag::err_aligned_attribute_argument_not_int,
3471 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003472 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003473 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003474
3475 // C++11 [dcl.align]p2:
3476 // -- if the constant expression evaluates to zero, the alignment
3477 // specifier shall have no effect
3478 // C11 6.7.5p6:
3479 // An alignment specification of zero has no effect.
3480 if (!(TmpAttr.isAlignas() && !Alignment) &&
3481 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003482 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3483 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003484 return;
3485 }
Michael Hana31f65b2013-02-01 01:19:17 +00003486
Richard Smithbe507b62013-02-01 08:12:08 +00003487 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003488 // We've already verified it's a power of 2, now let's make sure it's
3489 // 8192 or less.
3490 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003491 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003492 << E->getSourceRange();
3493 return;
3494 }
3495 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003496
Richard Smithf6565a92013-02-22 08:32:16 +00003497 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3498 ICE.take(), SpellingListIndex);
3499 AA->setPackExpansion(IsPackExpansion);
3500 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003501}
3502
Michael Hana31f65b2013-02-01 01:19:17 +00003503void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003504 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003505 // FIXME: Cache the number on the Attr object if non-dependent?
3506 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003507 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3508 SpellingListIndex);
3509 AA->setPackExpansion(IsPackExpansion);
3510 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003511}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003512
Richard Smithbe507b62013-02-01 08:12:08 +00003513void Sema::CheckAlignasUnderalignment(Decl *D) {
3514 assert(D->hasAttrs() && "no attributes on decl");
3515
3516 QualType Ty;
3517 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3518 Ty = VD->getType();
3519 else
3520 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003521 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003522 return;
3523
3524 // C++11 [dcl.align]p5, C11 6.7.5/4:
3525 // The combined effect of all alignment attributes in a declaration shall
3526 // not specify an alignment that is less strict than the alignment that
3527 // would otherwise be required for the entity being declared.
3528 AlignedAttr *AlignasAttr = 0;
3529 unsigned Align = 0;
3530 for (specific_attr_iterator<AlignedAttr>
3531 I = D->specific_attr_begin<AlignedAttr>(),
3532 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3533 if (I->isAlignmentDependent())
3534 return;
3535 if (I->isAlignas())
3536 AlignasAttr = *I;
3537 Align = std::max(Align, I->getAlignment(Context));
3538 }
3539
3540 if (AlignasAttr && Align) {
3541 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3542 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3543 if (NaturalAlign > RequestedAlign)
3544 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3545 << Ty << (unsigned)NaturalAlign.getQuantity();
3546 }
3547}
3548
Chandler Carruthd309c812011-07-01 23:49:16 +00003549/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003550/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003551///
Mike Stumpbf916502009-07-24 19:02:52 +00003552/// Despite what would be logical, the mode attribute is a decl attribute, not a
3553/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3554/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003555static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003556 // This attribute isn't documented, but glibc uses it. It changes
3557 // the width of an int or unsigned int to the specified size.
3558
3559 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003560 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003561 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003562
Chris Lattnerfbf13472008-06-27 22:18:37 +00003563
3564 IdentifierInfo *Name = Attr.getParameterName();
3565 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003566 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003567 return;
3568 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003569
Chris Lattner5f9e2722011-07-23 10:55:15 +00003570 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003571
3572 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003573 if (Str.startswith("__") && Str.endswith("__"))
3574 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003575
3576 unsigned DestWidth = 0;
3577 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003578 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003579 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003580 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003581 switch (Str[0]) {
3582 case 'Q': DestWidth = 8; break;
3583 case 'H': DestWidth = 16; break;
3584 case 'S': DestWidth = 32; break;
3585 case 'D': DestWidth = 64; break;
3586 case 'X': DestWidth = 96; break;
3587 case 'T': DestWidth = 128; break;
3588 }
3589 if (Str[1] == 'F') {
3590 IntegerMode = false;
3591 } else if (Str[1] == 'C') {
3592 IntegerMode = false;
3593 ComplexMode = true;
3594 } else if (Str[1] != 'I') {
3595 DestWidth = 0;
3596 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003597 break;
3598 case 4:
3599 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3600 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003601 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003602 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003603 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003604 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003605 break;
3606 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003607 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003608 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003609 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003610 case 11:
3611 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003612 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003613 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003614 }
3615
3616 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003617 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003618 OldTy = TD->getUnderlyingType();
3619 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3620 OldTy = VD->getType();
3621 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003622 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003623 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003624 return;
3625 }
Eli Friedman73397492009-03-03 06:41:03 +00003626
John McCall183700f2009-09-21 23:43:11 +00003627 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003628 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3629 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003630 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003631 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3632 } else if (ComplexMode) {
3633 if (!OldTy->isComplexType())
3634 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3635 } else {
3636 if (!OldTy->isFloatingType())
3637 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3638 }
3639
Mike Stump390b4cc2009-05-16 07:39:55 +00003640 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3641 // and friends, at least with glibc.
3642 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3643 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003644 // FIXME: Make sure floating-point mappings are accurate
3645 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003646 QualType NewTy;
3647 switch (DestWidth) {
3648 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003649 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003650 return;
3651 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003652 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003653 return;
3654 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003655 if (!IntegerMode) {
3656 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3657 return;
3658 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003659 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003660 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003661 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003662 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003663 break;
3664 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003665 if (!IntegerMode) {
3666 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3667 return;
3668 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003669 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003670 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003671 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003672 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003673 break;
3674 case 32:
3675 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003676 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003677 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003678 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003679 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003680 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003681 break;
3682 case 64:
3683 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003684 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003685 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003686 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003687 NewTy = S.Context.LongTy;
3688 else
3689 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003690 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003691 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003692 NewTy = S.Context.UnsignedLongTy;
3693 else
3694 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003695 break;
Eli Friedman73397492009-03-03 06:41:03 +00003696 case 96:
3697 NewTy = S.Context.LongDoubleTy;
3698 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003699 case 128:
3700 if (!IntegerMode) {
3701 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3702 return;
3703 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003704 if (OldTy->isSignedIntegerType())
3705 NewTy = S.Context.Int128Ty;
3706 else
3707 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003708 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003709 }
3710
Eli Friedman73397492009-03-03 06:41:03 +00003711 if (ComplexMode) {
3712 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003713 }
3714
3715 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003716 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003717 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003718 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003719 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003720 cast<ValueDecl>(D)->setType(NewTy);
3721}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003722
Chandler Carruth1b03c872011-07-02 00:01:44 +00003723static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003724 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003725 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003726 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003727
Nick Lewycky78d1a102012-07-24 01:40:49 +00003728 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3729 if (!VD->hasGlobalStorage())
3730 S.Diag(Attr.getLoc(),
3731 diag::warn_attribute_requires_functions_or_static_globals)
3732 << Attr.getName();
3733 } else if (!isFunctionOrMethod(D)) {
3734 S.Diag(Attr.getLoc(),
3735 diag::warn_attribute_requires_functions_or_static_globals)
3736 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003737 return;
3738 }
Mike Stumpbf916502009-07-24 19:02:52 +00003739
Michael Han51d8c522013-01-24 16:46:58 +00003740 D->addAttr(::new (S.Context)
3741 NoDebugAttr(Attr.getRange(), S.Context,
3742 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003743}
3744
Chandler Carruth1b03c872011-07-02 00:01:44 +00003745static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003746 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003747 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003748 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003749
Mike Stumpbf916502009-07-24 19:02:52 +00003750
Chandler Carruth87c44602011-07-01 23:49:12 +00003751 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003752 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003753 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003754 return;
3755 }
Mike Stumpbf916502009-07-24 19:02:52 +00003756
Michael Han51d8c522013-01-24 16:46:58 +00003757 D->addAttr(::new (S.Context)
3758 NoInlineAttr(Attr.getRange(), S.Context,
3759 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003760}
3761
Chandler Carruth1b03c872011-07-02 00:01:44 +00003762static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3763 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003764 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003765 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003766 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003767
Chris Lattner7255a2d2010-06-22 00:03:40 +00003768
Chandler Carruth87c44602011-07-01 23:49:12 +00003769 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003770 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003771 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003772 return;
3773 }
3774
Michael Han51d8c522013-01-24 16:46:58 +00003775 D->addAttr(::new (S.Context)
3776 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3777 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003778}
3779
Chandler Carruth1b03c872011-07-02 00:01:44 +00003780static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003781 if (S.LangOpts.CUDA) {
3782 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003783 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003784 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3785 return;
3786 }
3787
Chandler Carruth87c44602011-07-01 23:49:12 +00003788 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003789 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003790 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003791 return;
3792 }
3793
Michael Han51d8c522013-01-24 16:46:58 +00003794 D->addAttr(::new (S.Context)
3795 CUDAConstantAttr(Attr.getRange(), S.Context,
3796 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003797 } else {
3798 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3799 }
3800}
3801
Chandler Carruth1b03c872011-07-02 00:01:44 +00003802static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003803 if (S.LangOpts.CUDA) {
3804 // check the attribute arguments.
3805 if (Attr.getNumArgs() != 0) {
3806 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3807 return;
3808 }
3809
Chandler Carruth87c44602011-07-01 23:49:12 +00003810 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003811 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003812 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003813 return;
3814 }
3815
Michael Han51d8c522013-01-24 16:46:58 +00003816 D->addAttr(::new (S.Context)
3817 CUDADeviceAttr(Attr.getRange(), S.Context,
3818 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003819 } else {
3820 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3821 }
3822}
3823
Chandler Carruth1b03c872011-07-02 00:01:44 +00003824static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003825 if (S.LangOpts.CUDA) {
3826 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003827 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003828 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003829
Chandler Carruth87c44602011-07-01 23:49:12 +00003830 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003831 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003832 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003833 return;
3834 }
3835
Chandler Carruth87c44602011-07-01 23:49:12 +00003836 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003837 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003838 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003839 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003840 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3841 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003842 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003843 "void");
3844 } else {
3845 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3846 << FD->getType();
3847 }
3848 return;
3849 }
3850
Michael Han51d8c522013-01-24 16:46:58 +00003851 D->addAttr(::new (S.Context)
3852 CUDAGlobalAttr(Attr.getRange(), S.Context,
3853 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003854 } else {
3855 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3856 }
3857}
3858
Chandler Carruth1b03c872011-07-02 00:01:44 +00003859static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003860 if (S.LangOpts.CUDA) {
3861 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003862 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003863 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003864
Peter Collingbourneced76712010-12-01 03:15:31 +00003865
Chandler Carruth87c44602011-07-01 23:49:12 +00003866 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003867 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003868 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003869 return;
3870 }
3871
Michael Han51d8c522013-01-24 16:46:58 +00003872 D->addAttr(::new (S.Context)
3873 CUDAHostAttr(Attr.getRange(), S.Context,
3874 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003875 } else {
3876 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3877 }
3878}
3879
Chandler Carruth1b03c872011-07-02 00:01:44 +00003880static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003881 if (S.LangOpts.CUDA) {
3882 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003883 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003884 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003885
Chandler Carruth87c44602011-07-01 23:49:12 +00003886 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003887 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003888 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003889 return;
3890 }
3891
Michael Han51d8c522013-01-24 16:46:58 +00003892 D->addAttr(::new (S.Context)
3893 CUDASharedAttr(Attr.getRange(), S.Context,
3894 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003895 } else {
3896 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3897 }
3898}
3899
Chandler Carruth1b03c872011-07-02 00:01:44 +00003900static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003901 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003902 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003903 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003904
Chandler Carruth87c44602011-07-01 23:49:12 +00003905 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003906 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003907 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003908 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003909 return;
3910 }
Mike Stumpbf916502009-07-24 19:02:52 +00003911
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003912 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003913 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003914 return;
3915 }
Mike Stumpbf916502009-07-24 19:02:52 +00003916
Michael Han51d8c522013-01-24 16:46:58 +00003917 D->addAttr(::new (S.Context)
3918 GNUInlineAttr(Attr.getRange(), S.Context,
3919 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003920}
3921
Chandler Carruth1b03c872011-07-02 00:01:44 +00003922static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003923 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003924
Aaron Ballmanfff32482012-12-09 17:45:41 +00003925 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003926 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003927 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3928 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003929 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003930 return;
3931
Chandler Carruth87c44602011-07-01 23:49:12 +00003932 if (!isa<ObjCMethodDecl>(D)) {
3933 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3934 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003935 return;
3936 }
3937
Chandler Carruth87c44602011-07-01 23:49:12 +00003938 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003939 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003940 D->addAttr(::new (S.Context)
3941 FastCallAttr(Attr.getRange(), S.Context,
3942 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003943 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003944 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003945 D->addAttr(::new (S.Context)
3946 StdCallAttr(Attr.getRange(), S.Context,
3947 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003948 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003949 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003950 D->addAttr(::new (S.Context)
3951 ThisCallAttr(Attr.getRange(), S.Context,
3952 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003953 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003954 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003955 D->addAttr(::new (S.Context)
3956 CDeclAttr(Attr.getRange(), S.Context,
3957 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003958 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003959 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003960 D->addAttr(::new (S.Context)
3961 PascalAttr(Attr.getRange(), S.Context,
3962 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003963 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003964 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003965 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003966 switch (CC) {
3967 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003968 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003969 break;
3970 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003971 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003972 break;
3973 default:
3974 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003975 }
3976
Michael Han51d8c522013-01-24 16:46:58 +00003977 D->addAttr(::new (S.Context)
3978 PcsAttr(Attr.getRange(), S.Context, PCS,
3979 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003980 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003981 }
Derek Schuff263366f2012-10-16 22:30:41 +00003982 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003983 D->addAttr(::new (S.Context)
3984 PnaclCallAttr(Attr.getRange(), S.Context,
3985 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003986 return;
Guy Benyei38980082012-12-25 08:53:55 +00003987 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003988 D->addAttr(::new (S.Context)
3989 IntelOclBiccAttr(Attr.getRange(), S.Context,
3990 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003991 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003992
Abramo Bagnarae215f722010-04-30 13:10:51 +00003993 default:
3994 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003995 }
3996}
3997
Chandler Carruth1b03c872011-07-02 00:01:44 +00003998static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003999 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004000 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00004001}
4002
Guy Benyei1db70402013-03-24 13:58:12 +00004003static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
4004 assert(!Attr.isInvalid());
4005
4006 Expr *E = Attr.getArg(0);
4007 llvm::APSInt ArgNum(32);
4008 if (E->isTypeDependent() || E->isValueDependent() ||
4009 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
4010 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
4011 << Attr.getName()->getName() << E->getSourceRange();
4012 return;
4013 }
4014
4015 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
4016 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
4017}
4018
Aaron Ballmanfff32482012-12-09 17:45:41 +00004019bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
4020 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00004021 if (attr.isInvalid())
4022 return true;
4023
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004024 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
4025 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
4026 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00004027 attr.setInvalid();
4028 return true;
4029 }
4030
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004031 // TODO: diagnose uses of these conventions on the wrong target. Or, better
4032 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00004033 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004034 case AttributeList::AT_CDecl: CC = CC_C; break;
4035 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
4036 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
4037 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
4038 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
4039 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004040 Expr *Arg = attr.getArg(0);
4041 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004042 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004043 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
4044 << "pcs" << 1;
4045 attr.setInvalid();
4046 return true;
4047 }
4048
Chris Lattner5f9e2722011-07-23 10:55:15 +00004049 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004050 if (StrRef == "aapcs") {
4051 CC = CC_AAPCS;
4052 break;
4053 } else if (StrRef == "aapcs-vfp") {
4054 CC = CC_AAPCS_VFP;
4055 break;
4056 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004057
4058 attr.setInvalid();
4059 Diag(attr.getLoc(), diag::err_invalid_pcs);
4060 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004061 }
Derek Schuff263366f2012-10-16 22:30:41 +00004062 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00004063 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00004064 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00004065 }
4066
Aaron Ballman82bfa192012-10-02 14:26:08 +00004067 const TargetInfo &TI = Context.getTargetInfo();
4068 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
4069 if (A == TargetInfo::CCCR_Warning) {
4070 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00004071
4072 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
4073 if (FD)
4074 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
4075 TargetInfo::CCMT_NonMember;
4076 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00004077 }
4078
John McCall711c52b2011-01-05 12:14:39 +00004079 return false;
4080}
4081
Chandler Carruth1b03c872011-07-02 00:01:44 +00004082static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004083 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00004084
4085 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00004086 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00004087 return;
4088
Chandler Carruth87c44602011-07-01 23:49:12 +00004089 if (!isa<ObjCMethodDecl>(D)) {
4090 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4091 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004092 return;
4093 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004094
Michael Han51d8c522013-01-24 16:46:58 +00004095 D->addAttr(::new (S.Context)
4096 RegparmAttr(Attr.getRange(), S.Context, numParams,
4097 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004098}
4099
4100/// Checks a regparm attribute, returning true if it is ill-formed and
4101/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004102bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4103 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004104 return true;
4105
Chandler Carruth87c44602011-07-01 23:49:12 +00004106 if (Attr.getNumArgs() != 1) {
4107 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
4108 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004109 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004110 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004111
Chandler Carruth87c44602011-07-01 23:49:12 +00004112 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004113 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004114 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004115 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004116 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004117 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004118 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004119 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004120 }
4121
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004122 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004123 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004124 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004125 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004126 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004127 }
4128
John McCall711c52b2011-01-05 12:14:39 +00004129 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004130 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004131 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004132 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004133 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004134 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004135 }
4136
John McCall711c52b2011-01-05 12:14:39 +00004137 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004138}
4139
Chandler Carruth1b03c872011-07-02 00:01:44 +00004140static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004141 if (S.LangOpts.CUDA) {
4142 // check the attribute arguments.
4143 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004144 // FIXME: 0 is not okay.
4145 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004146 return;
4147 }
4148
Chandler Carruth87c44602011-07-01 23:49:12 +00004149 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004150 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004151 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004152 return;
4153 }
4154
4155 Expr *MaxThreadsExpr = Attr.getArg(0);
4156 llvm::APSInt MaxThreads(32);
4157 if (MaxThreadsExpr->isTypeDependent() ||
4158 MaxThreadsExpr->isValueDependent() ||
4159 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
4160 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4161 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
4162 return;
4163 }
4164
4165 llvm::APSInt MinBlocks(32);
4166 if (Attr.getNumArgs() > 1) {
4167 Expr *MinBlocksExpr = Attr.getArg(1);
4168 if (MinBlocksExpr->isTypeDependent() ||
4169 MinBlocksExpr->isValueDependent() ||
4170 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
4171 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4172 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
4173 return;
4174 }
4175 }
4176
Michael Han51d8c522013-01-24 16:46:58 +00004177 D->addAttr(::new (S.Context)
4178 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4179 MaxThreads.getZExtValue(),
4180 MinBlocks.getZExtValue(),
4181 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004182 } else {
4183 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4184 }
4185}
4186
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004187static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4188 const AttributeList &Attr) {
4189 StringRef AttrName = Attr.getName()->getName();
4190 if (!Attr.getParameterName()) {
4191 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4192 << Attr.getName() << /* arg num = */ 1;
4193 return;
4194 }
4195
4196 if (Attr.getNumArgs() != 2) {
4197 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4198 << /* required args = */ 3;
4199 return;
4200 }
4201
4202 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4203
4204 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4205 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4206 << Attr.getName() << ExpectedFunctionOrMethod;
4207 return;
4208 }
4209
4210 uint64_t ArgumentIdx;
4211 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4212 Attr.getLoc(), 2,
4213 Attr.getArg(0), ArgumentIdx))
4214 return;
4215
4216 uint64_t TypeTagIdx;
4217 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4218 Attr.getLoc(), 3,
4219 Attr.getArg(1), TypeTagIdx))
4220 return;
4221
4222 bool IsPointer = (AttrName == "pointer_with_type_tag");
4223 if (IsPointer) {
4224 // Ensure that buffer has a pointer type.
4225 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4226 if (!BufferTy->isPointerType()) {
4227 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
4228 << AttrName;
4229 }
4230 }
4231
Michael Han51d8c522013-01-24 16:46:58 +00004232 D->addAttr(::new (S.Context)
4233 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4234 ArgumentIdx, TypeTagIdx, IsPointer,
4235 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004236}
4237
4238static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4239 const AttributeList &Attr) {
4240 IdentifierInfo *PointerKind = Attr.getParameterName();
4241 if (!PointerKind) {
4242 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4243 << "type_tag_for_datatype" << 1;
4244 return;
4245 }
4246
4247 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4248
Michael Han51d8c522013-01-24 16:46:58 +00004249 D->addAttr(::new (S.Context)
4250 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4251 MatchingCType,
4252 Attr.getLayoutCompatible(),
4253 Attr.getMustBeNull(),
4254 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004255}
4256
Chris Lattner0744e5f2008-06-29 00:23:49 +00004257//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004258// Checker-specific attribute handlers.
4259//===----------------------------------------------------------------------===//
4260
John McCallc7ad3812011-01-25 03:31:58 +00004261static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004262 return type->isDependentType() ||
4263 type->isObjCObjectPointerType() ||
4264 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004265}
4266static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004267 return type->isDependentType() ||
4268 type->isPointerType() ||
4269 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004270}
4271
Chandler Carruth1b03c872011-07-02 00:01:44 +00004272static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004273 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004274 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004275 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004276 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004277 return;
4278 }
4279
4280 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004281 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004282 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4283 cf = false;
4284 } else {
4285 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4286 cf = true;
4287 }
4288
4289 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004290 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004291 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004292 return;
4293 }
4294
4295 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004296 param->addAttr(::new (S.Context)
4297 CFConsumedAttr(Attr.getRange(), S.Context,
4298 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004299 else
Michael Han51d8c522013-01-24 16:46:58 +00004300 param->addAttr(::new (S.Context)
4301 NSConsumedAttr(Attr.getRange(), S.Context,
4302 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004303}
4304
Chandler Carruth1b03c872011-07-02 00:01:44 +00004305static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4306 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004307 if (!isa<ObjCMethodDecl>(D)) {
4308 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004309 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004310 return;
4311 }
4312
Michael Han51d8c522013-01-24 16:46:58 +00004313 D->addAttr(::new (S.Context)
4314 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4315 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004316}
4317
Chandler Carruth1b03c872011-07-02 00:01:44 +00004318static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4319 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004320
John McCallc7ad3812011-01-25 03:31:58 +00004321 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004322
Chandler Carruth87c44602011-07-01 23:49:12 +00004323 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004324 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004325 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004326 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004327 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004328 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4329 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004330 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004331 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004332 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004333 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004334 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004335 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004336 return;
4337 }
Mike Stumpbf916502009-07-24 19:02:52 +00004338
John McCallc7ad3812011-01-25 03:31:58 +00004339 bool typeOK;
4340 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004341 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004342 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004343 case AttributeList::AT_NSReturnsAutoreleased:
4344 case AttributeList::AT_NSReturnsRetained:
4345 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004346 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4347 cf = false;
4348 break;
4349
Sean Hunt8e083e72012-06-19 23:57:03 +00004350 case AttributeList::AT_CFReturnsRetained:
4351 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004352 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4353 cf = true;
4354 break;
4355 }
4356
4357 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004358 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004359 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004360 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004361 }
Mike Stumpbf916502009-07-24 19:02:52 +00004362
Chandler Carruth87c44602011-07-01 23:49:12 +00004363 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004364 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004365 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004366 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004367 D->addAttr(::new (S.Context)
4368 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4369 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004370 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004371 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004372 D->addAttr(::new (S.Context)
4373 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4374 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004375 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004376 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004377 D->addAttr(::new (S.Context)
4378 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4379 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004380 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004381 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004382 D->addAttr(::new (S.Context)
4383 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4384 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004385 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004386 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004387 D->addAttr(::new (S.Context)
4388 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4389 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004390 return;
4391 };
4392}
4393
John McCalldc7c5ad2011-07-22 08:53:00 +00004394static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4395 const AttributeList &attr) {
4396 SourceLocation loc = attr.getLoc();
4397
4398 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4399
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004400 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004401 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004402 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004403 return;
4404 }
4405
4406 // Check that the method returns a normal pointer.
4407 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004408
4409 if (!resultType->isReferenceType() &&
4410 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004411 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4412 << SourceRange(loc)
4413 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4414
4415 // Drop the attribute.
4416 return;
4417 }
4418
Michael Han51d8c522013-01-24 16:46:58 +00004419 method->addAttr(::new (S.Context)
4420 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4421 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004422}
4423
Fariborz Jahanian84101132012-09-07 23:46:23 +00004424static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4425 const AttributeList &attr) {
4426 SourceLocation loc = attr.getLoc();
4427 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4428
4429 if (!method) {
4430 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4431 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4432 return;
4433 }
4434 DeclContext *DC = method->getDeclContext();
4435 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4436 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4437 << attr.getName() << 0;
4438 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4439 return;
4440 }
4441 if (method->getMethodFamily() == OMF_dealloc) {
4442 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4443 << attr.getName() << 1;
4444 return;
4445 }
4446
Michael Han51d8c522013-01-24 16:46:58 +00004447 method->addAttr(::new (S.Context)
4448 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4449 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004450}
4451
John McCall8dfac0b2011-09-30 05:12:12 +00004452/// Handle cf_audited_transfer and cf_unknown_transfer.
4453static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4454 if (!isa<FunctionDecl>(D)) {
4455 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004456 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004457 return;
4458 }
4459
Sean Hunt8e083e72012-06-19 23:57:03 +00004460 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004461
4462 // Check whether there's a conflicting attribute already present.
4463 Attr *Existing;
4464 if (IsAudited) {
4465 Existing = D->getAttr<CFUnknownTransferAttr>();
4466 } else {
4467 Existing = D->getAttr<CFAuditedTransferAttr>();
4468 }
4469 if (Existing) {
4470 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4471 << A.getName()
4472 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4473 << A.getRange() << Existing->getRange();
4474 return;
4475 }
4476
4477 // All clear; add the attribute.
4478 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004479 D->addAttr(::new (S.Context)
4480 CFAuditedTransferAttr(A.getRange(), S.Context,
4481 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004482 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004483 D->addAttr(::new (S.Context)
4484 CFUnknownTransferAttr(A.getRange(), S.Context,
4485 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004486 }
4487}
4488
John McCallfe98da02011-09-29 07:17:38 +00004489static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4490 const AttributeList &Attr) {
4491 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4492 if (!RD || RD->isUnion()) {
4493 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004494 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004495 }
4496
4497 IdentifierInfo *ParmName = Attr.getParameterName();
4498
4499 // In Objective-C, verify that the type names an Objective-C type.
4500 // We don't want to check this outside of ObjC because people sometimes
4501 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004502 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004503 // Check for an existing type with this name.
4504 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4505 Sema::LookupOrdinaryName);
4506 if (S.LookupName(R, Sc)) {
4507 NamedDecl *Target = R.getFoundDecl();
4508 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4509 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4510 S.Diag(Target->getLocStart(), diag::note_declared_at);
4511 }
4512 }
4513 }
4514
Michael Han51d8c522013-01-24 16:46:58 +00004515 D->addAttr(::new (S.Context)
4516 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4517 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004518}
4519
Chandler Carruth1b03c872011-07-02 00:01:44 +00004520static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4521 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004522 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004523
Chandler Carruth87c44602011-07-01 23:49:12 +00004524 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004525 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004526}
4527
Chandler Carruth1b03c872011-07-02 00:01:44 +00004528static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4529 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004530 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004531 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004532 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004533 return;
4534 }
4535
Chandler Carruth87c44602011-07-01 23:49:12 +00004536 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004537 QualType type = vd->getType();
4538
4539 if (!type->isDependentType() &&
4540 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004541 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004542 << type;
4543 return;
4544 }
4545
4546 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4547
4548 // If we have no lifetime yet, check the lifetime we're presumably
4549 // going to infer.
4550 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4551 lifetime = type->getObjCARCImplicitLifetime();
4552
4553 switch (lifetime) {
4554 case Qualifiers::OCL_None:
4555 assert(type->isDependentType() &&
4556 "didn't infer lifetime for non-dependent type?");
4557 break;
4558
4559 case Qualifiers::OCL_Weak: // meaningful
4560 case Qualifiers::OCL_Strong: // meaningful
4561 break;
4562
4563 case Qualifiers::OCL_ExplicitNone:
4564 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004565 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004566 << (lifetime == Qualifiers::OCL_Autoreleasing);
4567 break;
4568 }
4569
Chandler Carruth87c44602011-07-01 23:49:12 +00004570 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004571 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4572 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004573}
4574
Francois Pichet11542142010-12-19 06:50:37 +00004575//===----------------------------------------------------------------------===//
4576// Microsoft specific attribute handlers.
4577//===----------------------------------------------------------------------===//
4578
Chandler Carruth1b03c872011-07-02 00:01:44 +00004579static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004580 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00004581 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00004582 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00004583 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004584
Francois Pichet11542142010-12-19 06:50:37 +00004585 Expr *Arg = Attr.getArg(0);
4586 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004587 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004588 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
4589 << "uuid" << 1;
4590 return;
4591 }
4592
Chris Lattner5f9e2722011-07-23 10:55:15 +00004593 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004594
4595 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4596 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004597
Francois Pichetd3d3be92010-12-20 01:41:49 +00004598 // Validate GUID length.
4599 if (IsCurly && StrRef.size() != 38) {
4600 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4601 return;
4602 }
4603 if (!IsCurly && StrRef.size() != 36) {
4604 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4605 return;
4606 }
4607
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004608 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00004609 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00004610 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00004611 if (IsCurly) // Skip the optional '{'
4612 ++I;
4613
4614 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004615 if (i == 8 || i == 13 || i == 18 || i == 23) {
4616 if (*I != '-') {
4617 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4618 return;
4619 }
Jordan Rose3f6f51e2013-02-08 22:30:41 +00004620 } else if (!isHexDigit(*I)) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004621 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4622 return;
4623 }
4624 I++;
4625 }
Francois Pichet11542142010-12-19 06:50:37 +00004626
Michael Han51d8c522013-01-24 16:46:58 +00004627 D->addAttr(::new (S.Context)
4628 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4629 Attr.getAttributeSpellingListIndex()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00004630 } else
Francois Pichet11542142010-12-19 06:50:37 +00004631 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00004632}
4633
John McCallc052dbb2012-05-22 21:28:12 +00004634static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nico Weber7b89ab72012-11-07 21:31:36 +00004635 if (!S.LangOpts.MicrosoftExt) {
John McCallc052dbb2012-05-22 21:28:12 +00004636 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Nico Weber7b89ab72012-11-07 21:31:36 +00004637 return;
4638 }
4639
4640 AttributeList::Kind Kind = Attr.getKind();
4641 if (Kind == AttributeList::AT_SingleInheritance)
4642 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004643 ::new (S.Context)
4644 SingleInheritanceAttr(Attr.getRange(), S.Context,
4645 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004646 else if (Kind == AttributeList::AT_MultipleInheritance)
4647 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004648 ::new (S.Context)
4649 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4650 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004651 else if (Kind == AttributeList::AT_VirtualInheritance)
4652 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004653 ::new (S.Context)
4654 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4655 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004656}
4657
4658static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4659 if (S.LangOpts.MicrosoftExt) {
4660 AttributeList::Kind Kind = Attr.getKind();
Sean Hunt8e083e72012-06-19 23:57:03 +00004661 if (Kind == AttributeList::AT_Ptr32)
John McCallc052dbb2012-05-22 21:28:12 +00004662 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004663 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context,
4664 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004665 else if (Kind == AttributeList::AT_Ptr64)
John McCallc052dbb2012-05-22 21:28:12 +00004666 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004667 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context,
4668 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004669 else if (Kind == AttributeList::AT_Win64)
John McCallc052dbb2012-05-22 21:28:12 +00004670 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004671 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4672 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004673 } else
4674 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4675}
4676
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004677static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4678 if (S.LangOpts.MicrosoftExt)
Michael Han51d8c522013-01-24 16:46:58 +00004679 D->addAttr(::new (S.Context)
4680 ForceInlineAttr(Attr.getRange(), S.Context,
4681 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004682 else
4683 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4684}
4685
Ted Kremenekb71368d2009-05-09 02:44:38 +00004686//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004687// Top Level Sema Entry Points
4688//===----------------------------------------------------------------------===//
4689
Chandler Carruth1b03c872011-07-02 00:01:44 +00004690static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4691 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004692 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004693 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4694 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4695 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004696 default:
4697 break;
4698 }
4699}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004700
Chandler Carruth1b03c872011-07-02 00:01:44 +00004701static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4702 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004703 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004704 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4705 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4706 case AttributeList::AT_IBOutletCollection:
4707 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004708 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004709 case AttributeList::AT_ObjCGC:
4710 case AttributeList::AT_VectorSize:
4711 case AttributeList::AT_NeonVectorType:
4712 case AttributeList::AT_NeonPolyVectorType:
Mike Stumpbf916502009-07-24 19:02:52 +00004713 // Ignore these, these are type attributes, handled by
4714 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004715 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004716 case AttributeList::AT_CUDADevice:
4717 case AttributeList::AT_CUDAHost:
4718 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004719 // Ignore, this is a non-inheritable attribute, handled
4720 // by ProcessNonInheritableDeclAttr.
4721 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004722 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4723 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4724 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4725 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004726 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004727 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004728 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004729 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004730 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4731 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4732 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004733 handleDependencyAttr(S, scope, D, Attr);
4734 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004735 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4736 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4737 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004738 case AttributeList::AT_CXX11NoReturn:
4739 handleCXX11NoReturnAttr(S, D, Attr);
4740 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004741 case AttributeList::AT_Deprecated:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004742 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
4743 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004744 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4745 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004746 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004747 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004748 case AttributeList::AT_MinSize:
4749 handleMinSizeAttr(S, D, Attr);
4750 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004751 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4752 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4753 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4754 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4755 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004756 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004757 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004758 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4759 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4760 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4761 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4762 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004763 case AttributeList::AT_ownership_returns:
4764 case AttributeList::AT_ownership_takes:
4765 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004766 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004767 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4768 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4769 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4770 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4771 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4772 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4773 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004774
Sean Hunt8e083e72012-06-19 23:57:03 +00004775 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004776 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004777 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004778 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004779
Sean Hunt8e083e72012-06-19 23:57:03 +00004780 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004781 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4782
Fariborz Jahanian84101132012-09-07 23:46:23 +00004783 case AttributeList::AT_ObjCRequiresSuper:
4784 handleObjCRequiresSuperAttr(S, D, Attr); break;
4785
Sean Hunt8e083e72012-06-19 23:57:03 +00004786 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004787 handleNSBridgedAttr(S, scope, D, Attr); break;
4788
Sean Hunt8e083e72012-06-19 23:57:03 +00004789 case AttributeList::AT_CFAuditedTransfer:
4790 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004791 handleCFTransferAttr(S, D, Attr); break;
4792
Ted Kremenekb71368d2009-05-09 02:44:38 +00004793 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004794 case AttributeList::AT_CFConsumed:
4795 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4796 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004797 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004798
Sean Hunt8e083e72012-06-19 23:57:03 +00004799 case AttributeList::AT_NSReturnsAutoreleased:
4800 case AttributeList::AT_NSReturnsNotRetained:
4801 case AttributeList::AT_CFReturnsNotRetained:
4802 case AttributeList::AT_NSReturnsRetained:
4803 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004804 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004805
Tanya Lattner0df579e2012-07-09 22:06:01 +00004806 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004807 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004808 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004809
Joey Gouly37453b92013-03-08 09:42:32 +00004810 case AttributeList::AT_VecTypeHint:
4811 handleVecTypeHint(S, D, Attr); break;
4812
Joey Gouly96cead52013-03-14 09:54:43 +00004813 case AttributeList::AT_Endian:
4814 handleEndianAttr(S, D, Attr);
4815 break;
4816
Sean Hunt8e083e72012-06-19 23:57:03 +00004817 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004818 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004819
Sean Hunt8e083e72012-06-19 23:57:03 +00004820 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4821 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4822 case AttributeList::AT_Unavailable:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004823 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4824 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004825 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004826 handleArcWeakrefUnavailableAttr (S, D, Attr);
4827 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004828 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004829 handleObjCRootClassAttr(S, D, Attr);
4830 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004831 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004832 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004833 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004834 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4835 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004836 handleReturnsTwiceAttr(S, D, Attr);
4837 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004838 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004839 case AttributeList::AT_Visibility:
4840 handleVisibilityAttr(S, D, Attr, false);
4841 break;
4842 case AttributeList::AT_TypeVisibility:
4843 handleVisibilityAttr(S, D, Attr, true);
4844 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004845 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004846 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004847 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4848 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4849 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4850 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004851 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004852 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004853 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004854 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004855 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004856 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004857 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004858 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004859 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4860 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4861 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4862 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4863 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4864 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4865 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4866 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4867 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004868 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004869 // Just ignore
4870 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004871 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004872 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004873 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004874 case AttributeList::AT_StdCall:
4875 case AttributeList::AT_CDecl:
4876 case AttributeList::AT_FastCall:
4877 case AttributeList::AT_ThisCall:
4878 case AttributeList::AT_Pascal:
4879 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004880 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004881 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004882 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004883 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004884 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004885 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004886 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004887 case AttributeList::AT_OpenCLImageAccess:
4888 handleOpenCLImageAccessAttr(S, D, Attr);
4889 break;
John McCallc052dbb2012-05-22 21:28:12 +00004890
4891 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004892 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004893 handleMsStructAttr(S, D, Attr);
4894 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004895 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004896 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004897 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004898 case AttributeList::AT_SingleInheritance:
4899 case AttributeList::AT_MultipleInheritance:
4900 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004901 handleInheritanceAttr(S, D, Attr);
4902 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004903 case AttributeList::AT_Win64:
4904 case AttributeList::AT_Ptr32:
4905 case AttributeList::AT_Ptr64:
John McCallc052dbb2012-05-22 21:28:12 +00004906 handlePortabilityAttr(S, D, Attr);
4907 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004908 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004909 handleForceInlineAttr(S, D, Attr);
4910 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004911
4912 // Thread safety attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004913 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004914 handleGuardedVarAttr(S, D, Attr);
4915 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004916 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004917 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004918 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004919 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004920 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004921 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004922 case AttributeList::AT_NoSanitizeAddress:
4923 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004924 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004925 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004926 handleNoThreadSafetyAnalysis(S, D, Attr);
4927 break;
4928 case AttributeList::AT_NoSanitizeThread:
4929 handleNoSanitizeThread(S, D, Attr);
4930 break;
4931 case AttributeList::AT_NoSanitizeMemory:
4932 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004933 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004934 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004935 handleLockableAttr(S, D, Attr);
4936 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004937 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004938 handleGuardedByAttr(S, D, Attr);
4939 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004940 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004941 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004942 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004943 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004944 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004945 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004946 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004947 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004948 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004949 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004950 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004951 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004952 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004953 handleLockReturnedAttr(S, D, Attr);
4954 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004955 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004956 handleLocksExcludedAttr(S, D, Attr);
4957 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004958 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004959 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004960 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004961 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004962 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004963 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004964 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004965 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004966 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004967 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004968 handleUnlockFunAttr(S, D, Attr);
4969 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004970 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004971 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004972 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004973 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004974 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004975 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004976
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004977 // Type safety attributes.
4978 case AttributeList::AT_ArgumentWithTypeTag:
4979 handleArgumentWithTypeTagAttr(S, D, Attr);
4980 break;
4981 case AttributeList::AT_TypeTagForDatatype:
4982 handleTypeTagForDatatypeAttr(S, D, Attr);
4983 break;
4984
Chris Lattner803d0802008-06-29 00:43:07 +00004985 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004986 // Ask target about the attribute.
4987 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4988 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004989 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4990 diag::warn_unhandled_ms_attribute_ignored :
4991 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004992 break;
4993 }
4994}
4995
Peter Collingbourne60700392011-01-21 02:08:45 +00004996/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4997/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004998/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004999static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
5000 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00005001 bool NonInheritable, bool Inheritable,
5002 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00005003 if (Attr.isInvalid())
5004 return;
5005
Richard Smithcd8ab512013-01-17 01:30:42 +00005006 // Ignore C++11 attributes on declarator chunks: they appertain to the type
5007 // instead.
5008 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
5009 return;
5010
Peter Collingbourne60700392011-01-21 02:08:45 +00005011 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00005012 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00005013
5014 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00005015 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00005016}
5017
Chris Lattner803d0802008-06-29 00:43:07 +00005018/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
5019/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00005020void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00005021 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00005022 bool NonInheritable, bool Inheritable,
5023 bool IncludeCXX11Attributes) {
5024 for (const AttributeList* l = AttrList; l; l = l->getNext())
5025 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
5026 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005027
5028 // GCC accepts
5029 // static int a9 __attribute__((weakref));
5030 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00005031 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005032 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00005033 cast<NamedDecl>(D)->getNameAsString();
5034 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005035 return;
Chris Lattner803d0802008-06-29 00:43:07 +00005036 }
5037}
5038
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005039// Annotation attributes are the only attributes allowed after an access
5040// specifier.
5041bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
5042 const AttributeList *AttrList) {
5043 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00005044 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005045 handleAnnotateAttr(*this, ASDecl, *l);
5046 } else {
5047 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
5048 return true;
5049 }
5050 }
5051
5052 return false;
5053}
5054
John McCalle82247a2011-10-01 05:17:03 +00005055/// checkUnusedDeclAttributes - Check a list of attributes to see if it
5056/// contains any decl attributes that we should warn about.
5057static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
5058 for ( ; A; A = A->getNext()) {
5059 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00005060 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00005061 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
5062
5063 if (A->getKind() == AttributeList::UnknownAttribute) {
5064 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
5065 << A->getName() << A->getRange();
5066 } else {
5067 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
5068 << A->getName() << A->getRange();
5069 }
5070 }
5071}
5072
5073/// checkUnusedDeclAttributes - Given a declarator which is not being
5074/// used to build a declaration, complain about any decl attributes
5075/// which might be lying around on it.
5076void Sema::checkUnusedDeclAttributes(Declarator &D) {
5077 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
5078 ::checkUnusedDeclAttributes(*this, D.getAttributes());
5079 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
5080 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
5081}
5082
Ryan Flynne25ff832009-07-30 03:15:39 +00005083/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00005084/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00005085NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5086 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005087 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00005088 NamedDecl *NewD = 0;
5089 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00005090 FunctionDecl *NewFD;
5091 // FIXME: Missing call to CheckFunctionDeclaration().
5092 // FIXME: Mangling?
5093 // FIXME: Is the qualifier info correct?
5094 // FIXME: Is the DeclContext correct?
5095 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
5096 Loc, Loc, DeclarationName(II),
5097 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005098 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00005099 FD->hasPrototype(),
5100 false/*isConstexprSpecified*/);
5101 NewD = NewFD;
5102
5103 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005104 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00005105
5106 // Fake up parameter variables; they are declared as if this were
5107 // a typedef.
5108 QualType FDTy = FD->getType();
5109 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5110 SmallVector<ParmVarDecl*, 16> Params;
5111 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5112 AE = FT->arg_type_end(); AI != AE; ++AI) {
5113 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5114 Param->setScopeInfo(0, Params.size());
5115 Params.push_back(Param);
5116 }
David Blaikie4278c652011-09-21 18:16:56 +00005117 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005118 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005119 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5120 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005121 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005122 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005123 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00005124 if (VD->getQualifier()) {
5125 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005126 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005127 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005128 }
5129 return NewD;
5130}
5131
James Dennett1dfbd922012-06-14 21:40:34 +00005132/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005133/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005134void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005135 if (W.getUsed()) return; // only do this once
5136 W.setUsed(true);
5137 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5138 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005139 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005140 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5141 NDId->getName()));
5142 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005143 WeakTopLevelDecl.push_back(NewD);
5144 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5145 // to insert Decl at TU scope, sorry.
5146 DeclContext *SavedContext = CurContext;
5147 CurContext = Context.getTranslationUnitDecl();
5148 PushOnScopeChains(NewD, S);
5149 CurContext = SavedContext;
5150 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005151 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005152 }
5153}
5154
Rafael Espindola65611bf2013-03-02 21:41:48 +00005155void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5156 // It's valid to "forward-declare" #pragma weak, in which case we
5157 // have to do this.
5158 LoadExternalWeakUndeclaredIdentifiers();
5159 if (!WeakUndeclaredIdentifiers.empty()) {
5160 NamedDecl *ND = NULL;
5161 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5162 if (VD->isExternC())
5163 ND = VD;
5164 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5165 if (FD->isExternC())
5166 ND = FD;
5167 if (ND) {
5168 if (IdentifierInfo *Id = ND->getIdentifier()) {
5169 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5170 = WeakUndeclaredIdentifiers.find(Id);
5171 if (I != WeakUndeclaredIdentifiers.end()) {
5172 WeakInfo W = I->second;
5173 DeclApplyPragmaWeak(S, ND, W);
5174 WeakUndeclaredIdentifiers[Id] = W;
5175 }
5176 }
5177 }
5178 }
5179}
5180
Chris Lattner0744e5f2008-06-29 00:23:49 +00005181/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5182/// it, apply them to D. This is a bit tricky because PD can have attributes
5183/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005184void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5185 bool NonInheritable, bool Inheritable) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005186 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005187 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005188 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005189
Chris Lattner0744e5f2008-06-29 00:23:49 +00005190 // Walk the declarator structure, applying decl attributes that were in a type
5191 // position to the decl itself. This handles cases like:
5192 // int *__attr__(x)** D;
5193 // when X is a decl attribute.
5194 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5195 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005196 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5197 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005198
Chris Lattner0744e5f2008-06-29 00:23:49 +00005199 // Finally, apply any attributes on the decl itself.
5200 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005201 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005202}
John McCall54abf7d2009-11-04 02:18:39 +00005203
John McCallf85e1932011-06-15 23:02:42 +00005204/// Is the given declaration allowed to use a forbidden type?
5205static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5206 // Private ivars are always okay. Unfortunately, people don't
5207 // always properly make their ivars private, even in system headers.
5208 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005209 // Function declarations in sys headers will be marked unavailable.
5210 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5211 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005212 return false;
5213
5214 // Require it to be declared in a system header.
5215 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5216}
5217
5218/// Handle a delayed forbidden-type diagnostic.
5219static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5220 Decl *decl) {
5221 if (decl && isForbiddenTypeAllowed(S, decl)) {
5222 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5223 "this system declaration uses an unsupported type"));
5224 return;
5225 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005226 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005227 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005228 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005229 // kind of forbidden type messages on unavailable functions.
5230 if (FD->hasAttr<UnavailableAttr>() &&
5231 diag.getForbiddenTypeDiagnostic() ==
5232 diag::err_arc_array_param_no_ownership) {
5233 diag.Triggered = true;
5234 return;
5235 }
5236 }
John McCallf85e1932011-06-15 23:02:42 +00005237
5238 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5239 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5240 diag.Triggered = true;
5241}
5242
John McCall92576642012-05-07 06:16:41 +00005243void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5244 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005245 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005246 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005247
John McCall92576642012-05-07 06:16:41 +00005248 // When delaying diagnostics to run in the context of a parsed
5249 // declaration, we only want to actually emit anything if parsing
5250 // succeeds.
5251 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005252
John McCall92576642012-05-07 06:16:41 +00005253 // We emit all the active diagnostics in this pool or any of its
5254 // parents. In general, we'll get one pool for the decl spec
5255 // and a child pool for each declarator; in a decl group like:
5256 // deprecated_typedef foo, *bar, baz();
5257 // only the declarator pops will be passed decls. This is correct;
5258 // we really do need to consider delayed diagnostics from the decl spec
5259 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005260 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005261 do {
John McCall13489672012-05-07 06:16:58 +00005262 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005263 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5264 // This const_cast is a bit lame. Really, Triggered should be mutable.
5265 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005266 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005267 continue;
5268
John McCalleee1d542011-02-14 07:13:47 +00005269 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005270 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005271 // Don't bother giving deprecation diagnostics if the decl is invalid.
5272 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005273 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005274 break;
5275
5276 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005277 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005278 break;
John McCallf85e1932011-06-15 23:02:42 +00005279
5280 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005281 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005282 break;
John McCall2f514482010-01-27 03:50:35 +00005283 }
5284 }
John McCall92576642012-05-07 06:16:41 +00005285 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005286}
5287
John McCall13489672012-05-07 06:16:58 +00005288/// Given a set of delayed diagnostics, re-emit them as if they had
5289/// been delayed in the current context instead of in the given pool.
5290/// Essentially, this just moves them to the current pool.
5291void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5292 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5293 assert(curPool && "re-emitting in undelayed context not supported");
5294 curPool->steal(pool);
5295}
5296
John McCall54abf7d2009-11-04 02:18:39 +00005297static bool isDeclDeprecated(Decl *D) {
5298 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005299 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005300 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005301 // A category implicitly has the availability of the interface.
5302 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5303 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005304 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5305 return false;
5306}
5307
Eli Friedmanc3b23082012-08-08 21:52:41 +00005308static void
5309DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5310 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005311 const ObjCInterfaceDecl *UnknownObjCClass,
5312 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005313 DeclarationName Name = D->getDeclName();
5314 if (!Message.empty()) {
5315 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5316 S.Diag(D->getLocation(),
5317 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5318 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005319 if (ObjCPropery)
5320 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5321 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005322 } else if (!UnknownObjCClass) {
5323 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5324 S.Diag(D->getLocation(),
5325 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5326 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005327 if (ObjCPropery)
5328 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5329 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005330 } else {
5331 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5332 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5333 }
5334}
5335
John McCall9c3087b2010-08-26 02:13:20 +00005336void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005337 Decl *Ctx) {
5338 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005339 return;
5340
John McCall2f514482010-01-27 03:50:35 +00005341 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005342 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5343 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005344 DD.getUnknownObjCClass(),
5345 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005346}
5347
Chris Lattner5f9e2722011-07-23 10:55:15 +00005348void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005349 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005350 const ObjCInterfaceDecl *UnknownObjCClass,
5351 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005352 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005353 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005354 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5355 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005356 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005357 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005358 return;
5359 }
5360
5361 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005362 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005363 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005364 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005365}