blob: dce1bf84fcc46290af7bd895206c2b87ef4ffea0 [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);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000374 }
Mike Stumpbf916502009-07-24 19:02:52 +0000375
Ted Kremenek1db5d142010-09-09 01:17:32 +0000376 // No pointer arguments? The attribute in this case is
377 // trivially satisfied.
378 if (NonNullArgs.empty())
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000379 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000380 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000381
382 unsigned* start = &NonNullArgs[0];
383 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000384 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000385 d->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
386 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000387}
388
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000389static void HandleOwnershipAttr(Decl *d, const AttributeList &AL, Sema &S) {
390 // This attribute must be applied to a function declaration.
391 // The first argument to the attribute must be a string,
392 // the name of the resource, for example "malloc".
393 // The following arguments must be argument indexes, the arguments must be
394 // of integer type for Returns, otherwise of pointer type.
395 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000396 // after being held. free() should be __attribute((ownership_takes)), whereas
397 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000398
399 if (!AL.getParameterName()) {
400 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
401 << AL.getName()->getName() << 1;
402 return;
403 }
404 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000405 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000406 switch (AL.getKind()) {
407 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000408 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000409 if (AL.getNumArgs() < 1) {
410 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
411 return;
412 }
Jordy Rose2a479922010-08-12 08:54:03 +0000413 break;
414 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000415 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000416 if (AL.getNumArgs() < 1) {
417 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
418 return;
419 }
Jordy Rose2a479922010-08-12 08:54:03 +0000420 break;
421 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000422 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000423 if (AL.getNumArgs() > 1) {
424 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
425 << AL.getNumArgs() + 1;
426 return;
427 }
Jordy Rose2a479922010-08-12 08:54:03 +0000428 break;
429 default:
430 // This should never happen given how we are called.
431 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000432 }
433
434 if (!isFunction(d) || !hasFunctionProto(d)) {
435 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL.getName()
436 << 0 /*function*/;
437 return;
438 }
439
440 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
441
442 llvm::StringRef Module = AL.getParameterName()->getName();
443
444 // Normalize the argument, __foo__ becomes foo.
445 if (Module.startswith("__") && Module.endswith("__"))
446 Module = Module.substr(2, Module.size() - 4);
447
448 llvm::SmallVector<unsigned, 10> OwnershipArgs;
449
Jordy Rose2a479922010-08-12 08:54:03 +0000450 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
451 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000452
453 Expr *IdxExpr = static_cast<Expr *>(*I);
454 llvm::APSInt ArgNum(32);
455 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
456 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
457 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
458 << AL.getName()->getName() << IdxExpr->getSourceRange();
459 continue;
460 }
461
462 unsigned x = (unsigned) ArgNum.getZExtValue();
463
464 if (x > NumArgs || x < 1) {
465 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
466 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
467 continue;
468 }
469 --x;
470 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +0000471 case OwnershipAttr::Takes:
472 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000473 // Is the function argument a pointer type?
474 QualType T = getFunctionOrMethodArgType(d, x);
475 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
476 // FIXME: Should also highlight argument in decl.
477 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +0000478 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000479 << "pointer"
480 << IdxExpr->getSourceRange();
481 continue;
482 }
483 break;
484 }
Sean Huntcf807c42010-08-18 23:23:40 +0000485 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000486 if (AL.getNumArgs() > 1) {
487 // Is the function argument an integer type?
488 Expr *IdxExpr = static_cast<Expr *>(AL.getArg(0));
489 llvm::APSInt ArgNum(32);
490 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
491 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
492 S.Diag(AL.getLoc(), diag::err_ownership_type)
493 << "ownership_returns" << "integer"
494 << IdxExpr->getSourceRange();
495 return;
496 }
497 }
498 break;
499 }
Jordy Rose2a479922010-08-12 08:54:03 +0000500 default:
501 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000502 } // switch
503
504 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +0000505 for (specific_attr_iterator<OwnershipAttr>
506 i = d->specific_attr_begin<OwnershipAttr>(),
507 e = d->specific_attr_end<OwnershipAttr>();
508 i != e; ++i) {
509 if ((*i)->getOwnKind() != K) {
510 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
511 I!=E; ++I) {
512 if (x == *I) {
513 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
514 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000515 }
516 }
517 }
518 }
519 OwnershipArgs.push_back(x);
520 }
521
522 unsigned* start = OwnershipArgs.data();
523 unsigned size = OwnershipArgs.size();
524 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000525
526 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
527 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
528 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000529 }
Sean Huntcf807c42010-08-18 23:23:40 +0000530
531 d->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
532 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000533}
534
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000535static bool isStaticVarOrStaticFunciton(Decl *D) {
536 if (VarDecl *VD = dyn_cast<VarDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000537 return VD->getStorageClass() == SC_Static;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000538 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCalld931b082010-08-26 03:08:43 +0000539 return FD->getStorageClass() == SC_Static;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000540 return false;
541}
542
543static void HandleWeakRefAttr(Decl *d, const AttributeList &Attr, Sema &S) {
544 // Check the attribute arguments.
545 if (Attr.getNumArgs() > 1) {
546 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
547 return;
548 }
549
550 // gcc rejects
551 // class c {
552 // static int a __attribute__((weakref ("v2")));
553 // static int b() __attribute__((weakref ("f3")));
554 // };
555 // and ignores the attributes of
556 // void f(void) {
557 // static int a __attribute__((weakref ("v2")));
558 // }
559 // we reject them
Sebastian Redl7a126a42010-08-31 00:36:30 +0000560 const DeclContext *Ctx = d->getDeclContext()->getRedeclContext();
561 if (!Ctx->isFileContext()) {
562 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
563 dyn_cast<NamedDecl>(d)->getNameAsString();
564 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000565 }
566
567 // The GCC manual says
568 //
569 // At present, a declaration to which `weakref' is attached can only
570 // be `static'.
571 //
572 // It also says
573 //
574 // Without a TARGET,
575 // given as an argument to `weakref' or to `alias', `weakref' is
576 // equivalent to `weak'.
577 //
578 // gcc 4.4.1 will accept
579 // int a7 __attribute__((weakref));
580 // as
581 // int a7 __attribute__((weak));
582 // This looks like a bug in gcc. We reject that for now. We should revisit
583 // it if this behaviour is actually used.
584
585 if (!isStaticVarOrStaticFunciton(d)) {
586 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static) <<
587 dyn_cast<NamedDecl>(d)->getNameAsString();
588 return;
589 }
590
591 // GCC rejects
592 // static ((alias ("y"), weakref)).
593 // Should we? How to check that weakref is before or after alias?
594
595 if (Attr.getNumArgs() == 1) {
596 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
597 Arg = Arg->IgnoreParenCasts();
598 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
599
600 if (Str == 0 || Str->isWide()) {
601 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
602 << "weakref" << 1;
603 return;
604 }
605 // GCC will accept anything as the argument of weakref. Should we
606 // check for an existing decl?
Sean Huntcf807c42010-08-18 23:23:40 +0000607 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context, Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000608 }
609
Sean Huntcf807c42010-08-18 23:23:40 +0000610 d->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000611}
612
Chris Lattner803d0802008-06-29 00:43:07 +0000613static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000614 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000615 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000616 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000617 return;
618 }
Mike Stumpbf916502009-07-24 19:02:52 +0000619
Chris Lattner545dd342008-06-28 23:36:30 +0000620 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000621 Arg = Arg->IgnoreParenCasts();
622 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000623
Chris Lattner6b6b5372008-06-26 18:38:35 +0000624 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000625 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000626 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000627 return;
628 }
Mike Stumpbf916502009-07-24 19:02:52 +0000629
Chris Lattner6b6b5372008-06-26 18:38:35 +0000630 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +0000631
Sean Huntcf807c42010-08-18 23:23:40 +0000632 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context, Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000633}
634
Mike Stumpbf916502009-07-24 19:02:52 +0000635static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000636 Sema &S) {
637 // check the attribute arguments.
638 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000639 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000640 return;
641 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000642
Chris Lattnerc5197432009-04-14 17:02:11 +0000643 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +0000644 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000645 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +0000646 return;
647 }
Mike Stumpbf916502009-07-24 19:02:52 +0000648
Sean Huntcf807c42010-08-18 23:23:40 +0000649 d->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000650}
651
Ryan Flynn76168e22009-08-09 20:07:29 +0000652static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
653 // check the attribute arguments.
654 if (Attr.getNumArgs() != 0) {
655 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
656 return;
657 }
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000659 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000660 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000661 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000662 d->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000663 return;
664 }
Ryan Flynn76168e22009-08-09 20:07:29 +0000665 }
666
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000667 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +0000668}
669
Ted Kremenekb7252322009-04-10 00:01:14 +0000670static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Abramo Bagnarae215f722010-04-30 13:10:51 +0000671 /* Diagnostics (if any) was emitted by Sema::ProcessFnAttr(). */
672 assert(Attr.isInvalid() == false);
Sean Huntcf807c42010-08-18 23:23:40 +0000673 d->addAttr(::new (S.Context) NoReturnAttr(Attr.getLoc(), S.Context));
Ted Kremenekb7252322009-04-10 00:01:14 +0000674}
675
676static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
677 Sema &S) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +0000678
679 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
680 // because 'analyzer_noreturn' does not impact the type.
681
682 if (Attr.getNumArgs() != 0) {
683 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
684 return;
685 }
686
687 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
688 ValueDecl *VD = dyn_cast<ValueDecl>(d);
689 if (VD == 0 || (!VD->getType()->isBlockPointerType()
690 && !VD->getType()->isFunctionPointerType())) {
691 S.Diag(Attr.getLoc(),
692 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
693 : diag::warn_attribute_wrong_decl_type)
694 << Attr.getName() << 0 /*function*/;
695 return;
696 }
697 }
698
699 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000700}
701
John Thompson35cc9622010-08-09 21:53:52 +0000702// PS3 PPU-specific.
703static void HandleVecReturnAttr(Decl *d, const AttributeList &Attr,
704 Sema &S) {
705/*
706 Returning a Vector Class in Registers
707
708 According to the PPU ABI specifications, a class with a single member of vector type is returned in
709 memory when used as the return value of a function. This results in inefficient code when implementing
710 vector classes. To return the value in a single vector register, add the vecreturn attribute to the class
711 definition. This attribute is also applicable to struct types.
712
713 Example:
714
715 struct Vector
716 {
717 __vector float xyzw;
718 } __attribute__((vecreturn));
719
720 Vector Add(Vector lhs, Vector rhs)
721 {
722 Vector result;
723 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
724 return result; // This will be returned in a register
725 }
726*/
John Thompson01add592010-09-18 01:12:07 +0000727 if (!isa<RecordDecl>(d)) {
John Thompson35cc9622010-08-09 21:53:52 +0000728 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
729 << Attr.getName() << 9 /*class*/;
730 return;
731 }
732
733 if (d->getAttr<VecReturnAttr>()) {
734 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
735 return;
736 }
737
John Thompson01add592010-09-18 01:12:07 +0000738 RecordDecl *record = cast<RecordDecl>(d);
739 int count = 0;
740
741 if (!isa<CXXRecordDecl>(record)) {
742 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
743 return;
744 }
745
746 if (!cast<CXXRecordDecl>(record)->isPOD()) {
747 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
748 return;
749 }
750
751 for (RecordDecl::field_iterator iter = record->field_begin(); iter != record->field_end(); iter++) {
752 if ((count == 1) || !iter->getType()->isVectorType()) {
753 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
754 return;
755 }
756 count++;
757 }
758
Sean Huntcf807c42010-08-18 23:23:40 +0000759 d->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +0000760}
761
Sean Huntbbd37c62009-11-21 08:43:09 +0000762static void HandleDependencyAttr(Decl *d, const AttributeList &Attr, Sema &S) {
763 if (!isFunctionOrMethod(d) && !isa<ParmVarDecl>(d)) {
764 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall04a67a62010-02-05 21:31:56 +0000765 << Attr.getName() << 8 /*function, method, or parameter*/;
Sean Huntbbd37c62009-11-21 08:43:09 +0000766 return;
767 }
768 // FIXME: Actually store the attribute on the declaration
769}
770
Ted Kremenek73798892008-07-25 04:39:19 +0000771static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
772 // check the attribute arguments.
773 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000774 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000775 return;
776 }
Mike Stumpbf916502009-07-24 19:02:52 +0000777
John McCallaec58602010-03-31 02:47:45 +0000778 if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d) &&
779 !isa<TypeDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000780 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000781 << Attr.getName() << 2 /*variable and function*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000782 return;
783 }
Mike Stumpbf916502009-07-24 19:02:52 +0000784
Sean Huntcf807c42010-08-18 23:23:40 +0000785 d->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +0000786}
787
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000788static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
789 // check the attribute arguments.
790 if (Attr.getNumArgs() != 0) {
791 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
792 return;
793 }
Mike Stumpbf916502009-07-24 19:02:52 +0000794
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000795 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000796 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000797 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
798 return;
799 }
800 } else if (!isFunctionOrMethod(d)) {
801 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000802 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000803 return;
804 }
Mike Stumpbf916502009-07-24 19:02:52 +0000805
Sean Huntcf807c42010-08-18 23:23:40 +0000806 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000807}
808
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000809static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
810 // check the attribute arguments.
811 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000812 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
813 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000814 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000815 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000816
817 int priority = 65535; // FIXME: Do not hardcode such constants.
818 if (Attr.getNumArgs() > 0) {
819 Expr *E = static_cast<Expr *>(Attr.getArg(0));
820 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000821 if (E->isTypeDependent() || E->isValueDependent() ||
822 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000823 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000824 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000825 return;
826 }
827 priority = Idx.getZExtValue();
828 }
Mike Stumpbf916502009-07-24 19:02:52 +0000829
Chris Lattnerc5197432009-04-14 17:02:11 +0000830 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000831 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000832 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000833 return;
834 }
835
Sean Huntcf807c42010-08-18 23:23:40 +0000836 d->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context, priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000837}
838
839static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
840 // check the attribute arguments.
841 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000842 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
843 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000844 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000845 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000846
847 int priority = 65535; // FIXME: Do not hardcode such constants.
848 if (Attr.getNumArgs() > 0) {
849 Expr *E = static_cast<Expr *>(Attr.getArg(0));
850 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000851 if (E->isTypeDependent() || E->isValueDependent() ||
852 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000853 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000854 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000855 return;
856 }
857 priority = Idx.getZExtValue();
858 }
Mike Stumpbf916502009-07-24 19:02:52 +0000859
Anders Carlsson6782fc62008-08-22 22:10:48 +0000860 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000861 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000862 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000863 return;
864 }
865
Sean Huntcf807c42010-08-18 23:23:40 +0000866 d->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context, priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000867}
868
Chris Lattner803d0802008-06-29 00:43:07 +0000869static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000870 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000871 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000873 return;
874 }
Mike Stumpbf916502009-07-24 19:02:52 +0000875
Sean Huntcf807c42010-08-18 23:23:40 +0000876 d->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000877}
878
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000879static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
880 // check the attribute arguments.
881 if (Attr.getNumArgs() != 0) {
882 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
883 return;
884 }
Mike Stumpbf916502009-07-24 19:02:52 +0000885
Sean Huntcf807c42010-08-18 23:23:40 +0000886 d->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000887}
888
Chris Lattner803d0802008-06-29 00:43:07 +0000889static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000890 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000891 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000892 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000893 return;
894 }
Mike Stumpbf916502009-07-24 19:02:52 +0000895
Chris Lattner545dd342008-06-28 23:36:30 +0000896 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000897 Arg = Arg->IgnoreParenCasts();
898 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000899
Chris Lattner6b6b5372008-06-26 18:38:35 +0000900 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000901 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000902 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000903 return;
904 }
Mike Stumpbf916502009-07-24 19:02:52 +0000905
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000906 llvm::StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +0000907 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +0000908
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000909 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +0000910 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000911 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +0000912 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000913 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +0000914 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +0000915 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +0000916 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000917 else {
Chris Lattner08631c52008-11-23 21:45:46 +0000918 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000919 return;
920 }
Mike Stumpbf916502009-07-24 19:02:52 +0000921
Sean Huntcf807c42010-08-18 23:23:40 +0000922 d->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000923}
924
Chris Lattner0db29ec2009-02-14 08:09:34 +0000925static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
926 Sema &S) {
927 if (Attr.getNumArgs() != 0) {
928 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
929 return;
930 }
Mike Stumpbf916502009-07-24 19:02:52 +0000931
Chris Lattner0db29ec2009-02-14 08:09:34 +0000932 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
933 if (OCI == 0) {
934 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
935 return;
936 }
Mike Stumpbf916502009-07-24 19:02:52 +0000937
Sean Huntcf807c42010-08-18 23:23:40 +0000938 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +0000939}
940
941static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000942 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +0000943 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000944 return;
945 }
Chris Lattner0db29ec2009-02-14 08:09:34 +0000946 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000947 QualType T = TD->getUnderlyingType();
948 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +0000949 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000950 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
951 return;
952 }
953 }
Sean Huntcf807c42010-08-18 23:23:40 +0000954 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000955}
956
Mike Stumpbf916502009-07-24 19:02:52 +0000957static void
Douglas Gregorf9201e02009-02-11 23:02:49 +0000958HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
959 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +0000960 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +0000961 return;
962 }
963
964 if (!isa<FunctionDecl>(D)) {
965 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
966 return;
967 }
968
Sean Huntcf807c42010-08-18 23:23:40 +0000969 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +0000970}
971
Steve Naroff9eae5762008-09-18 16:44:58 +0000972static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +0000973 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000974 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000975 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000976 return;
977 }
Mike Stumpbf916502009-07-24 19:02:52 +0000978
Steve Naroff9eae5762008-09-18 16:44:58 +0000979 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000980 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000981 return;
982 }
Mike Stumpbf916502009-07-24 19:02:52 +0000983
Sean Huntcf807c42010-08-18 23:23:40 +0000984 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +0000985 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +0000986 type = BlocksAttr::ByRef;
987 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000988 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +0000989 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +0000990 return;
991 }
Mike Stumpbf916502009-07-24 19:02:52 +0000992
Sean Huntcf807c42010-08-18 23:23:40 +0000993 d->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +0000994}
995
Anders Carlsson77091822008-10-05 18:05:59 +0000996static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
997 // check the attribute arguments.
998 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000999 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1000 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +00001001 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001002 }
1003
Anders Carlsson77091822008-10-05 18:05:59 +00001004 int sentinel = 0;
1005 if (Attr.getNumArgs() > 0) {
1006 Expr *E = static_cast<Expr *>(Attr.getArg(0));
1007 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001008 if (E->isTypeDependent() || E->isValueDependent() ||
1009 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001010 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001011 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001012 return;
1013 }
1014 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001015
Anders Carlsson77091822008-10-05 18:05:59 +00001016 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001017 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1018 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001019 return;
1020 }
1021 }
1022
1023 int nullPos = 0;
1024 if (Attr.getNumArgs() > 1) {
1025 Expr *E = static_cast<Expr *>(Attr.getArg(1));
1026 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001027 if (E->isTypeDependent() || E->isValueDependent() ||
1028 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001029 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001030 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001031 return;
1032 }
1033 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001034
Anders Carlsson77091822008-10-05 18:05:59 +00001035 if (nullPos > 1 || nullPos < 0) {
1036 // FIXME: This error message could be improved, it would be nice
1037 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001038 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1039 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001040 return;
1041 }
1042 }
1043
1044 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
John McCall183700f2009-09-21 23:43:11 +00001045 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001046 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001047
Chris Lattner897cd902009-03-17 23:03:47 +00001048 if (isa<FunctionNoProtoType>(FT)) {
1049 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1050 return;
1051 }
Mike Stumpbf916502009-07-24 19:02:52 +00001052
Chris Lattner897cd902009-03-17 23:03:47 +00001053 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001054 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001055 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001056 }
Anders Carlsson77091822008-10-05 18:05:59 +00001057 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
1058 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001059 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001060 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001061 }
1062 } else if (isa<BlockDecl>(d)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001063 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1064 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001065 ;
1066 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001067 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001068 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001069 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
John McCall183700f2009-09-21 23:43:11 +00001070 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001071 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001072 int m = Ty->isFunctionPointerType() ? 0 : 1;
1073 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001074 return;
1075 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001076 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001077 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001078 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001079 return;
1080 }
Anders Carlsson77091822008-10-05 18:05:59 +00001081 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001082 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001083 << Attr.getName() << 6 /*function, method or block */;
Anders Carlsson77091822008-10-05 18:05:59 +00001084 return;
1085 }
Sean Huntcf807c42010-08-18 23:23:40 +00001086 d->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel, nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001087}
1088
Chris Lattner026dc962009-02-14 07:37:35 +00001089static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
1090 // check the attribute arguments.
1091 if (Attr.getNumArgs() != 0) {
1092 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1093 return;
1094 }
1095
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001096 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001097 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001098 << Attr.getName() << 0 /*function*/;
Chris Lattner026dc962009-02-14 07:37:35 +00001099 return;
1100 }
Mike Stumpbf916502009-07-24 19:02:52 +00001101
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001102 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1103 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1104 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001105 return;
1106 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001107 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1108 if (MD->getResultType()->isVoidType()) {
1109 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1110 << Attr.getName() << 1;
1111 return;
1112 }
1113
Sean Huntcf807c42010-08-18 23:23:40 +00001114 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001115}
1116
1117static void HandleWeakAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001118 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001119 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001120 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001121 return;
1122 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001123
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001124 /* weak only applies to non-static declarations */
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001125 if (isStaticVarOrStaticFunciton(D)) {
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001126 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static) <<
1127 dyn_cast<NamedDecl>(D)->getNameAsString();
1128 return;
1129 }
1130
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001131 // TODO: could also be applied to methods?
1132 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
1133 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001134 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001135 return;
1136 }
Mike Stumpbf916502009-07-24 19:02:52 +00001137
Sean Huntcf807c42010-08-18 23:23:40 +00001138 D->addAttr(::new (S.Context) WeakAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001139}
1140
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001141static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1142 // check the attribute arguments.
1143 if (Attr.getNumArgs() != 0) {
1144 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1145 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001146 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001147
1148 // weak_import only applies to variable & function declarations.
1149 bool isDef = false;
1150 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1151 isDef = (!VD->hasExternalStorage() || VD->getInit());
1152 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001153 isDef = FD->hasBody();
Fariborz Jahaniand4edddd2009-05-04 19:35:12 +00001154 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
1155 // We ignore weak import on properties and methods
Mike Stump1c90f4d2009-03-18 17:39:31 +00001156 return;
Fariborz Jahanian5f8f8572009-11-17 19:08:08 +00001157 } else if (!(S.LangOpts.ObjCNonFragileABI && isa<ObjCInterfaceDecl>(D))) {
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001158 // Don't issue the warning for darwin as target; yet, ignore the attribute.
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001159 if (S.Context.Target.getTriple().getOS() != llvm::Triple::Darwin ||
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001160 !isa<ObjCInterfaceDecl>(D))
1161 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001162 << Attr.getName() << 2 /*variable and function*/;
1163 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001164 }
1165
1166 // Merge should handle any subsequent violations.
1167 if (isDef) {
Mike Stumpbf916502009-07-24 19:02:52 +00001168 S.Diag(Attr.getLoc(),
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001169 diag::warn_attribute_weak_import_invalid_on_definition)
1170 << "weak_import" << 2 /*variable and function*/;
1171 return;
1172 }
1173
Sean Huntcf807c42010-08-18 23:23:40 +00001174 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001175}
1176
Nate Begeman6f3d8382009-06-26 06:32:41 +00001177static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
1178 Sema &S) {
1179 // Attribute has 3 arguments.
1180 if (Attr.getNumArgs() != 3) {
John McCall2b7baf02010-05-28 18:25:28 +00001181 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001182 return;
1183 }
1184
1185 unsigned WGSize[3];
1186 for (unsigned i = 0; i < 3; ++i) {
1187 Expr *E = static_cast<Expr *>(Attr.getArg(i));
1188 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001189 if (E->isTypeDependent() || E->isValueDependent() ||
1190 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001191 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1192 << "reqd_work_group_size" << E->getSourceRange();
1193 return;
1194 }
1195 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1196 }
Sean Huntcf807c42010-08-18 23:23:40 +00001197 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1198 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001199 WGSize[2]));
1200}
1201
Chris Lattner026dc962009-02-14 07:37:35 +00001202static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001203 // Attribute has no arguments.
1204 if (Attr.getNumArgs() != 1) {
1205 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1206 return;
1207 }
1208
1209 // Make sure that there is a string literal as the sections's single
1210 // argument.
Chris Lattner797c3c42009-08-10 19:03:04 +00001211 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
1212 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001213 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001214 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001215 return;
1216 }
Mike Stump1eb44332009-09-09 15:08:12 +00001217
Chris Lattner797c3c42009-08-10 19:03:04 +00001218 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramerbb377ed2009-11-30 17:08:26 +00001219 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001220 if (!Error.empty()) {
1221 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1222 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001223 return;
1224 }
Mike Stump1eb44332009-09-09 15:08:12 +00001225
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001226 // This attribute cannot be applied to local variables.
1227 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1228 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1229 return;
1230 }
1231
Sean Huntcf807c42010-08-18 23:23:40 +00001232 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context, SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001233}
1234
Chris Lattner6b6b5372008-06-26 18:38:35 +00001235
Chris Lattner803d0802008-06-29 00:43:07 +00001236static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001237 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001238 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001239 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001240 return;
1241 }
Mike Stumpbf916502009-07-24 19:02:52 +00001242
Sean Huntcf807c42010-08-18 23:23:40 +00001243 d->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001244}
1245
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001246static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1247 // check the attribute arguments.
1248 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001249 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001250 return;
1251 }
Mike Stumpbf916502009-07-24 19:02:52 +00001252
Sean Huntcf807c42010-08-18 23:23:40 +00001253 d->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001254}
1255
1256static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1257 // check the attribute arguments.
1258 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001259 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001260 return;
1261 }
Mike Stumpbf916502009-07-24 19:02:52 +00001262
Sean Huntcf807c42010-08-18 23:23:40 +00001263 d->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001264}
1265
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001266static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001267 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001268 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1269 return;
1270 }
Mike Stumpbf916502009-07-24 19:02:52 +00001271
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001272 if (Attr.getNumArgs() != 0) {
1273 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1274 return;
1275 }
Mike Stumpbf916502009-07-24 19:02:52 +00001276
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001277 VarDecl *VD = dyn_cast<VarDecl>(d);
Mike Stumpbf916502009-07-24 19:02:52 +00001278
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001279 if (!VD || !VD->hasLocalStorage()) {
1280 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1281 return;
1282 }
Mike Stumpbf916502009-07-24 19:02:52 +00001283
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001284 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00001285 // FIXME: Lookup probably isn't looking in the right place
1286 // FIXME: The lookup source location should be in the attribute, not the
1287 // start of the attribute.
John McCallf36e02d2009-10-09 21:13:30 +00001288 NamedDecl *CleanupDecl
Douglas Gregorc83c6872010-04-15 22:33:43 +00001289 = S.LookupSingleName(S.TUScope, Attr.getParameterName(), Attr.getLoc(),
John McCallf36e02d2009-10-09 21:13:30 +00001290 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001291 if (!CleanupDecl) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001292 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001293 Attr.getParameterName();
1294 return;
1295 }
Mike Stumpbf916502009-07-24 19:02:52 +00001296
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001297 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1298 if (!FD) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001299 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_function) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001300 Attr.getParameterName();
1301 return;
1302 }
1303
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001304 if (FD->getNumParams() != 1) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001305 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_func_must_take_one_arg) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001306 Attr.getParameterName();
1307 return;
1308 }
Mike Stumpbf916502009-07-24 19:02:52 +00001309
Anders Carlsson89941c12009-02-07 23:16:50 +00001310 // We're currently more strict than GCC about what function types we accept.
1311 // If this ever proves to be a problem it should be easy to fix.
1312 QualType Ty = S.Context.getPointerType(VD->getType());
1313 QualType ParamTy = FD->getParamDecl(0)->getType();
Eli Friedmand5e3e8e2009-04-26 01:30:08 +00001314 if (S.CheckAssignmentConstraints(ParamTy, Ty) != Sema::Compatible) {
Mike Stumpbf916502009-07-24 19:02:52 +00001315 S.Diag(Attr.getLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00001316 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1317 Attr.getParameterName() << ParamTy << Ty;
1318 return;
1319 }
Mike Stumpbf916502009-07-24 19:02:52 +00001320
Sean Huntcf807c42010-08-18 23:23:40 +00001321 d->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001322}
1323
Mike Stumpbf916502009-07-24 19:02:52 +00001324/// Handle __attribute__((format_arg((idx)))) attribute based on
1325/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1326static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001327 if (Attr.getNumArgs() != 1) {
1328 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1329 return;
1330 }
1331 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1332 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1333 << Attr.getName() << 0 /*function*/;
1334 return;
1335 }
Mike Stumpbf916502009-07-24 19:02:52 +00001336 // FIXME: in C++ the implicit 'this' function parameter also counts. this is
1337 // needed in order to be compatible with GCC the index must start with 1.
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001338 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
1339 unsigned FirstIdx = 1;
1340 // checks for the 2nd argument
1341 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
1342 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001343 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1344 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001345 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1346 << "format" << 2 << IdxExpr->getSourceRange();
1347 return;
1348 }
Mike Stumpbf916502009-07-24 19:02:52 +00001349
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001350 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1351 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1352 << "format" << 2 << IdxExpr->getSourceRange();
1353 return;
1354 }
Mike Stumpbf916502009-07-24 19:02:52 +00001355
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001356 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001357
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001358 // make sure the format string is really a string
1359 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00001360
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001361 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1362 if (not_nsstring_type &&
1363 !isCFStringType(Ty, S.Context) &&
1364 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001365 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001366 // FIXME: Should highlight the actual expression that has the wrong type.
1367 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001368 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001369 << IdxExpr->getSourceRange();
1370 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001371 }
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001372 Ty = getFunctionOrMethodResultType(d);
1373 if (!isNSStringType(Ty, S.Context) &&
1374 !isCFStringType(Ty, S.Context) &&
1375 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001376 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001377 // FIXME: Should highlight the actual expression that has the wrong type.
1378 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001379 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001380 << IdxExpr->getSourceRange();
1381 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001382 }
1383
Sean Huntcf807c42010-08-18 23:23:40 +00001384 d->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context, Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001385}
1386
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001387enum FormatAttrKind {
1388 CFStringFormat,
1389 NSStringFormat,
1390 StrftimeFormat,
1391 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00001392 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001393 InvalidFormat
1394};
1395
1396/// getFormatAttrKind - Map from format attribute names to supported format
1397/// types.
1398static FormatAttrKind getFormatAttrKind(llvm::StringRef Format) {
1399 // Check for formats that get handled specially.
1400 if (Format == "NSString")
1401 return NSStringFormat;
1402 if (Format == "CFString")
1403 return CFStringFormat;
1404 if (Format == "strftime")
1405 return StrftimeFormat;
1406
1407 // Otherwise, check for supported formats.
1408 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
1409 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
1410 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
1411 Format == "zcmn_err")
1412 return SupportedFormat;
1413
Duncan Sandsbc525952010-03-23 14:44:19 +00001414 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
1415 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00001416 return IgnoredFormat;
1417
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001418 return InvalidFormat;
1419}
1420
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001421/// Handle __attribute__((init_priority(priority))) attributes based on
1422/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
1423static void HandleInitPriorityAttr(Decl *d, const AttributeList &Attr,
1424 Sema &S) {
1425 if (!S.getLangOptions().CPlusPlus) {
1426 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1427 return;
1428 }
1429
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001430 if (!isa<VarDecl>(d) || S.getCurFunctionOrMethodDecl()) {
1431 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1432 Attr.setInvalid();
1433 return;
1434 }
1435 QualType T = dyn_cast<VarDecl>(d)->getType();
1436 if (S.Context.getAsArrayType(T))
1437 T = S.Context.getBaseElementType(T);
1438 if (!T->getAs<RecordType>()) {
1439 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1440 Attr.setInvalid();
1441 return;
1442 }
1443
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001444 if (Attr.getNumArgs() != 1) {
1445 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1446 Attr.setInvalid();
1447 return;
1448 }
1449 Expr *priorityExpr = static_cast<Expr *>(Attr.getArg(0));
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001450
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001451 llvm::APSInt priority(32);
1452 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
1453 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
1454 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1455 << "init_priority" << priorityExpr->getSourceRange();
1456 Attr.setInvalid();
1457 return;
1458 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00001459 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001460 if (prioritynum < 101 || prioritynum > 65535) {
1461 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
1462 << priorityExpr->getSourceRange();
1463 Attr.setInvalid();
1464 return;
1465 }
Sean Huntcf807c42010-08-18 23:23:40 +00001466 d->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context, prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001467}
1468
Mike Stumpbf916502009-07-24 19:02:52 +00001469/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
1470/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +00001471static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001472
Chris Lattner545dd342008-06-28 23:36:30 +00001473 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001474 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001475 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001476 return;
1477 }
1478
Chris Lattner545dd342008-06-28 23:36:30 +00001479 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001480 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001481 return;
1482 }
1483
Fariborz Jahanian620d89c2009-05-15 23:15:03 +00001484 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001485 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001486 << Attr.getName() << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001487 return;
1488 }
1489
Daniel Dunbar35682492008-09-26 04:12:28 +00001490 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001491 unsigned FirstIdx = 1;
1492
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001493 llvm::StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001494
1495 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001496 if (Format.startswith("__") && Format.endswith("__"))
1497 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001498
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001499 // Check for supported formats.
1500 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00001501
1502 if (Kind == IgnoredFormat)
1503 return;
1504
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001505 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001506 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001507 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001508 return;
1509 }
1510
1511 // checks for the 2nd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001512 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner803d0802008-06-29 00:43:07 +00001513 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001514 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1515 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001516 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001517 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001518 return;
1519 }
1520
Anders Carlsson4fb77202009-08-25 14:12:34 +00001521 // FIXME: We should handle the implicit 'this' parameter in a more generic
1522 // way that can be used for other arguments.
1523 bool HasImplicitThisParam = false;
1524 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(d)) {
1525 if (MD->isInstance()) {
1526 HasImplicitThisParam = true;
1527 NumArgs++;
1528 }
1529 }
Mike Stump1eb44332009-09-09 15:08:12 +00001530
Chris Lattner6b6b5372008-06-26 18:38:35 +00001531 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001532 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001533 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001534 return;
1535 }
1536
1537 // FIXME: Do we need to bounds check?
1538 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001539
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001540 if (HasImplicitThisParam) {
1541 if (ArgIdx == 0) {
1542 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1543 << "a string type" << IdxExpr->getSourceRange();
1544 return;
1545 }
1546 ArgIdx--;
1547 }
Mike Stump1eb44332009-09-09 15:08:12 +00001548
Chris Lattner6b6b5372008-06-26 18:38:35 +00001549 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001550 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001551
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001552 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001553 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001554 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1555 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001556 return;
1557 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001558 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001559 // FIXME: do we need to check if the type is NSString*? What are the
1560 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001561 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001562 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001563 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1564 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001565 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001566 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001567 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001568 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001569 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001570 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1571 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001572 return;
1573 }
1574
1575 // check the 3rd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001576 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattner803d0802008-06-29 00:43:07 +00001577 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001578 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
1579 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001580 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001581 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001582 return;
1583 }
1584
1585 // check if the function is variadic if the 3rd argument non-zero
1586 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001587 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001588 ++NumArgs; // +1 for ...
1589 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001590 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001591 return;
1592 }
1593 }
1594
Chris Lattner3c73c412008-11-19 08:23:25 +00001595 // strftime requires FirstArg to be 0 because it doesn't read from any
1596 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001597 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001598 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001599 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1600 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001601 return;
1602 }
1603 // if 0 it disables parameter checking (to use with e.g. va_list)
1604 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001605 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001606 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001607 return;
1608 }
1609
Sean Huntcf807c42010-08-18 23:23:40 +00001610 d->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
1611 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001612 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001613}
1614
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001615static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1616 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001617 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001618 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001620 return;
1621 }
1622
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001623 // Try to find the underlying union declaration.
1624 RecordDecl *RD = 0;
Eli Friedmanbc887452008-09-02 05:19:23 +00001625 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001626 if (TD && TD->getUnderlyingType()->isUnionType())
1627 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1628 else
1629 RD = dyn_cast<RecordDecl>(d);
1630
1631 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001632 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001633 << Attr.getName() << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001634 return;
1635 }
1636
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001637 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001638 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001639 diag::warn_transparent_union_attribute_not_definition);
1640 return;
1641 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001642
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001643 RecordDecl::field_iterator Field = RD->field_begin(),
1644 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001645 if (Field == FieldEnd) {
1646 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1647 return;
1648 }
Eli Friedmanbc887452008-09-02 05:19:23 +00001649
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001650 FieldDecl *FirstField = *Field;
1651 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00001652 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001653 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00001654 diag::warn_transparent_union_attribute_floating)
1655 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001656 return;
1657 }
1658
1659 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1660 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1661 for (; Field != FieldEnd; ++Field) {
1662 QualType FieldType = Field->getType();
1663 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1664 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1665 // Warn if we drop the attribute.
1666 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00001667 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001668 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00001669 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001670 diag::warn_transparent_union_attribute_field_size_align)
1671 << isSize << Field->getDeclName() << FieldBits;
1672 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00001673 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001674 diag::note_transparent_union_first_field_size_align)
1675 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00001676 return;
1677 }
1678 }
1679
Sean Huntcf807c42010-08-18 23:23:40 +00001680 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001681}
1682
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001683static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001684 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001685 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001686 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001687 return;
1688 }
Chris Lattner797c3c42009-08-10 19:03:04 +00001689 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
1690 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00001691
Chris Lattner6b6b5372008-06-26 18:38:35 +00001692 // Make sure that there is a string literal as the annotation's single
1693 // argument.
1694 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001695 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00001696 return;
1697 }
Sean Huntcf807c42010-08-18 23:23:40 +00001698 d->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context, SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001699}
1700
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001701static void HandleAlignedAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001702 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001703 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001704 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001705 return;
1706 }
Sean Huntbbd37c62009-11-21 08:43:09 +00001707
1708 //FIXME: The C++0x version of this attribute has more limited applicabilty
1709 // than GNU's, and should error out when it is used to specify a
1710 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001711
Chris Lattner545dd342008-06-28 23:36:30 +00001712 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00001713 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001714 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001715 }
Mike Stumpbf916502009-07-24 19:02:52 +00001716
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001717 S.AddAlignedAttr(Attr.getLoc(), D, static_cast<Expr *>(Attr.getArg(0)));
1718}
1719
1720void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
1721 if (E->isTypeDependent() || E->isValueDependent()) {
1722 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00001723 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001724 return;
1725 }
1726
Sean Huntcf807c42010-08-18 23:23:40 +00001727 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00001728 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001729 if (!E->isIntegerConstantExpr(Alignment, Context)) {
1730 Diag(AttrLoc, diag::err_attribute_argument_not_int)
1731 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001732 return;
1733 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001734 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001735 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
1736 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001737 return;
1738 }
1739
Sean Huntcf807c42010-08-18 23:23:40 +00001740 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
1741}
1742
1743void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
1744 // FIXME: Cache the number on the Attr object if non-dependent?
1745 // FIXME: Perform checking of type validity
1746 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
1747 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001748}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001749
Mike Stumpbf916502009-07-24 19:02:52 +00001750/// HandleModeAttr - This attribute modifies the width of a decl with primitive
1751/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001752///
Mike Stumpbf916502009-07-24 19:02:52 +00001753/// Despite what would be logical, the mode attribute is a decl attribute, not a
1754/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
1755/// HImode, not an intermediate pointer.
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001756static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001757 // This attribute isn't documented, but glibc uses it. It changes
1758 // the width of an int or unsigned int to the specified size.
1759
1760 // Check that there aren't any arguments
1761 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001762 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001763 return;
1764 }
1765
1766 IdentifierInfo *Name = Attr.getParameterName();
1767 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001768 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001769 return;
1770 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00001771
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001772 llvm::StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001773
1774 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001775 if (Str.startswith("__") && Str.endswith("__"))
1776 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001777
1778 unsigned DestWidth = 0;
1779 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00001780 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00001781 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001782 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00001783 switch (Str[0]) {
1784 case 'Q': DestWidth = 8; break;
1785 case 'H': DestWidth = 16; break;
1786 case 'S': DestWidth = 32; break;
1787 case 'D': DestWidth = 64; break;
1788 case 'X': DestWidth = 96; break;
1789 case 'T': DestWidth = 128; break;
1790 }
1791 if (Str[1] == 'F') {
1792 IntegerMode = false;
1793 } else if (Str[1] == 'C') {
1794 IntegerMode = false;
1795 ComplexMode = true;
1796 } else if (Str[1] != 'I') {
1797 DestWidth = 0;
1798 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001799 break;
1800 case 4:
1801 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1802 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001803 if (Str == "word")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001804 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00001805 else if (Str == "byte")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001806 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001807 break;
1808 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00001809 if (Str == "pointer")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001810 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001811 break;
1812 }
1813
1814 QualType OldTy;
1815 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1816 OldTy = TD->getUnderlyingType();
1817 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1818 OldTy = VD->getType();
1819 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001820 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1821 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001822 return;
1823 }
Eli Friedman73397492009-03-03 06:41:03 +00001824
John McCall183700f2009-09-21 23:43:11 +00001825 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00001826 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
1827 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001828 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00001829 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1830 } else if (ComplexMode) {
1831 if (!OldTy->isComplexType())
1832 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1833 } else {
1834 if (!OldTy->isFloatingType())
1835 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1836 }
1837
Mike Stump390b4cc2009-05-16 07:39:55 +00001838 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
1839 // and friends, at least with glibc.
1840 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
1841 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00001842 // FIXME: Make sure floating-point mappings are accurate
1843 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00001844 QualType NewTy;
1845 switch (DestWidth) {
1846 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00001847 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001848 return;
1849 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00001850 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001851 return;
1852 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00001853 if (!IntegerMode) {
1854 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1855 return;
1856 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001857 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001858 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001859 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001860 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001861 break;
1862 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00001863 if (!IntegerMode) {
1864 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1865 return;
1866 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001867 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001868 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001869 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001870 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001871 break;
1872 case 32:
1873 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001874 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001875 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001876 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001877 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001878 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001879 break;
1880 case 64:
1881 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001882 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001883 else if (OldTy->isSignedIntegerType())
Chandler Carruthaec7caa2010-01-26 06:39:24 +00001884 if (S.Context.Target.getLongWidth() == 64)
1885 NewTy = S.Context.LongTy;
1886 else
1887 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001888 else
Chandler Carruthaec7caa2010-01-26 06:39:24 +00001889 if (S.Context.Target.getLongWidth() == 64)
1890 NewTy = S.Context.UnsignedLongTy;
1891 else
1892 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001893 break;
Eli Friedman73397492009-03-03 06:41:03 +00001894 case 96:
1895 NewTy = S.Context.LongDoubleTy;
1896 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00001897 case 128:
1898 if (!IntegerMode) {
1899 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1900 return;
1901 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00001902 if (OldTy->isSignedIntegerType())
1903 NewTy = S.Context.Int128Ty;
1904 else
1905 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00001906 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001907 }
1908
Eli Friedman73397492009-03-03 06:41:03 +00001909 if (ComplexMode) {
1910 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001911 }
1912
1913 // Install the new type.
John McCallba6a9bd2009-10-24 08:00:42 +00001914 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
1915 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00001916 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00001917 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00001918 cast<ValueDecl>(D)->setType(NewTy);
1919}
Chris Lattner0744e5f2008-06-29 00:23:49 +00001920
Mike Stump1feade82009-08-26 22:31:08 +00001921static void HandleNoDebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlssond87df372009-02-13 06:46:13 +00001922 // check the attribute arguments.
1923 if (Attr.getNumArgs() > 0) {
1924 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1925 return;
1926 }
Anders Carlssone896d982009-02-13 08:11:52 +00001927
Anders Carlsson5bab7882009-02-19 19:16:48 +00001928 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00001929 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001930 << Attr.getName() << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00001931 return;
1932 }
Mike Stumpbf916502009-07-24 19:02:52 +00001933
Sean Huntcf807c42010-08-18 23:23:40 +00001934 d->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00001935}
1936
Mike Stump1feade82009-08-26 22:31:08 +00001937static void HandleNoInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001938 // check the attribute arguments.
1939 if (Attr.getNumArgs() != 0) {
1940 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1941 return;
1942 }
Mike Stumpbf916502009-07-24 19:02:52 +00001943
Chris Lattnerc5197432009-04-14 17:02:11 +00001944 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001945 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001946 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001947 return;
1948 }
Mike Stumpbf916502009-07-24 19:02:52 +00001949
Sean Huntcf807c42010-08-18 23:23:40 +00001950 d->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00001951}
1952
Chris Lattner7255a2d2010-06-22 00:03:40 +00001953static void HandleNoInstrumentFunctionAttr(Decl *d, const AttributeList &Attr,
1954 Sema &S) {
1955 // check the attribute arguments.
1956 if (Attr.getNumArgs() != 0) {
1957 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1958 return;
1959 }
1960
1961 if (!isa<FunctionDecl>(d)) {
1962 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1963 << Attr.getName() << 0 /*function*/;
1964 return;
1965 }
1966
Sean Huntcf807c42010-08-18 23:23:40 +00001967 d->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(), S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00001968}
1969
Chris Lattnercf2a7212009-04-20 19:12:28 +00001970static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner26e25542009-04-14 16:30:50 +00001971 // check the attribute arguments.
1972 if (Attr.getNumArgs() != 0) {
1973 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1974 return;
1975 }
Mike Stumpbf916502009-07-24 19:02:52 +00001976
Chris Lattnerc5197432009-04-14 17:02:11 +00001977 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
1978 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00001979 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001980 << Attr.getName() << 0 /*function*/;
Chris Lattner26e25542009-04-14 16:30:50 +00001981 return;
1982 }
Mike Stumpbf916502009-07-24 19:02:52 +00001983
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001984 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00001985 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00001986 return;
1987 }
Mike Stumpbf916502009-07-24 19:02:52 +00001988
Sean Huntcf807c42010-08-18 23:23:40 +00001989 d->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00001990}
1991
Abramo Bagnarae215f722010-04-30 13:10:51 +00001992static void HandleCallConvAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1993 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
1994 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
1995 assert(Attr.isInvalid() == false);
1996
1997 switch (Attr.getKind()) {
1998 case AttributeList::AT_fastcall:
Sean Huntcf807c42010-08-18 23:23:40 +00001999 d->addAttr(::new (S.Context) FastCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002000 return;
2001 case AttributeList::AT_stdcall:
Sean Huntcf807c42010-08-18 23:23:40 +00002002 d->addAttr(::new (S.Context) StdCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002003 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002004 case AttributeList::AT_thiscall:
Sean Huntcf807c42010-08-18 23:23:40 +00002005 d->addAttr(::new (S.Context) ThisCallAttr(Attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002006 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002007 case AttributeList::AT_cdecl:
Sean Huntcf807c42010-08-18 23:23:40 +00002008 d->addAttr(::new (S.Context) CDeclAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002009 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002010 case AttributeList::AT_pascal:
2011 d->addAttr(::new (S.Context) PascalAttr(Attr.getLoc(), S.Context));
2012 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002013 default:
2014 llvm_unreachable("unexpected attribute kind");
2015 return;
2016 }
2017}
2018
Fariborz Jahanianee760332009-03-27 18:38:55 +00002019static void HandleRegparmAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2020 // check the attribute arguments.
2021 if (Attr.getNumArgs() != 1) {
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002022 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002023 return;
2024 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002025
Fariborz Jahanianee760332009-03-27 18:38:55 +00002026 if (!isFunctionOrMethod(d)) {
2027 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002028 << Attr.getName() << 0 /*function*/;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002029 return;
2030 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002031
2032 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
2033 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002034 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
2035 !NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002036 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2037 << "regparm" << NumParamsExpr->getSourceRange();
2038 return;
2039 }
2040
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00002041 if (S.Context.Target.getRegParmMax() == 0) {
2042 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002043 << NumParamsExpr->getSourceRange();
2044 return;
2045 }
2046
Anton Korobeynikov348f28a2009-04-04 10:27:50 +00002047 if (NumParams.getLimitedValue(255) > S.Context.Target.getRegParmMax()) {
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00002048 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
2049 << S.Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002050 return;
2051 }
2052
Sean Huntcf807c42010-08-18 23:23:40 +00002053 d->addAttr(::new (S.Context) RegparmAttr(Attr.getLoc(), S.Context,
2054 NumParams.getZExtValue()));
Fariborz Jahanianee760332009-03-27 18:38:55 +00002055}
2056
Sean Huntbbd37c62009-11-21 08:43:09 +00002057static void HandleFinalAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2058 // check the attribute arguments.
2059 if (Attr.getNumArgs() != 0) {
2060 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2061 return;
2062 }
2063
2064 if (!isa<CXXRecordDecl>(d)
2065 && (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual())) {
2066 S.Diag(Attr.getLoc(),
2067 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2068 : diag::warn_attribute_wrong_decl_type)
2069 << Attr.getName() << 7 /*virtual method or class*/;
2070 return;
2071 }
Sean Hunt7725e672009-11-25 04:20:27 +00002072
2073 // FIXME: Conform to C++0x redeclaration rules.
2074
2075 if (d->getAttr<FinalAttr>()) {
2076 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "final";
2077 return;
2078 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002079
Sean Huntcf807c42010-08-18 23:23:40 +00002080 d->addAttr(::new (S.Context) FinalAttr(Attr.getLoc(), S.Context));
Sean Huntbbd37c62009-11-21 08:43:09 +00002081}
2082
Chris Lattner0744e5f2008-06-29 00:23:49 +00002083//===----------------------------------------------------------------------===//
Sean Hunt7725e672009-11-25 04:20:27 +00002084// C++0x member checking attributes
2085//===----------------------------------------------------------------------===//
2086
2087static void HandleBaseCheckAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2088 if (Attr.getNumArgs() != 0) {
2089 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2090 return;
2091 }
2092
2093 if (!isa<CXXRecordDecl>(d)) {
2094 S.Diag(Attr.getLoc(),
2095 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2096 : diag::warn_attribute_wrong_decl_type)
2097 << Attr.getName() << 9 /*class*/;
2098 return;
2099 }
2100
2101 if (d->getAttr<BaseCheckAttr>()) {
2102 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "base_check";
2103 return;
2104 }
2105
Sean Huntcf807c42010-08-18 23:23:40 +00002106 d->addAttr(::new (S.Context) BaseCheckAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002107}
2108
2109static void HandleHidingAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2110 if (Attr.getNumArgs() != 0) {
2111 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2112 return;
2113 }
2114
2115 if (!isa<RecordDecl>(d->getDeclContext())) {
2116 // FIXME: It's not the type that's the problem
2117 S.Diag(Attr.getLoc(),
2118 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2119 : diag::warn_attribute_wrong_decl_type)
2120 << Attr.getName() << 11 /*member*/;
2121 return;
2122 }
2123
2124 // FIXME: Conform to C++0x redeclaration rules.
2125
2126 if (d->getAttr<HidingAttr>()) {
2127 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "hiding";
2128 return;
2129 }
2130
Sean Huntcf807c42010-08-18 23:23:40 +00002131 d->addAttr(::new (S.Context) HidingAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002132}
2133
2134static void HandleOverrideAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2135 if (Attr.getNumArgs() != 0) {
2136 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2137 return;
2138 }
2139
2140 if (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual()) {
2141 // FIXME: It's not the type that's the problem
2142 S.Diag(Attr.getLoc(),
2143 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
2144 : diag::warn_attribute_wrong_decl_type)
2145 << Attr.getName() << 10 /*virtual method*/;
2146 return;
2147 }
2148
2149 // FIXME: Conform to C++0x redeclaration rules.
2150
2151 if (d->getAttr<OverrideAttr>()) {
2152 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "override";
2153 return;
2154 }
2155
Sean Huntcf807c42010-08-18 23:23:40 +00002156 d->addAttr(::new (S.Context) OverrideAttr(Attr.getLoc(), S.Context));
Sean Hunt7725e672009-11-25 04:20:27 +00002157}
2158
2159//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00002160// Checker-specific attribute handlers.
2161//===----------------------------------------------------------------------===//
2162
2163static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &Attr,
2164 Sema &S) {
2165
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002166 QualType RetTy;
Mike Stumpbf916502009-07-24 19:02:52 +00002167
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002168 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
2169 RetTy = MD->getResultType();
2170 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
2171 RetTy = FD->getResultType();
2172 else {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002173 SourceLocation L = Attr.getLoc();
2174 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2175 << SourceRange(L, L) << Attr.getName() << 3 /* function or method */;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002176 return;
2177 }
Mike Stumpbf916502009-07-24 19:02:52 +00002178
Ted Kremenek6217b802009-07-29 21:53:49 +00002179 if (!(S.Context.isObjCNSObjectType(RetTy) || RetTy->getAs<PointerType>()
John McCall183700f2009-09-21 23:43:11 +00002180 || RetTy->getAs<ObjCObjectPointerType>())) {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002181 SourceLocation L = Attr.getLoc();
2182 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
2183 << SourceRange(L, L) << Attr.getName();
Mike Stumpbf916502009-07-24 19:02:52 +00002184 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002185 }
Mike Stumpbf916502009-07-24 19:02:52 +00002186
Ted Kremenekb71368d2009-05-09 02:44:38 +00002187 switch (Attr.getKind()) {
2188 default:
2189 assert(0 && "invalid ownership attribute");
2190 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00002191 case AttributeList::AT_cf_returns_not_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002192 d->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002193 return;
2194 case AttributeList::AT_ns_returns_not_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002195 d->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002196 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002197 case AttributeList::AT_cf_returns_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002198 d->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002199 return;
2200 case AttributeList::AT_ns_returns_retained:
Sean Huntcf807c42010-08-18 23:23:40 +00002201 d->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getLoc(), S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002202 return;
2203 };
2204}
2205
Charles Davisf0122fe2010-02-16 18:27:26 +00002206static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
2207 return Attr.getKind() == AttributeList::AT_dllimport ||
2208 Attr.getKind() == AttributeList::AT_dllexport;
2209}
2210
Ted Kremenekb71368d2009-05-09 02:44:38 +00002211//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00002212// Top Level Sema Entry Points
2213//===----------------------------------------------------------------------===//
2214
Sebastian Redla89d82c2008-12-21 19:24:58 +00002215/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
Chris Lattner803d0802008-06-29 00:43:07 +00002216/// the attribute applies to decls. If the attribute is a type attribute, just
Sean Huntbbd37c62009-11-21 08:43:09 +00002217/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
2218/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Mike Stumpbf916502009-07-24 19:02:52 +00002219static void ProcessDeclAttribute(Scope *scope, Decl *D,
2220 const AttributeList &Attr, Sema &S) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002221 if (Attr.isInvalid())
2222 return;
2223
Charles Davisf0122fe2010-02-16 18:27:26 +00002224 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
2225 // FIXME: Try to deal with other __declspec attributes!
Eli Friedman290eeb02009-06-08 23:27:34 +00002226 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002227 switch (Attr.getKind()) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00002228 case AttributeList::AT_IBAction: HandleIBAction(D, Attr, S); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00002229 case AttributeList::AT_IBOutlet: HandleIBOutlet(D, Attr, S); break;
2230 case AttributeList::AT_IBOutletCollection:
2231 HandleIBOutletCollection(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002232 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00002233 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00002234 case AttributeList::AT_vector_size:
Mike Stumpbf916502009-07-24 19:02:52 +00002235 // Ignore these, these are type attributes, handled by
2236 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00002237 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002238 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
2239 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002240 case AttributeList::AT_always_inline:
Daniel Dunbaraf668b02008-10-28 00:17:57 +00002241 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00002242 case AttributeList::AT_analyzer_noreturn:
Mike Stumpbf916502009-07-24 19:02:52 +00002243 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002244 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
2245 case AttributeList::AT_base_check: HandleBaseCheckAttr (D, Attr, S); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00002246 case AttributeList::AT_carries_dependency:
Sean Hunt7725e672009-11-25 04:20:27 +00002247 HandleDependencyAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002248 case AttributeList::AT_constructor: HandleConstructorAttr (D, Attr, S); break;
2249 case AttributeList::AT_deprecated: HandleDeprecatedAttr (D, Attr, S); break;
2250 case AttributeList::AT_destructor: HandleDestructorAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002251 case AttributeList::AT_ext_vector_type:
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002252 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattner803d0802008-06-29 00:43:07 +00002253 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002254 case AttributeList::AT_final: HandleFinalAttr (D, Attr, S); break;
2255 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
2256 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
2257 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr (D, Attr, S); break;
2258 case AttributeList::AT_hiding: HandleHidingAttr (D, Attr, S); break;
2259 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
2260 case AttributeList::AT_malloc: HandleMallocAttr (D, Attr, S); break;
2261 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002262 case AttributeList::AT_ownership_returns:
2263 case AttributeList::AT_ownership_takes:
2264 case AttributeList::AT_ownership_holds:
2265 HandleOwnershipAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002266 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
2267 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
2268 case AttributeList::AT_override: HandleOverrideAttr (D, Attr, S); break;
John Thompson35cc9622010-08-09 21:53:52 +00002269 case AttributeList::AT_vecreturn: HandleVecReturnAttr (D, Attr, S); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002270
2271 // Checker-specific.
Ted Kremenek31c780d2010-02-18 00:05:45 +00002272 case AttributeList::AT_ns_returns_not_retained:
2273 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00002274 case AttributeList::AT_ns_returns_retained:
2275 case AttributeList::AT_cf_returns_retained:
2276 HandleNSReturnsRetainedAttr(D, Attr, S); break;
2277
Nate Begeman6f3d8382009-06-26 06:32:41 +00002278 case AttributeList::AT_reqd_wg_size:
2279 HandleReqdWorkGroupSize(D, Attr, S); break;
2280
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002281 case AttributeList::AT_init_priority:
2282 HandleInitPriorityAttr(D, Attr, S); break;
2283
Sean Hunt7725e672009-11-25 04:20:27 +00002284 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
2285 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002286 case AttributeList::AT_unavailable: HandleUnavailableAttr (D, Attr, S); break;
2287 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
2288 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002289 case AttributeList::AT_visibility: HandleVisibilityAttr (D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00002290 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
2291 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002292 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002293 case AttributeList::AT_weakref: HandleWeakRefAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002294 case AttributeList::AT_weak_import: HandleWeakImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002295 case AttributeList::AT_transparent_union:
2296 HandleTransparentUnionAttr(D, Attr, S);
2297 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002298 case AttributeList::AT_objc_exception:
2299 HandleObjCExceptionAttr(D, Attr, S);
2300 break;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002301 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002302 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
2303 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
2304 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
2305 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
2306 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
2307 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
2308 case AttributeList::AT_nodebug: HandleNoDebugAttr (D, Attr, S); break;
2309 case AttributeList::AT_noinline: HandleNoInlineAttr (D, Attr, S); break;
2310 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002311 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00002312 // Just ignore
2313 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002314 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
2315 HandleNoInstrumentFunctionAttr(D, Attr, S);
2316 break;
John McCall04a67a62010-02-05 21:31:56 +00002317 case AttributeList::AT_stdcall:
2318 case AttributeList::AT_cdecl:
2319 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002320 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00002321 case AttributeList::AT_pascal:
Abramo Bagnarae215f722010-04-30 13:10:51 +00002322 HandleCallConvAttr(D, Attr, S);
John McCall04a67a62010-02-05 21:31:56 +00002323 break;
Chris Lattner803d0802008-06-29 00:43:07 +00002324 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00002325 // Ask target about the attribute.
2326 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
2327 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00002328 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
2329 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00002330 break;
2331 }
2332}
2333
2334/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
2335/// attribute list to the specified decl, ignoring any type attributes.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002336void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002337 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
2338 ProcessDeclAttribute(S, D, *l, *this);
2339 }
2340
2341 // GCC accepts
2342 // static int a9 __attribute__((weakref));
2343 // but that looks really pointless. We reject it.
2344 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
2345 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002346 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002347 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002348 }
2349}
2350
Ryan Flynne25ff832009-07-30 03:15:39 +00002351/// DeclClonePragmaWeak - clone existing decl (maybe definition),
2352/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump1eb44332009-09-09 15:08:12 +00002353NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002354 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00002355 NamedDecl *NewD = 0;
2356 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
2357 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
2358 FD->getLocation(), DeclarationName(II),
John McCalla93c9342009-12-07 02:54:59 +00002359 FD->getType(), FD->getTypeSourceInfo());
John McCallb6217662010-03-15 10:12:16 +00002360 if (FD->getQualifier()) {
2361 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
2362 NewFD->setQualifierInfo(FD->getQualifier(), FD->getQualifierRange());
2363 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002364 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
2365 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
2366 VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00002367 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002368 VD->getStorageClass(),
2369 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00002370 if (VD->getQualifier()) {
2371 VarDecl *NewVD = cast<VarDecl>(NewD);
2372 NewVD->setQualifierInfo(VD->getQualifier(), VD->getQualifierRange());
2373 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002374 }
2375 return NewD;
2376}
2377
2378/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
2379/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002380void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002381 if (W.getUsed()) return; // only do this once
2382 W.setUsed(true);
2383 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
2384 IdentifierInfo *NDId = ND->getIdentifier();
2385 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Sean Huntcf807c42010-08-18 23:23:40 +00002386 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
2387 NDId->getName()));
2388 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002389 WeakTopLevelDecl.push_back(NewD);
2390 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
2391 // to insert Decl at TU scope, sorry.
2392 DeclContext *SavedContext = CurContext;
2393 CurContext = Context.getTranslationUnitDecl();
2394 PushOnScopeChains(NewD, S);
2395 CurContext = SavedContext;
2396 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00002397 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00002398 }
2399}
2400
Chris Lattner0744e5f2008-06-29 00:23:49 +00002401/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
2402/// it, apply them to D. This is a bit tricky because PD can have attributes
2403/// specified in many different places, and we need to find and apply them all.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002404void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Ryan Flynne25ff832009-07-30 03:15:39 +00002405 // Handle #pragma weak
2406 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
2407 if (ND->hasLinkage()) {
2408 WeakInfo W = WeakUndeclaredIdentifiers.lookup(ND->getIdentifier());
2409 if (W != WeakInfo()) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002410 // Identifier referenced by #pragma weak before it was declared
2411 DeclApplyPragmaWeak(S, ND, W);
Ryan Flynne25ff832009-07-30 03:15:39 +00002412 WeakUndeclaredIdentifiers[ND->getIdentifier()] = W;
2413 }
2414 }
2415 }
2416
Chris Lattner0744e5f2008-06-29 00:23:49 +00002417 // Apply decl attributes from the DeclSpec if present.
2418 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002419 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00002420
Chris Lattner0744e5f2008-06-29 00:23:49 +00002421 // Walk the declarator structure, applying decl attributes that were in a type
2422 // position to the decl itself. This handles cases like:
2423 // int *__attr__(x)** D;
2424 // when X is a decl attribute.
2425 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
2426 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002427 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00002428
Chris Lattner0744e5f2008-06-29 00:23:49 +00002429 // Finally, apply any attributes on the decl itself.
2430 if (const AttributeList *Attrs = PD.getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002431 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00002432}
John McCall54abf7d2009-11-04 02:18:39 +00002433
2434/// PushParsingDeclaration - Enter a new "scope" of deprecation
2435/// warnings.
2436///
2437/// The state token we use is the start index of this scope
2438/// on the warning stack.
John McCallf312b1e2010-08-26 23:41:50 +00002439Sema::ParsingDeclStackState Sema::PushParsingDeclaration() {
John McCall54abf7d2009-11-04 02:18:39 +00002440 ParsingDeclDepth++;
John McCall2f514482010-01-27 03:50:35 +00002441 return (ParsingDeclStackState) DelayedDiagnostics.size();
2442}
2443
John McCalld226f652010-08-21 09:40:31 +00002444void Sema::PopParsingDeclaration(ParsingDeclStackState S, Decl *D) {
John McCall2f514482010-01-27 03:50:35 +00002445 assert(ParsingDeclDepth > 0 && "empty ParsingDeclaration stack");
2446 ParsingDeclDepth--;
2447
2448 if (DelayedDiagnostics.empty())
2449 return;
2450
2451 unsigned SavedIndex = (unsigned) S;
2452 assert(SavedIndex <= DelayedDiagnostics.size() &&
2453 "saved index is out of bounds");
2454
John McCall58e6f342010-03-16 05:22:47 +00002455 unsigned E = DelayedDiagnostics.size();
2456
John McCall2f514482010-01-27 03:50:35 +00002457 // We only want to actually emit delayed diagnostics when we
2458 // successfully parsed a decl.
John McCall2f514482010-01-27 03:50:35 +00002459 if (D) {
2460 // We really do want to start with 0 here. We get one push for a
2461 // decl spec and another for each declarator; in a decl group like:
2462 // deprecated_typedef foo, *bar, baz();
2463 // only the declarator pops will be passed decls. This is correct;
2464 // we really do need to consider delayed diagnostics from the decl spec
2465 // for each of the different declarations.
John McCall58e6f342010-03-16 05:22:47 +00002466 for (unsigned I = 0; I != E; ++I) {
John McCall2f514482010-01-27 03:50:35 +00002467 if (DelayedDiagnostics[I].Triggered)
2468 continue;
2469
2470 switch (DelayedDiagnostics[I].Kind) {
2471 case DelayedDiagnostic::Deprecation:
2472 HandleDelayedDeprecationCheck(DelayedDiagnostics[I], D);
2473 break;
2474
2475 case DelayedDiagnostic::Access:
2476 HandleDelayedAccessCheck(DelayedDiagnostics[I], D);
2477 break;
2478 }
2479 }
2480 }
2481
John McCall58e6f342010-03-16 05:22:47 +00002482 // Destroy all the delayed diagnostics we're about to pop off.
2483 for (unsigned I = SavedIndex; I != E; ++I)
2484 DelayedDiagnostics[I].destroy();
2485
John McCall2f514482010-01-27 03:50:35 +00002486 DelayedDiagnostics.set_size(SavedIndex);
John McCall54abf7d2009-11-04 02:18:39 +00002487}
2488
2489static bool isDeclDeprecated(Decl *D) {
2490 do {
2491 if (D->hasAttr<DeprecatedAttr>())
2492 return true;
2493 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
2494 return false;
2495}
2496
John McCall9c3087b2010-08-26 02:13:20 +00002497void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00002498 Decl *Ctx) {
2499 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00002500 return;
2501
John McCall2f514482010-01-27 03:50:35 +00002502 DD.Triggered = true;
2503 Diag(DD.Loc, diag::warn_deprecated)
2504 << DD.DeprecationData.Decl->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00002505}
2506
2507void Sema::EmitDeprecationWarning(NamedDecl *D, SourceLocation Loc) {
2508 // Delay if we're currently parsing a declaration.
2509 if (ParsingDeclDepth) {
John McCall2f514482010-01-27 03:50:35 +00002510 DelayedDiagnostics.push_back(DelayedDiagnostic::makeDeprecation(Loc, D));
John McCall54abf7d2009-11-04 02:18:39 +00002511 return;
2512 }
2513
2514 // Otherwise, don't warn if our current context is deprecated.
2515 if (isDeclDeprecated(cast<Decl>(CurContext)))
2516 return;
2517
2518 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
2519}