blob: 511cdcc2c3fcf8dbb14df0265a4240d2948e4e6e [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"
John McCall384aff82010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000018#include "clang/AST/DeclObjC.h"
19#include "clang/AST/Expr.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000020#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000022#include "clang/Sema/DelayedDiagnostic.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000023#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000024using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000025using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000026
Chris Lattnere5c5ee12008-06-29 00:16:31 +000027//===----------------------------------------------------------------------===//
28// Helper functions
29//===----------------------------------------------------------------------===//
30
Ted Kremeneka18d7d82009-08-14 20:49:40 +000031static const FunctionType *getFunctionType(const Decl *d,
32 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000033 QualType Ty;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000034 if (const ValueDecl *decl = dyn_cast<ValueDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000035 Ty = decl->getType();
Ted Kremeneka18d7d82009-08-14 20:49:40 +000036 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000037 Ty = decl->getType();
Ted Kremeneka18d7d82009-08-14 20:49:40 +000038 else if (const TypedefDecl* decl = dyn_cast<TypedefDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000039 Ty = decl->getUnderlyingType();
40 else
41 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000042
Chris Lattner6b6b5372008-06-26 18:38:35 +000043 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000044 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000045 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000046 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000047
John McCall183700f2009-09-21 23:43:11 +000048 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000049}
50
Daniel Dunbar35682492008-09-26 04:12:28 +000051// FIXME: We should provide an abstraction around a method or function
52// to provide the following bits of information.
53
Nuno Lopesd20254f2009-12-20 23:11:08 +000054/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000055/// type (function or function-typed variable).
56static bool isFunction(const Decl *d) {
57 return getFunctionType(d, false) != NULL;
58}
59
60/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000061/// type (function or function-typed variable) or an Objective-C
62/// method.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000063static bool isFunctionOrMethod(const Decl *d) {
64 return isFunction(d)|| isa<ObjCMethodDecl>(d);
Daniel Dunbar35682492008-09-26 04:12:28 +000065}
66
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000067/// isFunctionOrMethodOrBlock - Return true if the given decl has function
68/// type (function or function-typed variable) or an Objective-C
69/// method or a block.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000070static bool isFunctionOrMethodOrBlock(const Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000071 if (isFunctionOrMethod(d))
72 return true;
73 // check for block is more involved.
74 if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
75 QualType Ty = V->getType();
76 return Ty->isBlockPointerType();
77 }
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000078 return isa<BlockDecl>(d);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000079}
80
John McCall711c52b2011-01-05 12:14:39 +000081/// Return true if the given decl has a declarator that should have
82/// been processed by Sema::GetTypeForDeclarator.
83static bool hasDeclarator(const Decl *d) {
84 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
85 return isa<DeclaratorDecl>(d) || isa<BlockDecl>(d) || isa<TypedefDecl>(d);
86}
87
Daniel Dunbard3f2c102008-10-19 02:04:16 +000088/// hasFunctionProto - Return true if the given decl has a argument
89/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000090/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000091static bool hasFunctionProto(const Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000092 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000093 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000094 else {
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000095 assert(isa<ObjCMethodDecl>(d) || isa<BlockDecl>(d));
Daniel Dunbard3f2c102008-10-19 02:04:16 +000096 return true;
97 }
98}
99
100/// getFunctionOrMethodNumArgs - Return number of function or method
101/// arguments. It is an error to call this on a K&R function (use
102/// hasFunctionProto first).
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000103static unsigned getFunctionOrMethodNumArgs(const Decl *d) {
Chris Lattner89951a82009-02-20 18:43:26 +0000104 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +0000105 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000106 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
107 return BD->getNumParams();
Chris Lattner89951a82009-02-20 18:43:26 +0000108 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000109}
110
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000111static QualType getFunctionOrMethodArgType(const Decl *d, unsigned Idx) {
Chris Lattner89951a82009-02-20 18:43:26 +0000112 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +0000113 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000114 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
115 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000116
Chris Lattner89951a82009-02-20 18:43:26 +0000117 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000118}
119
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000120static QualType getFunctionOrMethodResultType(const Decl *d) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000121 if (const FunctionType *FnTy = getFunctionType(d))
122 return cast<FunctionProtoType>(FnTy)->getResultType();
123 return cast<ObjCMethodDecl>(d)->getResultType();
124}
125
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000126static bool isFunctionOrMethodVariadic(const Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000127 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000128 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000129 return proto->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000130 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000131 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000132 else {
Daniel Dunbar35682492008-09-26 04:12:28 +0000133 return cast<ObjCMethodDecl>(d)->isVariadic();
134 }
135}
136
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000137static bool isInstanceMethod(const Decl *d) {
138 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(d))
139 return MethodDecl->isInstance();
140 return false;
141}
142
Chris Lattner6b6b5372008-06-26 18:38:35 +0000143static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000144 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000145 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000146 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000147
John McCall506b57e2010-05-17 21:00:27 +0000148 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
149 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000150 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000151
John McCall506b57e2010-05-17 21:00:27 +0000152 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000153
Chris Lattner6b6b5372008-06-26 18:38:35 +0000154 // FIXME: Should we walk the chain of classes?
155 return ClsName == &Ctx.Idents.get("NSString") ||
156 ClsName == &Ctx.Idents.get("NSMutableString");
157}
158
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000159static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000160 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000161 if (!PT)
162 return false;
163
Ted Kremenek6217b802009-07-29 21:53:49 +0000164 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000165 if (!RT)
166 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000167
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000168 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000169 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000170 return false;
171
172 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
173}
174
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000175//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000176// Attribute Implementations
177//===----------------------------------------------------------------------===//
178
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000179// FIXME: All this manual attribute parsing code is gross. At the
180// least add some helper functions to check most argument patterns (#
181// and types of args).
182
Mike Stumpbf916502009-07-24 19:02:52 +0000183static void HandleExtVectorTypeAttr(Scope *scope, Decl *d,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000184 const AttributeList &Attr, Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000185 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
186 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000187 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000188 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000189 }
Mike Stumpbf916502009-07-24 19:02:52 +0000190
Chris Lattner6b6b5372008-06-26 18:38:35 +0000191 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000192
193 Expr *sizeExpr;
194
195 // Special case where the argument is a template id.
196 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000197 CXXScopeSpec SS;
198 UnqualifiedId id;
199 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
200 sizeExpr = S.ActOnIdExpression(scope, SS, id, false, false).takeAs<Expr>();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000201 } else {
202 // check the attribute arguments.
203 if (Attr.getNumArgs() != 1) {
204 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
205 return;
206 }
Peter Collingbourne7a730022010-11-23 20:45:58 +0000207 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000208 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000209
210 // Instantiate/Install the vector type, and let Sema build the type for us.
211 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000212 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000213 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000214 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000215 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000216
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000217 // Remember this typedef decl, we will need it later for diagnostics.
218 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000219 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000220}
221
Chris Lattner803d0802008-06-29 00:43:07 +0000222static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000223 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000224 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000225 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000226 return;
227 }
Mike Stumpbf916502009-07-24 19:02:52 +0000228
Chris Lattner6b6b5372008-06-26 18:38:35 +0000229 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Sean Huntcf807c42010-08-18 23:23:40 +0000230 TD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000231 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
232 // If the alignment is less than or equal to 8 bits, the packed attribute
233 // has no effect.
234 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000235 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000236 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000237 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000238 else
Sean Huntcf807c42010-08-18 23:23:40 +0000239 FD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000240 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000241 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000242}
243
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000244static void HandleIBAction(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000245 // check the attribute arguments.
246 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000247 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek96329d42008-07-15 22:26:48 +0000248 return;
249 }
Mike Stumpbf916502009-07-24 19:02:52 +0000250
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000251 // The IBAction attributes only apply to instance methods.
252 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
253 if (MD->isInstanceMethod()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000254 d->addAttr(::new (S.Context) IBActionAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000255 return;
256 }
257
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000258 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000259}
260
261static void HandleIBOutlet(Decl *d, const AttributeList &Attr, Sema &S) {
262 // check the attribute arguments.
263 if (Attr.getNumArgs() > 0) {
264 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
265 return;
266 }
267
268 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000269 // Objective-C classes.
270 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d)) {
Sean Huntcf807c42010-08-18 23:23:40 +0000271 d->addAttr(::new (S.Context) IBOutletAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000272 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000273 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000274
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000275 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000276}
277
Ted Kremenek857e9182010-05-19 17:38:06 +0000278static void HandleIBOutletCollection(Decl *d, const AttributeList &Attr,
279 Sema &S) {
280
281 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000282 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000283 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
284 return;
285 }
286
287 // The IBOutletCollection attributes only apply to instance variables of
288 // Objective-C classes.
289 if (!(isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d))) {
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000290 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek857e9182010-05-19 17:38:06 +0000291 return;
292 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000293 if (const ValueDecl *VD = dyn_cast<ValueDecl>(d))
294 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
295 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
296 << VD->getType() << 0;
297 return;
298 }
299 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(d))
300 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
301 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
302 << PD->getType() << 1;
303 return;
304 }
305
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000306 IdentifierInfo *II = Attr.getParameterName();
307 if (!II)
308 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000309
John McCallb3d87482010-08-24 05:47:05 +0000310 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000311 S.getScopeForContext(d->getDeclContext()->getParent()));
312 if (!TypeRep) {
313 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
314 return;
315 }
John McCallb3d87482010-08-24 05:47:05 +0000316 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000317 // Diagnose use of non-object type in iboutletcollection attribute.
318 // FIXME. Gnu attribute extension ignores use of builtin types in
319 // attributes. So, __attribute__((iboutletcollection(char))) will be
320 // treated as __attribute__((iboutletcollection())).
321 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
322 !QT->isObjCObjectType()) {
323 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
324 return;
325 }
Sean Huntcf807c42010-08-18 23:23:40 +0000326 d->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getLoc(), S.Context,
327 QT));
Ted Kremenek857e9182010-05-19 17:38:06 +0000328}
329
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000330static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +0000331 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
332 // ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000333 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000334 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000335 << Attr.getName() << 0 /*function*/;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000336 return;
337 }
Mike Stumpbf916502009-07-24 19:02:52 +0000338
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000339 // In C++ the implicit 'this' function parameter also counts, and they are
340 // counted from one.
341 bool HasImplicitThisParam = isInstanceMethod(d);
342 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000343
344 // The nonnull attribute only applies to pointers.
345 llvm::SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000346
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000347 for (AttributeList::arg_iterator I=Attr.arg_begin(),
348 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000349
350
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000351 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000352 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000353 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000354 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
355 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000356 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
357 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000358 return;
359 }
Mike Stumpbf916502009-07-24 19:02:52 +0000360
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000361 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000362
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000363 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000364 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000365 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000366 return;
367 }
Mike Stumpbf916502009-07-24 19:02:52 +0000368
Ted Kremenek465172f2008-07-21 22:09:15 +0000369 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000370 if (HasImplicitThisParam) {
371 if (x == 0) {
372 S.Diag(Attr.getLoc(),
373 diag::err_attribute_invalid_implicit_this_argument)
374 << "nonnull" << Ex->getSourceRange();
375 return;
376 }
377 --x;
378 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000379
380 // Is the function argument a pointer type?
Douglas Gregorde436322010-12-15 15:41:46 +0000381 QualType T = getFunctionOrMethodArgType(d, x).getNonReferenceType();
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000382 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000383 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000384 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000385 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000386 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000387 }
Mike Stumpbf916502009-07-24 19:02:52 +0000388
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000389 NonNullArgs.push_back(x);
390 }
Mike Stumpbf916502009-07-24 19:02:52 +0000391
392 // If no arguments were specified to __attribute__((nonnull)) then all pointer
393 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000394 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000395 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
Douglas Gregorde436322010-12-15 15:41:46 +0000396 QualType T = getFunctionOrMethodArgType(d, I).getNonReferenceType();
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000397 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000398 NonNullArgs.push_back(I);
Fariborz Jahanianff3a0782010-09-27 22:42:37 +0000399 else if (const RecordType *UT = T->getAsUnionType()) {
400 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
401 RecordDecl *UD = UT->getDecl();
402 for (RecordDecl::field_iterator it = UD->field_begin(),
403 itend = UD->field_end(); it != itend; ++it) {
404 T = it->getType();
405 if (T->isAnyPointerType() || T->isBlockPointerType()) {
406 NonNullArgs.push_back(I);
407 break;
408 }
409 }
410 }
411 }
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000412 }
Mike Stumpbf916502009-07-24 19:02:52 +0000413
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000414 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000415 if (NonNullArgs.empty()) {
416 // Warn the trivial case only if attribute is not coming from a
417 // macro instantiation.
418 if (Attr.getLoc().isFileID())
419 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000420 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000421 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000422 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000423
424 unsigned* start = &NonNullArgs[0];
425 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000426 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000427 d->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
428 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000429}
430
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000431static void HandleOwnershipAttr(Decl *d, const AttributeList &AL, Sema &S) {
432 // This attribute must be applied to a function declaration.
433 // The first argument to the attribute must be a string,
434 // the name of the resource, for example "malloc".
435 // The following arguments must be argument indexes, the arguments must be
436 // of integer type for Returns, otherwise of pointer type.
437 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000438 // after being held. free() should be __attribute((ownership_takes)), whereas
439 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000440
441 if (!AL.getParameterName()) {
442 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
443 << AL.getName()->getName() << 1;
444 return;
445 }
446 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000447 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000448 switch (AL.getKind()) {
449 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000450 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000451 if (AL.getNumArgs() < 1) {
452 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
453 return;
454 }
Jordy Rose2a479922010-08-12 08:54:03 +0000455 break;
456 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000457 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000458 if (AL.getNumArgs() < 1) {
459 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
460 return;
461 }
Jordy Rose2a479922010-08-12 08:54:03 +0000462 break;
463 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000464 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000465 if (AL.getNumArgs() > 1) {
466 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
467 << AL.getNumArgs() + 1;
468 return;
469 }
Jordy Rose2a479922010-08-12 08:54:03 +0000470 break;
471 default:
472 // This should never happen given how we are called.
473 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000474 }
475
476 if (!isFunction(d) || !hasFunctionProto(d)) {
477 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL.getName()
478 << 0 /*function*/;
479 return;
480 }
481
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000482 // In C++ the implicit 'this' function parameter also counts, and they are
483 // counted from one.
484 bool HasImplicitThisParam = isInstanceMethod(d);
485 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000486
487 llvm::StringRef Module = AL.getParameterName()->getName();
488
489 // Normalize the argument, __foo__ becomes foo.
490 if (Module.startswith("__") && Module.endswith("__"))
491 Module = Module.substr(2, Module.size() - 4);
492
493 llvm::SmallVector<unsigned, 10> OwnershipArgs;
494
Jordy Rose2a479922010-08-12 08:54:03 +0000495 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
496 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000497
Peter Collingbourne7a730022010-11-23 20:45:58 +0000498 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000499 llvm::APSInt ArgNum(32);
500 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
501 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
502 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
503 << AL.getName()->getName() << IdxExpr->getSourceRange();
504 continue;
505 }
506
507 unsigned x = (unsigned) ArgNum.getZExtValue();
508
509 if (x > NumArgs || x < 1) {
510 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
511 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
512 continue;
513 }
514 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000515 if (HasImplicitThisParam) {
516 if (x == 0) {
517 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
518 << "ownership" << IdxExpr->getSourceRange();
519 return;
520 }
521 --x;
522 }
523
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000524 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +0000525 case OwnershipAttr::Takes:
526 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000527 // Is the function argument a pointer type?
528 QualType T = getFunctionOrMethodArgType(d, x);
529 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
530 // FIXME: Should also highlight argument in decl.
531 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +0000532 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000533 << "pointer"
534 << IdxExpr->getSourceRange();
535 continue;
536 }
537 break;
538 }
Sean Huntcf807c42010-08-18 23:23:40 +0000539 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000540 if (AL.getNumArgs() > 1) {
541 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +0000542 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000543 llvm::APSInt ArgNum(32);
544 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
545 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
546 S.Diag(AL.getLoc(), diag::err_ownership_type)
547 << "ownership_returns" << "integer"
548 << IdxExpr->getSourceRange();
549 return;
550 }
551 }
552 break;
553 }
Jordy Rose2a479922010-08-12 08:54:03 +0000554 default:
555 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000556 } // switch
557
558 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +0000559 for (specific_attr_iterator<OwnershipAttr>
560 i = d->specific_attr_begin<OwnershipAttr>(),
561 e = d->specific_attr_end<OwnershipAttr>();
562 i != e; ++i) {
563 if ((*i)->getOwnKind() != K) {
564 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
565 I!=E; ++I) {
566 if (x == *I) {
567 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
568 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000569 }
570 }
571 }
572 }
573 OwnershipArgs.push_back(x);
574 }
575
576 unsigned* start = OwnershipArgs.data();
577 unsigned size = OwnershipArgs.size();
578 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000579
580 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
581 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
582 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000583 }
Sean Huntcf807c42010-08-18 23:23:40 +0000584
585 d->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
586 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000587}
588
John McCall332bb2a2011-02-08 22:35:49 +0000589/// Whether this declaration has internal linkage for the purposes of
590/// things that want to complain about things not have internal linkage.
591static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
592 switch (D->getLinkage()) {
593 case NoLinkage:
594 case InternalLinkage:
595 return true;
596
597 // Template instantiations that go from external to unique-external
598 // shouldn't get diagnosed.
599 case UniqueExternalLinkage:
600 return true;
601
602 case ExternalLinkage:
603 return false;
604 }
605 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000606 return false;
607}
608
609static void HandleWeakRefAttr(Decl *d, const AttributeList &Attr, Sema &S) {
610 // Check the attribute arguments.
611 if (Attr.getNumArgs() > 1) {
612 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
613 return;
614 }
615
John McCall332bb2a2011-02-08 22:35:49 +0000616 if (!isa<VarDecl>(d) && !isa<FunctionDecl>(d)) {
617 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
618 << Attr.getName() << 2 /*variables and functions*/;
619 return;
620 }
621
622 NamedDecl *nd = cast<NamedDecl>(d);
623
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000624 // gcc rejects
625 // class c {
626 // static int a __attribute__((weakref ("v2")));
627 // static int b() __attribute__((weakref ("f3")));
628 // };
629 // and ignores the attributes of
630 // void f(void) {
631 // static int a __attribute__((weakref ("v2")));
632 // }
633 // we reject them
Sebastian Redl7a126a42010-08-31 00:36:30 +0000634 const DeclContext *Ctx = d->getDeclContext()->getRedeclContext();
635 if (!Ctx->isFileContext()) {
636 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +0000637 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +0000638 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000639 }
640
641 // The GCC manual says
642 //
643 // At present, a declaration to which `weakref' is attached can only
644 // be `static'.
645 //
646 // It also says
647 //
648 // Without a TARGET,
649 // given as an argument to `weakref' or to `alias', `weakref' is
650 // equivalent to `weak'.
651 //
652 // gcc 4.4.1 will accept
653 // int a7 __attribute__((weakref));
654 // as
655 // int a7 __attribute__((weak));
656 // This looks like a bug in gcc. We reject that for now. We should revisit
657 // it if this behaviour is actually used.
658
John McCall332bb2a2011-02-08 22:35:49 +0000659 if (!hasEffectivelyInternalLinkage(nd)) {
660 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000661 return;
662 }
663
664 // GCC rejects
665 // static ((alias ("y"), weakref)).
666 // Should we? How to check that weakref is before or after alias?
667
668 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000669 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000670 Arg = Arg->IgnoreParenCasts();
671 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
672
673 if (Str == 0 || Str->isWide()) {
674 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
675 << "weakref" << 1;
676 return;
677 }
678 // GCC will accept anything as the argument of weakref. Should we
679 // check for an existing decl?
Eric Christopherf48f3672010-12-01 22:13:54 +0000680 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
681 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000682 }
683
Sean Huntcf807c42010-08-18 23:23:40 +0000684 d->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000685}
686
Chris Lattner803d0802008-06-29 00:43:07 +0000687static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000688 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000689 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000691 return;
692 }
Mike Stumpbf916502009-07-24 19:02:52 +0000693
Peter Collingbourne7a730022010-11-23 20:45:58 +0000694 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000695 Arg = Arg->IgnoreParenCasts();
696 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000697
Chris Lattner6b6b5372008-06-26 18:38:35 +0000698 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000699 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000700 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000701 return;
702 }
Mike Stumpbf916502009-07-24 19:02:52 +0000703
Rafael Espindolaf5fe2922010-12-07 15:23:23 +0000704 if (S.Context.Target.getTriple().getOS() == llvm::Triple::Darwin) {
705 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
706 return;
707 }
708
Chris Lattner6b6b5372008-06-26 18:38:35 +0000709 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +0000710
Eric Christopherf48f3672010-12-01 22:13:54 +0000711 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
712 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000713}
714
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000715static void HandleNakedAttr(Decl *d, const AttributeList &Attr,
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000716 Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000717 // Check the attribute arguments.
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000718 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000719 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000720 return;
721 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000722
Chris Lattnerc5197432009-04-14 17:02:11 +0000723 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +0000724 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000725 << Attr.getName() << 0 /*function*/;
726 return;
727 }
728
729 d->addAttr(::new (S.Context) NakedAttr(Attr.getLoc(), S.Context));
730}
731
732static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
733 Sema &S) {
734 // Check the attribute arguments.
735 if (Attr.getNumArgs() != 0) {
736 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
737 return;
738 }
739
740 if (!isa<FunctionDecl>(d)) {
741 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
742 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +0000743 return;
744 }
Mike Stumpbf916502009-07-24 19:02:52 +0000745
Sean Huntcf807c42010-08-18 23:23:40 +0000746 d->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000747}
748
Ryan Flynn76168e22009-08-09 20:07:29 +0000749static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000750 // Check the attribute arguments.
Ryan Flynn76168e22009-08-09 20:07:29 +0000751 if (Attr.getNumArgs() != 0) {
752 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
753 return;
754 }
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000756 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000757 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000758 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000759 d->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000760 return;
761 }
Ryan Flynn76168e22009-08-09 20:07:29 +0000762 }
763
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000764 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +0000765}
766
Dan Gohman34c26302010-11-17 00:03:07 +0000767static void HandleMayAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
768 // check the attribute arguments.
769 if (Attr.getNumArgs() != 0) {
770 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
771 return;
772 }
773
Dan Gohman34c26302010-11-17 00:03:07 +0000774 d->addAttr(::new (S.Context) MayAliasAttr(Attr.getLoc(), S.Context));
775}
776
Eric Christophera6cf1e72010-12-02 02:45:55 +0000777static void HandleNoCommonAttr(Decl *d, const AttributeList &Attr, Sema &S) {
778 assert(Attr.isInvalid() == false);
Eric Christopher722109c2010-12-03 06:58:14 +0000779 if (isa<VarDecl>(d))
780 d->addAttr(::new (S.Context) NoCommonAttr(Attr.getLoc(), S.Context));
781 else
782 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
783 << Attr.getName() << 12 /* variable */;
Eric Christophera6cf1e72010-12-02 02:45:55 +0000784}
785
786static void HandleCommonAttr(Decl *d, const AttributeList &Attr, Sema &S) {
787 assert(Attr.isInvalid() == false);
Eric Christopher722109c2010-12-03 06:58:14 +0000788 if (isa<VarDecl>(d))
789 d->addAttr(::new (S.Context) CommonAttr(Attr.getLoc(), S.Context));
790 else
791 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
792 << Attr.getName() << 12 /* variable */;
Eric Christophera6cf1e72010-12-02 02:45:55 +0000793}
794
John McCall711c52b2011-01-05 12:14:39 +0000795static void HandleNoReturnAttr(Decl *d, const AttributeList &attr, Sema &S) {
796 if (hasDeclarator(d)) return;
797
798 if (S.CheckNoReturnAttr(attr)) return;
799
800 if (!isa<ObjCMethodDecl>(d)) {
801 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
802 << attr.getName() << 0 /*function*/;
803 return;
804 }
805
806 d->addAttr(::new (S.Context) NoReturnAttr(attr.getLoc(), S.Context));
807}
808
809bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
810 if (attr.getNumArgs() != 0) {
811 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
812 attr.setInvalid();
813 return true;
814 }
815
816 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +0000817}
818
819static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
820 Sema &S) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +0000821
822 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
823 // because 'analyzer_noreturn' does not impact the type.
824
825 if (Attr.getNumArgs() != 0) {
826 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
827 return;
828 }
829
830 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
831 ValueDecl *VD = dyn_cast<ValueDecl>(d);
832 if (VD == 0 || (!VD->getType()->isBlockPointerType()
833 && !VD->getType()->isFunctionPointerType())) {
834 S.Diag(Attr.getLoc(),
835 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
836 : diag::warn_attribute_wrong_decl_type)
837 << Attr.getName() << 0 /*function*/;
838 return;
839 }
840 }
841
842 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000843}
844
John Thompson35cc9622010-08-09 21:53:52 +0000845// PS3 PPU-specific.
846static void HandleVecReturnAttr(Decl *d, const AttributeList &Attr,
847 Sema &S) {
848/*
849 Returning a Vector Class in Registers
850
Eric Christopherf48f3672010-12-01 22:13:54 +0000851 According to the PPU ABI specifications, a class with a single member of
852 vector type is returned in memory when used as the return value of a function.
853 This results in inefficient code when implementing vector classes. To return
854 the value in a single vector register, add the vecreturn attribute to the
855 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +0000856
857 Example:
858
859 struct Vector
860 {
861 __vector float xyzw;
862 } __attribute__((vecreturn));
863
864 Vector Add(Vector lhs, Vector rhs)
865 {
866 Vector result;
867 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
868 return result; // This will be returned in a register
869 }
870*/
John Thompson01add592010-09-18 01:12:07 +0000871 if (!isa<RecordDecl>(d)) {
John Thompson35cc9622010-08-09 21:53:52 +0000872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
873 << Attr.getName() << 9 /*class*/;
874 return;
875 }
876
877 if (d->getAttr<VecReturnAttr>()) {
878 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
879 return;
880 }
881
John Thompson01add592010-09-18 01:12:07 +0000882 RecordDecl *record = cast<RecordDecl>(d);
883 int count = 0;
884
885 if (!isa<CXXRecordDecl>(record)) {
886 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
887 return;
888 }
889
890 if (!cast<CXXRecordDecl>(record)->isPOD()) {
891 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
892 return;
893 }
894
Eric Christopherf48f3672010-12-01 22:13:54 +0000895 for (RecordDecl::field_iterator iter = record->field_begin();
896 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +0000897 if ((count == 1) || !iter->getType()->isVectorType()) {
898 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
899 return;
900 }
901 count++;
902 }
903
Sean Huntcf807c42010-08-18 23:23:40 +0000904 d->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +0000905}
906
Sean Huntbbd37c62009-11-21 08:43:09 +0000907static void HandleDependencyAttr(Decl *d, const AttributeList &Attr, Sema &S) {
908 if (!isFunctionOrMethod(d) && !isa<ParmVarDecl>(d)) {
909 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall04a67a62010-02-05 21:31:56 +0000910 << Attr.getName() << 8 /*function, method, or parameter*/;
Sean Huntbbd37c62009-11-21 08:43:09 +0000911 return;
912 }
913 // FIXME: Actually store the attribute on the declaration
914}
915
Ted Kremenek73798892008-07-25 04:39:19 +0000916static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
917 // check the attribute arguments.
918 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000919 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000920 return;
921 }
Mike Stumpbf916502009-07-24 19:02:52 +0000922
John McCallaec58602010-03-31 02:47:45 +0000923 if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d) &&
Chris Lattner57ad3782011-02-17 20:34:02 +0000924 !isa<TypeDecl>(d) && !isa<LabelDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000925 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner57ad3782011-02-17 20:34:02 +0000926 << Attr.getName() << 14 /*variable, function, labels*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000927 return;
928 }
Mike Stumpbf916502009-07-24 19:02:52 +0000929
Sean Huntcf807c42010-08-18 23:23:40 +0000930 d->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +0000931}
932
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000933static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
934 // check the attribute arguments.
935 if (Attr.getNumArgs() != 0) {
936 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
937 return;
938 }
Mike Stumpbf916502009-07-24 19:02:52 +0000939
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000940 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000941 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000942 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
943 return;
944 }
945 } else if (!isFunctionOrMethod(d)) {
946 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000947 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000948 return;
949 }
Mike Stumpbf916502009-07-24 19:02:52 +0000950
Sean Huntcf807c42010-08-18 23:23:40 +0000951 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000952}
953
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000954static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
955 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +0000956 if (Attr.getNumArgs() > 1) {
957 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000958 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000959 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000960
961 int priority = 65535; // FIXME: Do not hardcode such constants.
962 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000963 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000964 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000965 if (E->isTypeDependent() || E->isValueDependent() ||
966 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000967 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000968 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000969 return;
970 }
971 priority = Idx.getZExtValue();
972 }
Mike Stumpbf916502009-07-24 19:02:52 +0000973
Chris Lattnerc5197432009-04-14 17:02:11 +0000974 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000975 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000976 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000977 return;
978 }
979
Eric Christopherf48f3672010-12-01 22:13:54 +0000980 d->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context,
981 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000982}
983
984static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
985 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +0000986 if (Attr.getNumArgs() > 1) {
987 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000988 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000989 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000990
991 int priority = 65535; // FIXME: Do not hardcode such constants.
992 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000993 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000994 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000995 if (E->isTypeDependent() || E->isValueDependent() ||
996 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000997 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000998 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000999 return;
1000 }
1001 priority = Idx.getZExtValue();
1002 }
Mike Stumpbf916502009-07-24 19:02:52 +00001003
Anders Carlsson6782fc62008-08-22 22:10:48 +00001004 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001005 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001006 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001007 return;
1008 }
1009
Eric Christopherf48f3672010-12-01 22:13:54 +00001010 d->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context,
1011 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001012}
1013
Chris Lattner803d0802008-06-29 00:43:07 +00001014static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001015 unsigned NumArgs = Attr.getNumArgs();
1016 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001017 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001018 return;
1019 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001020
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001021 // Handle the case where deprecated attribute has a text message.
Chris Lattner951bbb22011-02-24 05:42:24 +00001022 llvm::StringRef Str;
1023 if (NumArgs == 1) {
1024 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001025 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001026 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1027 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001028 return;
1029 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001030 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001031 }
Mike Stumpbf916502009-07-24 19:02:52 +00001032
Chris Lattner951bbb22011-02-24 05:42:24 +00001033 d->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001034}
1035
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001036static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001037 unsigned NumArgs = Attr.getNumArgs();
1038 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001039 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001040 return;
1041 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001042
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001043 // Handle the case where unavailable attribute has a text message.
Chris Lattner951bbb22011-02-24 05:42:24 +00001044 llvm::StringRef Str;
1045 if (NumArgs == 1) {
1046 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001047 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001048 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001049 diag::err_attribute_not_string) << "unavailable";
1050 return;
1051 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001052 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001053 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001054 d->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001055}
1056
Chris Lattner803d0802008-06-29 00:43:07 +00001057static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001058 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001059 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001060 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001061 return;
1062 }
Mike Stumpbf916502009-07-24 19:02:52 +00001063
Peter Collingbourne7a730022010-11-23 20:45:58 +00001064 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001065 Arg = Arg->IgnoreParenCasts();
1066 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001067
Chris Lattner6b6b5372008-06-26 18:38:35 +00001068 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001069 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001070 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001071 return;
1072 }
Mike Stumpbf916502009-07-24 19:02:52 +00001073
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001074 llvm::StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001075 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001076
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001077 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001078 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001079 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001080 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001081 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001082 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001083 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001084 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001085 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001086 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001087 return;
1088 }
Mike Stumpbf916502009-07-24 19:02:52 +00001089
Sean Huntcf807c42010-08-18 23:23:40 +00001090 d->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001091}
1092
John McCalld5313b02011-03-02 11:33:24 +00001093static void HandleObjCMethodFamilyAttr(Decl *decl, const AttributeList &attr,
1094 Sema &S) {
1095 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1096 if (!method) {
1097 S.Diag(attr.getLoc(), diag::err_attribute_wrong_decl_type)
1098 << 13; // methods
1099 return;
1100 }
1101
1102 if (attr.getNumArgs() != 0 || !attr.getParameterName()) {
1103 if (!attr.getParameterName() && attr.getNumArgs() == 1) {
1104 S.Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
1105 << "objc_method_family" << 1;
1106 } else {
1107 S.Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1108 }
1109 attr.setInvalid();
1110 return;
1111 }
1112
1113 llvm::StringRef param = attr.getParameterName()->getName();
1114 ObjCMethodFamilyAttr::FamilyKind family;
1115 if (param == "none")
1116 family = ObjCMethodFamilyAttr::OMF_None;
1117 else if (param == "alloc")
1118 family = ObjCMethodFamilyAttr::OMF_alloc;
1119 else if (param == "copy")
1120 family = ObjCMethodFamilyAttr::OMF_copy;
1121 else if (param == "init")
1122 family = ObjCMethodFamilyAttr::OMF_init;
1123 else if (param == "mutableCopy")
1124 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1125 else if (param == "new")
1126 family = ObjCMethodFamilyAttr::OMF_new;
1127 else {
1128 // Just warn and ignore it. This is future-proof against new
1129 // families being used in system headers.
1130 S.Diag(attr.getParameterLoc(), diag::warn_unknown_method_family);
1131 return;
1132 }
1133
1134 decl->addAttr(new (S.Context) ObjCMethodFamilyAttr(attr.getLoc(),
1135 S.Context, family));
1136}
1137
Chris Lattner0db29ec2009-02-14 08:09:34 +00001138static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
1139 Sema &S) {
1140 if (Attr.getNumArgs() != 0) {
1141 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1142 return;
1143 }
Mike Stumpbf916502009-07-24 19:02:52 +00001144
Chris Lattner0db29ec2009-02-14 08:09:34 +00001145 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1146 if (OCI == 0) {
1147 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1148 return;
1149 }
Mike Stumpbf916502009-07-24 19:02:52 +00001150
Sean Huntcf807c42010-08-18 23:23:40 +00001151 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001152}
1153
1154static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001155 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001156 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001157 return;
1158 }
Chris Lattner0db29ec2009-02-14 08:09:34 +00001159 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001160 QualType T = TD->getUnderlyingType();
1161 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001162 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001163 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1164 return;
1165 }
1166 }
Sean Huntcf807c42010-08-18 23:23:40 +00001167 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001168}
1169
Mike Stumpbf916502009-07-24 19:02:52 +00001170static void
Douglas Gregorf9201e02009-02-11 23:02:49 +00001171HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1172 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001173 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001174 return;
1175 }
1176
1177 if (!isa<FunctionDecl>(D)) {
1178 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1179 return;
1180 }
1181
Sean Huntcf807c42010-08-18 23:23:40 +00001182 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001183}
1184
Steve Naroff9eae5762008-09-18 16:44:58 +00001185static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001186 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001187 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001188 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001189 return;
1190 }
Mike Stumpbf916502009-07-24 19:02:52 +00001191
Steve Naroff9eae5762008-09-18 16:44:58 +00001192 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001193 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001194 return;
1195 }
Mike Stumpbf916502009-07-24 19:02:52 +00001196
Sean Huntcf807c42010-08-18 23:23:40 +00001197 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001198 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001199 type = BlocksAttr::ByRef;
1200 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001201 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001202 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001203 return;
1204 }
Mike Stumpbf916502009-07-24 19:02:52 +00001205
Sean Huntcf807c42010-08-18 23:23:40 +00001206 d->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001207}
1208
Anders Carlsson77091822008-10-05 18:05:59 +00001209static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1210 // check the attribute arguments.
1211 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001212 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001213 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001214 }
1215
Anders Carlsson77091822008-10-05 18:05:59 +00001216 int sentinel = 0;
1217 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001218 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001219 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001220 if (E->isTypeDependent() || E->isValueDependent() ||
1221 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001222 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001223 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001224 return;
1225 }
1226 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001227
Anders Carlsson77091822008-10-05 18:05:59 +00001228 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001229 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1230 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001231 return;
1232 }
1233 }
1234
1235 int nullPos = 0;
1236 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001237 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001238 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001239 if (E->isTypeDependent() || E->isValueDependent() ||
1240 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001241 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001242 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001243 return;
1244 }
1245 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001246
Anders Carlsson77091822008-10-05 18:05:59 +00001247 if (nullPos > 1 || nullPos < 0) {
1248 // FIXME: This error message could be improved, it would be nice
1249 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001250 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1251 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001252 return;
1253 }
1254 }
1255
1256 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
John McCall183700f2009-09-21 23:43:11 +00001257 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001258 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001259
Chris Lattner897cd902009-03-17 23:03:47 +00001260 if (isa<FunctionNoProtoType>(FT)) {
1261 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1262 return;
1263 }
Mike Stumpbf916502009-07-24 19:02:52 +00001264
Chris Lattner897cd902009-03-17 23:03:47 +00001265 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001266 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001267 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001268 }
Anders Carlsson77091822008-10-05 18:05:59 +00001269 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
1270 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001271 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001272 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001273 }
1274 } else if (isa<BlockDecl>(d)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001275 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1276 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001277 ;
1278 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001279 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001280 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001281 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
Eric Christopherf48f3672010-12-01 22:13:54 +00001282 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001283 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001284 int m = Ty->isFunctionPointerType() ? 0 : 1;
1285 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001286 return;
1287 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001288 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001289 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001290 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001291 return;
1292 }
Anders Carlsson77091822008-10-05 18:05:59 +00001293 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001294 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001295 << Attr.getName() << 6 /*function, method or block */;
Anders Carlsson77091822008-10-05 18:05:59 +00001296 return;
1297 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001298 d->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel,
1299 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001300}
1301
Chris Lattner026dc962009-02-14 07:37:35 +00001302static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
1303 // check the attribute arguments.
1304 if (Attr.getNumArgs() != 0) {
1305 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1306 return;
1307 }
1308
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001309 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001310 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001311 << Attr.getName() << 0 /*function*/;
Chris Lattner026dc962009-02-14 07:37:35 +00001312 return;
1313 }
Mike Stumpbf916502009-07-24 19:02:52 +00001314
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001315 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1316 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1317 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001318 return;
1319 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001320 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1321 if (MD->getResultType()->isVoidType()) {
1322 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1323 << Attr.getName() << 1;
1324 return;
1325 }
1326
Sean Huntcf807c42010-08-18 23:23:40 +00001327 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001328}
1329
John McCall332bb2a2011-02-08 22:35:49 +00001330static void HandleWeakAttr(Decl *d, const AttributeList &attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001331 // check the attribute arguments.
John McCall332bb2a2011-02-08 22:35:49 +00001332 if (attr.getNumArgs() != 0) {
1333 S.Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001334 return;
1335 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001336
John McCall332bb2a2011-02-08 22:35:49 +00001337 if (!isa<VarDecl>(d) && !isa<FunctionDecl>(d)) {
1338 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1339 << attr.getName() << 2 /*variables and functions*/;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001340 return;
1341 }
1342
John McCall332bb2a2011-02-08 22:35:49 +00001343 NamedDecl *nd = cast<NamedDecl>(d);
1344
1345 // 'weak' only applies to declarations with external linkage.
1346 if (hasEffectivelyInternalLinkage(nd)) {
1347 S.Diag(attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001348 return;
1349 }
Mike Stumpbf916502009-07-24 19:02:52 +00001350
John McCall332bb2a2011-02-08 22:35:49 +00001351 nd->addAttr(::new (S.Context) WeakAttr(attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001352}
1353
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001354static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1355 // check the attribute arguments.
1356 if (Attr.getNumArgs() != 0) {
1357 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1358 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001359 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001360
1361 // weak_import only applies to variable & function declarations.
1362 bool isDef = false;
1363 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1364 isDef = (!VD->hasExternalStorage() || VD->getInit());
1365 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001366 isDef = FD->hasBody();
Fariborz Jahaniand4edddd2009-05-04 19:35:12 +00001367 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
1368 // We ignore weak import on properties and methods
Mike Stump1c90f4d2009-03-18 17:39:31 +00001369 return;
Fariborz Jahanian5f8f8572009-11-17 19:08:08 +00001370 } else if (!(S.LangOpts.ObjCNonFragileABI && isa<ObjCInterfaceDecl>(D))) {
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001371 // Don't issue the warning for darwin as target; yet, ignore the attribute.
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001372 if (S.Context.Target.getTriple().getOS() != llvm::Triple::Darwin ||
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001373 !isa<ObjCInterfaceDecl>(D))
1374 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001375 << Attr.getName() << 2 /*variable and function*/;
1376 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001377 }
1378
1379 // Merge should handle any subsequent violations.
1380 if (isDef) {
Mike Stumpbf916502009-07-24 19:02:52 +00001381 S.Diag(Attr.getLoc(),
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001382 diag::warn_attribute_weak_import_invalid_on_definition)
1383 << "weak_import" << 2 /*variable and function*/;
1384 return;
1385 }
1386
Sean Huntcf807c42010-08-18 23:23:40 +00001387 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001388}
1389
Nate Begeman6f3d8382009-06-26 06:32:41 +00001390static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
1391 Sema &S) {
1392 // Attribute has 3 arguments.
1393 if (Attr.getNumArgs() != 3) {
John McCall2b7baf02010-05-28 18:25:28 +00001394 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001395 return;
1396 }
1397
1398 unsigned WGSize[3];
1399 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001400 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001401 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001402 if (E->isTypeDependent() || E->isValueDependent() ||
1403 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001404 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1405 << "reqd_work_group_size" << E->getSourceRange();
1406 return;
1407 }
1408 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1409 }
Sean Huntcf807c42010-08-18 23:23:40 +00001410 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1411 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001412 WGSize[2]));
1413}
1414
Chris Lattner026dc962009-02-14 07:37:35 +00001415static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001416 // Attribute has no arguments.
1417 if (Attr.getNumArgs() != 1) {
1418 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1419 return;
1420 }
1421
1422 // Make sure that there is a string literal as the sections's single
1423 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001424 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001425 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001426 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001427 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001428 return;
1429 }
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Chris Lattner797c3c42009-08-10 19:03:04 +00001431 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramerbb377ed2009-11-30 17:08:26 +00001432 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001433 if (!Error.empty()) {
1434 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1435 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001436 return;
1437 }
Mike Stump1eb44332009-09-09 15:08:12 +00001438
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001439 // This attribute cannot be applied to local variables.
1440 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1441 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1442 return;
1443 }
1444
Eric Christopherf48f3672010-12-01 22:13:54 +00001445 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context,
1446 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001447}
1448
Chris Lattner6b6b5372008-06-26 18:38:35 +00001449
Chris Lattner803d0802008-06-29 00:43:07 +00001450static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001451 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001452 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001453 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001454 return;
1455 }
Mike Stumpbf916502009-07-24 19:02:52 +00001456
Sean Huntcf807c42010-08-18 23:23:40 +00001457 d->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001458}
1459
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001460static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1461 // check the attribute arguments.
1462 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001463 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001464 return;
1465 }
Mike Stumpbf916502009-07-24 19:02:52 +00001466
Sean Huntcf807c42010-08-18 23:23:40 +00001467 d->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001468}
1469
1470static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1471 // check the attribute arguments.
1472 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001473 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001474 return;
1475 }
Mike Stumpbf916502009-07-24 19:02:52 +00001476
Sean Huntcf807c42010-08-18 23:23:40 +00001477 d->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001478}
1479
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001480static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001481 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001482 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1483 return;
1484 }
Mike Stumpbf916502009-07-24 19:02:52 +00001485
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001486 if (Attr.getNumArgs() != 0) {
1487 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1488 return;
1489 }
Mike Stumpbf916502009-07-24 19:02:52 +00001490
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001491 VarDecl *VD = dyn_cast<VarDecl>(d);
Mike Stumpbf916502009-07-24 19:02:52 +00001492
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001493 if (!VD || !VD->hasLocalStorage()) {
1494 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1495 return;
1496 }
Mike Stumpbf916502009-07-24 19:02:52 +00001497
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001498 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00001499 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00001500 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001501 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
1502 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001503 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001504 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001505 Attr.getParameterName();
1506 return;
1507 }
Mike Stumpbf916502009-07-24 19:02:52 +00001508
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001509 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1510 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001511 S.Diag(Attr.getParameterLoc(),
1512 diag::err_attribute_cleanup_arg_not_function)
1513 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001514 return;
1515 }
1516
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001517 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001518 S.Diag(Attr.getParameterLoc(),
1519 diag::err_attribute_cleanup_func_must_take_one_arg)
1520 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001521 return;
1522 }
Mike Stumpbf916502009-07-24 19:02:52 +00001523
Anders Carlsson89941c12009-02-07 23:16:50 +00001524 // We're currently more strict than GCC about what function types we accept.
1525 // If this ever proves to be a problem it should be easy to fix.
1526 QualType Ty = S.Context.getPointerType(VD->getType());
1527 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00001528 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
1529 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001530 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00001531 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1532 Attr.getParameterName() << ParamTy << Ty;
1533 return;
1534 }
Mike Stumpbf916502009-07-24 19:02:52 +00001535
Sean Huntcf807c42010-08-18 23:23:40 +00001536 d->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00001537 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001538}
1539
Mike Stumpbf916502009-07-24 19:02:52 +00001540/// Handle __attribute__((format_arg((idx)))) attribute based on
1541/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1542static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001543 if (Attr.getNumArgs() != 1) {
1544 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1545 return;
1546 }
1547 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1548 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1549 << Attr.getName() << 0 /*function*/;
1550 return;
1551 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001552
1553 // In C++ the implicit 'this' function parameter also counts, and they are
1554 // counted from one.
1555 bool HasImplicitThisParam = isInstanceMethod(d);
1556 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001557 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001558
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001559 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001560 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001561 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001562 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1563 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001564 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1565 << "format" << 2 << IdxExpr->getSourceRange();
1566 return;
1567 }
Mike Stumpbf916502009-07-24 19:02:52 +00001568
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001569 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1570 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1571 << "format" << 2 << IdxExpr->getSourceRange();
1572 return;
1573 }
Mike Stumpbf916502009-07-24 19:02:52 +00001574
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001575 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001576
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001577 if (HasImplicitThisParam) {
1578 if (ArgIdx == 0) {
1579 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1580 << "format_arg" << IdxExpr->getSourceRange();
1581 return;
1582 }
1583 ArgIdx--;
1584 }
1585
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001586 // make sure the format string is really a string
1587 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00001588
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001589 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1590 if (not_nsstring_type &&
1591 !isCFStringType(Ty, S.Context) &&
1592 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001593 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001594 // FIXME: Should highlight the actual expression that has the wrong type.
1595 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001596 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001597 << IdxExpr->getSourceRange();
1598 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001599 }
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001600 Ty = getFunctionOrMethodResultType(d);
1601 if (!isNSStringType(Ty, S.Context) &&
1602 !isCFStringType(Ty, S.Context) &&
1603 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001604 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001605 // FIXME: Should highlight the actual expression that has the wrong type.
1606 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001607 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001608 << IdxExpr->getSourceRange();
1609 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001610 }
1611
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001612 d->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context,
1613 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001614}
1615
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001616enum FormatAttrKind {
1617 CFStringFormat,
1618 NSStringFormat,
1619 StrftimeFormat,
1620 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00001621 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001622 InvalidFormat
1623};
1624
1625/// getFormatAttrKind - Map from format attribute names to supported format
1626/// types.
1627static FormatAttrKind getFormatAttrKind(llvm::StringRef Format) {
1628 // Check for formats that get handled specially.
1629 if (Format == "NSString")
1630 return NSStringFormat;
1631 if (Format == "CFString")
1632 return CFStringFormat;
1633 if (Format == "strftime")
1634 return StrftimeFormat;
1635
1636 // Otherwise, check for supported formats.
1637 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
1638 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
1639 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00001640 Format == "zcmn_err" ||
1641 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001642 return SupportedFormat;
1643
Duncan Sandsbc525952010-03-23 14:44:19 +00001644 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
1645 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00001646 return IgnoredFormat;
1647
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001648 return InvalidFormat;
1649}
1650
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001651/// Handle __attribute__((init_priority(priority))) attributes based on
1652/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
1653static void HandleInitPriorityAttr(Decl *d, const AttributeList &Attr,
1654 Sema &S) {
1655 if (!S.getLangOptions().CPlusPlus) {
1656 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1657 return;
1658 }
1659
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001660 if (!isa<VarDecl>(d) || S.getCurFunctionOrMethodDecl()) {
1661 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1662 Attr.setInvalid();
1663 return;
1664 }
1665 QualType T = dyn_cast<VarDecl>(d)->getType();
1666 if (S.Context.getAsArrayType(T))
1667 T = S.Context.getBaseElementType(T);
1668 if (!T->getAs<RecordType>()) {
1669 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1670 Attr.setInvalid();
1671 return;
1672 }
1673
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001674 if (Attr.getNumArgs() != 1) {
1675 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1676 Attr.setInvalid();
1677 return;
1678 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00001679 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001680
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001681 llvm::APSInt priority(32);
1682 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
1683 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
1684 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1685 << "init_priority" << priorityExpr->getSourceRange();
1686 Attr.setInvalid();
1687 return;
1688 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00001689 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001690 if (prioritynum < 101 || prioritynum > 65535) {
1691 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
1692 << priorityExpr->getSourceRange();
1693 Attr.setInvalid();
1694 return;
1695 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001696 d->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context,
1697 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001698}
1699
Mike Stumpbf916502009-07-24 19:02:52 +00001700/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
1701/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +00001702static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001703
Chris Lattner545dd342008-06-28 23:36:30 +00001704 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001705 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001706 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001707 return;
1708 }
1709
Chris Lattner545dd342008-06-28 23:36:30 +00001710 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001711 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001712 return;
1713 }
1714
Fariborz Jahanian620d89c2009-05-15 23:15:03 +00001715 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001716 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001717 << Attr.getName() << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001718 return;
1719 }
1720
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001721 // In C++ the implicit 'this' function parameter also counts, and they are
1722 // counted from one.
1723 bool HasImplicitThisParam = isInstanceMethod(d);
1724 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001725 unsigned FirstIdx = 1;
1726
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001727 llvm::StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001728
1729 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001730 if (Format.startswith("__") && Format.endswith("__"))
1731 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001732
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001733 // Check for supported formats.
1734 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00001735
1736 if (Kind == IgnoredFormat)
1737 return;
1738
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001739 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001740 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001741 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001742 return;
1743 }
1744
1745 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001746 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00001747 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001748 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1749 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001750 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001751 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001752 return;
1753 }
1754
1755 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001756 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001757 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001758 return;
1759 }
1760
1761 // FIXME: Do we need to bounds check?
1762 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001763
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001764 if (HasImplicitThisParam) {
1765 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001766 S.Diag(Attr.getLoc(),
1767 diag::err_format_attribute_implicit_this_format_string)
1768 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001769 return;
1770 }
1771 ArgIdx--;
1772 }
Mike Stump1eb44332009-09-09 15:08:12 +00001773
Chris Lattner6b6b5372008-06-26 18:38:35 +00001774 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001775 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001776
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001777 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001778 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001779 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1780 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001781 return;
1782 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001783 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001784 // FIXME: do we need to check if the type is NSString*? What are the
1785 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001786 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001787 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001788 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1789 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001790 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001791 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001792 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001793 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001794 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001795 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1796 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001797 return;
1798 }
1799
1800 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001801 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00001802 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001803 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
1804 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001805 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001806 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001807 return;
1808 }
1809
1810 // check if the function is variadic if the 3rd argument non-zero
1811 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001812 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001813 ++NumArgs; // +1 for ...
1814 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001815 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001816 return;
1817 }
1818 }
1819
Chris Lattner3c73c412008-11-19 08:23:25 +00001820 // strftime requires FirstArg to be 0 because it doesn't read from any
1821 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001822 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001823 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001824 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1825 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001826 return;
1827 }
1828 // if 0 it disables parameter checking (to use with e.g. va_list)
1829 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001830 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001831 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001832 return;
1833 }
1834
Sean Huntcf807c42010-08-18 23:23:40 +00001835 d->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
1836 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001837 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001838}
1839
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001840static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1841 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001842 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001843 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001844 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001845 return;
1846 }
1847
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001848 // Try to find the underlying union declaration.
1849 RecordDecl *RD = 0;
Eli Friedmanbc887452008-09-02 05:19:23 +00001850 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001851 if (TD && TD->getUnderlyingType()->isUnionType())
1852 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1853 else
1854 RD = dyn_cast<RecordDecl>(d);
1855
1856 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001857 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001858 << Attr.getName() << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001859 return;
1860 }
1861
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001862 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001863 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001864 diag::warn_transparent_union_attribute_not_definition);
1865 return;
1866 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001867
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001868 RecordDecl::field_iterator Field = RD->field_begin(),
1869 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001870 if (Field == FieldEnd) {
1871 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1872 return;
1873 }
Eli Friedmanbc887452008-09-02 05:19:23 +00001874
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001875 FieldDecl *FirstField = *Field;
1876 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00001877 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001878 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00001879 diag::warn_transparent_union_attribute_floating)
1880 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001881 return;
1882 }
1883
1884 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1885 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1886 for (; Field != FieldEnd; ++Field) {
1887 QualType FieldType = Field->getType();
1888 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1889 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1890 // Warn if we drop the attribute.
1891 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00001892 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001893 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00001894 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001895 diag::warn_transparent_union_attribute_field_size_align)
1896 << isSize << Field->getDeclName() << FieldBits;
1897 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00001898 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001899 diag::note_transparent_union_first_field_size_align)
1900 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00001901 return;
1902 }
1903 }
1904
Sean Huntcf807c42010-08-18 23:23:40 +00001905 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001906}
1907
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001908static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001909 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001910 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001911 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001912 return;
1913 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00001914 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001915 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00001916
Chris Lattner6b6b5372008-06-26 18:38:35 +00001917 // Make sure that there is a string literal as the annotation's single
1918 // argument.
1919 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001920 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00001921 return;
1922 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001923 d->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context,
1924 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001925}
1926
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001927static void HandleAlignedAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001928 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001929 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001930 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001931 return;
1932 }
Sean Huntbbd37c62009-11-21 08:43:09 +00001933
1934 //FIXME: The C++0x version of this attribute has more limited applicabilty
1935 // than GNU's, and should error out when it is used to specify a
1936 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001937
Chris Lattner545dd342008-06-28 23:36:30 +00001938 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00001939 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001940 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001941 }
Mike Stumpbf916502009-07-24 19:02:52 +00001942
Peter Collingbourne7a730022010-11-23 20:45:58 +00001943 S.AddAlignedAttr(Attr.getLoc(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001944}
1945
1946void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
1947 if (E->isTypeDependent() || E->isValueDependent()) {
1948 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00001949 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001950 return;
1951 }
1952
Sean Huntcf807c42010-08-18 23:23:40 +00001953 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00001954 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001955 if (!E->isIntegerConstantExpr(Alignment, Context)) {
1956 Diag(AttrLoc, diag::err_attribute_argument_not_int)
1957 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001958 return;
1959 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001960 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001961 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
1962 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001963 return;
1964 }
1965
Sean Huntcf807c42010-08-18 23:23:40 +00001966 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
1967}
1968
1969void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
1970 // FIXME: Cache the number on the Attr object if non-dependent?
1971 // FIXME: Perform checking of type validity
1972 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
1973 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001974}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001975
Mike Stumpbf916502009-07-24 19:02:52 +00001976/// HandleModeAttr - This attribute modifies the width of a decl with primitive
1977/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001978///
Mike Stumpbf916502009-07-24 19:02:52 +00001979/// Despite what would be logical, the mode attribute is a decl attribute, not a
1980/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
1981/// HImode, not an intermediate pointer.
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001982static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001983 // This attribute isn't documented, but glibc uses it. It changes
1984 // the width of an int or unsigned int to the specified size.
1985
1986 // Check that there aren't any arguments
1987 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001988 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001989 return;
1990 }
1991
1992 IdentifierInfo *Name = Attr.getParameterName();
1993 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001994 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001995 return;
1996 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00001997
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001998 llvm::StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001999
2000 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002001 if (Str.startswith("__") && Str.endswith("__"))
2002 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002003
2004 unsigned DestWidth = 0;
2005 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002006 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002007 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002008 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002009 switch (Str[0]) {
2010 case 'Q': DestWidth = 8; break;
2011 case 'H': DestWidth = 16; break;
2012 case 'S': DestWidth = 32; break;
2013 case 'D': DestWidth = 64; break;
2014 case 'X': DestWidth = 96; break;
2015 case 'T': DestWidth = 128; break;
2016 }
2017 if (Str[1] == 'F') {
2018 IntegerMode = false;
2019 } else if (Str[1] == 'C') {
2020 IntegerMode = false;
2021 ComplexMode = true;
2022 } else if (Str[1] != 'I') {
2023 DestWidth = 0;
2024 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002025 break;
2026 case 4:
2027 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2028 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002029 if (Str == "word")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002030 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002031 else if (Str == "byte")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002032 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002033 break;
2034 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002035 if (Str == "pointer")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002036 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002037 break;
2038 }
2039
2040 QualType OldTy;
2041 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
2042 OldTy = TD->getUnderlyingType();
2043 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2044 OldTy = VD->getType();
2045 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002046 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2047 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00002048 return;
2049 }
Eli Friedman73397492009-03-03 06:41:03 +00002050
John McCall183700f2009-09-21 23:43:11 +00002051 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002052 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2053 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002054 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002055 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2056 } else if (ComplexMode) {
2057 if (!OldTy->isComplexType())
2058 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2059 } else {
2060 if (!OldTy->isFloatingType())
2061 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2062 }
2063
Mike Stump390b4cc2009-05-16 07:39:55 +00002064 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2065 // and friends, at least with glibc.
2066 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2067 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002068 // FIXME: Make sure floating-point mappings are accurate
2069 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002070 QualType NewTy;
2071 switch (DestWidth) {
2072 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002073 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002074 return;
2075 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002076 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002077 return;
2078 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002079 if (!IntegerMode) {
2080 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2081 return;
2082 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002083 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002084 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002085 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002086 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002087 break;
2088 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002089 if (!IntegerMode) {
2090 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2091 return;
2092 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002093 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002094 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002095 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002096 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002097 break;
2098 case 32:
2099 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002100 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002101 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002102 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002103 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002104 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002105 break;
2106 case 64:
2107 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002108 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002109 else if (OldTy->isSignedIntegerType())
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002110 if (S.Context.Target.getLongWidth() == 64)
2111 NewTy = S.Context.LongTy;
2112 else
2113 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002114 else
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002115 if (S.Context.Target.getLongWidth() == 64)
2116 NewTy = S.Context.UnsignedLongTy;
2117 else
2118 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002119 break;
Eli Friedman73397492009-03-03 06:41:03 +00002120 case 96:
2121 NewTy = S.Context.LongDoubleTy;
2122 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002123 case 128:
2124 if (!IntegerMode) {
2125 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2126 return;
2127 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002128 if (OldTy->isSignedIntegerType())
2129 NewTy = S.Context.Int128Ty;
2130 else
2131 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002132 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002133 }
2134
Eli Friedman73397492009-03-03 06:41:03 +00002135 if (ComplexMode) {
2136 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002137 }
2138
2139 // Install the new type.
John McCallba6a9bd2009-10-24 08:00:42 +00002140 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
2141 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002142 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002143 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002144 cast<ValueDecl>(D)->setType(NewTy);
2145}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002146
Mike Stump1feade82009-08-26 22:31:08 +00002147static void HandleNoDebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlssond87df372009-02-13 06:46:13 +00002148 // check the attribute arguments.
2149 if (Attr.getNumArgs() > 0) {
2150 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2151 return;
2152 }
Anders Carlssone896d982009-02-13 08:11:52 +00002153
Anders Carlsson5bab7882009-02-19 19:16:48 +00002154 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002155 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002156 << Attr.getName() << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00002157 return;
2158 }
Mike Stumpbf916502009-07-24 19:02:52 +00002159
Sean Huntcf807c42010-08-18 23:23:40 +00002160 d->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002161}
2162
Mike Stump1feade82009-08-26 22:31:08 +00002163static void HandleNoInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002164 // check the attribute arguments.
2165 if (Attr.getNumArgs() != 0) {
2166 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2167 return;
2168 }
Mike Stumpbf916502009-07-24 19:02:52 +00002169
Chris Lattnerc5197432009-04-14 17:02:11 +00002170 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002171 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002172 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002173 return;
2174 }
Mike Stumpbf916502009-07-24 19:02:52 +00002175
Sean Huntcf807c42010-08-18 23:23:40 +00002176 d->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002177}
2178
Chris Lattner7255a2d2010-06-22 00:03:40 +00002179static void HandleNoInstrumentFunctionAttr(Decl *d, const AttributeList &Attr,
2180 Sema &S) {
2181 // check the attribute arguments.
2182 if (Attr.getNumArgs() != 0) {
2183 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2184 return;
2185 }
2186
2187 if (!isa<FunctionDecl>(d)) {
2188 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2189 << Attr.getName() << 0 /*function*/;
2190 return;
2191 }
2192
Eric Christopherf48f3672010-12-01 22:13:54 +00002193 d->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(),
2194 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002195}
2196
Peter Collingbourneced76712010-12-01 03:15:31 +00002197static void HandleConstantAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2198 if (S.LangOpts.CUDA) {
2199 // check the attribute arguments.
2200 if (Attr.getNumArgs() != 0) {
2201 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2202 return;
2203 }
2204
2205 if (!isa<VarDecl>(d)) {
2206 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2207 << Attr.getName() << 12 /*variable*/;
2208 return;
2209 }
2210
2211 d->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getLoc(), S.Context));
2212 } else {
2213 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2214 }
2215}
2216
2217static void HandleDeviceAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2218 if (S.LangOpts.CUDA) {
2219 // check the attribute arguments.
2220 if (Attr.getNumArgs() != 0) {
2221 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2222 return;
2223 }
2224
2225 if (!isa<FunctionDecl>(d) && !isa<VarDecl>(d)) {
2226 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2227 << Attr.getName() << 2 /*variable and function*/;
2228 return;
2229 }
2230
2231 d->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getLoc(), S.Context));
2232 } else {
2233 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2234 }
2235}
2236
2237static void HandleGlobalAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2238 if (S.LangOpts.CUDA) {
2239 // check the attribute arguments.
2240 if (Attr.getNumArgs() != 0) {
2241 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2242 return;
2243 }
2244
2245 if (!isa<FunctionDecl>(d)) {
2246 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2247 << Attr.getName() << 0 /*function*/;
2248 return;
2249 }
2250
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002251 FunctionDecl *FD = cast<FunctionDecl>(d);
2252 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002253 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002254 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2255 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2256 << FD->getType()
2257 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2258 "void");
2259 } else {
2260 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2261 << FD->getType();
2262 }
2263 return;
2264 }
2265
Peter Collingbourneced76712010-12-01 03:15:31 +00002266 d->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getLoc(), S.Context));
2267 } else {
2268 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2269 }
2270}
2271
2272static void HandleHostAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2273 if (S.LangOpts.CUDA) {
2274 // check the attribute arguments.
2275 if (Attr.getNumArgs() != 0) {
2276 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2277 return;
2278 }
2279
2280 if (!isa<FunctionDecl>(d)) {
2281 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2282 << Attr.getName() << 0 /*function*/;
2283 return;
2284 }
2285
2286 d->addAttr(::new (S.Context) CUDAHostAttr(Attr.getLoc(), S.Context));
2287 } else {
2288 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2289 }
2290}
2291
2292static void HandleSharedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2293 if (S.LangOpts.CUDA) {
2294 // check the attribute arguments.
2295 if (Attr.getNumArgs() != 0) {
2296 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2297 return;
2298 }
2299
2300 if (!isa<VarDecl>(d)) {
2301 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2302 << Attr.getName() << 12 /*variable*/;
2303 return;
2304 }
2305
2306 d->addAttr(::new (S.Context) CUDASharedAttr(Attr.getLoc(), S.Context));
2307 } else {
2308 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2309 }
2310}
2311
Chris Lattnercf2a7212009-04-20 19:12:28 +00002312static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner26e25542009-04-14 16:30:50 +00002313 // check the attribute arguments.
2314 if (Attr.getNumArgs() != 0) {
2315 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2316 return;
2317 }
Mike Stumpbf916502009-07-24 19:02:52 +00002318
Chris Lattnerc5197432009-04-14 17:02:11 +00002319 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
2320 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002321 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002322 << Attr.getName() << 0 /*function*/;
Chris Lattner26e25542009-04-14 16:30:50 +00002323 return;
2324 }
Mike Stumpbf916502009-07-24 19:02:52 +00002325
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002326 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002327 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002328 return;
2329 }
Mike Stumpbf916502009-07-24 19:02:52 +00002330
Sean Huntcf807c42010-08-18 23:23:40 +00002331 d->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002332}
2333
John McCall711c52b2011-01-05 12:14:39 +00002334static void HandleCallConvAttr(Decl *d, const AttributeList &attr, Sema &S) {
2335 if (hasDeclarator(d)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002336
John McCall711c52b2011-01-05 12:14:39 +00002337 // Diagnostic is emitted elsewhere: here we store the (valid) attr
2338 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2339 CallingConv CC;
2340 if (S.CheckCallingConvAttr(attr, CC))
2341 return;
2342
2343 if (!isa<ObjCMethodDecl>(d)) {
2344 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2345 << attr.getName() << 0 /*function*/;
2346 return;
2347 }
2348
2349 switch (attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002350 case AttributeList::AT_fastcall:
John McCall711c52b2011-01-05 12:14:39 +00002351 d->addAttr(::new (S.Context) FastCallAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002352 return;
2353 case AttributeList::AT_stdcall:
John McCall711c52b2011-01-05 12:14:39 +00002354 d->addAttr(::new (S.Context) StdCallAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002355 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002356 case AttributeList::AT_thiscall:
John McCall711c52b2011-01-05 12:14:39 +00002357 d->addAttr(::new (S.Context) ThisCallAttr(attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002358 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002359 case AttributeList::AT_cdecl:
John McCall711c52b2011-01-05 12:14:39 +00002360 d->addAttr(::new (S.Context) CDeclAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002361 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002362 case AttributeList::AT_pascal:
John McCall711c52b2011-01-05 12:14:39 +00002363 d->addAttr(::new (S.Context) PascalAttr(attr.getLoc(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002364 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002365 default:
2366 llvm_unreachable("unexpected attribute kind");
2367 return;
2368 }
2369}
2370
Peter Collingbournef315fa82011-02-14 01:42:53 +00002371static void HandleOpenCLKernelAttr(Decl *d, const AttributeList &Attr, Sema &S){
2372 assert(Attr.isInvalid() == false);
2373 d->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getLoc(), S.Context));
2374}
2375
John McCall711c52b2011-01-05 12:14:39 +00002376bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2377 if (attr.isInvalid())
2378 return true;
2379
2380 if (attr.getNumArgs() != 0) {
2381 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2382 attr.setInvalid();
2383 return true;
2384 }
2385
2386 // TODO: diagnose uses of these conventions on the wrong target.
2387 switch (attr.getKind()) {
2388 case AttributeList::AT_cdecl: CC = CC_C; break;
2389 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2390 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2391 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2392 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
2393 default: llvm_unreachable("unexpected attribute kind"); return true;
2394 }
2395
2396 return false;
2397}
2398
2399static void HandleRegparmAttr(Decl *d, const AttributeList &attr, Sema &S) {
2400 if (hasDeclarator(d)) return;
2401
2402 unsigned numParams;
2403 if (S.CheckRegparmAttr(attr, numParams))
2404 return;
2405
2406 if (!isa<ObjCMethodDecl>(d)) {
2407 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2408 << attr.getName() << 0 /*function*/;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002409 return;
2410 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002411
John McCall711c52b2011-01-05 12:14:39 +00002412 d->addAttr(::new (S.Context) RegparmAttr(attr.getLoc(), S.Context, numParams));
2413}
2414
2415/// Checks a regparm attribute, returning true if it is ill-formed and
2416/// otherwise setting numParams to the appropriate value.
2417bool Sema::CheckRegparmAttr(const AttributeList &attr, unsigned &numParams) {
2418 if (attr.isInvalid())
2419 return true;
2420
2421 if (attr.getNumArgs() != 1) {
2422 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2423 attr.setInvalid();
2424 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002425 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002426
John McCall711c52b2011-01-05 12:14:39 +00002427 Expr *NumParamsExpr = attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002428 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002429 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00002430 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
2431 Diag(attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002432 << "regparm" << NumParamsExpr->getSourceRange();
John McCall711c52b2011-01-05 12:14:39 +00002433 attr.setInvalid();
2434 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002435 }
2436
John McCall711c52b2011-01-05 12:14:39 +00002437 if (Context.Target.getRegParmMax() == 0) {
2438 Diag(attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002439 << NumParamsExpr->getSourceRange();
John McCall711c52b2011-01-05 12:14:39 +00002440 attr.setInvalid();
2441 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002442 }
2443
John McCall711c52b2011-01-05 12:14:39 +00002444 numParams = NumParams.getZExtValue();
2445 if (numParams > Context.Target.getRegParmMax()) {
2446 Diag(attr.getLoc(), diag::err_attribute_regparm_invalid_number)
2447 << Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
2448 attr.setInvalid();
2449 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002450 }
2451
John McCall711c52b2011-01-05 12:14:39 +00002452 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002453}
2454
Peter Collingbourne7b381982010-12-12 23:03:07 +00002455static void HandleLaunchBoundsAttr(Decl *d, const AttributeList &Attr, Sema &S){
2456 if (S.LangOpts.CUDA) {
2457 // check the attribute arguments.
2458 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002459 // FIXME: 0 is not okay.
2460 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00002461 return;
2462 }
2463
2464 if (!isFunctionOrMethod(d)) {
2465 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2466 << Attr.getName() << 0 /*function*/;
2467 return;
2468 }
2469
2470 Expr *MaxThreadsExpr = Attr.getArg(0);
2471 llvm::APSInt MaxThreads(32);
2472 if (MaxThreadsExpr->isTypeDependent() ||
2473 MaxThreadsExpr->isValueDependent() ||
2474 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
2475 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2476 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
2477 return;
2478 }
2479
2480 llvm::APSInt MinBlocks(32);
2481 if (Attr.getNumArgs() > 1) {
2482 Expr *MinBlocksExpr = Attr.getArg(1);
2483 if (MinBlocksExpr->isTypeDependent() ||
2484 MinBlocksExpr->isValueDependent() ||
2485 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
2486 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2487 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
2488 return;
2489 }
2490 }
2491
2492 d->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getLoc(), S.Context,
2493 MaxThreads.getZExtValue(),
2494 MinBlocks.getZExtValue()));
2495 } else {
2496 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
2497 }
2498}
2499
Chris Lattner0744e5f2008-06-29 00:23:49 +00002500//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00002501// Checker-specific attribute handlers.
2502//===----------------------------------------------------------------------===//
2503
John McCallc7ad3812011-01-25 03:31:58 +00002504static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
2505 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
2506}
2507static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
2508 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
2509}
2510
2511static void HandleNSConsumedAttr(Decl *d, const AttributeList &attr, Sema &S) {
2512 ParmVarDecl *param = dyn_cast<ParmVarDecl>(d);
2513 if (!param) {
2514 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2515 << SourceRange(attr.getLoc()) << attr.getName() << 4 /*parameter*/;
2516 return;
2517 }
2518
2519 bool typeOK, cf;
2520 if (attr.getKind() == AttributeList::AT_ns_consumed) {
2521 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
2522 cf = false;
2523 } else {
2524 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
2525 cf = true;
2526 }
2527
2528 if (!typeOK) {
2529 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
2530 << SourceRange(attr.getLoc()) << attr.getName() << cf;
2531 return;
2532 }
2533
2534 if (cf)
2535 param->addAttr(::new (S.Context) CFConsumedAttr(attr.getLoc(), S.Context));
2536 else
2537 param->addAttr(::new (S.Context) NSConsumedAttr(attr.getLoc(), S.Context));
2538}
2539
2540static void HandleNSConsumesSelfAttr(Decl *d, const AttributeList &attr,
2541 Sema &S) {
2542 if (!isa<ObjCMethodDecl>(d)) {
2543 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2544 << SourceRange(attr.getLoc()) << attr.getName() << 13 /*method*/;
2545 return;
2546 }
2547
2548 d->addAttr(::new (S.Context) NSConsumesSelfAttr(attr.getLoc(), S.Context));
2549}
2550
2551static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &attr,
Ted Kremenekb71368d2009-05-09 02:44:38 +00002552 Sema &S) {
2553
John McCallc7ad3812011-01-25 03:31:58 +00002554 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00002555
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002556 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
John McCallc7ad3812011-01-25 03:31:58 +00002557 returnType = MD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002558 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
John McCallc7ad3812011-01-25 03:31:58 +00002559 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002560 else {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002561 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
John McCallc7ad3812011-01-25 03:31:58 +00002562 << SourceRange(attr.getLoc()) << attr.getName()
2563 << 3 /* function or method */;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002564 return;
2565 }
Mike Stumpbf916502009-07-24 19:02:52 +00002566
John McCallc7ad3812011-01-25 03:31:58 +00002567 bool typeOK;
2568 bool cf;
2569 switch (attr.getKind()) {
2570 default: llvm_unreachable("invalid ownership attribute"); return;
2571 case AttributeList::AT_ns_returns_autoreleased:
2572 case AttributeList::AT_ns_returns_retained:
2573 case AttributeList::AT_ns_returns_not_retained:
2574 typeOK = isValidSubjectOfNSAttribute(S, returnType);
2575 cf = false;
2576 break;
2577
2578 case AttributeList::AT_cf_returns_retained:
2579 case AttributeList::AT_cf_returns_not_retained:
2580 typeOK = isValidSubjectOfCFAttribute(S, returnType);
2581 cf = true;
2582 break;
2583 }
2584
2585 if (!typeOK) {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002586 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
John McCallc7ad3812011-01-25 03:31:58 +00002587 << SourceRange(attr.getLoc())
2588 << attr.getName() << isa<ObjCMethodDecl>(d) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00002589 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002590 }
Mike Stumpbf916502009-07-24 19:02:52 +00002591
John McCallc7ad3812011-01-25 03:31:58 +00002592 switch (attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00002593 default:
2594 assert(0 && "invalid ownership attribute");
2595 return;
John McCallc7ad3812011-01-25 03:31:58 +00002596 case AttributeList::AT_ns_returns_autoreleased:
2597 d->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(attr.getLoc(),
2598 S.Context));
2599 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00002600 case AttributeList::AT_cf_returns_not_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002601 d->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002602 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002603 return;
2604 case AttributeList::AT_ns_returns_not_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002605 d->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002606 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002607 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002608 case AttributeList::AT_cf_returns_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002609 d->addAttr(::new (S.Context) CFReturnsRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002610 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002611 return;
2612 case AttributeList::AT_ns_returns_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002613 d->addAttr(::new (S.Context) NSReturnsRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002614 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002615 return;
2616 };
2617}
2618
Charles Davisf0122fe2010-02-16 18:27:26 +00002619static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
2620 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00002621 Attr.getKind() == AttributeList::AT_dllexport ||
2622 Attr.getKind() == AttributeList::AT_uuid;
2623}
2624
2625//===----------------------------------------------------------------------===//
2626// Microsoft specific attribute handlers.
2627//===----------------------------------------------------------------------===//
2628
2629static void HandleUuidAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2630 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
2631 // check the attribute arguments.
2632 if (Attr.getNumArgs() != 1) {
2633 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2634 return;
2635 }
2636 Expr *Arg = Attr.getArg(0);
2637 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Francois Pichetd3d3be92010-12-20 01:41:49 +00002638 if (Str == 0 || Str->isWide()) {
2639 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
2640 << "uuid" << 1;
2641 return;
2642 }
2643
2644 llvm::StringRef StrRef = Str->getString();
2645
2646 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
2647 StrRef.back() == '}';
2648
2649 // Validate GUID length.
2650 if (IsCurly && StrRef.size() != 38) {
2651 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2652 return;
2653 }
2654 if (!IsCurly && StrRef.size() != 36) {
2655 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2656 return;
2657 }
2658
2659 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
2660 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Anders Carlssonf89e0422011-01-23 21:07:30 +00002661 llvm::StringRef::iterator I = StrRef.begin();
2662 if (IsCurly) // Skip the optional '{'
2663 ++I;
2664
2665 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00002666 if (i == 8 || i == 13 || i == 18 || i == 23) {
2667 if (*I != '-') {
2668 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2669 return;
2670 }
2671 } else if (!isxdigit(*I)) {
2672 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2673 return;
2674 }
2675 I++;
2676 }
Francois Pichet11542142010-12-19 06:50:37 +00002677
2678 d->addAttr(::new (S.Context) UuidAttr(Attr.getLoc(), S.Context,
2679 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00002680 } else
Francois Pichet11542142010-12-19 06:50:37 +00002681 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00002682}
2683
Ted Kremenekb71368d2009-05-09 02:44:38 +00002684//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00002685// Top Level Sema Entry Points
2686//===----------------------------------------------------------------------===//
2687
Peter Collingbourne60700392011-01-21 02:08:45 +00002688static void ProcessNonInheritableDeclAttr(Scope *scope, Decl *D,
2689 const AttributeList &Attr, Sema &S) {
2690 switch (Attr.getKind()) {
2691 case AttributeList::AT_device: HandleDeviceAttr (D, Attr, S); break;
2692 case AttributeList::AT_host: HandleHostAttr (D, Attr, S); break;
2693 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
2694 default:
2695 break;
2696 }
2697}
Abramo Bagnarae215f722010-04-30 13:10:51 +00002698
Peter Collingbourne60700392011-01-21 02:08:45 +00002699static void ProcessInheritableDeclAttr(Scope *scope, Decl *D,
2700 const AttributeList &Attr, Sema &S) {
Chris Lattner803d0802008-06-29 00:43:07 +00002701 switch (Attr.getKind()) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00002702 case AttributeList::AT_IBAction: HandleIBAction(D, Attr, S); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00002703 case AttributeList::AT_IBOutlet: HandleIBOutlet(D, Attr, S); break;
2704 case AttributeList::AT_IBOutletCollection:
2705 HandleIBOutletCollection(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002706 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00002707 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00002708 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00002709 case AttributeList::AT_neon_vector_type:
2710 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00002711 // Ignore these, these are type attributes, handled by
2712 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00002713 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00002714 case AttributeList::AT_device:
2715 case AttributeList::AT_host:
2716 case AttributeList::AT_overloadable:
2717 // Ignore, this is a non-inheritable attribute, handled
2718 // by ProcessNonInheritableDeclAttr.
2719 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002720 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
2721 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002722 case AttributeList::AT_always_inline:
Daniel Dunbaraf668b02008-10-28 00:17:57 +00002723 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00002724 case AttributeList::AT_analyzer_noreturn:
Mike Stumpbf916502009-07-24 19:02:52 +00002725 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002726 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00002727 case AttributeList::AT_carries_dependency:
Sean Hunt7725e672009-11-25 04:20:27 +00002728 HandleDependencyAttr (D, Attr, S); break;
Eric Christophera6cf1e72010-12-02 02:45:55 +00002729 case AttributeList::AT_common: HandleCommonAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002730 case AttributeList::AT_constant: HandleConstantAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002731 case AttributeList::AT_constructor: HandleConstructorAttr (D, Attr, S); break;
2732 case AttributeList::AT_deprecated: HandleDeprecatedAttr (D, Attr, S); break;
2733 case AttributeList::AT_destructor: HandleDestructorAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002734 case AttributeList::AT_ext_vector_type:
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002735 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattner803d0802008-06-29 00:43:07 +00002736 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002737 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
2738 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002739 case AttributeList::AT_global: HandleGlobalAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002740 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr (D, Attr, S); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00002741 case AttributeList::AT_launch_bounds:
2742 HandleLaunchBoundsAttr(D, Attr, S);
2743 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002744 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
2745 case AttributeList::AT_malloc: HandleMallocAttr (D, Attr, S); break;
Dan Gohman34c26302010-11-17 00:03:07 +00002746 case AttributeList::AT_may_alias: HandleMayAliasAttr (D, Attr, S); break;
Eric Christophera6cf1e72010-12-02 02:45:55 +00002747 case AttributeList::AT_nocommon: HandleNoCommonAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002748 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002749 case AttributeList::AT_ownership_returns:
2750 case AttributeList::AT_ownership_takes:
2751 case AttributeList::AT_ownership_holds:
2752 HandleOwnershipAttr (D, Attr, S); break;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00002753 case AttributeList::AT_naked: HandleNakedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002754 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
2755 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002756 case AttributeList::AT_shared: HandleSharedAttr (D, Attr, S); break;
John Thompson35cc9622010-08-09 21:53:52 +00002757 case AttributeList::AT_vecreturn: HandleVecReturnAttr (D, Attr, S); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002758
2759 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00002760 case AttributeList::AT_cf_consumed:
2761 case AttributeList::AT_ns_consumed: HandleNSConsumedAttr (D, Attr, S); break;
2762 case AttributeList::AT_ns_consumes_self:
2763 HandleNSConsumesSelfAttr(D, Attr, S); break;
2764
2765 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00002766 case AttributeList::AT_ns_returns_not_retained:
2767 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00002768 case AttributeList::AT_ns_returns_retained:
2769 case AttributeList::AT_cf_returns_retained:
2770 HandleNSReturnsRetainedAttr(D, Attr, S); break;
2771
Nate Begeman6f3d8382009-06-26 06:32:41 +00002772 case AttributeList::AT_reqd_wg_size:
2773 HandleReqdWorkGroupSize(D, Attr, S); break;
2774
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002775 case AttributeList::AT_init_priority:
2776 HandleInitPriorityAttr(D, Attr, S); break;
2777
Sean Hunt7725e672009-11-25 04:20:27 +00002778 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
2779 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002780 case AttributeList::AT_unavailable: HandleUnavailableAttr (D, Attr, S); break;
2781 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
2782 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002783 case AttributeList::AT_visibility: HandleVisibilityAttr (D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00002784 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
2785 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002786 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002787 case AttributeList::AT_weakref: HandleWeakRefAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002788 case AttributeList::AT_weak_import: HandleWeakImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002789 case AttributeList::AT_transparent_union:
2790 HandleTransparentUnionAttr(D, Attr, S);
2791 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002792 case AttributeList::AT_objc_exception:
2793 HandleObjCExceptionAttr(D, Attr, S);
2794 break;
John McCalld5313b02011-03-02 11:33:24 +00002795 case AttributeList::AT_objc_method_family:
2796 HandleObjCMethodFamilyAttr(D, Attr, S);
2797 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002798 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
2799 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
2800 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
2801 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
2802 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
2803 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
2804 case AttributeList::AT_nodebug: HandleNoDebugAttr (D, Attr, S); break;
2805 case AttributeList::AT_noinline: HandleNoInlineAttr (D, Attr, S); break;
2806 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002807 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00002808 // Just ignore
2809 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002810 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
2811 HandleNoInstrumentFunctionAttr(D, Attr, S);
2812 break;
John McCall04a67a62010-02-05 21:31:56 +00002813 case AttributeList::AT_stdcall:
2814 case AttributeList::AT_cdecl:
2815 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002816 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00002817 case AttributeList::AT_pascal:
Abramo Bagnarae215f722010-04-30 13:10:51 +00002818 HandleCallConvAttr(D, Attr, S);
John McCall04a67a62010-02-05 21:31:56 +00002819 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00002820 case AttributeList::AT_opencl_kernel_function:
2821 HandleOpenCLKernelAttr(D, Attr, S);
2822 break;
Francois Pichet11542142010-12-19 06:50:37 +00002823 case AttributeList::AT_uuid:
2824 HandleUuidAttr(D, Attr, S);
2825 break;
Chris Lattner803d0802008-06-29 00:43:07 +00002826 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00002827 // Ask target about the attribute.
2828 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
2829 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00002830 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
2831 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00002832 break;
2833 }
2834}
2835
Peter Collingbourne60700392011-01-21 02:08:45 +00002836/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
2837/// the attribute applies to decls. If the attribute is a type attribute, just
2838/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
2839/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
2840static void ProcessDeclAttribute(Scope *scope, Decl *D,
2841 const AttributeList &Attr, Sema &S,
2842 bool NonInheritable, bool Inheritable) {
2843 if (Attr.isInvalid())
2844 return;
2845
2846 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
2847 // FIXME: Try to deal with other __declspec attributes!
2848 return;
2849
2850 if (NonInheritable)
2851 ProcessNonInheritableDeclAttr(scope, D, Attr, S);
2852
2853 if (Inheritable)
2854 ProcessInheritableDeclAttr(scope, D, Attr, S);
2855}
2856
Chris Lattner803d0802008-06-29 00:43:07 +00002857/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
2858/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00002859void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00002860 const AttributeList *AttrList,
2861 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002862 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Peter Collingbourne60700392011-01-21 02:08:45 +00002863 ProcessDeclAttribute(S, D, *l, *this, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002864 }
2865
2866 // GCC accepts
2867 // static int a9 __attribute__((weakref));
2868 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00002869 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002870 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002871 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002872 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002873 }
2874}
2875
Ryan Flynne25ff832009-07-30 03:15:39 +00002876/// DeclClonePragmaWeak - clone existing decl (maybe definition),
2877/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump1eb44332009-09-09 15:08:12 +00002878NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002879 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00002880 NamedDecl *NewD = 0;
2881 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
2882 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
2883 FD->getLocation(), DeclarationName(II),
John McCalla93c9342009-12-07 02:54:59 +00002884 FD->getType(), FD->getTypeSourceInfo());
John McCallb6217662010-03-15 10:12:16 +00002885 if (FD->getQualifier()) {
2886 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002887 NewFD->setQualifierInfo(FD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00002888 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002889 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
2890 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
2891 VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00002892 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002893 VD->getStorageClass(),
2894 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00002895 if (VD->getQualifier()) {
2896 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00002897 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00002898 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002899 }
2900 return NewD;
2901}
2902
2903/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
2904/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002905void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002906 if (W.getUsed()) return; // only do this once
2907 W.setUsed(true);
2908 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
2909 IdentifierInfo *NDId = ND->getIdentifier();
2910 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Sean Huntcf807c42010-08-18 23:23:40 +00002911 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
2912 NDId->getName()));
2913 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002914 WeakTopLevelDecl.push_back(NewD);
2915 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
2916 // to insert Decl at TU scope, sorry.
2917 DeclContext *SavedContext = CurContext;
2918 CurContext = Context.getTranslationUnitDecl();
2919 PushOnScopeChains(NewD, S);
2920 CurContext = SavedContext;
2921 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00002922 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00002923 }
2924}
2925
Chris Lattner0744e5f2008-06-29 00:23:49 +00002926/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
2927/// it, apply them to D. This is a bit tricky because PD can have attributes
2928/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00002929void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
2930 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00002931 // It's valid to "forward-declare" #pragma weak, in which case we
2932 // have to do this.
Peter Collingbourne60700392011-01-21 02:08:45 +00002933 if (Inheritable && !WeakUndeclaredIdentifiers.empty()) {
John McCalld4aff0e2010-10-27 00:59:00 +00002934 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
2935 if (IdentifierInfo *Id = ND->getIdentifier()) {
2936 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
2937 = WeakUndeclaredIdentifiers.find(Id);
2938 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
2939 WeakInfo W = I->second;
2940 DeclApplyPragmaWeak(S, ND, W);
2941 WeakUndeclaredIdentifiers[Id] = W;
2942 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002943 }
2944 }
2945 }
2946
Chris Lattner0744e5f2008-06-29 00:23:49 +00002947 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00002948 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00002949 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00002950
Chris Lattner0744e5f2008-06-29 00:23:49 +00002951 // Walk the declarator structure, applying decl attributes that were in a type
2952 // position to the decl itself. This handles cases like:
2953 // int *__attr__(x)** D;
2954 // when X is a decl attribute.
2955 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
2956 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00002957 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00002958
Chris Lattner0744e5f2008-06-29 00:23:49 +00002959 // Finally, apply any attributes on the decl itself.
2960 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00002961 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00002962}
John McCall54abf7d2009-11-04 02:18:39 +00002963
John McCalleee1d542011-02-14 07:13:47 +00002964// This duplicates a vector push_back but hides the need to know the
2965// size of the type.
2966void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
2967 assert(StackSize <= StackCapacity);
2968
2969 // Grow the stack if necessary.
2970 if (StackSize == StackCapacity) {
2971 unsigned newCapacity = 2 * StackCapacity + 2;
2972 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
2973 const char *oldBuffer = (const char*) Stack;
2974
2975 if (StackCapacity)
2976 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
2977
2978 delete[] oldBuffer;
2979 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
2980 StackCapacity = newCapacity;
2981 }
2982
2983 assert(StackSize < StackCapacity);
2984 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00002985}
2986
John McCalleee1d542011-02-14 07:13:47 +00002987void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
2988 Decl *decl) {
2989 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00002990
John McCalleee1d542011-02-14 07:13:47 +00002991 // Check the invariants.
2992 assert(DD.StackSize >= state.SavedStackSize);
2993 assert(state.SavedStackSize >= DD.ActiveStackBase);
2994 assert(DD.ParsingDepth > 0);
2995
2996 // Drop the parsing depth.
2997 DD.ParsingDepth--;
2998
2999 // If there are no active diagnostics, we're done.
3000 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003001 return;
3002
John McCall2f514482010-01-27 03:50:35 +00003003 // We only want to actually emit delayed diagnostics when we
3004 // successfully parsed a decl.
John McCalleee1d542011-02-14 07:13:47 +00003005 if (decl) {
3006 // We emit all the active diagnostics, not just those starting
3007 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003008 // decl spec and another for each declarator; in a decl group like:
3009 // deprecated_typedef foo, *bar, baz();
3010 // only the declarator pops will be passed decls. This is correct;
3011 // we really do need to consider delayed diagnostics from the decl spec
3012 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003013 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3014 DelayedDiagnostic &diag = DD.Stack[i];
3015 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003016 continue;
3017
John McCalleee1d542011-02-14 07:13:47 +00003018 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003019 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003020 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003021 break;
3022
3023 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003024 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003025 break;
3026 }
3027 }
3028 }
3029
John McCall58e6f342010-03-16 05:22:47 +00003030 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003031 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
3032 DD.Stack[i].destroy();
John McCall58e6f342010-03-16 05:22:47 +00003033
John McCalleee1d542011-02-14 07:13:47 +00003034 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003035}
3036
3037static bool isDeclDeprecated(Decl *D) {
3038 do {
3039 if (D->hasAttr<DeprecatedAttr>())
3040 return true;
3041 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3042 return false;
3043}
3044
John McCall9c3087b2010-08-26 02:13:20 +00003045void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003046 Decl *Ctx) {
3047 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003048 return;
3049
John McCall2f514482010-01-27 03:50:35 +00003050 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003051 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003052 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003053 << DD.getDeprecationDecl()->getDeclName()
3054 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003055 else
3056 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003057 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003058}
3059
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003060void Sema::EmitDeprecationWarning(NamedDecl *D, llvm::StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003061 SourceLocation Loc,
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003062 bool UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003063 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003064 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3065 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003066 return;
3067 }
3068
3069 // Otherwise, don't warn if our current context is deprecated.
3070 if (isDeclDeprecated(cast<Decl>(CurContext)))
3071 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003072 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003073 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3074 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003075 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003076 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003077 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
3078 else
3079 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
3080 }
John McCall54abf7d2009-11-04 02:18:39 +00003081}