blob: 3e1ced29a8d031b06462dbe0ca9c4b0eabb7a2f1 [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
Daniel Dunbard3f2c102008-10-19 02:04:16 +000081/// hasFunctionProto - Return true if the given decl has a argument
82/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000083/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000084static bool hasFunctionProto(const Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000085 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000086 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000087 else {
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000088 assert(isa<ObjCMethodDecl>(d) || isa<BlockDecl>(d));
Daniel Dunbard3f2c102008-10-19 02:04:16 +000089 return true;
90 }
91}
92
93/// getFunctionOrMethodNumArgs - Return number of function or method
94/// arguments. It is an error to call this on a K&R function (use
95/// hasFunctionProto first).
Ted Kremeneka18d7d82009-08-14 20:49:40 +000096static unsigned getFunctionOrMethodNumArgs(const Decl *d) {
Chris Lattner89951a82009-02-20 18:43:26 +000097 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000098 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000099 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
100 return BD->getNumParams();
Chris Lattner89951a82009-02-20 18:43:26 +0000101 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000102}
103
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000104static QualType getFunctionOrMethodArgType(const Decl *d, unsigned Idx) {
Chris Lattner89951a82009-02-20 18:43:26 +0000105 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +0000106 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000107 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
108 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000109
Chris Lattner89951a82009-02-20 18:43:26 +0000110 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000111}
112
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000113static QualType getFunctionOrMethodResultType(const Decl *d) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000114 if (const FunctionType *FnTy = getFunctionType(d))
115 return cast<FunctionProtoType>(FnTy)->getResultType();
116 return cast<ObjCMethodDecl>(d)->getResultType();
117}
118
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000119static bool isFunctionOrMethodVariadic(const Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000120 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000121 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000122 return proto->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000123 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000124 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000125 else {
Daniel Dunbar35682492008-09-26 04:12:28 +0000126 return cast<ObjCMethodDecl>(d)->isVariadic();
127 }
128}
129
Chris Lattner6b6b5372008-06-26 18:38:35 +0000130static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000131 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000132 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000133 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000134
John McCall506b57e2010-05-17 21:00:27 +0000135 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
136 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000137 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000138
John McCall506b57e2010-05-17 21:00:27 +0000139 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000140
Chris Lattner6b6b5372008-06-26 18:38:35 +0000141 // FIXME: Should we walk the chain of classes?
142 return ClsName == &Ctx.Idents.get("NSString") ||
143 ClsName == &Ctx.Idents.get("NSMutableString");
144}
145
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000146static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000147 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000148 if (!PT)
149 return false;
150
Ted Kremenek6217b802009-07-29 21:53:49 +0000151 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000152 if (!RT)
153 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000154
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000155 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000156 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000157 return false;
158
159 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
160}
161
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000162//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000163// Attribute Implementations
164//===----------------------------------------------------------------------===//
165
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000166// FIXME: All this manual attribute parsing code is gross. At the
167// least add some helper functions to check most argument patterns (#
168// and types of args).
169
Mike Stumpbf916502009-07-24 19:02:52 +0000170static void HandleExtVectorTypeAttr(Scope *scope, Decl *d,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000171 const AttributeList &Attr, Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000172 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
173 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000174 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000175 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176 }
Mike Stumpbf916502009-07-24 19:02:52 +0000177
Chris Lattner6b6b5372008-06-26 18:38:35 +0000178 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000179
180 Expr *sizeExpr;
181
182 // Special case where the argument is a template id.
183 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000184 CXXScopeSpec SS;
185 UnqualifiedId id;
186 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
187 sizeExpr = S.ActOnIdExpression(scope, SS, id, false, false).takeAs<Expr>();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000188 } else {
189 // check the attribute arguments.
190 if (Attr.getNumArgs() != 1) {
191 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
192 return;
193 }
194 sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000195 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000196
197 // Instantiate/Install the vector type, and let Sema build the type for us.
198 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000199 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000200 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000201 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000202 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000203
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000204 // Remember this typedef decl, we will need it later for diagnostics.
205 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000206 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000207}
208
Chris Lattner803d0802008-06-29 00:43:07 +0000209static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000210 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000211 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000212 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000213 return;
214 }
Mike Stumpbf916502009-07-24 19:02:52 +0000215
Chris Lattner6b6b5372008-06-26 18:38:35 +0000216 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Sean Huntcf807c42010-08-18 23:23:40 +0000217 TD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000218 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
219 // If the alignment is less than or equal to 8 bits, the packed attribute
220 // has no effect.
221 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000222 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000223 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000224 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000225 else
Sean Huntcf807c42010-08-18 23:23:40 +0000226 FD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000227 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000228 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000229}
230
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000231static void HandleIBAction(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000232 // check the attribute arguments.
233 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000234 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek96329d42008-07-15 22:26:48 +0000235 return;
236 }
Mike Stumpbf916502009-07-24 19:02:52 +0000237
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000238 // The IBAction attributes only apply to instance methods.
239 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
240 if (MD->isInstanceMethod()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000241 d->addAttr(::new (S.Context) IBActionAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000242 return;
243 }
244
245 S.Diag(Attr.getLoc(), diag::err_attribute_ibaction) << Attr.getName();
246}
247
248static void HandleIBOutlet(Decl *d, const AttributeList &Attr, Sema &S) {
249 // check the attribute arguments.
250 if (Attr.getNumArgs() > 0) {
251 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
252 return;
253 }
254
255 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000256 // Objective-C classes.
257 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d)) {
Sean Huntcf807c42010-08-18 23:23:40 +0000258 d->addAttr(::new (S.Context) IBOutletAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000259 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000260 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000261
262 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000263}
264
Ted Kremenek857e9182010-05-19 17:38:06 +0000265static void HandleIBOutletCollection(Decl *d, const AttributeList &Attr,
266 Sema &S) {
267
268 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000269 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000270 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
271 return;
272 }
273
274 // The IBOutletCollection attributes only apply to instance variables of
275 // Objective-C classes.
276 if (!(isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d))) {
277 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet) << Attr.getName();
278 return;
279 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000280 if (const ValueDecl *VD = dyn_cast<ValueDecl>(d))
281 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
282 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
283 << VD->getType() << 0;
284 return;
285 }
286 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(d))
287 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
288 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
289 << PD->getType() << 1;
290 return;
291 }
292
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000293 IdentifierInfo *II = Attr.getParameterName();
294 if (!II)
295 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000296
John McCallb3d87482010-08-24 05:47:05 +0000297 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000298 S.getScopeForContext(d->getDeclContext()->getParent()));
299 if (!TypeRep) {
300 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
301 return;
302 }
John McCallb3d87482010-08-24 05:47:05 +0000303 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000304 // Diagnose use of non-object type in iboutletcollection attribute.
305 // FIXME. Gnu attribute extension ignores use of builtin types in
306 // attributes. So, __attribute__((iboutletcollection(char))) will be
307 // treated as __attribute__((iboutletcollection())).
308 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
309 !QT->isObjCObjectType()) {
310 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
311 return;
312 }
Sean Huntcf807c42010-08-18 23:23:40 +0000313 d->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getLoc(), S.Context,
314 QT));
Ted Kremenek857e9182010-05-19 17:38:06 +0000315}
316
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000317static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +0000318 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
319 // ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000320 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000321 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000322 << Attr.getName() << 0 /*function*/;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000323 return;
324 }
Mike Stumpbf916502009-07-24 19:02:52 +0000325
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000326 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000327
328 // The nonnull attribute only applies to pointers.
329 llvm::SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000330
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000331 for (AttributeList::arg_iterator I=Attr.arg_begin(),
332 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000333
334
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000335 // The argument must be an integer constant expression.
Ted Kremenekf5e88342008-12-04 19:38:33 +0000336 Expr *Ex = static_cast<Expr *>(*I);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000337 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000338 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
339 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000340 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
341 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000342 return;
343 }
Mike Stumpbf916502009-07-24 19:02:52 +0000344
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000345 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000346
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000347 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000348 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000349 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000350 return;
351 }
Mike Stumpbf916502009-07-24 19:02:52 +0000352
Ted Kremenek465172f2008-07-21 22:09:15 +0000353 --x;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000354
355 // Is the function argument a pointer type?
Mike Stumpbf916502009-07-24 19:02:52 +0000356 QualType T = getFunctionOrMethodArgType(d, x);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000357 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000358 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000359 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000360 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000361 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000362 }
Mike Stumpbf916502009-07-24 19:02:52 +0000363
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000364 NonNullArgs.push_back(x);
365 }
Mike Stumpbf916502009-07-24 19:02:52 +0000366
367 // If no arguments were specified to __attribute__((nonnull)) then all pointer
368 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000369 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000370 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
371 QualType T = getFunctionOrMethodArgType(d, I);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000372 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000373 NonNullArgs.push_back(I);
Fariborz Jahanianff3a0782010-09-27 22:42:37 +0000374 else if (const RecordType *UT = T->getAsUnionType()) {
375 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
376 RecordDecl *UD = UT->getDecl();
377 for (RecordDecl::field_iterator it = UD->field_begin(),
378 itend = UD->field_end(); it != itend; ++it) {
379 T = it->getType();
380 if (T->isAnyPointerType() || T->isBlockPointerType()) {
381 NonNullArgs.push_back(I);
382 break;
383 }
384 }
385 }
386 }
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000387 }
Mike Stumpbf916502009-07-24 19:02:52 +0000388
Ted Kremenek1db5d142010-09-09 01:17:32 +0000389 // No pointer arguments? The attribute in this case is
390 // trivially satisfied.
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000391 if (NonNullArgs.empty()) {
392 // Warn the trivial case only if attribute is not coming from a
393 // macro instantiation.
394 if (Attr.getLoc().isFileID())
395 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000396 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000397 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000398 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000399
400 unsigned* start = &NonNullArgs[0];
401 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000402 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000403 d->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
404 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000405}
406
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000407static void HandleOwnershipAttr(Decl *d, const AttributeList &AL, Sema &S) {
408 // This attribute must be applied to a function declaration.
409 // The first argument to the attribute must be a string,
410 // the name of the resource, for example "malloc".
411 // The following arguments must be argument indexes, the arguments must be
412 // of integer type for Returns, otherwise of pointer type.
413 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000414 // after being held. free() should be __attribute((ownership_takes)), whereas
415 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000416
417 if (!AL.getParameterName()) {
418 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
419 << AL.getName()->getName() << 1;
420 return;
421 }
422 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000423 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000424 switch (AL.getKind()) {
425 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000426 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000427 if (AL.getNumArgs() < 1) {
428 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
429 return;
430 }
Jordy Rose2a479922010-08-12 08:54:03 +0000431 break;
432 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000433 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000434 if (AL.getNumArgs() < 1) {
435 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
436 return;
437 }
Jordy Rose2a479922010-08-12 08:54:03 +0000438 break;
439 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000440 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000441 if (AL.getNumArgs() > 1) {
442 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
443 << AL.getNumArgs() + 1;
444 return;
445 }
Jordy Rose2a479922010-08-12 08:54:03 +0000446 break;
447 default:
448 // This should never happen given how we are called.
449 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000450 }
451
452 if (!isFunction(d) || !hasFunctionProto(d)) {
453 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL.getName()
454 << 0 /*function*/;
455 return;
456 }
457
458 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
459
460 llvm::StringRef Module = AL.getParameterName()->getName();
461
462 // Normalize the argument, __foo__ becomes foo.
463 if (Module.startswith("__") && Module.endswith("__"))
464 Module = Module.substr(2, Module.size() - 4);
465
466 llvm::SmallVector<unsigned, 10> OwnershipArgs;
467
Jordy Rose2a479922010-08-12 08:54:03 +0000468 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
469 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000470
471 Expr *IdxExpr = static_cast<Expr *>(*I);
472 llvm::APSInt ArgNum(32);
473 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
474 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
475 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
476 << AL.getName()->getName() << IdxExpr->getSourceRange();
477 continue;
478 }
479
480 unsigned x = (unsigned) ArgNum.getZExtValue();
481
482 if (x > NumArgs || x < 1) {
483 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
484 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
485 continue;
486 }
487 --x;
488 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +0000489 case OwnershipAttr::Takes:
490 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000491 // Is the function argument a pointer type?
492 QualType T = getFunctionOrMethodArgType(d, x);
493 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
494 // FIXME: Should also highlight argument in decl.
495 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +0000496 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000497 << "pointer"
498 << IdxExpr->getSourceRange();
499 continue;
500 }
501 break;
502 }
Sean Huntcf807c42010-08-18 23:23:40 +0000503 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000504 if (AL.getNumArgs() > 1) {
505 // Is the function argument an integer type?
506 Expr *IdxExpr = static_cast<Expr *>(AL.getArg(0));
507 llvm::APSInt ArgNum(32);
508 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
509 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
510 S.Diag(AL.getLoc(), diag::err_ownership_type)
511 << "ownership_returns" << "integer"
512 << IdxExpr->getSourceRange();
513 return;
514 }
515 }
516 break;
517 }
Jordy Rose2a479922010-08-12 08:54:03 +0000518 default:
519 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000520 } // switch
521
522 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +0000523 for (specific_attr_iterator<OwnershipAttr>
524 i = d->specific_attr_begin<OwnershipAttr>(),
525 e = d->specific_attr_end<OwnershipAttr>();
526 i != e; ++i) {
527 if ((*i)->getOwnKind() != K) {
528 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
529 I!=E; ++I) {
530 if (x == *I) {
531 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
532 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000533 }
534 }
535 }
536 }
537 OwnershipArgs.push_back(x);
538 }
539
540 unsigned* start = OwnershipArgs.data();
541 unsigned size = OwnershipArgs.size();
542 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000543
544 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
545 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
546 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000547 }
Sean Huntcf807c42010-08-18 23:23:40 +0000548
549 d->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
550 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000551}
552
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000553static bool isStaticVarOrStaticFunciton(Decl *D) {
554 if (VarDecl *VD = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000555 return VD->getStorageClass() == SC_Static;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000556 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000557 return FD->getStorageClass() == SC_Static;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000558 return false;
559}
560
561static void HandleWeakRefAttr(Decl *d, const AttributeList &Attr, Sema &S) {
562 // Check the attribute arguments.
563 if (Attr.getNumArgs() > 1) {
564 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
565 return;
566 }
567
568 // gcc rejects
569 // class c {
570 // static int a __attribute__((weakref ("v2")));
571 // static int b() __attribute__((weakref ("f3")));
572 // };
573 // and ignores the attributes of
574 // void f(void) {
575 // static int a __attribute__((weakref ("v2")));
576 // }
577 // we reject them
Sebastian Redl7a126a42010-08-31 00:36:30 +0000578 const DeclContext *Ctx = d->getDeclContext()->getRedeclContext();
579 if (!Ctx->isFileContext()) {
580 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
581 dyn_cast<NamedDecl>(d)->getNameAsString();
582 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000583 }
584
585 // The GCC manual says
586 //
587 // At present, a declaration to which `weakref' is attached can only
588 // be `static'.
589 //
590 // It also says
591 //
592 // Without a TARGET,
593 // given as an argument to `weakref' or to `alias', `weakref' is
594 // equivalent to `weak'.
595 //
596 // gcc 4.4.1 will accept
597 // int a7 __attribute__((weakref));
598 // as
599 // int a7 __attribute__((weak));
600 // This looks like a bug in gcc. We reject that for now. We should revisit
601 // it if this behaviour is actually used.
602
603 if (!isStaticVarOrStaticFunciton(d)) {
604 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static) <<
605 dyn_cast<NamedDecl>(d)->getNameAsString();
606 return;
607 }
608
609 // GCC rejects
610 // static ((alias ("y"), weakref)).
611 // Should we? How to check that weakref is before or after alias?
612
613 if (Attr.getNumArgs() == 1) {
614 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
615 Arg = Arg->IgnoreParenCasts();
616 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
617
618 if (Str == 0 || Str->isWide()) {
619 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
620 << "weakref" << 1;
621 return;
622 }
623 // GCC will accept anything as the argument of weakref. Should we
624 // check for an existing decl?
Sean Huntcf807c42010-08-18 23:23:40 +0000625 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context, Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000626 }
627
Sean Huntcf807c42010-08-18 23:23:40 +0000628 d->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000629}
630
Chris Lattner803d0802008-06-29 00:43:07 +0000631static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000632 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000633 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000634 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000635 return;
636 }
Mike Stumpbf916502009-07-24 19:02:52 +0000637
Chris Lattner545dd342008-06-28 23:36:30 +0000638 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000639 Arg = Arg->IgnoreParenCasts();
640 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000641
Chris Lattner6b6b5372008-06-26 18:38:35 +0000642 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000643 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000644 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000645 return;
646 }
Mike Stumpbf916502009-07-24 19:02:52 +0000647
Chris Lattner6b6b5372008-06-26 18:38:35 +0000648 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +0000649
Sean Huntcf807c42010-08-18 23:23:40 +0000650 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context, Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000651}
652
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000653static void HandleNakedAttr(Decl *d, const AttributeList &Attr,
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000654 Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000655 // Check the attribute arguments.
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000656 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000657 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000658 return;
659 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000660
Chris Lattnerc5197432009-04-14 17:02:11 +0000661 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +0000662 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000663 << Attr.getName() << 0 /*function*/;
664 return;
665 }
666
667 d->addAttr(::new (S.Context) NakedAttr(Attr.getLoc(), S.Context));
668}
669
670static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
671 Sema &S) {
672 // Check the attribute arguments.
673 if (Attr.getNumArgs() != 0) {
674 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
675 return;
676 }
677
678 if (!isa<FunctionDecl>(d)) {
679 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
680 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +0000681 return;
682 }
Mike Stumpbf916502009-07-24 19:02:52 +0000683
Sean Huntcf807c42010-08-18 23:23:40 +0000684 d->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000685}
686
Ryan Flynn76168e22009-08-09 20:07:29 +0000687static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000688 // Check the attribute arguments.
Ryan Flynn76168e22009-08-09 20:07:29 +0000689 if (Attr.getNumArgs() != 0) {
690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
691 return;
692 }
Mike Stump1eb44332009-09-09 15:08:12 +0000693
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000694 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000695 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000696 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000697 d->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000698 return;
699 }
Ryan Flynn76168e22009-08-09 20:07:29 +0000700 }
701
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000702 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +0000703}
704
Ted Kremenekb7252322009-04-10 00:01:14 +0000705static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Abramo Bagnarae215f722010-04-30 13:10:51 +0000706 /* Diagnostics (if any) was emitted by Sema::ProcessFnAttr(). */
707 assert(Attr.isInvalid() == false);
Sean Huntcf807c42010-08-18 23:23:40 +0000708 d->addAttr(::new (S.Context) NoReturnAttr(Attr.getLoc(), S.Context));
Ted Kremenekb7252322009-04-10 00:01:14 +0000709}
710
711static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
712 Sema &S) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +0000713
714 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
715 // because 'analyzer_noreturn' does not impact the type.
716
717 if (Attr.getNumArgs() != 0) {
718 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
719 return;
720 }
721
722 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
723 ValueDecl *VD = dyn_cast<ValueDecl>(d);
724 if (VD == 0 || (!VD->getType()->isBlockPointerType()
725 && !VD->getType()->isFunctionPointerType())) {
726 S.Diag(Attr.getLoc(),
727 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
728 : diag::warn_attribute_wrong_decl_type)
729 << Attr.getName() << 0 /*function*/;
730 return;
731 }
732 }
733
734 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000735}
736
John Thompson35cc9622010-08-09 21:53:52 +0000737// PS3 PPU-specific.
738static void HandleVecReturnAttr(Decl *d, const AttributeList &Attr,
739 Sema &S) {
740/*
741 Returning a Vector Class in Registers
742
743 According to the PPU ABI specifications, a class with a single member of vector type is returned in
744 memory when used as the return value of a function. This results in inefficient code when implementing
745 vector classes. To return the value in a single vector register, add the vecreturn attribute to the class
746 definition. This attribute is also applicable to struct types.
747
748 Example:
749
750 struct Vector
751 {
752 __vector float xyzw;
753 } __attribute__((vecreturn));
754
755 Vector Add(Vector lhs, Vector rhs)
756 {
757 Vector result;
758 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
759 return result; // This will be returned in a register
760 }
761*/
John Thompson01add592010-09-18 01:12:07 +0000762 if (!isa<RecordDecl>(d)) {
John Thompson35cc9622010-08-09 21:53:52 +0000763 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
764 << Attr.getName() << 9 /*class*/;
765 return;
766 }
767
768 if (d->getAttr<VecReturnAttr>()) {
769 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
770 return;
771 }
772
John Thompson01add592010-09-18 01:12:07 +0000773 RecordDecl *record = cast<RecordDecl>(d);
774 int count = 0;
775
776 if (!isa<CXXRecordDecl>(record)) {
777 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
778 return;
779 }
780
781 if (!cast<CXXRecordDecl>(record)->isPOD()) {
782 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
783 return;
784 }
785
786 for (RecordDecl::field_iterator iter = record->field_begin(); iter != record->field_end(); iter++) {
787 if ((count == 1) || !iter->getType()->isVectorType()) {
788 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
789 return;
790 }
791 count++;
792 }
793
Sean Huntcf807c42010-08-18 23:23:40 +0000794 d->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +0000795}
796
Sean Huntbbd37c62009-11-21 08:43:09 +0000797static void HandleDependencyAttr(Decl *d, const AttributeList &Attr, Sema &S) {
798 if (!isFunctionOrMethod(d) && !isa<ParmVarDecl>(d)) {
799 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall04a67a62010-02-05 21:31:56 +0000800 << Attr.getName() << 8 /*function, method, or parameter*/;
Sean Huntbbd37c62009-11-21 08:43:09 +0000801 return;
802 }
803 // FIXME: Actually store the attribute on the declaration
804}
805
Ted Kremenek73798892008-07-25 04:39:19 +0000806static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
807 // check the attribute arguments.
808 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000809 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000810 return;
811 }
Mike Stumpbf916502009-07-24 19:02:52 +0000812
John McCallaec58602010-03-31 02:47:45 +0000813 if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d) &&
814 !isa<TypeDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000815 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000816 << Attr.getName() << 2 /*variable and function*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000817 return;
818 }
Mike Stumpbf916502009-07-24 19:02:52 +0000819
Sean Huntcf807c42010-08-18 23:23:40 +0000820 d->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +0000821}
822
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000823static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
824 // check the attribute arguments.
825 if (Attr.getNumArgs() != 0) {
826 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
827 return;
828 }
Mike Stumpbf916502009-07-24 19:02:52 +0000829
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000830 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000831 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000832 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
833 return;
834 }
835 } else if (!isFunctionOrMethod(d)) {
836 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000837 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000838 return;
839 }
Mike Stumpbf916502009-07-24 19:02:52 +0000840
Sean Huntcf807c42010-08-18 23:23:40 +0000841 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000842}
843
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000844static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
845 // check the attribute arguments.
846 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000847 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
848 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000849 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000850 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000851
852 int priority = 65535; // FIXME: Do not hardcode such constants.
853 if (Attr.getNumArgs() > 0) {
854 Expr *E = static_cast<Expr *>(Attr.getArg(0));
855 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000856 if (E->isTypeDependent() || E->isValueDependent() ||
857 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000858 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000859 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000860 return;
861 }
862 priority = Idx.getZExtValue();
863 }
Mike Stumpbf916502009-07-24 19:02:52 +0000864
Chris Lattnerc5197432009-04-14 17:02:11 +0000865 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000866 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000867 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000868 return;
869 }
870
Sean Huntcf807c42010-08-18 23:23:40 +0000871 d->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context, priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000872}
873
874static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
875 // check the attribute arguments.
876 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000877 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
878 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000879 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000880 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000881
882 int priority = 65535; // FIXME: Do not hardcode such constants.
883 if (Attr.getNumArgs() > 0) {
884 Expr *E = static_cast<Expr *>(Attr.getArg(0));
885 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000886 if (E->isTypeDependent() || E->isValueDependent() ||
887 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000888 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000889 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000890 return;
891 }
892 priority = Idx.getZExtValue();
893 }
Mike Stumpbf916502009-07-24 19:02:52 +0000894
Anders Carlsson6782fc62008-08-22 22:10:48 +0000895 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000896 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000897 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000898 return;
899 }
900
Sean Huntcf807c42010-08-18 23:23:40 +0000901 d->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context, priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000902}
903
Chris Lattner803d0802008-06-29 00:43:07 +0000904static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000905 // check the attribute arguments.
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +0000906 int noArgs = Attr.getNumArgs();
907 if (noArgs > 1) {
908 S.Diag(Attr.getLoc(),
909 diag::err_attribute_wrong_number_arguments) << "0 or 1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000910 return;
911 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +0000912 // Handle the case where deprecated attribute has a text message.
913 StringLiteral *SE;
914 if (noArgs == 1) {
915 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
916 SE = dyn_cast<StringLiteral>(ArgExpr);
917 if (!SE) {
918 S.Diag(ArgExpr->getLocStart(),
919 diag::err_attribute_not_string) << "deprecated";
920 return;
921 }
922 }
923 else
924 SE = StringLiteral::CreateEmpty(S.Context, 1);
Mike Stumpbf916502009-07-24 19:02:52 +0000925
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +0000926 d->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context,
927 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000928}
929
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000930static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
931 // check the attribute arguments.
932 if (Attr.getNumArgs() != 0) {
933 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
934 return;
935 }
Mike Stumpbf916502009-07-24 19:02:52 +0000936
Sean Huntcf807c42010-08-18 23:23:40 +0000937 d->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000938}
939
Chris Lattner803d0802008-06-29 00:43:07 +0000940static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000941 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000942 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000943 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000944 return;
945 }
Mike Stumpbf916502009-07-24 19:02:52 +0000946
Chris Lattner545dd342008-06-28 23:36:30 +0000947 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000948 Arg = Arg->IgnoreParenCasts();
949 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000950
Chris Lattner6b6b5372008-06-26 18:38:35 +0000951 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000952 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000953 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000954 return;
955 }
Mike Stumpbf916502009-07-24 19:02:52 +0000956
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000957 llvm::StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +0000958 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +0000959
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000960 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +0000961 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000962 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +0000963 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000964 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +0000965 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000966 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +0000967 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000968 else {
Chris Lattner08631c52008-11-23 21:45:46 +0000969 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000970 return;
971 }
Mike Stumpbf916502009-07-24 19:02:52 +0000972
Sean Huntcf807c42010-08-18 23:23:40 +0000973 d->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000974}
975
Chris Lattner0db29ec2009-02-14 08:09:34 +0000976static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
977 Sema &S) {
978 if (Attr.getNumArgs() != 0) {
979 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
980 return;
981 }
Mike Stumpbf916502009-07-24 19:02:52 +0000982
Chris Lattner0db29ec2009-02-14 08:09:34 +0000983 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
984 if (OCI == 0) {
985 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
986 return;
987 }
Mike Stumpbf916502009-07-24 19:02:52 +0000988
Sean Huntcf807c42010-08-18 23:23:40 +0000989 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +0000990}
991
992static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000993 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +0000994 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000995 return;
996 }
Chris Lattner0db29ec2009-02-14 08:09:34 +0000997 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000998 QualType T = TD->getUnderlyingType();
999 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001000 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001001 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1002 return;
1003 }
1004 }
Sean Huntcf807c42010-08-18 23:23:40 +00001005 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001006}
1007
Mike Stumpbf916502009-07-24 19:02:52 +00001008static void
Douglas Gregorf9201e02009-02-11 23:02:49 +00001009HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1010 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001011 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001012 return;
1013 }
1014
1015 if (!isa<FunctionDecl>(D)) {
1016 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1017 return;
1018 }
1019
Sean Huntcf807c42010-08-18 23:23:40 +00001020 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001021}
1022
Steve Naroff9eae5762008-09-18 16:44:58 +00001023static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001024 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001025 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001026 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001027 return;
1028 }
Mike Stumpbf916502009-07-24 19:02:52 +00001029
Steve Naroff9eae5762008-09-18 16:44:58 +00001030 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001031 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001032 return;
1033 }
Mike Stumpbf916502009-07-24 19:02:52 +00001034
Sean Huntcf807c42010-08-18 23:23:40 +00001035 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001036 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001037 type = BlocksAttr::ByRef;
1038 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001039 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001040 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001041 return;
1042 }
Mike Stumpbf916502009-07-24 19:02:52 +00001043
Sean Huntcf807c42010-08-18 23:23:40 +00001044 d->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001045}
1046
Anders Carlsson77091822008-10-05 18:05:59 +00001047static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1048 // check the attribute arguments.
1049 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001050 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1051 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +00001052 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001053 }
1054
Anders Carlsson77091822008-10-05 18:05:59 +00001055 int sentinel = 0;
1056 if (Attr.getNumArgs() > 0) {
1057 Expr *E = static_cast<Expr *>(Attr.getArg(0));
1058 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001059 if (E->isTypeDependent() || E->isValueDependent() ||
1060 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001061 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001062 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001063 return;
1064 }
1065 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001066
Anders Carlsson77091822008-10-05 18:05:59 +00001067 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001068 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1069 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001070 return;
1071 }
1072 }
1073
1074 int nullPos = 0;
1075 if (Attr.getNumArgs() > 1) {
1076 Expr *E = static_cast<Expr *>(Attr.getArg(1));
1077 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001078 if (E->isTypeDependent() || E->isValueDependent() ||
1079 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001080 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001081 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001082 return;
1083 }
1084 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001085
Anders Carlsson77091822008-10-05 18:05:59 +00001086 if (nullPos > 1 || nullPos < 0) {
1087 // FIXME: This error message could be improved, it would be nice
1088 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001089 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1090 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001091 return;
1092 }
1093 }
1094
1095 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
John McCall183700f2009-09-21 23:43:11 +00001096 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001097 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001098
Chris Lattner897cd902009-03-17 23:03:47 +00001099 if (isa<FunctionNoProtoType>(FT)) {
1100 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1101 return;
1102 }
Mike Stumpbf916502009-07-24 19:02:52 +00001103
Chris Lattner897cd902009-03-17 23:03:47 +00001104 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001105 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001106 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001107 }
Anders Carlsson77091822008-10-05 18:05:59 +00001108 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
1109 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001110 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001111 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001112 }
1113 } else if (isa<BlockDecl>(d)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001114 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1115 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001116 ;
1117 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001118 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001119 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001120 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
John McCall183700f2009-09-21 23:43:11 +00001121 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001122 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001123 int m = Ty->isFunctionPointerType() ? 0 : 1;
1124 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001125 return;
1126 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001127 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001128 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001129 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001130 return;
1131 }
Anders Carlsson77091822008-10-05 18:05:59 +00001132 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001133 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001134 << Attr.getName() << 6 /*function, method or block */;
Anders Carlsson77091822008-10-05 18:05:59 +00001135 return;
1136 }
Sean Huntcf807c42010-08-18 23:23:40 +00001137 d->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel, nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001138}
1139
Chris Lattner026dc962009-02-14 07:37:35 +00001140static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
1141 // check the attribute arguments.
1142 if (Attr.getNumArgs() != 0) {
1143 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1144 return;
1145 }
1146
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001147 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001148 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001149 << Attr.getName() << 0 /*function*/;
Chris Lattner026dc962009-02-14 07:37:35 +00001150 return;
1151 }
Mike Stumpbf916502009-07-24 19:02:52 +00001152
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001153 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1154 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1155 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001156 return;
1157 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001158 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1159 if (MD->getResultType()->isVoidType()) {
1160 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1161 << Attr.getName() << 1;
1162 return;
1163 }
1164
Sean Huntcf807c42010-08-18 23:23:40 +00001165 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001166}
1167
1168static void HandleWeakAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001169 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001170 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001171 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001172 return;
1173 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001174
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001175 /* weak only applies to non-static declarations */
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001176 if (isStaticVarOrStaticFunciton(D)) {
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001177 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static) <<
1178 dyn_cast<NamedDecl>(D)->getNameAsString();
1179 return;
1180 }
1181
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001182 // TODO: could also be applied to methods?
1183 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
1184 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001185 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001186 return;
1187 }
Mike Stumpbf916502009-07-24 19:02:52 +00001188
Sean Huntcf807c42010-08-18 23:23:40 +00001189 D->addAttr(::new (S.Context) WeakAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001190}
1191
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001192static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1193 // check the attribute arguments.
1194 if (Attr.getNumArgs() != 0) {
1195 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1196 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001197 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001198
1199 // weak_import only applies to variable & function declarations.
1200 bool isDef = false;
1201 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1202 isDef = (!VD->hasExternalStorage() || VD->getInit());
1203 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001204 isDef = FD->hasBody();
Fariborz Jahaniand4edddd2009-05-04 19:35:12 +00001205 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
1206 // We ignore weak import on properties and methods
Mike Stump1c90f4d2009-03-18 17:39:31 +00001207 return;
Fariborz Jahanian5f8f8572009-11-17 19:08:08 +00001208 } else if (!(S.LangOpts.ObjCNonFragileABI && isa<ObjCInterfaceDecl>(D))) {
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001209 // Don't issue the warning for darwin as target; yet, ignore the attribute.
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001210 if (S.Context.Target.getTriple().getOS() != llvm::Triple::Darwin ||
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001211 !isa<ObjCInterfaceDecl>(D))
1212 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001213 << Attr.getName() << 2 /*variable and function*/;
1214 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001215 }
1216
1217 // Merge should handle any subsequent violations.
1218 if (isDef) {
Mike Stumpbf916502009-07-24 19:02:52 +00001219 S.Diag(Attr.getLoc(),
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001220 diag::warn_attribute_weak_import_invalid_on_definition)
1221 << "weak_import" << 2 /*variable and function*/;
1222 return;
1223 }
1224
Sean Huntcf807c42010-08-18 23:23:40 +00001225 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001226}
1227
Nate Begeman6f3d8382009-06-26 06:32:41 +00001228static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
1229 Sema &S) {
1230 // Attribute has 3 arguments.
1231 if (Attr.getNumArgs() != 3) {
John McCall2b7baf02010-05-28 18:25:28 +00001232 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001233 return;
1234 }
1235
1236 unsigned WGSize[3];
1237 for (unsigned i = 0; i < 3; ++i) {
1238 Expr *E = static_cast<Expr *>(Attr.getArg(i));
1239 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001240 if (E->isTypeDependent() || E->isValueDependent() ||
1241 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001242 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1243 << "reqd_work_group_size" << E->getSourceRange();
1244 return;
1245 }
1246 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1247 }
Sean Huntcf807c42010-08-18 23:23:40 +00001248 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1249 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001250 WGSize[2]));
1251}
1252
Chris Lattner026dc962009-02-14 07:37:35 +00001253static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001254 // Attribute has no arguments.
1255 if (Attr.getNumArgs() != 1) {
1256 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1257 return;
1258 }
1259
1260 // Make sure that there is a string literal as the sections's single
1261 // argument.
Chris Lattner797c3c42009-08-10 19:03:04 +00001262 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
1263 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001264 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001265 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001266 return;
1267 }
Mike Stump1eb44332009-09-09 15:08:12 +00001268
Chris Lattner797c3c42009-08-10 19:03:04 +00001269 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramerbb377ed2009-11-30 17:08:26 +00001270 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001271 if (!Error.empty()) {
1272 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1273 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001274 return;
1275 }
Mike Stump1eb44332009-09-09 15:08:12 +00001276
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001277 // This attribute cannot be applied to local variables.
1278 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1279 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1280 return;
1281 }
1282
Sean Huntcf807c42010-08-18 23:23:40 +00001283 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context, SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001284}
1285
Chris Lattner6b6b5372008-06-26 18:38:35 +00001286
Chris Lattner803d0802008-06-29 00:43:07 +00001287static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001288 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001289 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001290 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001291 return;
1292 }
Mike Stumpbf916502009-07-24 19:02:52 +00001293
Sean Huntcf807c42010-08-18 23:23:40 +00001294 d->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001295}
1296
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001297static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1298 // check the attribute arguments.
1299 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001300 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001301 return;
1302 }
Mike Stumpbf916502009-07-24 19:02:52 +00001303
Sean Huntcf807c42010-08-18 23:23:40 +00001304 d->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001305}
1306
1307static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1308 // check the attribute arguments.
1309 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001310 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001311 return;
1312 }
Mike Stumpbf916502009-07-24 19:02:52 +00001313
Sean Huntcf807c42010-08-18 23:23:40 +00001314 d->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001315}
1316
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001317static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001318 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001319 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1320 return;
1321 }
Mike Stumpbf916502009-07-24 19:02:52 +00001322
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001323 if (Attr.getNumArgs() != 0) {
1324 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1325 return;
1326 }
Mike Stumpbf916502009-07-24 19:02:52 +00001327
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001328 VarDecl *VD = dyn_cast<VarDecl>(d);
Mike Stumpbf916502009-07-24 19:02:52 +00001329
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001330 if (!VD || !VD->hasLocalStorage()) {
1331 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1332 return;
1333 }
Mike Stumpbf916502009-07-24 19:02:52 +00001334
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001335 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00001336 // FIXME: Lookup probably isn't looking in the right place
1337 // FIXME: The lookup source location should be in the attribute, not the
1338 // start of the attribute.
John McCallf36e02d2009-10-09 21:13:30 +00001339 NamedDecl *CleanupDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00001340 = S.LookupSingleName(S.TUScope, Attr.getParameterName(), Attr.getLoc(),
John McCallf36e02d2009-10-09 21:13:30 +00001341 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001342 if (!CleanupDecl) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001343 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001344 Attr.getParameterName();
1345 return;
1346 }
Mike Stumpbf916502009-07-24 19:02:52 +00001347
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001348 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1349 if (!FD) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001350 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_function) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001351 Attr.getParameterName();
1352 return;
1353 }
1354
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001355 if (FD->getNumParams() != 1) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001356 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_func_must_take_one_arg) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001357 Attr.getParameterName();
1358 return;
1359 }
Mike Stumpbf916502009-07-24 19:02:52 +00001360
Anders Carlsson89941c12009-02-07 23:16:50 +00001361 // We're currently more strict than GCC about what function types we accept.
1362 // If this ever proves to be a problem it should be easy to fix.
1363 QualType Ty = S.Context.getPointerType(VD->getType());
1364 QualType ParamTy = FD->getParamDecl(0)->getType();
Eli Friedmand5e3e8e2009-04-26 01:30:08 +00001365 if (S.CheckAssignmentConstraints(ParamTy, Ty) != Sema::Compatible) {
Mike Stumpbf916502009-07-24 19:02:52 +00001366 S.Diag(Attr.getLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00001367 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1368 Attr.getParameterName() << ParamTy << Ty;
1369 return;
1370 }
Mike Stumpbf916502009-07-24 19:02:52 +00001371
Sean Huntcf807c42010-08-18 23:23:40 +00001372 d->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001373}
1374
Mike Stumpbf916502009-07-24 19:02:52 +00001375/// Handle __attribute__((format_arg((idx)))) attribute based on
1376/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1377static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001378 if (Attr.getNumArgs() != 1) {
1379 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1380 return;
1381 }
1382 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1383 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1384 << Attr.getName() << 0 /*function*/;
1385 return;
1386 }
Mike Stumpbf916502009-07-24 19:02:52 +00001387 // FIXME: in C++ the implicit 'this' function parameter also counts. this is
1388 // needed in order to be compatible with GCC the index must start with 1.
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001389 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
1390 unsigned FirstIdx = 1;
1391 // checks for the 2nd argument
1392 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
1393 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001394 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1395 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001396 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1397 << "format" << 2 << IdxExpr->getSourceRange();
1398 return;
1399 }
Mike Stumpbf916502009-07-24 19:02:52 +00001400
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001401 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1402 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1403 << "format" << 2 << IdxExpr->getSourceRange();
1404 return;
1405 }
Mike Stumpbf916502009-07-24 19:02:52 +00001406
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001407 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001408
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001409 // make sure the format string is really a string
1410 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00001411
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001412 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1413 if (not_nsstring_type &&
1414 !isCFStringType(Ty, S.Context) &&
1415 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001416 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001417 // FIXME: Should highlight the actual expression that has the wrong type.
1418 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001419 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001420 << IdxExpr->getSourceRange();
1421 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001422 }
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001423 Ty = getFunctionOrMethodResultType(d);
1424 if (!isNSStringType(Ty, S.Context) &&
1425 !isCFStringType(Ty, S.Context) &&
1426 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001427 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001428 // FIXME: Should highlight the actual expression that has the wrong type.
1429 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001430 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001431 << IdxExpr->getSourceRange();
1432 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001433 }
1434
Sean Huntcf807c42010-08-18 23:23:40 +00001435 d->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context, Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001436}
1437
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001438enum FormatAttrKind {
1439 CFStringFormat,
1440 NSStringFormat,
1441 StrftimeFormat,
1442 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00001443 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001444 InvalidFormat
1445};
1446
1447/// getFormatAttrKind - Map from format attribute names to supported format
1448/// types.
1449static FormatAttrKind getFormatAttrKind(llvm::StringRef Format) {
1450 // Check for formats that get handled specially.
1451 if (Format == "NSString")
1452 return NSStringFormat;
1453 if (Format == "CFString")
1454 return CFStringFormat;
1455 if (Format == "strftime")
1456 return StrftimeFormat;
1457
1458 // Otherwise, check for supported formats.
1459 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
1460 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
1461 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
1462 Format == "zcmn_err")
1463 return SupportedFormat;
1464
Duncan Sandsbc525952010-03-23 14:44:19 +00001465 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
1466 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00001467 return IgnoredFormat;
1468
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001469 return InvalidFormat;
1470}
1471
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001472/// Handle __attribute__((init_priority(priority))) attributes based on
1473/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
1474static void HandleInitPriorityAttr(Decl *d, const AttributeList &Attr,
1475 Sema &S) {
1476 if (!S.getLangOptions().CPlusPlus) {
1477 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1478 return;
1479 }
1480
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001481 if (!isa<VarDecl>(d) || S.getCurFunctionOrMethodDecl()) {
1482 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1483 Attr.setInvalid();
1484 return;
1485 }
1486 QualType T = dyn_cast<VarDecl>(d)->getType();
1487 if (S.Context.getAsArrayType(T))
1488 T = S.Context.getBaseElementType(T);
1489 if (!T->getAs<RecordType>()) {
1490 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1491 Attr.setInvalid();
1492 return;
1493 }
1494
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001495 if (Attr.getNumArgs() != 1) {
1496 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1497 Attr.setInvalid();
1498 return;
1499 }
1500 Expr *priorityExpr = static_cast<Expr *>(Attr.getArg(0));
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001501
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001502 llvm::APSInt priority(32);
1503 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
1504 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
1505 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1506 << "init_priority" << priorityExpr->getSourceRange();
1507 Attr.setInvalid();
1508 return;
1509 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00001510 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001511 if (prioritynum < 101 || prioritynum > 65535) {
1512 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
1513 << priorityExpr->getSourceRange();
1514 Attr.setInvalid();
1515 return;
1516 }
Sean Huntcf807c42010-08-18 23:23:40 +00001517 d->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context, prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001518}
1519
Mike Stumpbf916502009-07-24 19:02:52 +00001520/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
1521/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +00001522static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001523
Chris Lattner545dd342008-06-28 23:36:30 +00001524 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001525 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001526 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001527 return;
1528 }
1529
Chris Lattner545dd342008-06-28 23:36:30 +00001530 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001531 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001532 return;
1533 }
1534
Fariborz Jahanian620d89c2009-05-15 23:15:03 +00001535 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001536 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001537 << Attr.getName() << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001538 return;
1539 }
1540
Daniel Dunbar35682492008-09-26 04:12:28 +00001541 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001542 unsigned FirstIdx = 1;
1543
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001544 llvm::StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001545
1546 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001547 if (Format.startswith("__") && Format.endswith("__"))
1548 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001549
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001550 // Check for supported formats.
1551 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00001552
1553 if (Kind == IgnoredFormat)
1554 return;
1555
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001556 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001557 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001558 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001559 return;
1560 }
1561
1562 // checks for the 2nd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001563 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner803d0802008-06-29 00:43:07 +00001564 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001565 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1566 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001567 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001568 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001569 return;
1570 }
1571
Anders Carlsson4fb77202009-08-25 14:12:34 +00001572 // FIXME: We should handle the implicit 'this' parameter in a more generic
1573 // way that can be used for other arguments.
1574 bool HasImplicitThisParam = false;
1575 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(d)) {
1576 if (MD->isInstance()) {
1577 HasImplicitThisParam = true;
1578 NumArgs++;
1579 }
1580 }
Mike Stump1eb44332009-09-09 15:08:12 +00001581
Chris Lattner6b6b5372008-06-26 18:38:35 +00001582 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001583 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001584 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001585 return;
1586 }
1587
1588 // FIXME: Do we need to bounds check?
1589 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001590
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001591 if (HasImplicitThisParam) {
1592 if (ArgIdx == 0) {
1593 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1594 << "a string type" << IdxExpr->getSourceRange();
1595 return;
1596 }
1597 ArgIdx--;
1598 }
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Chris Lattner6b6b5372008-06-26 18:38:35 +00001600 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001601 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001602
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001603 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001604 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001605 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1606 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001607 return;
1608 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001609 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001610 // FIXME: do we need to check if the type is NSString*? What are the
1611 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001612 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001613 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001614 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1615 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001616 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001617 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001618 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001619 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001620 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001621 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1622 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001623 return;
1624 }
1625
1626 // check the 3rd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001627 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattner803d0802008-06-29 00:43:07 +00001628 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001629 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
1630 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001631 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001632 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001633 return;
1634 }
1635
1636 // check if the function is variadic if the 3rd argument non-zero
1637 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001638 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001639 ++NumArgs; // +1 for ...
1640 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001641 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001642 return;
1643 }
1644 }
1645
Chris Lattner3c73c412008-11-19 08:23:25 +00001646 // strftime requires FirstArg to be 0 because it doesn't read from any
1647 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001648 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001649 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001650 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1651 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001652 return;
1653 }
1654 // if 0 it disables parameter checking (to use with e.g. va_list)
1655 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001656 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001657 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001658 return;
1659 }
1660
Sean Huntcf807c42010-08-18 23:23:40 +00001661 d->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
1662 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001663 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001664}
1665
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001666static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1667 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001668 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001669 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001670 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001671 return;
1672 }
1673
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001674 // Try to find the underlying union declaration.
1675 RecordDecl *RD = 0;
Eli Friedmanbc887452008-09-02 05:19:23 +00001676 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001677 if (TD && TD->getUnderlyingType()->isUnionType())
1678 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1679 else
1680 RD = dyn_cast<RecordDecl>(d);
1681
1682 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001683 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001684 << Attr.getName() << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001685 return;
1686 }
1687
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001688 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001689 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001690 diag::warn_transparent_union_attribute_not_definition);
1691 return;
1692 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001693
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001694 RecordDecl::field_iterator Field = RD->field_begin(),
1695 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001696 if (Field == FieldEnd) {
1697 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1698 return;
1699 }
Eli Friedmanbc887452008-09-02 05:19:23 +00001700
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001701 FieldDecl *FirstField = *Field;
1702 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00001703 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001704 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00001705 diag::warn_transparent_union_attribute_floating)
1706 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001707 return;
1708 }
1709
1710 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1711 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1712 for (; Field != FieldEnd; ++Field) {
1713 QualType FieldType = Field->getType();
1714 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1715 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1716 // Warn if we drop the attribute.
1717 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00001718 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001719 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00001720 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001721 diag::warn_transparent_union_attribute_field_size_align)
1722 << isSize << Field->getDeclName() << FieldBits;
1723 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00001724 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001725 diag::note_transparent_union_first_field_size_align)
1726 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00001727 return;
1728 }
1729 }
1730
Sean Huntcf807c42010-08-18 23:23:40 +00001731 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001732}
1733
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001734static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001735 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001736 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001737 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001738 return;
1739 }
Chris Lattner797c3c42009-08-10 19:03:04 +00001740 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
1741 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00001742
Chris Lattner6b6b5372008-06-26 18:38:35 +00001743 // Make sure that there is a string literal as the annotation's single
1744 // argument.
1745 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001746 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00001747 return;
1748 }
Sean Huntcf807c42010-08-18 23:23:40 +00001749 d->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context, SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001750}
1751
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001752static void HandleAlignedAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001753 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001754 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001755 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001756 return;
1757 }
Sean Huntbbd37c62009-11-21 08:43:09 +00001758
1759 //FIXME: The C++0x version of this attribute has more limited applicabilty
1760 // than GNU's, and should error out when it is used to specify a
1761 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001762
Chris Lattner545dd342008-06-28 23:36:30 +00001763 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00001764 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001765 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001766 }
Mike Stumpbf916502009-07-24 19:02:52 +00001767
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001768 S.AddAlignedAttr(Attr.getLoc(), D, static_cast<Expr *>(Attr.getArg(0)));
1769}
1770
1771void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
1772 if (E->isTypeDependent() || E->isValueDependent()) {
1773 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00001774 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001775 return;
1776 }
1777
Sean Huntcf807c42010-08-18 23:23:40 +00001778 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00001779 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001780 if (!E->isIntegerConstantExpr(Alignment, Context)) {
1781 Diag(AttrLoc, diag::err_attribute_argument_not_int)
1782 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001783 return;
1784 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001785 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001786 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
1787 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001788 return;
1789 }
1790
Sean Huntcf807c42010-08-18 23:23:40 +00001791 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
1792}
1793
1794void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
1795 // FIXME: Cache the number on the Attr object if non-dependent?
1796 // FIXME: Perform checking of type validity
1797 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
1798 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001799}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001800
Mike Stumpbf916502009-07-24 19:02:52 +00001801/// HandleModeAttr - This attribute modifies the width of a decl with primitive
1802/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001803///
Mike Stumpbf916502009-07-24 19:02:52 +00001804/// Despite what would be logical, the mode attribute is a decl attribute, not a
1805/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
1806/// HImode, not an intermediate pointer.
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001807static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001808 // This attribute isn't documented, but glibc uses it. It changes
1809 // the width of an int or unsigned int to the specified size.
1810
1811 // Check that there aren't any arguments
1812 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001813 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001814 return;
1815 }
1816
1817 IdentifierInfo *Name = Attr.getParameterName();
1818 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001819 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001820 return;
1821 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00001822
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001823 llvm::StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001824
1825 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001826 if (Str.startswith("__") && Str.endswith("__"))
1827 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001828
1829 unsigned DestWidth = 0;
1830 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00001831 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00001832 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001833 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00001834 switch (Str[0]) {
1835 case 'Q': DestWidth = 8; break;
1836 case 'H': DestWidth = 16; break;
1837 case 'S': DestWidth = 32; break;
1838 case 'D': DestWidth = 64; break;
1839 case 'X': DestWidth = 96; break;
1840 case 'T': DestWidth = 128; break;
1841 }
1842 if (Str[1] == 'F') {
1843 IntegerMode = false;
1844 } else if (Str[1] == 'C') {
1845 IntegerMode = false;
1846 ComplexMode = true;
1847 } else if (Str[1] != 'I') {
1848 DestWidth = 0;
1849 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001850 break;
1851 case 4:
1852 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1853 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001854 if (Str == "word")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001855 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00001856 else if (Str == "byte")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001857 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001858 break;
1859 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00001860 if (Str == "pointer")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001861 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001862 break;
1863 }
1864
1865 QualType OldTy;
1866 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1867 OldTy = TD->getUnderlyingType();
1868 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1869 OldTy = VD->getType();
1870 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001871 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1872 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001873 return;
1874 }
Eli Friedman73397492009-03-03 06:41:03 +00001875
John McCall183700f2009-09-21 23:43:11 +00001876 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00001877 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
1878 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001879 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00001880 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1881 } else if (ComplexMode) {
1882 if (!OldTy->isComplexType())
1883 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1884 } else {
1885 if (!OldTy->isFloatingType())
1886 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1887 }
1888
Mike Stump390b4cc2009-05-16 07:39:55 +00001889 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
1890 // and friends, at least with glibc.
1891 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
1892 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00001893 // FIXME: Make sure floating-point mappings are accurate
1894 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00001895 QualType NewTy;
1896 switch (DestWidth) {
1897 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00001898 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001899 return;
1900 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00001901 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001902 return;
1903 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00001904 if (!IntegerMode) {
1905 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1906 return;
1907 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001908 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001909 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001910 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001911 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001912 break;
1913 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00001914 if (!IntegerMode) {
1915 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1916 return;
1917 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001918 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001919 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001920 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001921 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001922 break;
1923 case 32:
1924 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001925 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001926 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001927 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001928 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001929 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001930 break;
1931 case 64:
1932 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001933 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001934 else if (OldTy->isSignedIntegerType())
Chandler Carruthaec7caa2010-01-26 06:39:24 +00001935 if (S.Context.Target.getLongWidth() == 64)
1936 NewTy = S.Context.LongTy;
1937 else
1938 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001939 else
Chandler Carruthaec7caa2010-01-26 06:39:24 +00001940 if (S.Context.Target.getLongWidth() == 64)
1941 NewTy = S.Context.UnsignedLongTy;
1942 else
1943 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001944 break;
Eli Friedman73397492009-03-03 06:41:03 +00001945 case 96:
1946 NewTy = S.Context.LongDoubleTy;
1947 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00001948 case 128:
1949 if (!IntegerMode) {
1950 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1951 return;
1952 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00001953 if (OldTy->isSignedIntegerType())
1954 NewTy = S.Context.Int128Ty;
1955 else
1956 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00001957 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001958 }
1959
Eli Friedman73397492009-03-03 06:41:03 +00001960 if (ComplexMode) {
1961 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001962 }
1963
1964 // Install the new type.
John McCallba6a9bd2009-10-24 08:00:42 +00001965 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
1966 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00001967 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00001968 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00001969 cast<ValueDecl>(D)->setType(NewTy);
1970}
Chris Lattner0744e5f2008-06-29 00:23:49 +00001971
Mike Stump1feade82009-08-26 22:31:08 +00001972static void HandleNoDebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlssond87df372009-02-13 06:46:13 +00001973 // check the attribute arguments.
1974 if (Attr.getNumArgs() > 0) {
1975 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1976 return;
1977 }
Anders Carlssone896d982009-02-13 08:11:52 +00001978
Anders Carlsson5bab7882009-02-19 19:16:48 +00001979 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00001980 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001981 << Attr.getName() << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00001982 return;
1983 }
Mike Stumpbf916502009-07-24 19:02:52 +00001984
Sean Huntcf807c42010-08-18 23:23:40 +00001985 d->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00001986}
1987
Mike Stump1feade82009-08-26 22:31:08 +00001988static void HandleNoInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001989 // check the attribute arguments.
1990 if (Attr.getNumArgs() != 0) {
1991 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1992 return;
1993 }
Mike Stumpbf916502009-07-24 19:02:52 +00001994
Chris Lattnerc5197432009-04-14 17:02:11 +00001995 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001996 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001997 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001998 return;
1999 }
Mike Stumpbf916502009-07-24 19:02:52 +00002000
Sean Huntcf807c42010-08-18 23:23:40 +00002001 d->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002002}
2003
Chris Lattner7255a2d2010-06-22 00:03:40 +00002004static void HandleNoInstrumentFunctionAttr(Decl *d, const AttributeList &Attr,
2005 Sema &S) {
2006 // check the attribute arguments.
2007 if (Attr.getNumArgs() != 0) {
2008 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2009 return;
2010 }
2011
2012 if (!isa<FunctionDecl>(d)) {
2013 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2014 << Attr.getName() << 0 /*function*/;
2015 return;
2016 }
2017
Sean Huntcf807c42010-08-18 23:23:40 +00002018 d->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(), S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002019}
2020
Chris Lattnercf2a7212009-04-20 19:12:28 +00002021static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner26e25542009-04-14 16:30:50 +00002022 // check the attribute arguments.
2023 if (Attr.getNumArgs() != 0) {
2024 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2025 return;
2026 }
Mike Stumpbf916502009-07-24 19:02:52 +00002027
Chris Lattnerc5197432009-04-14 17:02:11 +00002028 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
2029 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002030 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002031 << Attr.getName() << 0 /*function*/;
Chris Lattner26e25542009-04-14 16:30:50 +00002032 return;
2033 }
Mike Stumpbf916502009-07-24 19:02:52 +00002034
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002035 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002036 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002037 return;
2038 }
Mike Stumpbf916502009-07-24 19:02:52 +00002039
Sean Huntcf807c42010-08-18 23:23:40 +00002040 d->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002041}
2042
Abramo Bagnarae215f722010-04-30 13:10:51 +00002043static void HandleCallConvAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2044 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
2045 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2046 assert(Attr.isInvalid() == false);
2047
2048 switch (Attr.getKind()) {
2049 case AttributeList::AT_fastcall:
Sean Huntcf807c42010-08-18 23:23:40 +00002050 d->addAttr(::new (S.Context) FastCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002051 return;
2052 case AttributeList::AT_stdcall:
Sean Huntcf807c42010-08-18 23:23:40 +00002053 d->addAttr(::new (S.Context) StdCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002054 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002055 case AttributeList::AT_thiscall:
Sean Huntcf807c42010-08-18 23:23:40 +00002056 d->addAttr(::new (S.Context) ThisCallAttr(Attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002057 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002058 case AttributeList::AT_cdecl:
Sean Huntcf807c42010-08-18 23:23:40 +00002059 d->addAttr(::new (S.Context) CDeclAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002060 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002061 case AttributeList::AT_pascal:
2062 d->addAttr(::new (S.Context) PascalAttr(Attr.getLoc(), S.Context));
2063 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002064 default:
2065 llvm_unreachable("unexpected attribute kind");
2066 return;
2067 }
2068}
2069
Fariborz Jahanianee760332009-03-27 18:38:55 +00002070static void HandleRegparmAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2071 // check the attribute arguments.
2072 if (Attr.getNumArgs() != 1) {
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002073 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002074 return;
2075 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002076
Fariborz Jahanianee760332009-03-27 18:38:55 +00002077 if (!isFunctionOrMethod(d)) {
2078 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002079 << Attr.getName() << 0 /*function*/;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002080 return;
2081 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002082
2083 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
2084 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002085 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
2086 !NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002087 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2088 << "regparm" << NumParamsExpr->getSourceRange();
2089 return;
2090 }
2091
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00002092 if (S.Context.Target.getRegParmMax() == 0) {
2093 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002094 << NumParamsExpr->getSourceRange();
2095 return;
2096 }
2097
Anton Korobeynikov348f28a2009-04-04 10:27:50 +00002098 if (NumParams.getLimitedValue(255) > S.Context.Target.getRegParmMax()) {
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00002099 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
2100 << S.Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002101 return;
2102 }
2103
Sean Huntcf807c42010-08-18 23:23:40 +00002104 d->addAttr(::new (S.Context) RegparmAttr(Attr.getLoc(), S.Context,
2105 NumParams.getZExtValue()));
Fariborz Jahanianee760332009-03-27 18:38:55 +00002106}
2107
Sean Huntbbd37c62009-11-21 08:43:09 +00002108static void HandleFinalAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2109 // check the attribute arguments.
2110 if (Attr.getNumArgs() != 0) {
2111 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2112 return;
2113 }
2114
2115 if (!isa<CXXRecordDecl>(d)
2116 && (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual())) {
2117 S.Diag(Attr.getLoc(),
2118 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2119 : diag::warn_attribute_wrong_decl_type)
2120 << Attr.getName() << 7 /*virtual method or class*/;
2121 return;
2122 }
Sean Hunt7725e672009-11-25 04:20:27 +00002123
2124 // FIXME: Conform to C++0x redeclaration rules.
2125
2126 if (d->getAttr<FinalAttr>()) {
2127 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "final";
2128 return;
2129 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002130
Sean Huntcf807c42010-08-18 23:23:40 +00002131 d->addAttr(::new (S.Context) FinalAttr(Attr.getLoc(), S.Context));
Sean Huntbbd37c62009-11-21 08:43:09 +00002132}
2133
Chris Lattner0744e5f2008-06-29 00:23:49 +00002134//===----------------------------------------------------------------------===//
Sean Hunt7725e672009-11-25 04:20:27 +00002135// C++0x member checking attributes
2136//===----------------------------------------------------------------------===//
2137
2138static void HandleBaseCheckAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2139 if (Attr.getNumArgs() != 0) {
2140 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2141 return;
2142 }
2143
2144 if (!isa<CXXRecordDecl>(d)) {
2145 S.Diag(Attr.getLoc(),
2146 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2147 : diag::warn_attribute_wrong_decl_type)
2148 << Attr.getName() << 9 /*class*/;
2149 return;
2150 }
2151
2152 if (d->getAttr<BaseCheckAttr>()) {
2153 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "base_check";
2154 return;
2155 }
2156
Sean Huntcf807c42010-08-18 23:23:40 +00002157 d->addAttr(::new (S.Context) BaseCheckAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002158}
2159
2160static void HandleHidingAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2161 if (Attr.getNumArgs() != 0) {
2162 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2163 return;
2164 }
2165
2166 if (!isa<RecordDecl>(d->getDeclContext())) {
2167 // FIXME: It's not the type that's the problem
2168 S.Diag(Attr.getLoc(),
2169 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2170 : diag::warn_attribute_wrong_decl_type)
2171 << Attr.getName() << 11 /*member*/;
2172 return;
2173 }
2174
2175 // FIXME: Conform to C++0x redeclaration rules.
2176
2177 if (d->getAttr<HidingAttr>()) {
2178 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "hiding";
2179 return;
2180 }
2181
Sean Huntcf807c42010-08-18 23:23:40 +00002182 d->addAttr(::new (S.Context) HidingAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002183}
2184
2185static void HandleOverrideAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2186 if (Attr.getNumArgs() != 0) {
2187 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2188 return;
2189 }
2190
2191 if (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual()) {
2192 // FIXME: It's not the type that's the problem
2193 S.Diag(Attr.getLoc(),
2194 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2195 : diag::warn_attribute_wrong_decl_type)
2196 << Attr.getName() << 10 /*virtual method*/;
2197 return;
2198 }
2199
2200 // FIXME: Conform to C++0x redeclaration rules.
2201
2202 if (d->getAttr<OverrideAttr>()) {
2203 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "override";
2204 return;
2205 }
2206
Sean Huntcf807c42010-08-18 23:23:40 +00002207 d->addAttr(::new (S.Context) OverrideAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002208}
2209
2210//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00002211// Checker-specific attribute handlers.
2212//===----------------------------------------------------------------------===//
2213
2214static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &Attr,
2215 Sema &S) {
2216
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002217 QualType RetTy;
Mike Stumpbf916502009-07-24 19:02:52 +00002218
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002219 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
2220 RetTy = MD->getResultType();
2221 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
2222 RetTy = FD->getResultType();
2223 else {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002224 SourceLocation L = Attr.getLoc();
2225 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2226 << SourceRange(L, L) << Attr.getName() << 3 /* function or method */;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002227 return;
2228 }
Mike Stumpbf916502009-07-24 19:02:52 +00002229
Ted Kremenek6217b802009-07-29 21:53:49 +00002230 if (!(S.Context.isObjCNSObjectType(RetTy) || RetTy->getAs<PointerType>()
John McCall183700f2009-09-21 23:43:11 +00002231 || RetTy->getAs<ObjCObjectPointerType>())) {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002232 SourceLocation L = Attr.getLoc();
2233 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
2234 << SourceRange(L, L) << Attr.getName();
Mike Stumpbf916502009-07-24 19:02:52 +00002235 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002236 }
Mike Stumpbf916502009-07-24 19:02:52 +00002237
Ted Kremenekb71368d2009-05-09 02:44:38 +00002238 switch (Attr.getKind()) {
2239 default:
2240 assert(0 && "invalid ownership attribute");
2241 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00002242 case AttributeList::AT_cf_returns_not_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002243 d->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002244 return;
2245 case AttributeList::AT_ns_returns_not_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002246 d->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002247 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002248 case AttributeList::AT_cf_returns_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002249 d->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002250 return;
2251 case AttributeList::AT_ns_returns_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002252 d->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002253 return;
2254 };
2255}
2256
Charles Davisf0122fe2010-02-16 18:27:26 +00002257static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
2258 return Attr.getKind() == AttributeList::AT_dllimport ||
2259 Attr.getKind() == AttributeList::AT_dllexport;
2260}
2261
Ted Kremenekb71368d2009-05-09 02:44:38 +00002262//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00002263// Top Level Sema Entry Points
2264//===----------------------------------------------------------------------===//
2265
Sebastian Redla89d82c2008-12-21 19:24:58 +00002266/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
Chris Lattner803d0802008-06-29 00:43:07 +00002267/// the attribute applies to decls. If the attribute is a type attribute, just
Sean Huntbbd37c62009-11-21 08:43:09 +00002268/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
2269/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Mike Stumpbf916502009-07-24 19:02:52 +00002270static void ProcessDeclAttribute(Scope *scope, Decl *D,
2271 const AttributeList &Attr, Sema &S) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002272 if (Attr.isInvalid())
2273 return;
2274
Charles Davisf0122fe2010-02-16 18:27:26 +00002275 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
2276 // FIXME: Try to deal with other __declspec attributes!
Eli Friedman290eeb02009-06-08 23:27:34 +00002277 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002278 switch (Attr.getKind()) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00002279 case AttributeList::AT_IBAction: HandleIBAction(D, Attr, S); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00002280 case AttributeList::AT_IBOutlet: HandleIBOutlet(D, Attr, S); break;
2281 case AttributeList::AT_IBOutletCollection:
2282 HandleIBOutletCollection(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002283 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00002284 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00002285 case AttributeList::AT_vector_size:
Mike Stumpbf916502009-07-24 19:02:52 +00002286 // Ignore these, these are type attributes, handled by
2287 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00002288 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002289 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
2290 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002291 case AttributeList::AT_always_inline:
Daniel Dunbaraf668b02008-10-28 00:17:57 +00002292 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00002293 case AttributeList::AT_analyzer_noreturn:
Mike Stumpbf916502009-07-24 19:02:52 +00002294 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002295 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
2296 case AttributeList::AT_base_check: HandleBaseCheckAttr (D, Attr, S); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00002297 case AttributeList::AT_carries_dependency:
Sean Hunt7725e672009-11-25 04:20:27 +00002298 HandleDependencyAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002299 case AttributeList::AT_constructor: HandleConstructorAttr (D, Attr, S); break;
2300 case AttributeList::AT_deprecated: HandleDeprecatedAttr (D, Attr, S); break;
2301 case AttributeList::AT_destructor: HandleDestructorAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002302 case AttributeList::AT_ext_vector_type:
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002303 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattner803d0802008-06-29 00:43:07 +00002304 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002305 case AttributeList::AT_final: HandleFinalAttr (D, Attr, S); break;
2306 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
2307 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
2308 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr (D, Attr, S); break;
2309 case AttributeList::AT_hiding: HandleHidingAttr (D, Attr, S); break;
2310 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
2311 case AttributeList::AT_malloc: HandleMallocAttr (D, Attr, S); break;
2312 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002313 case AttributeList::AT_ownership_returns:
2314 case AttributeList::AT_ownership_takes:
2315 case AttributeList::AT_ownership_holds:
2316 HandleOwnershipAttr (D, Attr, S); break;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00002317 case AttributeList::AT_naked: HandleNakedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002318 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
2319 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
2320 case AttributeList::AT_override: HandleOverrideAttr (D, Attr, S); break;
John Thompson35cc9622010-08-09 21:53:52 +00002321 case AttributeList::AT_vecreturn: HandleVecReturnAttr (D, Attr, S); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002322
2323 // Checker-specific.
Ted Kremenek31c780d2010-02-18 00:05:45 +00002324 case AttributeList::AT_ns_returns_not_retained:
2325 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00002326 case AttributeList::AT_ns_returns_retained:
2327 case AttributeList::AT_cf_returns_retained:
2328 HandleNSReturnsRetainedAttr(D, Attr, S); break;
2329
Nate Begeman6f3d8382009-06-26 06:32:41 +00002330 case AttributeList::AT_reqd_wg_size:
2331 HandleReqdWorkGroupSize(D, Attr, S); break;
2332
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002333 case AttributeList::AT_init_priority:
2334 HandleInitPriorityAttr(D, Attr, S); break;
2335
Sean Hunt7725e672009-11-25 04:20:27 +00002336 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
2337 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002338 case AttributeList::AT_unavailable: HandleUnavailableAttr (D, Attr, S); break;
2339 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
2340 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002341 case AttributeList::AT_visibility: HandleVisibilityAttr (D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00002342 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
2343 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002344 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002345 case AttributeList::AT_weakref: HandleWeakRefAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002346 case AttributeList::AT_weak_import: HandleWeakImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002347 case AttributeList::AT_transparent_union:
2348 HandleTransparentUnionAttr(D, Attr, S);
2349 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002350 case AttributeList::AT_objc_exception:
2351 HandleObjCExceptionAttr(D, Attr, S);
2352 break;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002353 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002354 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
2355 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
2356 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
2357 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
2358 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
2359 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
2360 case AttributeList::AT_nodebug: HandleNoDebugAttr (D, Attr, S); break;
2361 case AttributeList::AT_noinline: HandleNoInlineAttr (D, Attr, S); break;
2362 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002363 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00002364 // Just ignore
2365 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002366 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
2367 HandleNoInstrumentFunctionAttr(D, Attr, S);
2368 break;
John McCall04a67a62010-02-05 21:31:56 +00002369 case AttributeList::AT_stdcall:
2370 case AttributeList::AT_cdecl:
2371 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002372 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00002373 case AttributeList::AT_pascal:
Abramo Bagnarae215f722010-04-30 13:10:51 +00002374 HandleCallConvAttr(D, Attr, S);
John McCall04a67a62010-02-05 21:31:56 +00002375 break;
Chris Lattner803d0802008-06-29 00:43:07 +00002376 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00002377 // Ask target about the attribute.
2378 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
2379 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00002380 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
2381 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00002382 break;
2383 }
2384}
2385
2386/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
2387/// attribute list to the specified decl, ignoring any type attributes.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002388void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002389 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
2390 ProcessDeclAttribute(S, D, *l, *this);
2391 }
2392
2393 // GCC accepts
2394 // static int a9 __attribute__((weakref));
2395 // but that looks really pointless. We reject it.
2396 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
2397 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002398 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002399 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002400 }
2401}
2402
Ryan Flynne25ff832009-07-30 03:15:39 +00002403/// DeclClonePragmaWeak - clone existing decl (maybe definition),
2404/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump1eb44332009-09-09 15:08:12 +00002405NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002406 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00002407 NamedDecl *NewD = 0;
2408 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
2409 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
2410 FD->getLocation(), DeclarationName(II),
John McCalla93c9342009-12-07 02:54:59 +00002411 FD->getType(), FD->getTypeSourceInfo());
John McCallb6217662010-03-15 10:12:16 +00002412 if (FD->getQualifier()) {
2413 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
2414 NewFD->setQualifierInfo(FD->getQualifier(), FD->getQualifierRange());
2415 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002416 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
2417 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
2418 VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00002419 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002420 VD->getStorageClass(),
2421 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00002422 if (VD->getQualifier()) {
2423 VarDecl *NewVD = cast<VarDecl>(NewD);
2424 NewVD->setQualifierInfo(VD->getQualifier(), VD->getQualifierRange());
2425 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002426 }
2427 return NewD;
2428}
2429
2430/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
2431/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002432void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002433 if (W.getUsed()) return; // only do this once
2434 W.setUsed(true);
2435 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
2436 IdentifierInfo *NDId = ND->getIdentifier();
2437 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Sean Huntcf807c42010-08-18 23:23:40 +00002438 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
2439 NDId->getName()));
2440 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002441 WeakTopLevelDecl.push_back(NewD);
2442 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
2443 // to insert Decl at TU scope, sorry.
2444 DeclContext *SavedContext = CurContext;
2445 CurContext = Context.getTranslationUnitDecl();
2446 PushOnScopeChains(NewD, S);
2447 CurContext = SavedContext;
2448 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00002449 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00002450 }
2451}
2452
Chris Lattner0744e5f2008-06-29 00:23:49 +00002453/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
2454/// it, apply them to D. This is a bit tricky because PD can have attributes
2455/// specified in many different places, and we need to find and apply them all.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002456void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Ryan Flynne25ff832009-07-30 03:15:39 +00002457 // Handle #pragma weak
2458 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
2459 if (ND->hasLinkage()) {
2460 WeakInfo W = WeakUndeclaredIdentifiers.lookup(ND->getIdentifier());
2461 if (W != WeakInfo()) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002462 // Identifier referenced by #pragma weak before it was declared
2463 DeclApplyPragmaWeak(S, ND, W);
Ryan Flynne25ff832009-07-30 03:15:39 +00002464 WeakUndeclaredIdentifiers[ND->getIdentifier()] = W;
2465 }
2466 }
2467 }
2468
Chris Lattner0744e5f2008-06-29 00:23:49 +00002469 // Apply decl attributes from the DeclSpec if present.
2470 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002471 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00002472
Chris Lattner0744e5f2008-06-29 00:23:49 +00002473 // Walk the declarator structure, applying decl attributes that were in a type
2474 // position to the decl itself. This handles cases like:
2475 // int *__attr__(x)** D;
2476 // when X is a decl attribute.
2477 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
2478 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002479 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00002480
Chris Lattner0744e5f2008-06-29 00:23:49 +00002481 // Finally, apply any attributes on the decl itself.
2482 if (const AttributeList *Attrs = PD.getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002483 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00002484}
John McCall54abf7d2009-11-04 02:18:39 +00002485
2486/// PushParsingDeclaration - Enter a new "scope" of deprecation
2487/// warnings.
2488///
2489/// The state token we use is the start index of this scope
2490/// on the warning stack.
John McCallf312b1e2010-08-26 23:41:50 +00002491Sema::ParsingDeclStackState Sema::PushParsingDeclaration() {
John McCall54abf7d2009-11-04 02:18:39 +00002492 ParsingDeclDepth++;
John McCall2f514482010-01-27 03:50:35 +00002493 return (ParsingDeclStackState) DelayedDiagnostics.size();
2494}
2495
John McCalld226f652010-08-21 09:40:31 +00002496void Sema::PopParsingDeclaration(ParsingDeclStackState S, Decl *D) {
John McCall2f514482010-01-27 03:50:35 +00002497 assert(ParsingDeclDepth > 0 && "empty ParsingDeclaration stack");
2498 ParsingDeclDepth--;
2499
2500 if (DelayedDiagnostics.empty())
2501 return;
2502
2503 unsigned SavedIndex = (unsigned) S;
2504 assert(SavedIndex <= DelayedDiagnostics.size() &&
2505 "saved index is out of bounds");
2506
John McCall58e6f342010-03-16 05:22:47 +00002507 unsigned E = DelayedDiagnostics.size();
2508
John McCall2f514482010-01-27 03:50:35 +00002509 // We only want to actually emit delayed diagnostics when we
2510 // successfully parsed a decl.
John McCall2f514482010-01-27 03:50:35 +00002511 if (D) {
2512 // We really do want to start with 0 here. We get one push for a
2513 // decl spec and another for each declarator; in a decl group like:
2514 // deprecated_typedef foo, *bar, baz();
2515 // only the declarator pops will be passed decls. This is correct;
2516 // we really do need to consider delayed diagnostics from the decl spec
2517 // for each of the different declarations.
John McCall58e6f342010-03-16 05:22:47 +00002518 for (unsigned I = 0; I != E; ++I) {
John McCall2f514482010-01-27 03:50:35 +00002519 if (DelayedDiagnostics[I].Triggered)
2520 continue;
2521
2522 switch (DelayedDiagnostics[I].Kind) {
2523 case DelayedDiagnostic::Deprecation:
2524 HandleDelayedDeprecationCheck(DelayedDiagnostics[I], D);
2525 break;
2526
2527 case DelayedDiagnostic::Access:
2528 HandleDelayedAccessCheck(DelayedDiagnostics[I], D);
2529 break;
2530 }
2531 }
2532 }
2533
John McCall58e6f342010-03-16 05:22:47 +00002534 // Destroy all the delayed diagnostics we're about to pop off.
2535 for (unsigned I = SavedIndex; I != E; ++I)
2536 DelayedDiagnostics[I].destroy();
2537
John McCall2f514482010-01-27 03:50:35 +00002538 DelayedDiagnostics.set_size(SavedIndex);
John McCall54abf7d2009-11-04 02:18:39 +00002539}
2540
2541static bool isDeclDeprecated(Decl *D) {
2542 do {
2543 if (D->hasAttr<DeprecatedAttr>())
2544 return true;
2545 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
2546 return false;
2547}
2548
John McCall9c3087b2010-08-26 02:13:20 +00002549void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00002550 Decl *Ctx) {
2551 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00002552 return;
2553
John McCall2f514482010-01-27 03:50:35 +00002554 DD.Triggered = true;
Fariborz Jahaniandf9fb912010-10-06 22:20:08 +00002555 if (DD.DeprecationData.Message)
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002556 Diag(DD.Loc, diag::warn_deprecated_message)
2557 << DD.DeprecationData.Decl->getDeclName()
2558 << DD.DeprecationData.Message;
2559 else
2560 Diag(DD.Loc, diag::warn_deprecated)
2561 << DD.DeprecationData.Decl->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00002562}
2563
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002564void Sema::EmitDeprecationWarning(NamedDecl *D, const char * Message,
2565 SourceLocation Loc) {
John McCall54abf7d2009-11-04 02:18:39 +00002566 // Delay if we're currently parsing a declaration.
2567 if (ParsingDeclDepth) {
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002568 DelayedDiagnostics.push_back(DelayedDiagnostic::makeDeprecation(Loc, D,
2569 Message));
John McCall54abf7d2009-11-04 02:18:39 +00002570 return;
2571 }
2572
2573 // Otherwise, don't warn if our current context is deprecated.
2574 if (isDeclDeprecated(cast<Decl>(CurContext)))
2575 return;
Fariborz Jahaniandf9fb912010-10-06 22:20:08 +00002576 if (Message)
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002577 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
2578 << Message;
2579 else
2580 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00002581}