blob: b0636bcb96fd225b47fb950970f8a9802b83f68a [file] [log] [blame]
Chris Lattner6b6b5372008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
John McCall384aff82010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000018#include "clang/AST/DeclObjC.h"
19#include "clang/AST/Expr.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000020#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000022#include "clang/Sema/DelayedDiagnostic.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000023#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000024using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000025using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000026
Chris Lattnere5c5ee12008-06-29 00:16:31 +000027//===----------------------------------------------------------------------===//
28// Helper functions
29//===----------------------------------------------------------------------===//
30
Ted Kremeneka18d7d82009-08-14 20:49:40 +000031static const FunctionType *getFunctionType(const Decl *d,
32 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000033 QualType Ty;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000034 if (const ValueDecl *decl = dyn_cast<ValueDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000035 Ty = decl->getType();
Ted Kremeneka18d7d82009-08-14 20:49:40 +000036 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000037 Ty = decl->getType();
Ted Kremeneka18d7d82009-08-14 20:49:40 +000038 else if (const TypedefDecl* decl = dyn_cast<TypedefDecl>(d))
Chris Lattner6b6b5372008-06-26 18:38:35 +000039 Ty = decl->getUnderlyingType();
40 else
41 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000042
Chris Lattner6b6b5372008-06-26 18:38:35 +000043 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000044 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000045 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000046 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000047
John McCall183700f2009-09-21 23:43:11 +000048 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000049}
50
Daniel Dunbar35682492008-09-26 04:12:28 +000051// FIXME: We should provide an abstraction around a method or function
52// to provide the following bits of information.
53
Nuno Lopesd20254f2009-12-20 23:11:08 +000054/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000055/// type (function or function-typed variable).
56static bool isFunction(const Decl *d) {
57 return getFunctionType(d, false) != NULL;
58}
59
60/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000061/// type (function or function-typed variable) or an Objective-C
62/// method.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000063static bool isFunctionOrMethod(const Decl *d) {
64 return isFunction(d)|| isa<ObjCMethodDecl>(d);
Daniel Dunbar35682492008-09-26 04:12:28 +000065}
66
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000067/// isFunctionOrMethodOrBlock - Return true if the given decl has function
68/// type (function or function-typed variable) or an Objective-C
69/// method or a block.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000070static bool isFunctionOrMethodOrBlock(const Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000071 if (isFunctionOrMethod(d))
72 return true;
73 // check for block is more involved.
74 if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
75 QualType Ty = V->getType();
76 return Ty->isBlockPointerType();
77 }
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000078 return isa<BlockDecl>(d);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000079}
80
John McCall711c52b2011-01-05 12:14:39 +000081/// Return true if the given decl has a declarator that should have
82/// been processed by Sema::GetTypeForDeclarator.
83static bool hasDeclarator(const Decl *d) {
84 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
85 return isa<DeclaratorDecl>(d) || isa<BlockDecl>(d) || isa<TypedefDecl>(d);
86}
87
Daniel Dunbard3f2c102008-10-19 02:04:16 +000088/// hasFunctionProto - Return true if the given decl has a argument
89/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000090/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Ted Kremeneka18d7d82009-08-14 20:49:40 +000091static bool hasFunctionProto(const Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000092 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000093 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000094 else {
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000095 assert(isa<ObjCMethodDecl>(d) || isa<BlockDecl>(d));
Daniel Dunbard3f2c102008-10-19 02:04:16 +000096 return true;
97 }
98}
99
100/// getFunctionOrMethodNumArgs - Return number of function or method
101/// arguments. It is an error to call this on a K&R function (use
102/// hasFunctionProto first).
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000103static unsigned getFunctionOrMethodNumArgs(const Decl *d) {
Chris Lattner89951a82009-02-20 18:43:26 +0000104 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +0000105 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000106 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
107 return BD->getNumParams();
Chris Lattner89951a82009-02-20 18:43:26 +0000108 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000109}
110
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000111static QualType getFunctionOrMethodArgType(const Decl *d, unsigned Idx) {
Chris Lattner89951a82009-02-20 18:43:26 +0000112 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +0000113 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000114 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
115 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000116
Chris Lattner89951a82009-02-20 18:43:26 +0000117 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000118}
119
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000120static QualType getFunctionOrMethodResultType(const Decl *d) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000121 if (const FunctionType *FnTy = getFunctionType(d))
122 return cast<FunctionProtoType>(FnTy)->getResultType();
123 return cast<ObjCMethodDecl>(d)->getResultType();
124}
125
Ted Kremeneka18d7d82009-08-14 20:49:40 +0000126static bool isFunctionOrMethodVariadic(const Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000127 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000128 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000129 return proto->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000130 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000131 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000132 else {
Daniel Dunbar35682492008-09-26 04:12:28 +0000133 return cast<ObjCMethodDecl>(d)->isVariadic();
134 }
135}
136
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000137static bool isInstanceMethod(const Decl *d) {
138 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(d))
139 return MethodDecl->isInstance();
140 return false;
141}
142
Chris Lattner6b6b5372008-06-26 18:38:35 +0000143static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000144 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000145 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000146 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000147
John McCall506b57e2010-05-17 21:00:27 +0000148 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
149 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000150 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000151
John McCall506b57e2010-05-17 21:00:27 +0000152 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000153
Chris Lattner6b6b5372008-06-26 18:38:35 +0000154 // FIXME: Should we walk the chain of classes?
155 return ClsName == &Ctx.Idents.get("NSString") ||
156 ClsName == &Ctx.Idents.get("NSMutableString");
157}
158
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000159static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000160 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000161 if (!PT)
162 return false;
163
Ted Kremenek6217b802009-07-29 21:53:49 +0000164 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000165 if (!RT)
166 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000167
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000168 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000169 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000170 return false;
171
172 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
173}
174
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000175//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000176// Attribute Implementations
177//===----------------------------------------------------------------------===//
178
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000179// FIXME: All this manual attribute parsing code is gross. At the
180// least add some helper functions to check most argument patterns (#
181// and types of args).
182
Mike Stumpbf916502009-07-24 19:02:52 +0000183static void HandleExtVectorTypeAttr(Scope *scope, Decl *d,
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000184 const AttributeList &Attr, Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000185 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
186 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000187 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000188 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000189 }
Mike Stumpbf916502009-07-24 19:02:52 +0000190
Chris Lattner6b6b5372008-06-26 18:38:35 +0000191 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000192
193 Expr *sizeExpr;
194
195 // Special case where the argument is a template id.
196 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000197 CXXScopeSpec SS;
198 UnqualifiedId id;
199 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
200 sizeExpr = S.ActOnIdExpression(scope, SS, id, false, false).takeAs<Expr>();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000201 } else {
202 // check the attribute arguments.
203 if (Attr.getNumArgs() != 1) {
204 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
205 return;
206 }
Peter Collingbourne7a730022010-11-23 20:45:58 +0000207 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000208 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000209
210 // Instantiate/Install the vector type, and let Sema build the type for us.
211 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000212 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000213 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000214 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000215 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000216
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000217 // Remember this typedef decl, we will need it later for diagnostics.
218 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000219 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000220}
221
Chris Lattner803d0802008-06-29 00:43:07 +0000222static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000223 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000224 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000225 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000226 return;
227 }
Mike Stumpbf916502009-07-24 19:02:52 +0000228
Chris Lattner6b6b5372008-06-26 18:38:35 +0000229 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Sean Huntcf807c42010-08-18 23:23:40 +0000230 TD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000231 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
232 // If the alignment is less than or equal to 8 bits, the packed attribute
233 // has no effect.
234 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000235 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000236 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000237 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000238 else
Sean Huntcf807c42010-08-18 23:23:40 +0000239 FD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000240 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000241 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000242}
243
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000244static void HandleIBAction(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000245 // check the attribute arguments.
246 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000247 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek96329d42008-07-15 22:26:48 +0000248 return;
249 }
Mike Stumpbf916502009-07-24 19:02:52 +0000250
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000251 // The IBAction attributes only apply to instance methods.
252 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
253 if (MD->isInstanceMethod()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000254 d->addAttr(::new (S.Context) IBActionAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000255 return;
256 }
257
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000258 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000259}
260
261static void HandleIBOutlet(Decl *d, const AttributeList &Attr, Sema &S) {
262 // check the attribute arguments.
263 if (Attr.getNumArgs() > 0) {
264 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
265 return;
266 }
267
268 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000269 // Objective-C classes.
270 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d)) {
Sean Huntcf807c42010-08-18 23:23:40 +0000271 d->addAttr(::new (S.Context) IBOutletAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000272 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000273 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000274
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000275 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000276}
277
Ted Kremenek857e9182010-05-19 17:38:06 +0000278static void HandleIBOutletCollection(Decl *d, const AttributeList &Attr,
279 Sema &S) {
280
281 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000282 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000283 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
284 return;
285 }
286
287 // The IBOutletCollection attributes only apply to instance variables of
288 // Objective-C classes.
289 if (!(isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d))) {
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000290 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek857e9182010-05-19 17:38:06 +0000291 return;
292 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000293 if (const ValueDecl *VD = dyn_cast<ValueDecl>(d))
294 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
295 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
296 << VD->getType() << 0;
297 return;
298 }
299 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(d))
300 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
301 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
302 << PD->getType() << 1;
303 return;
304 }
305
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000306 IdentifierInfo *II = Attr.getParameterName();
307 if (!II)
308 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000309
John McCallb3d87482010-08-24 05:47:05 +0000310 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000311 S.getScopeForContext(d->getDeclContext()->getParent()));
312 if (!TypeRep) {
313 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
314 return;
315 }
John McCallb3d87482010-08-24 05:47:05 +0000316 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000317 // Diagnose use of non-object type in iboutletcollection attribute.
318 // FIXME. Gnu attribute extension ignores use of builtin types in
319 // attributes. So, __attribute__((iboutletcollection(char))) will be
320 // treated as __attribute__((iboutletcollection())).
321 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
322 !QT->isObjCObjectType()) {
323 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
324 return;
325 }
Sean Huntcf807c42010-08-18 23:23:40 +0000326 d->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getLoc(), S.Context,
327 QT));
Ted Kremenek857e9182010-05-19 17:38:06 +0000328}
329
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000330static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +0000331 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
332 // ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000333 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000334 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000335 << Attr.getName() << 0 /*function*/;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000336 return;
337 }
Mike Stumpbf916502009-07-24 19:02:52 +0000338
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000339 // In C++ the implicit 'this' function parameter also counts, and they are
340 // counted from one.
341 bool HasImplicitThisParam = isInstanceMethod(d);
342 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000343
344 // The nonnull attribute only applies to pointers.
345 llvm::SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000346
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000347 for (AttributeList::arg_iterator I=Attr.arg_begin(),
348 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000349
350
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000351 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000352 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000353 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000354 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
355 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000356 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
357 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000358 return;
359 }
Mike Stumpbf916502009-07-24 19:02:52 +0000360
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000361 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000362
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000363 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000364 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000365 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000366 return;
367 }
Mike Stumpbf916502009-07-24 19:02:52 +0000368
Ted Kremenek465172f2008-07-21 22:09:15 +0000369 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000370 if (HasImplicitThisParam) {
371 if (x == 0) {
372 S.Diag(Attr.getLoc(),
373 diag::err_attribute_invalid_implicit_this_argument)
374 << "nonnull" << Ex->getSourceRange();
375 return;
376 }
377 --x;
378 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000379
380 // Is the function argument a pointer type?
Douglas Gregorde436322010-12-15 15:41:46 +0000381 QualType T = getFunctionOrMethodArgType(d, x).getNonReferenceType();
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000382 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000383 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000384 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000385 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000386 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000387 }
Mike Stumpbf916502009-07-24 19:02:52 +0000388
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000389 NonNullArgs.push_back(x);
390 }
Mike Stumpbf916502009-07-24 19:02:52 +0000391
392 // If no arguments were specified to __attribute__((nonnull)) then all pointer
393 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000394 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000395 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
Douglas Gregorde436322010-12-15 15:41:46 +0000396 QualType T = getFunctionOrMethodArgType(d, I).getNonReferenceType();
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000397 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000398 NonNullArgs.push_back(I);
Fariborz Jahanianff3a0782010-09-27 22:42:37 +0000399 else if (const RecordType *UT = T->getAsUnionType()) {
400 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
401 RecordDecl *UD = UT->getDecl();
402 for (RecordDecl::field_iterator it = UD->field_begin(),
403 itend = UD->field_end(); it != itend; ++it) {
404 T = it->getType();
405 if (T->isAnyPointerType() || T->isBlockPointerType()) {
406 NonNullArgs.push_back(I);
407 break;
408 }
409 }
410 }
411 }
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000412 }
Mike Stumpbf916502009-07-24 19:02:52 +0000413
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000414 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000415 if (NonNullArgs.empty()) {
416 // Warn the trivial case only if attribute is not coming from a
417 // macro instantiation.
418 if (Attr.getLoc().isFileID())
419 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000420 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000421 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000422 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000423
424 unsigned* start = &NonNullArgs[0];
425 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000426 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000427 d->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
428 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000429}
430
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000431static void HandleOwnershipAttr(Decl *d, const AttributeList &AL, Sema &S) {
432 // This attribute must be applied to a function declaration.
433 // The first argument to the attribute must be a string,
434 // the name of the resource, for example "malloc".
435 // The following arguments must be argument indexes, the arguments must be
436 // of integer type for Returns, otherwise of pointer type.
437 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000438 // after being held. free() should be __attribute((ownership_takes)), whereas
439 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000440
441 if (!AL.getParameterName()) {
442 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
443 << AL.getName()->getName() << 1;
444 return;
445 }
446 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000447 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000448 switch (AL.getKind()) {
449 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000450 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000451 if (AL.getNumArgs() < 1) {
452 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
453 return;
454 }
Jordy Rose2a479922010-08-12 08:54:03 +0000455 break;
456 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000457 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000458 if (AL.getNumArgs() < 1) {
459 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
460 return;
461 }
Jordy Rose2a479922010-08-12 08:54:03 +0000462 break;
463 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000464 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000465 if (AL.getNumArgs() > 1) {
466 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
467 << AL.getNumArgs() + 1;
468 return;
469 }
Jordy Rose2a479922010-08-12 08:54:03 +0000470 break;
471 default:
472 // This should never happen given how we are called.
473 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000474 }
475
476 if (!isFunction(d) || !hasFunctionProto(d)) {
477 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL.getName()
478 << 0 /*function*/;
479 return;
480 }
481
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000482 // In C++ the implicit 'this' function parameter also counts, and they are
483 // counted from one.
484 bool HasImplicitThisParam = isInstanceMethod(d);
485 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000486
487 llvm::StringRef Module = AL.getParameterName()->getName();
488
489 // Normalize the argument, __foo__ becomes foo.
490 if (Module.startswith("__") && Module.endswith("__"))
491 Module = Module.substr(2, Module.size() - 4);
492
493 llvm::SmallVector<unsigned, 10> OwnershipArgs;
494
Jordy Rose2a479922010-08-12 08:54:03 +0000495 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
496 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000497
Peter Collingbourne7a730022010-11-23 20:45:58 +0000498 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000499 llvm::APSInt ArgNum(32);
500 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
501 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
502 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
503 << AL.getName()->getName() << IdxExpr->getSourceRange();
504 continue;
505 }
506
507 unsigned x = (unsigned) ArgNum.getZExtValue();
508
509 if (x > NumArgs || x < 1) {
510 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
511 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
512 continue;
513 }
514 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000515 if (HasImplicitThisParam) {
516 if (x == 0) {
517 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
518 << "ownership" << IdxExpr->getSourceRange();
519 return;
520 }
521 --x;
522 }
523
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000524 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +0000525 case OwnershipAttr::Takes:
526 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000527 // Is the function argument a pointer type?
528 QualType T = getFunctionOrMethodArgType(d, x);
529 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
530 // FIXME: Should also highlight argument in decl.
531 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +0000532 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000533 << "pointer"
534 << IdxExpr->getSourceRange();
535 continue;
536 }
537 break;
538 }
Sean Huntcf807c42010-08-18 23:23:40 +0000539 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000540 if (AL.getNumArgs() > 1) {
541 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +0000542 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000543 llvm::APSInt ArgNum(32);
544 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
545 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
546 S.Diag(AL.getLoc(), diag::err_ownership_type)
547 << "ownership_returns" << "integer"
548 << IdxExpr->getSourceRange();
549 return;
550 }
551 }
552 break;
553 }
Jordy Rose2a479922010-08-12 08:54:03 +0000554 default:
555 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000556 } // switch
557
558 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +0000559 for (specific_attr_iterator<OwnershipAttr>
560 i = d->specific_attr_begin<OwnershipAttr>(),
561 e = d->specific_attr_end<OwnershipAttr>();
562 i != e; ++i) {
563 if ((*i)->getOwnKind() != K) {
564 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
565 I!=E; ++I) {
566 if (x == *I) {
567 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
568 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000569 }
570 }
571 }
572 }
573 OwnershipArgs.push_back(x);
574 }
575
576 unsigned* start = OwnershipArgs.data();
577 unsigned size = OwnershipArgs.size();
578 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +0000579
580 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
581 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
582 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000583 }
Sean Huntcf807c42010-08-18 23:23:40 +0000584
585 d->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
586 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000587}
588
John McCall332bb2a2011-02-08 22:35:49 +0000589/// Whether this declaration has internal linkage for the purposes of
590/// things that want to complain about things not have internal linkage.
591static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
592 switch (D->getLinkage()) {
593 case NoLinkage:
594 case InternalLinkage:
595 return true;
596
597 // Template instantiations that go from external to unique-external
598 // shouldn't get diagnosed.
599 case UniqueExternalLinkage:
600 return true;
601
602 case ExternalLinkage:
603 return false;
604 }
605 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000606 return false;
607}
608
609static void HandleWeakRefAttr(Decl *d, const AttributeList &Attr, Sema &S) {
610 // Check the attribute arguments.
611 if (Attr.getNumArgs() > 1) {
612 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
613 return;
614 }
615
John McCall332bb2a2011-02-08 22:35:49 +0000616 if (!isa<VarDecl>(d) && !isa<FunctionDecl>(d)) {
617 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
618 << Attr.getName() << 2 /*variables and functions*/;
619 return;
620 }
621
622 NamedDecl *nd = cast<NamedDecl>(d);
623
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000624 // gcc rejects
625 // class c {
626 // static int a __attribute__((weakref ("v2")));
627 // static int b() __attribute__((weakref ("f3")));
628 // };
629 // and ignores the attributes of
630 // void f(void) {
631 // static int a __attribute__((weakref ("v2")));
632 // }
633 // we reject them
Sebastian Redl7a126a42010-08-31 00:36:30 +0000634 const DeclContext *Ctx = d->getDeclContext()->getRedeclContext();
635 if (!Ctx->isFileContext()) {
636 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +0000637 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +0000638 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000639 }
640
641 // The GCC manual says
642 //
643 // At present, a declaration to which `weakref' is attached can only
644 // be `static'.
645 //
646 // It also says
647 //
648 // Without a TARGET,
649 // given as an argument to `weakref' or to `alias', `weakref' is
650 // equivalent to `weak'.
651 //
652 // gcc 4.4.1 will accept
653 // int a7 __attribute__((weakref));
654 // as
655 // int a7 __attribute__((weak));
656 // This looks like a bug in gcc. We reject that for now. We should revisit
657 // it if this behaviour is actually used.
658
John McCall332bb2a2011-02-08 22:35:49 +0000659 if (!hasEffectivelyInternalLinkage(nd)) {
660 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000661 return;
662 }
663
664 // GCC rejects
665 // static ((alias ("y"), weakref)).
666 // Should we? How to check that weakref is before or after alias?
667
668 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000669 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000670 Arg = Arg->IgnoreParenCasts();
671 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
672
673 if (Str == 0 || Str->isWide()) {
674 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
675 << "weakref" << 1;
676 return;
677 }
678 // GCC will accept anything as the argument of weakref. Should we
679 // check for an existing decl?
Eric Christopherf48f3672010-12-01 22:13:54 +0000680 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
681 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000682 }
683
Sean Huntcf807c42010-08-18 23:23:40 +0000684 d->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +0000685}
686
Chris Lattner803d0802008-06-29 00:43:07 +0000687static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000688 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000689 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000691 return;
692 }
Mike Stumpbf916502009-07-24 19:02:52 +0000693
Peter Collingbourne7a730022010-11-23 20:45:58 +0000694 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000695 Arg = Arg->IgnoreParenCasts();
696 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +0000697
Chris Lattner6b6b5372008-06-26 18:38:35 +0000698 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000699 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000700 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000701 return;
702 }
Mike Stumpbf916502009-07-24 19:02:52 +0000703
Rafael Espindolaf5fe2922010-12-07 15:23:23 +0000704 if (S.Context.Target.getTriple().getOS() == llvm::Triple::Darwin) {
705 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
706 return;
707 }
708
Chris Lattner6b6b5372008-06-26 18:38:35 +0000709 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +0000710
Eric Christopherf48f3672010-12-01 22:13:54 +0000711 d->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
712 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000713}
714
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000715static void HandleNakedAttr(Decl *d, const AttributeList &Attr,
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000716 Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000717 // Check the attribute arguments.
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000718 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000719 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000720 return;
721 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000722
Chris Lattnerc5197432009-04-14 17:02:11 +0000723 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +0000724 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000725 << Attr.getName() << 0 /*function*/;
726 return;
727 }
728
729 d->addAttr(::new (S.Context) NakedAttr(Attr.getLoc(), S.Context));
730}
731
732static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
733 Sema &S) {
734 // Check the attribute arguments.
735 if (Attr.getNumArgs() != 0) {
736 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
737 return;
738 }
739
740 if (!isa<FunctionDecl>(d)) {
741 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
742 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +0000743 return;
744 }
Mike Stumpbf916502009-07-24 19:02:52 +0000745
Sean Huntcf807c42010-08-18 23:23:40 +0000746 d->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000747}
748
Ryan Flynn76168e22009-08-09 20:07:29 +0000749static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +0000750 // Check the attribute arguments.
Ryan Flynn76168e22009-08-09 20:07:29 +0000751 if (Attr.getNumArgs() != 0) {
752 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
753 return;
754 }
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000756 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000757 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000758 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Sean Huntcf807c42010-08-18 23:23:40 +0000759 d->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000760 return;
761 }
Ryan Flynn76168e22009-08-09 20:07:29 +0000762 }
763
Ted Kremenek2cff7d12009-08-15 00:51:46 +0000764 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +0000765}
766
Dan Gohman34c26302010-11-17 00:03:07 +0000767static void HandleMayAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
768 // check the attribute arguments.
769 if (Attr.getNumArgs() != 0) {
770 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
771 return;
772 }
773
Dan Gohman34c26302010-11-17 00:03:07 +0000774 d->addAttr(::new (S.Context) MayAliasAttr(Attr.getLoc(), S.Context));
775}
776
Eric Christophera6cf1e72010-12-02 02:45:55 +0000777static void HandleNoCommonAttr(Decl *d, const AttributeList &Attr, Sema &S) {
778 assert(Attr.isInvalid() == false);
Eric Christopher722109c2010-12-03 06:58:14 +0000779 if (isa<VarDecl>(d))
780 d->addAttr(::new (S.Context) NoCommonAttr(Attr.getLoc(), S.Context));
781 else
782 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
783 << Attr.getName() << 12 /* variable */;
Eric Christophera6cf1e72010-12-02 02:45:55 +0000784}
785
786static void HandleCommonAttr(Decl *d, const AttributeList &Attr, Sema &S) {
787 assert(Attr.isInvalid() == false);
Eric Christopher722109c2010-12-03 06:58:14 +0000788 if (isa<VarDecl>(d))
789 d->addAttr(::new (S.Context) CommonAttr(Attr.getLoc(), S.Context));
790 else
791 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
792 << Attr.getName() << 12 /* variable */;
Eric Christophera6cf1e72010-12-02 02:45:55 +0000793}
794
John McCall711c52b2011-01-05 12:14:39 +0000795static void HandleNoReturnAttr(Decl *d, const AttributeList &attr, Sema &S) {
796 if (hasDeclarator(d)) return;
797
798 if (S.CheckNoReturnAttr(attr)) return;
799
800 if (!isa<ObjCMethodDecl>(d)) {
801 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
802 << attr.getName() << 0 /*function*/;
803 return;
804 }
805
806 d->addAttr(::new (S.Context) NoReturnAttr(attr.getLoc(), S.Context));
807}
808
809bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
810 if (attr.getNumArgs() != 0) {
811 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
812 attr.setInvalid();
813 return true;
814 }
815
816 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +0000817}
818
819static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
820 Sema &S) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +0000821
822 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
823 // because 'analyzer_noreturn' does not impact the type.
824
825 if (Attr.getNumArgs() != 0) {
826 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
827 return;
828 }
829
830 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
831 ValueDecl *VD = dyn_cast<ValueDecl>(d);
832 if (VD == 0 || (!VD->getType()->isBlockPointerType()
833 && !VD->getType()->isFunctionPointerType())) {
834 S.Diag(Attr.getLoc(),
835 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
836 : diag::warn_attribute_wrong_decl_type)
837 << Attr.getName() << 0 /*function*/;
838 return;
839 }
840 }
841
842 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000843}
844
John Thompson35cc9622010-08-09 21:53:52 +0000845// PS3 PPU-specific.
846static void HandleVecReturnAttr(Decl *d, const AttributeList &Attr,
847 Sema &S) {
848/*
849 Returning a Vector Class in Registers
850
Eric Christopherf48f3672010-12-01 22:13:54 +0000851 According to the PPU ABI specifications, a class with a single member of
852 vector type is returned in memory when used as the return value of a function.
853 This results in inefficient code when implementing vector classes. To return
854 the value in a single vector register, add the vecreturn attribute to the
855 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +0000856
857 Example:
858
859 struct Vector
860 {
861 __vector float xyzw;
862 } __attribute__((vecreturn));
863
864 Vector Add(Vector lhs, Vector rhs)
865 {
866 Vector result;
867 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
868 return result; // This will be returned in a register
869 }
870*/
John Thompson01add592010-09-18 01:12:07 +0000871 if (!isa<RecordDecl>(d)) {
John Thompson35cc9622010-08-09 21:53:52 +0000872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
873 << Attr.getName() << 9 /*class*/;
874 return;
875 }
876
877 if (d->getAttr<VecReturnAttr>()) {
878 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
879 return;
880 }
881
John Thompson01add592010-09-18 01:12:07 +0000882 RecordDecl *record = cast<RecordDecl>(d);
883 int count = 0;
884
885 if (!isa<CXXRecordDecl>(record)) {
886 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
887 return;
888 }
889
890 if (!cast<CXXRecordDecl>(record)->isPOD()) {
891 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
892 return;
893 }
894
Eric Christopherf48f3672010-12-01 22:13:54 +0000895 for (RecordDecl::field_iterator iter = record->field_begin();
896 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +0000897 if ((count == 1) || !iter->getType()->isVectorType()) {
898 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
899 return;
900 }
901 count++;
902 }
903
Sean Huntcf807c42010-08-18 23:23:40 +0000904 d->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +0000905}
906
Sean Huntbbd37c62009-11-21 08:43:09 +0000907static void HandleDependencyAttr(Decl *d, const AttributeList &Attr, Sema &S) {
908 if (!isFunctionOrMethod(d) && !isa<ParmVarDecl>(d)) {
909 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall04a67a62010-02-05 21:31:56 +0000910 << Attr.getName() << 8 /*function, method, or parameter*/;
Sean Huntbbd37c62009-11-21 08:43:09 +0000911 return;
912 }
913 // FIXME: Actually store the attribute on the declaration
914}
915
Ted Kremenek73798892008-07-25 04:39:19 +0000916static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
917 // check the attribute arguments.
918 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000919 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000920 return;
921 }
Mike Stumpbf916502009-07-24 19:02:52 +0000922
John McCallaec58602010-03-31 02:47:45 +0000923 if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d) &&
924 !isa<TypeDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000925 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000926 << Attr.getName() << 2 /*variable and function*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000927 return;
928 }
Mike Stumpbf916502009-07-24 19:02:52 +0000929
Sean Huntcf807c42010-08-18 23:23:40 +0000930 d->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +0000931}
932
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000933static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
934 // check the attribute arguments.
935 if (Attr.getNumArgs() != 0) {
936 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
937 return;
938 }
Mike Stumpbf916502009-07-24 19:02:52 +0000939
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000940 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000941 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000942 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
943 return;
944 }
945 } else if (!isFunctionOrMethod(d)) {
946 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000947 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000948 return;
949 }
Mike Stumpbf916502009-07-24 19:02:52 +0000950
Sean Huntcf807c42010-08-18 23:23:40 +0000951 d->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000952}
953
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000954static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
955 // check the attribute arguments.
956 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000957 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
958 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000959 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000960 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000961
962 int priority = 65535; // FIXME: Do not hardcode such constants.
963 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000964 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000965 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000966 if (E->isTypeDependent() || E->isValueDependent() ||
967 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000968 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000969 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000970 return;
971 }
972 priority = Idx.getZExtValue();
973 }
Mike Stumpbf916502009-07-24 19:02:52 +0000974
Chris Lattnerc5197432009-04-14 17:02:11 +0000975 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000976 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000977 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000978 return;
979 }
980
Eric Christopherf48f3672010-12-01 22:13:54 +0000981 d->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context,
982 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000983}
984
985static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
986 // check the attribute arguments.
987 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000988 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
989 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000990 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000991 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000992
993 int priority = 65535; // FIXME: Do not hardcode such constants.
994 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +0000995 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000996 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000997 if (E->isTypeDependent() || E->isValueDependent() ||
998 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000999 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001000 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001001 return;
1002 }
1003 priority = Idx.getZExtValue();
1004 }
Mike Stumpbf916502009-07-24 19:02:52 +00001005
Anders Carlsson6782fc62008-08-22 22:10:48 +00001006 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001007 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001008 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001009 return;
1010 }
1011
Eric Christopherf48f3672010-12-01 22:13:54 +00001012 d->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context,
1013 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001014}
1015
Chris Lattner803d0802008-06-29 00:43:07 +00001016static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001017 // check the attribute arguments.
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001018 int noArgs = Attr.getNumArgs();
1019 if (noArgs > 1) {
1020 S.Diag(Attr.getLoc(),
1021 diag::err_attribute_wrong_number_arguments) << "0 or 1";
Chris Lattner6b6b5372008-06-26 18:38:35 +00001022 return;
1023 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001024 // Handle the case where deprecated attribute has a text message.
1025 StringLiteral *SE;
1026 if (noArgs == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001027 Expr *ArgExpr = Attr.getArg(0);
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001028 SE = dyn_cast<StringLiteral>(ArgExpr);
1029 if (!SE) {
1030 S.Diag(ArgExpr->getLocStart(),
1031 diag::err_attribute_not_string) << "deprecated";
1032 return;
1033 }
1034 }
1035 else
1036 SE = StringLiteral::CreateEmpty(S.Context, 1);
Mike Stumpbf916502009-07-24 19:02:52 +00001037
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001038 d->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context,
1039 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001040}
1041
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001042static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1043 // check the attribute arguments.
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001044 int noArgs = Attr.getNumArgs();
1045 if (noArgs > 1) {
Eric Christopherf48f3672010-12-01 22:13:54 +00001046 S.Diag(Attr.getLoc(),
1047 diag::err_attribute_wrong_number_arguments) << "0 or 1";
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001048 return;
1049 }
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001050 // Handle the case where unavailable attribute has a text message.
1051 StringLiteral *SE;
1052 if (noArgs == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001053 Expr *ArgExpr = Attr.getArg(0);
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001054 SE = dyn_cast<StringLiteral>(ArgExpr);
1055 if (!SE) {
1056 S.Diag(ArgExpr->getLocStart(),
1057 diag::err_attribute_not_string) << "unavailable";
1058 return;
1059 }
1060 }
1061 else
1062 SE = StringLiteral::CreateEmpty(S.Context, 1);
1063 d->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context,
1064 SE->getString()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001065}
1066
Chris Lattner803d0802008-06-29 00:43:07 +00001067static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001068 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001069 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001070 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001071 return;
1072 }
Mike Stumpbf916502009-07-24 19:02:52 +00001073
Peter Collingbourne7a730022010-11-23 20:45:58 +00001074 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001075 Arg = Arg->IgnoreParenCasts();
1076 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001077
Chris Lattner6b6b5372008-06-26 18:38:35 +00001078 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001079 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001080 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001081 return;
1082 }
Mike Stumpbf916502009-07-24 19:02:52 +00001083
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001084 llvm::StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001085 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001086
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001087 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001088 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001089 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001090 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001091 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001092 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001093 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001094 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001095 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001096 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001097 return;
1098 }
Mike Stumpbf916502009-07-24 19:02:52 +00001099
Sean Huntcf807c42010-08-18 23:23:40 +00001100 d->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001101}
1102
Chris Lattner0db29ec2009-02-14 08:09:34 +00001103static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
1104 Sema &S) {
1105 if (Attr.getNumArgs() != 0) {
1106 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1107 return;
1108 }
Mike Stumpbf916502009-07-24 19:02:52 +00001109
Chris Lattner0db29ec2009-02-14 08:09:34 +00001110 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1111 if (OCI == 0) {
1112 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1113 return;
1114 }
Mike Stumpbf916502009-07-24 19:02:52 +00001115
Sean Huntcf807c42010-08-18 23:23:40 +00001116 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001117}
1118
1119static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001120 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001121 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001122 return;
1123 }
Chris Lattner0db29ec2009-02-14 08:09:34 +00001124 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001125 QualType T = TD->getUnderlyingType();
1126 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001127 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001128 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1129 return;
1130 }
1131 }
Sean Huntcf807c42010-08-18 23:23:40 +00001132 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001133}
1134
Mike Stumpbf916502009-07-24 19:02:52 +00001135static void
Douglas Gregorf9201e02009-02-11 23:02:49 +00001136HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1137 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001138 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001139 return;
1140 }
1141
1142 if (!isa<FunctionDecl>(D)) {
1143 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1144 return;
1145 }
1146
Sean Huntcf807c42010-08-18 23:23:40 +00001147 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001148}
1149
Steve Naroff9eae5762008-09-18 16:44:58 +00001150static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001151 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001152 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001153 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001154 return;
1155 }
Mike Stumpbf916502009-07-24 19:02:52 +00001156
Steve Naroff9eae5762008-09-18 16:44:58 +00001157 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001158 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001159 return;
1160 }
Mike Stumpbf916502009-07-24 19:02:52 +00001161
Sean Huntcf807c42010-08-18 23:23:40 +00001162 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001163 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001164 type = BlocksAttr::ByRef;
1165 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001166 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001167 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001168 return;
1169 }
Mike Stumpbf916502009-07-24 19:02:52 +00001170
Sean Huntcf807c42010-08-18 23:23:40 +00001171 d->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001172}
1173
Anders Carlsson77091822008-10-05 18:05:59 +00001174static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1175 // check the attribute arguments.
1176 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001177 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1178 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +00001179 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001180 }
1181
Anders Carlsson77091822008-10-05 18:05:59 +00001182 int sentinel = 0;
1183 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001184 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001185 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001186 if (E->isTypeDependent() || E->isValueDependent() ||
1187 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001188 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001189 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001190 return;
1191 }
1192 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001193
Anders Carlsson77091822008-10-05 18:05:59 +00001194 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001195 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1196 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001197 return;
1198 }
1199 }
1200
1201 int nullPos = 0;
1202 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001203 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001204 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001205 if (E->isTypeDependent() || E->isValueDependent() ||
1206 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001207 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001208 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001209 return;
1210 }
1211 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001212
Anders Carlsson77091822008-10-05 18:05:59 +00001213 if (nullPos > 1 || nullPos < 0) {
1214 // FIXME: This error message could be improved, it would be nice
1215 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001216 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1217 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001218 return;
1219 }
1220 }
1221
1222 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
John McCall183700f2009-09-21 23:43:11 +00001223 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001224 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001225
Chris Lattner897cd902009-03-17 23:03:47 +00001226 if (isa<FunctionNoProtoType>(FT)) {
1227 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1228 return;
1229 }
Mike Stumpbf916502009-07-24 19:02:52 +00001230
Chris Lattner897cd902009-03-17 23:03:47 +00001231 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001232 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001233 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001234 }
Anders Carlsson77091822008-10-05 18:05:59 +00001235 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
1236 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001237 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001238 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001239 }
1240 } else if (isa<BlockDecl>(d)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001241 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1242 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001243 ;
1244 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001245 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001246 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001247 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
Eric Christopherf48f3672010-12-01 22:13:54 +00001248 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001249 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001250 int m = Ty->isFunctionPointerType() ? 0 : 1;
1251 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001252 return;
1253 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001254 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001255 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001256 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001257 return;
1258 }
Anders Carlsson77091822008-10-05 18:05:59 +00001259 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001260 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +00001261 << Attr.getName() << 6 /*function, method or block */;
Anders Carlsson77091822008-10-05 18:05:59 +00001262 return;
1263 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001264 d->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel,
1265 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001266}
1267
Chris Lattner026dc962009-02-14 07:37:35 +00001268static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
1269 // check the attribute arguments.
1270 if (Attr.getNumArgs() != 0) {
1271 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1272 return;
1273 }
1274
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001275 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001276 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001277 << Attr.getName() << 0 /*function*/;
Chris Lattner026dc962009-02-14 07:37:35 +00001278 return;
1279 }
Mike Stumpbf916502009-07-24 19:02:52 +00001280
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001281 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1282 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1283 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001284 return;
1285 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001286 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1287 if (MD->getResultType()->isVoidType()) {
1288 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1289 << Attr.getName() << 1;
1290 return;
1291 }
1292
Sean Huntcf807c42010-08-18 23:23:40 +00001293 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001294}
1295
John McCall332bb2a2011-02-08 22:35:49 +00001296static void HandleWeakAttr(Decl *d, const AttributeList &attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001297 // check the attribute arguments.
John McCall332bb2a2011-02-08 22:35:49 +00001298 if (attr.getNumArgs() != 0) {
1299 S.Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001300 return;
1301 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001302
John McCall332bb2a2011-02-08 22:35:49 +00001303 if (!isa<VarDecl>(d) && !isa<FunctionDecl>(d)) {
1304 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1305 << attr.getName() << 2 /*variables and functions*/;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001306 return;
1307 }
1308
John McCall332bb2a2011-02-08 22:35:49 +00001309 NamedDecl *nd = cast<NamedDecl>(d);
1310
1311 // 'weak' only applies to declarations with external linkage.
1312 if (hasEffectivelyInternalLinkage(nd)) {
1313 S.Diag(attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001314 return;
1315 }
Mike Stumpbf916502009-07-24 19:02:52 +00001316
John McCall332bb2a2011-02-08 22:35:49 +00001317 nd->addAttr(::new (S.Context) WeakAttr(attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001318}
1319
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001320static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
1321 // check the attribute arguments.
1322 if (Attr.getNumArgs() != 0) {
1323 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1324 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001325 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001326
1327 // weak_import only applies to variable & function declarations.
1328 bool isDef = false;
1329 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1330 isDef = (!VD->hasExternalStorage() || VD->getInit());
1331 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001332 isDef = FD->hasBody();
Fariborz Jahaniand4edddd2009-05-04 19:35:12 +00001333 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
1334 // We ignore weak import on properties and methods
Mike Stump1c90f4d2009-03-18 17:39:31 +00001335 return;
Fariborz Jahanian5f8f8572009-11-17 19:08:08 +00001336 } else if (!(S.LangOpts.ObjCNonFragileABI && isa<ObjCInterfaceDecl>(D))) {
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001337 // Don't issue the warning for darwin as target; yet, ignore the attribute.
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001338 if (S.Context.Target.getTriple().getOS() != llvm::Triple::Darwin ||
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001339 !isa<ObjCInterfaceDecl>(D))
1340 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3be17942010-04-12 16:57:31 +00001341 << Attr.getName() << 2 /*variable and function*/;
1342 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001343 }
1344
1345 // Merge should handle any subsequent violations.
1346 if (isDef) {
Mike Stumpbf916502009-07-24 19:02:52 +00001347 S.Diag(Attr.getLoc(),
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001348 diag::warn_attribute_weak_import_invalid_on_definition)
1349 << "weak_import" << 2 /*variable and function*/;
1350 return;
1351 }
1352
Sean Huntcf807c42010-08-18 23:23:40 +00001353 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001354}
1355
Nate Begeman6f3d8382009-06-26 06:32:41 +00001356static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
1357 Sema &S) {
1358 // Attribute has 3 arguments.
1359 if (Attr.getNumArgs() != 3) {
John McCall2b7baf02010-05-28 18:25:28 +00001360 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001361 return;
1362 }
1363
1364 unsigned WGSize[3];
1365 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001366 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001367 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001368 if (E->isTypeDependent() || E->isValueDependent() ||
1369 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001370 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1371 << "reqd_work_group_size" << E->getSourceRange();
1372 return;
1373 }
1374 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1375 }
Sean Huntcf807c42010-08-18 23:23:40 +00001376 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1377 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001378 WGSize[2]));
1379}
1380
Chris Lattner026dc962009-02-14 07:37:35 +00001381static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001382 // Attribute has no arguments.
1383 if (Attr.getNumArgs() != 1) {
1384 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1385 return;
1386 }
1387
1388 // Make sure that there is a string literal as the sections's single
1389 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001390 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001391 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001392 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001393 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001394 return;
1395 }
Mike Stump1eb44332009-09-09 15:08:12 +00001396
Chris Lattner797c3c42009-08-10 19:03:04 +00001397 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramerbb377ed2009-11-30 17:08:26 +00001398 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001399 if (!Error.empty()) {
1400 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1401 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001402 return;
1403 }
Mike Stump1eb44332009-09-09 15:08:12 +00001404
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001405 // This attribute cannot be applied to local variables.
1406 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1407 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1408 return;
1409 }
1410
Eric Christopherf48f3672010-12-01 22:13:54 +00001411 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context,
1412 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001413}
1414
Chris Lattner6b6b5372008-06-26 18:38:35 +00001415
Chris Lattner803d0802008-06-29 00:43:07 +00001416static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001417 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001418 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001419 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001420 return;
1421 }
Mike Stumpbf916502009-07-24 19:02:52 +00001422
Sean Huntcf807c42010-08-18 23:23:40 +00001423 d->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001424}
1425
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001426static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1427 // check the attribute arguments.
1428 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001429 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001430 return;
1431 }
Mike Stumpbf916502009-07-24 19:02:52 +00001432
Sean Huntcf807c42010-08-18 23:23:40 +00001433 d->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001434}
1435
1436static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1437 // check the attribute arguments.
1438 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001439 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001440 return;
1441 }
Mike Stumpbf916502009-07-24 19:02:52 +00001442
Sean Huntcf807c42010-08-18 23:23:40 +00001443 d->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001444}
1445
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001446static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpbf916502009-07-24 19:02:52 +00001447 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001448 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1449 return;
1450 }
Mike Stumpbf916502009-07-24 19:02:52 +00001451
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001452 if (Attr.getNumArgs() != 0) {
1453 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1454 return;
1455 }
Mike Stumpbf916502009-07-24 19:02:52 +00001456
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001457 VarDecl *VD = dyn_cast<VarDecl>(d);
Mike Stumpbf916502009-07-24 19:02:52 +00001458
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001459 if (!VD || !VD->hasLocalStorage()) {
1460 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1461 return;
1462 }
Mike Stumpbf916502009-07-24 19:02:52 +00001463
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001464 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00001465 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00001466 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001467 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
1468 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001469 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001470 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001471 Attr.getParameterName();
1472 return;
1473 }
Mike Stumpbf916502009-07-24 19:02:52 +00001474
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001475 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1476 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001477 S.Diag(Attr.getParameterLoc(),
1478 diag::err_attribute_cleanup_arg_not_function)
1479 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001480 return;
1481 }
1482
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001483 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001484 S.Diag(Attr.getParameterLoc(),
1485 diag::err_attribute_cleanup_func_must_take_one_arg)
1486 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001487 return;
1488 }
Mike Stumpbf916502009-07-24 19:02:52 +00001489
Anders Carlsson89941c12009-02-07 23:16:50 +00001490 // We're currently more strict than GCC about what function types we accept.
1491 // If this ever proves to be a problem it should be easy to fix.
1492 QualType Ty = S.Context.getPointerType(VD->getType());
1493 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00001494 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
1495 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001496 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00001497 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1498 Attr.getParameterName() << ParamTy << Ty;
1499 return;
1500 }
Mike Stumpbf916502009-07-24 19:02:52 +00001501
Sean Huntcf807c42010-08-18 23:23:40 +00001502 d->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00001503 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001504}
1505
Mike Stumpbf916502009-07-24 19:02:52 +00001506/// Handle __attribute__((format_arg((idx)))) attribute based on
1507/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1508static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001509 if (Attr.getNumArgs() != 1) {
1510 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1511 return;
1512 }
1513 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1514 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1515 << Attr.getName() << 0 /*function*/;
1516 return;
1517 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001518
1519 // In C++ the implicit 'this' function parameter also counts, and they are
1520 // counted from one.
1521 bool HasImplicitThisParam = isInstanceMethod(d);
1522 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001523 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001524
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001525 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001526 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001527 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001528 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1529 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001530 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1531 << "format" << 2 << IdxExpr->getSourceRange();
1532 return;
1533 }
Mike Stumpbf916502009-07-24 19:02:52 +00001534
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001535 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1536 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1537 << "format" << 2 << IdxExpr->getSourceRange();
1538 return;
1539 }
Mike Stumpbf916502009-07-24 19:02:52 +00001540
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001541 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001542
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001543 if (HasImplicitThisParam) {
1544 if (ArgIdx == 0) {
1545 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1546 << "format_arg" << IdxExpr->getSourceRange();
1547 return;
1548 }
1549 ArgIdx--;
1550 }
1551
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001552 // make sure the format string is really a string
1553 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00001554
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001555 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1556 if (not_nsstring_type &&
1557 !isCFStringType(Ty, S.Context) &&
1558 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001559 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001560 // FIXME: Should highlight the actual expression that has the wrong type.
1561 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001562 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001563 << IdxExpr->getSourceRange();
1564 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001565 }
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001566 Ty = getFunctionOrMethodResultType(d);
1567 if (!isNSStringType(Ty, S.Context) &&
1568 !isCFStringType(Ty, S.Context) &&
1569 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001570 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001571 // FIXME: Should highlight the actual expression that has the wrong type.
1572 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00001573 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001574 << IdxExpr->getSourceRange();
1575 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001576 }
1577
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001578 d->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context,
1579 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001580}
1581
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001582enum FormatAttrKind {
1583 CFStringFormat,
1584 NSStringFormat,
1585 StrftimeFormat,
1586 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00001587 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001588 InvalidFormat
1589};
1590
1591/// getFormatAttrKind - Map from format attribute names to supported format
1592/// types.
1593static FormatAttrKind getFormatAttrKind(llvm::StringRef Format) {
1594 // Check for formats that get handled specially.
1595 if (Format == "NSString")
1596 return NSStringFormat;
1597 if (Format == "CFString")
1598 return CFStringFormat;
1599 if (Format == "strftime")
1600 return StrftimeFormat;
1601
1602 // Otherwise, check for supported formats.
1603 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
1604 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
1605 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
1606 Format == "zcmn_err")
1607 return SupportedFormat;
1608
Duncan Sandsbc525952010-03-23 14:44:19 +00001609 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
1610 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00001611 return IgnoredFormat;
1612
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001613 return InvalidFormat;
1614}
1615
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001616/// Handle __attribute__((init_priority(priority))) attributes based on
1617/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
1618static void HandleInitPriorityAttr(Decl *d, const AttributeList &Attr,
1619 Sema &S) {
1620 if (!S.getLangOptions().CPlusPlus) {
1621 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1622 return;
1623 }
1624
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001625 if (!isa<VarDecl>(d) || S.getCurFunctionOrMethodDecl()) {
1626 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1627 Attr.setInvalid();
1628 return;
1629 }
1630 QualType T = dyn_cast<VarDecl>(d)->getType();
1631 if (S.Context.getAsArrayType(T))
1632 T = S.Context.getBaseElementType(T);
1633 if (!T->getAs<RecordType>()) {
1634 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
1635 Attr.setInvalid();
1636 return;
1637 }
1638
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001639 if (Attr.getNumArgs() != 1) {
1640 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1641 Attr.setInvalid();
1642 return;
1643 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00001644 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00001645
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001646 llvm::APSInt priority(32);
1647 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
1648 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
1649 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1650 << "init_priority" << priorityExpr->getSourceRange();
1651 Attr.setInvalid();
1652 return;
1653 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00001654 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001655 if (prioritynum < 101 || prioritynum > 65535) {
1656 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
1657 << priorityExpr->getSourceRange();
1658 Attr.setInvalid();
1659 return;
1660 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001661 d->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context,
1662 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00001663}
1664
Mike Stumpbf916502009-07-24 19:02:52 +00001665/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
1666/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +00001667static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001668
Chris Lattner545dd342008-06-28 23:36:30 +00001669 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001670 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001671 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001672 return;
1673 }
1674
Chris Lattner545dd342008-06-28 23:36:30 +00001675 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001676 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001677 return;
1678 }
1679
Fariborz Jahanian620d89c2009-05-15 23:15:03 +00001680 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001681 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001682 << Attr.getName() << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001683 return;
1684 }
1685
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001686 // In C++ the implicit 'this' function parameter also counts, and they are
1687 // counted from one.
1688 bool HasImplicitThisParam = isInstanceMethod(d);
1689 unsigned NumArgs = getFunctionOrMethodNumArgs(d) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001690 unsigned FirstIdx = 1;
1691
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001692 llvm::StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001693
1694 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001695 if (Format.startswith("__") && Format.endswith("__"))
1696 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001697
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001698 // Check for supported formats.
1699 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00001700
1701 if (Kind == IgnoredFormat)
1702 return;
1703
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001704 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001705 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001706 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001707 return;
1708 }
1709
1710 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001711 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00001712 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001713 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
1714 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001715 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001716 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001717 return;
1718 }
1719
1720 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001721 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001722 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001723 return;
1724 }
1725
1726 // FIXME: Do we need to bounds check?
1727 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00001728
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001729 if (HasImplicitThisParam) {
1730 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001731 S.Diag(Attr.getLoc(),
1732 diag::err_format_attribute_implicit_this_format_string)
1733 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00001734 return;
1735 }
1736 ArgIdx--;
1737 }
Mike Stump1eb44332009-09-09 15:08:12 +00001738
Chris Lattner6b6b5372008-06-26 18:38:35 +00001739 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001740 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001741
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001742 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001743 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001744 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1745 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001746 return;
1747 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001748 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001749 // FIXME: do we need to check if the type is NSString*? What are the
1750 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001751 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001752 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001753 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1754 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001755 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001756 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001757 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001758 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001759 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001760 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1761 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001762 return;
1763 }
1764
1765 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00001766 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00001767 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001768 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
1769 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001770 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001771 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001772 return;
1773 }
1774
1775 // check if the function is variadic if the 3rd argument non-zero
1776 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001777 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001778 ++NumArgs; // +1 for ...
1779 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001780 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001781 return;
1782 }
1783 }
1784
Chris Lattner3c73c412008-11-19 08:23:25 +00001785 // strftime requires FirstArg to be 0 because it doesn't read from any
1786 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001787 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001788 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001789 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1790 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001791 return;
1792 }
1793 // if 0 it disables parameter checking (to use with e.g. va_list)
1794 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001795 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001796 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001797 return;
1798 }
1799
Sean Huntcf807c42010-08-18 23:23:40 +00001800 d->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
1801 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00001802 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001803}
1804
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001805static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1806 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001807 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001808 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001809 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001810 return;
1811 }
1812
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001813 // Try to find the underlying union declaration.
1814 RecordDecl *RD = 0;
Eli Friedmanbc887452008-09-02 05:19:23 +00001815 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001816 if (TD && TD->getUnderlyingType()->isUnionType())
1817 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1818 else
1819 RD = dyn_cast<RecordDecl>(d);
1820
1821 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001822 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001823 << Attr.getName() << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001824 return;
1825 }
1826
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001827 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001828 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001829 diag::warn_transparent_union_attribute_not_definition);
1830 return;
1831 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001832
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001833 RecordDecl::field_iterator Field = RD->field_begin(),
1834 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001835 if (Field == FieldEnd) {
1836 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1837 return;
1838 }
Eli Friedmanbc887452008-09-02 05:19:23 +00001839
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001840 FieldDecl *FirstField = *Field;
1841 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00001842 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00001843 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00001844 diag::warn_transparent_union_attribute_floating)
1845 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001846 return;
1847 }
1848
1849 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1850 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1851 for (; Field != FieldEnd; ++Field) {
1852 QualType FieldType = Field->getType();
1853 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1854 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1855 // Warn if we drop the attribute.
1856 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00001857 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001858 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00001859 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001860 diag::warn_transparent_union_attribute_field_size_align)
1861 << isSize << Field->getDeclName() << FieldBits;
1862 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00001863 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001864 diag::note_transparent_union_first_field_size_align)
1865 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00001866 return;
1867 }
1868 }
1869
Sean Huntcf807c42010-08-18 23:23:40 +00001870 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001871}
1872
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001873static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001874 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001875 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001876 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001877 return;
1878 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00001879 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001880 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00001881
Chris Lattner6b6b5372008-06-26 18:38:35 +00001882 // Make sure that there is a string literal as the annotation's single
1883 // argument.
1884 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001885 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00001886 return;
1887 }
Eric Christopherf48f3672010-12-01 22:13:54 +00001888 d->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context,
1889 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001890}
1891
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001892static void HandleAlignedAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001893 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001894 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001895 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001896 return;
1897 }
Sean Huntbbd37c62009-11-21 08:43:09 +00001898
1899 //FIXME: The C++0x version of this attribute has more limited applicabilty
1900 // than GNU's, and should error out when it is used to specify a
1901 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001902
Chris Lattner545dd342008-06-28 23:36:30 +00001903 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00001904 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001905 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001906 }
Mike Stumpbf916502009-07-24 19:02:52 +00001907
Peter Collingbourne7a730022010-11-23 20:45:58 +00001908 S.AddAlignedAttr(Attr.getLoc(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001909}
1910
1911void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
1912 if (E->isTypeDependent() || E->isValueDependent()) {
1913 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00001914 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001915 return;
1916 }
1917
Sean Huntcf807c42010-08-18 23:23:40 +00001918 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00001919 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001920 if (!E->isIntegerConstantExpr(Alignment, Context)) {
1921 Diag(AttrLoc, diag::err_attribute_argument_not_int)
1922 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001923 return;
1924 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001925 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00001926 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
1927 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001928 return;
1929 }
1930
Sean Huntcf807c42010-08-18 23:23:40 +00001931 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
1932}
1933
1934void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
1935 // FIXME: Cache the number on the Attr object if non-dependent?
1936 // FIXME: Perform checking of type validity
1937 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
1938 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001939}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001940
Mike Stumpbf916502009-07-24 19:02:52 +00001941/// HandleModeAttr - This attribute modifies the width of a decl with primitive
1942/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001943///
Mike Stumpbf916502009-07-24 19:02:52 +00001944/// Despite what would be logical, the mode attribute is a decl attribute, not a
1945/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
1946/// HImode, not an intermediate pointer.
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001947static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001948 // This attribute isn't documented, but glibc uses it. It changes
1949 // the width of an int or unsigned int to the specified size.
1950
1951 // Check that there aren't any arguments
1952 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001953 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001954 return;
1955 }
1956
1957 IdentifierInfo *Name = Attr.getParameterName();
1958 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001959 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001960 return;
1961 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00001962
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00001963 llvm::StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001964
1965 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001966 if (Str.startswith("__") && Str.endswith("__"))
1967 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001968
1969 unsigned DestWidth = 0;
1970 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00001971 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00001972 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001973 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00001974 switch (Str[0]) {
1975 case 'Q': DestWidth = 8; break;
1976 case 'H': DestWidth = 16; break;
1977 case 'S': DestWidth = 32; break;
1978 case 'D': DestWidth = 64; break;
1979 case 'X': DestWidth = 96; break;
1980 case 'T': DestWidth = 128; break;
1981 }
1982 if (Str[1] == 'F') {
1983 IntegerMode = false;
1984 } else if (Str[1] == 'C') {
1985 IntegerMode = false;
1986 ComplexMode = true;
1987 } else if (Str[1] != 'I') {
1988 DestWidth = 0;
1989 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001990 break;
1991 case 4:
1992 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1993 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00001994 if (Str == "word")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001995 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00001996 else if (Str == "byte")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001997 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001998 break;
1999 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002000 if (Str == "pointer")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002001 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002002 break;
2003 }
2004
2005 QualType OldTy;
2006 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
2007 OldTy = TD->getUnderlyingType();
2008 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2009 OldTy = VD->getType();
2010 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002011 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2012 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00002013 return;
2014 }
Eli Friedman73397492009-03-03 06:41:03 +00002015
John McCall183700f2009-09-21 23:43:11 +00002016 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002017 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2018 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002019 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002020 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2021 } else if (ComplexMode) {
2022 if (!OldTy->isComplexType())
2023 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2024 } else {
2025 if (!OldTy->isFloatingType())
2026 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2027 }
2028
Mike Stump390b4cc2009-05-16 07:39:55 +00002029 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2030 // and friends, at least with glibc.
2031 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2032 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002033 // FIXME: Make sure floating-point mappings are accurate
2034 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002035 QualType NewTy;
2036 switch (DestWidth) {
2037 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002038 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002039 return;
2040 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002041 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002042 return;
2043 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002044 if (!IntegerMode) {
2045 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2046 return;
2047 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002048 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002049 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002050 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002051 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002052 break;
2053 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002054 if (!IntegerMode) {
2055 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2056 return;
2057 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002058 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002059 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002060 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002061 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002062 break;
2063 case 32:
2064 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002065 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002066 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002067 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002068 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002069 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002070 break;
2071 case 64:
2072 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002073 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002074 else if (OldTy->isSignedIntegerType())
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002075 if (S.Context.Target.getLongWidth() == 64)
2076 NewTy = S.Context.LongTy;
2077 else
2078 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002079 else
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002080 if (S.Context.Target.getLongWidth() == 64)
2081 NewTy = S.Context.UnsignedLongTy;
2082 else
2083 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002084 break;
Eli Friedman73397492009-03-03 06:41:03 +00002085 case 96:
2086 NewTy = S.Context.LongDoubleTy;
2087 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002088 case 128:
2089 if (!IntegerMode) {
2090 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2091 return;
2092 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002093 if (OldTy->isSignedIntegerType())
2094 NewTy = S.Context.Int128Ty;
2095 else
2096 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002097 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002098 }
2099
Eli Friedman73397492009-03-03 06:41:03 +00002100 if (ComplexMode) {
2101 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002102 }
2103
2104 // Install the new type.
John McCallba6a9bd2009-10-24 08:00:42 +00002105 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
2106 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002107 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002108 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002109 cast<ValueDecl>(D)->setType(NewTy);
2110}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002111
Mike Stump1feade82009-08-26 22:31:08 +00002112static void HandleNoDebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlssond87df372009-02-13 06:46:13 +00002113 // check the attribute arguments.
2114 if (Attr.getNumArgs() > 0) {
2115 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2116 return;
2117 }
Anders Carlssone896d982009-02-13 08:11:52 +00002118
Anders Carlsson5bab7882009-02-19 19:16:48 +00002119 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002120 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002121 << Attr.getName() << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00002122 return;
2123 }
Mike Stumpbf916502009-07-24 19:02:52 +00002124
Sean Huntcf807c42010-08-18 23:23:40 +00002125 d->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002126}
2127
Mike Stump1feade82009-08-26 22:31:08 +00002128static void HandleNoInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002129 // check the attribute arguments.
2130 if (Attr.getNumArgs() != 0) {
2131 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2132 return;
2133 }
Mike Stumpbf916502009-07-24 19:02:52 +00002134
Chris Lattnerc5197432009-04-14 17:02:11 +00002135 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002136 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002137 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002138 return;
2139 }
Mike Stumpbf916502009-07-24 19:02:52 +00002140
Sean Huntcf807c42010-08-18 23:23:40 +00002141 d->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002142}
2143
Chris Lattner7255a2d2010-06-22 00:03:40 +00002144static void HandleNoInstrumentFunctionAttr(Decl *d, const AttributeList &Attr,
2145 Sema &S) {
2146 // check the attribute arguments.
2147 if (Attr.getNumArgs() != 0) {
2148 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2149 return;
2150 }
2151
2152 if (!isa<FunctionDecl>(d)) {
2153 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2154 << Attr.getName() << 0 /*function*/;
2155 return;
2156 }
2157
Eric Christopherf48f3672010-12-01 22:13:54 +00002158 d->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(),
2159 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002160}
2161
Peter Collingbourneced76712010-12-01 03:15:31 +00002162static void HandleConstantAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2163 if (S.LangOpts.CUDA) {
2164 // check the attribute arguments.
2165 if (Attr.getNumArgs() != 0) {
2166 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2167 return;
2168 }
2169
2170 if (!isa<VarDecl>(d)) {
2171 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2172 << Attr.getName() << 12 /*variable*/;
2173 return;
2174 }
2175
2176 d->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getLoc(), S.Context));
2177 } else {
2178 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2179 }
2180}
2181
2182static void HandleDeviceAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2183 if (S.LangOpts.CUDA) {
2184 // check the attribute arguments.
2185 if (Attr.getNumArgs() != 0) {
2186 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2187 return;
2188 }
2189
2190 if (!isa<FunctionDecl>(d) && !isa<VarDecl>(d)) {
2191 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2192 << Attr.getName() << 2 /*variable and function*/;
2193 return;
2194 }
2195
2196 d->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getLoc(), S.Context));
2197 } else {
2198 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2199 }
2200}
2201
2202static void HandleGlobalAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2203 if (S.LangOpts.CUDA) {
2204 // check the attribute arguments.
2205 if (Attr.getNumArgs() != 0) {
2206 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2207 return;
2208 }
2209
2210 if (!isa<FunctionDecl>(d)) {
2211 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2212 << Attr.getName() << 0 /*function*/;
2213 return;
2214 }
2215
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002216 FunctionDecl *FD = cast<FunctionDecl>(d);
2217 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002218 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002219 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2220 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2221 << FD->getType()
2222 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2223 "void");
2224 } else {
2225 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2226 << FD->getType();
2227 }
2228 return;
2229 }
2230
Peter Collingbourneced76712010-12-01 03:15:31 +00002231 d->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getLoc(), S.Context));
2232 } else {
2233 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2234 }
2235}
2236
2237static void HandleHostAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2238 if (S.LangOpts.CUDA) {
2239 // check the attribute arguments.
2240 if (Attr.getNumArgs() != 0) {
2241 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2242 return;
2243 }
2244
2245 if (!isa<FunctionDecl>(d)) {
2246 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2247 << Attr.getName() << 0 /*function*/;
2248 return;
2249 }
2250
2251 d->addAttr(::new (S.Context) CUDAHostAttr(Attr.getLoc(), S.Context));
2252 } else {
2253 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2254 }
2255}
2256
2257static void HandleSharedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2258 if (S.LangOpts.CUDA) {
2259 // check the attribute arguments.
2260 if (Attr.getNumArgs() != 0) {
2261 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2262 return;
2263 }
2264
2265 if (!isa<VarDecl>(d)) {
2266 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2267 << Attr.getName() << 12 /*variable*/;
2268 return;
2269 }
2270
2271 d->addAttr(::new (S.Context) CUDASharedAttr(Attr.getLoc(), S.Context));
2272 } else {
2273 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2274 }
2275}
2276
Chris Lattnercf2a7212009-04-20 19:12:28 +00002277static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner26e25542009-04-14 16:30:50 +00002278 // check the attribute arguments.
2279 if (Attr.getNumArgs() != 0) {
2280 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2281 return;
2282 }
Mike Stumpbf916502009-07-24 19:02:52 +00002283
Chris Lattnerc5197432009-04-14 17:02:11 +00002284 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
2285 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002286 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002287 << Attr.getName() << 0 /*function*/;
Chris Lattner26e25542009-04-14 16:30:50 +00002288 return;
2289 }
Mike Stumpbf916502009-07-24 19:02:52 +00002290
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002291 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002292 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002293 return;
2294 }
Mike Stumpbf916502009-07-24 19:02:52 +00002295
Sean Huntcf807c42010-08-18 23:23:40 +00002296 d->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002297}
2298
John McCall711c52b2011-01-05 12:14:39 +00002299static void HandleCallConvAttr(Decl *d, const AttributeList &attr, Sema &S) {
2300 if (hasDeclarator(d)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002301
John McCall711c52b2011-01-05 12:14:39 +00002302 // Diagnostic is emitted elsewhere: here we store the (valid) attr
2303 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2304 CallingConv CC;
2305 if (S.CheckCallingConvAttr(attr, CC))
2306 return;
2307
2308 if (!isa<ObjCMethodDecl>(d)) {
2309 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2310 << attr.getName() << 0 /*function*/;
2311 return;
2312 }
2313
2314 switch (attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002315 case AttributeList::AT_fastcall:
John McCall711c52b2011-01-05 12:14:39 +00002316 d->addAttr(::new (S.Context) FastCallAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002317 return;
2318 case AttributeList::AT_stdcall:
John McCall711c52b2011-01-05 12:14:39 +00002319 d->addAttr(::new (S.Context) StdCallAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002320 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002321 case AttributeList::AT_thiscall:
John McCall711c52b2011-01-05 12:14:39 +00002322 d->addAttr(::new (S.Context) ThisCallAttr(attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002323 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002324 case AttributeList::AT_cdecl:
John McCall711c52b2011-01-05 12:14:39 +00002325 d->addAttr(::new (S.Context) CDeclAttr(attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002326 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002327 case AttributeList::AT_pascal:
John McCall711c52b2011-01-05 12:14:39 +00002328 d->addAttr(::new (S.Context) PascalAttr(attr.getLoc(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002329 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002330 default:
2331 llvm_unreachable("unexpected attribute kind");
2332 return;
2333 }
2334}
2335
Peter Collingbournef315fa82011-02-14 01:42:53 +00002336static void HandleOpenCLKernelAttr(Decl *d, const AttributeList &Attr, Sema &S){
2337 assert(Attr.isInvalid() == false);
2338 d->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getLoc(), S.Context));
2339}
2340
John McCall711c52b2011-01-05 12:14:39 +00002341bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2342 if (attr.isInvalid())
2343 return true;
2344
2345 if (attr.getNumArgs() != 0) {
2346 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2347 attr.setInvalid();
2348 return true;
2349 }
2350
2351 // TODO: diagnose uses of these conventions on the wrong target.
2352 switch (attr.getKind()) {
2353 case AttributeList::AT_cdecl: CC = CC_C; break;
2354 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2355 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2356 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2357 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
2358 default: llvm_unreachable("unexpected attribute kind"); return true;
2359 }
2360
2361 return false;
2362}
2363
2364static void HandleRegparmAttr(Decl *d, const AttributeList &attr, Sema &S) {
2365 if (hasDeclarator(d)) return;
2366
2367 unsigned numParams;
2368 if (S.CheckRegparmAttr(attr, numParams))
2369 return;
2370
2371 if (!isa<ObjCMethodDecl>(d)) {
2372 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2373 << attr.getName() << 0 /*function*/;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002374 return;
2375 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002376
John McCall711c52b2011-01-05 12:14:39 +00002377 d->addAttr(::new (S.Context) RegparmAttr(attr.getLoc(), S.Context, numParams));
2378}
2379
2380/// Checks a regparm attribute, returning true if it is ill-formed and
2381/// otherwise setting numParams to the appropriate value.
2382bool Sema::CheckRegparmAttr(const AttributeList &attr, unsigned &numParams) {
2383 if (attr.isInvalid())
2384 return true;
2385
2386 if (attr.getNumArgs() != 1) {
2387 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2388 attr.setInvalid();
2389 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002390 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002391
John McCall711c52b2011-01-05 12:14:39 +00002392 Expr *NumParamsExpr = attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002393 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002394 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00002395 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
2396 Diag(attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002397 << "regparm" << NumParamsExpr->getSourceRange();
John McCall711c52b2011-01-05 12:14:39 +00002398 attr.setInvalid();
2399 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002400 }
2401
John McCall711c52b2011-01-05 12:14:39 +00002402 if (Context.Target.getRegParmMax() == 0) {
2403 Diag(attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002404 << NumParamsExpr->getSourceRange();
John McCall711c52b2011-01-05 12:14:39 +00002405 attr.setInvalid();
2406 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002407 }
2408
John McCall711c52b2011-01-05 12:14:39 +00002409 numParams = NumParams.getZExtValue();
2410 if (numParams > Context.Target.getRegParmMax()) {
2411 Diag(attr.getLoc(), diag::err_attribute_regparm_invalid_number)
2412 << Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
2413 attr.setInvalid();
2414 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002415 }
2416
John McCall711c52b2011-01-05 12:14:39 +00002417 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002418}
2419
Peter Collingbourne7b381982010-12-12 23:03:07 +00002420static void HandleLaunchBoundsAttr(Decl *d, const AttributeList &Attr, Sema &S){
2421 if (S.LangOpts.CUDA) {
2422 // check the attribute arguments.
2423 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
2424 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2425 << "1 or 2";
2426 return;
2427 }
2428
2429 if (!isFunctionOrMethod(d)) {
2430 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2431 << Attr.getName() << 0 /*function*/;
2432 return;
2433 }
2434
2435 Expr *MaxThreadsExpr = Attr.getArg(0);
2436 llvm::APSInt MaxThreads(32);
2437 if (MaxThreadsExpr->isTypeDependent() ||
2438 MaxThreadsExpr->isValueDependent() ||
2439 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
2440 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2441 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
2442 return;
2443 }
2444
2445 llvm::APSInt MinBlocks(32);
2446 if (Attr.getNumArgs() > 1) {
2447 Expr *MinBlocksExpr = Attr.getArg(1);
2448 if (MinBlocksExpr->isTypeDependent() ||
2449 MinBlocksExpr->isValueDependent() ||
2450 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
2451 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2452 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
2453 return;
2454 }
2455 }
2456
2457 d->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getLoc(), S.Context,
2458 MaxThreads.getZExtValue(),
2459 MinBlocks.getZExtValue()));
2460 } else {
2461 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
2462 }
2463}
2464
Chris Lattner0744e5f2008-06-29 00:23:49 +00002465//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00002466// Checker-specific attribute handlers.
2467//===----------------------------------------------------------------------===//
2468
John McCallc7ad3812011-01-25 03:31:58 +00002469static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
2470 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
2471}
2472static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
2473 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
2474}
2475
2476static void HandleNSConsumedAttr(Decl *d, const AttributeList &attr, Sema &S) {
2477 ParmVarDecl *param = dyn_cast<ParmVarDecl>(d);
2478 if (!param) {
2479 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2480 << SourceRange(attr.getLoc()) << attr.getName() << 4 /*parameter*/;
2481 return;
2482 }
2483
2484 bool typeOK, cf;
2485 if (attr.getKind() == AttributeList::AT_ns_consumed) {
2486 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
2487 cf = false;
2488 } else {
2489 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
2490 cf = true;
2491 }
2492
2493 if (!typeOK) {
2494 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
2495 << SourceRange(attr.getLoc()) << attr.getName() << cf;
2496 return;
2497 }
2498
2499 if (cf)
2500 param->addAttr(::new (S.Context) CFConsumedAttr(attr.getLoc(), S.Context));
2501 else
2502 param->addAttr(::new (S.Context) NSConsumedAttr(attr.getLoc(), S.Context));
2503}
2504
2505static void HandleNSConsumesSelfAttr(Decl *d, const AttributeList &attr,
2506 Sema &S) {
2507 if (!isa<ObjCMethodDecl>(d)) {
2508 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
2509 << SourceRange(attr.getLoc()) << attr.getName() << 13 /*method*/;
2510 return;
2511 }
2512
2513 d->addAttr(::new (S.Context) NSConsumesSelfAttr(attr.getLoc(), S.Context));
2514}
2515
2516static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &attr,
Ted Kremenekb71368d2009-05-09 02:44:38 +00002517 Sema &S) {
2518
John McCallc7ad3812011-01-25 03:31:58 +00002519 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00002520
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002521 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
John McCallc7ad3812011-01-25 03:31:58 +00002522 returnType = MD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002523 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
John McCallc7ad3812011-01-25 03:31:58 +00002524 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002525 else {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002526 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
John McCallc7ad3812011-01-25 03:31:58 +00002527 << SourceRange(attr.getLoc()) << attr.getName()
2528 << 3 /* function or method */;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002529 return;
2530 }
Mike Stumpbf916502009-07-24 19:02:52 +00002531
John McCallc7ad3812011-01-25 03:31:58 +00002532 bool typeOK;
2533 bool cf;
2534 switch (attr.getKind()) {
2535 default: llvm_unreachable("invalid ownership attribute"); return;
2536 case AttributeList::AT_ns_returns_autoreleased:
2537 case AttributeList::AT_ns_returns_retained:
2538 case AttributeList::AT_ns_returns_not_retained:
2539 typeOK = isValidSubjectOfNSAttribute(S, returnType);
2540 cf = false;
2541 break;
2542
2543 case AttributeList::AT_cf_returns_retained:
2544 case AttributeList::AT_cf_returns_not_retained:
2545 typeOK = isValidSubjectOfCFAttribute(S, returnType);
2546 cf = true;
2547 break;
2548 }
2549
2550 if (!typeOK) {
Ted Kremenek21531fa2009-08-19 23:56:48 +00002551 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
John McCallc7ad3812011-01-25 03:31:58 +00002552 << SourceRange(attr.getLoc())
2553 << attr.getName() << isa<ObjCMethodDecl>(d) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00002554 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00002555 }
Mike Stumpbf916502009-07-24 19:02:52 +00002556
John McCallc7ad3812011-01-25 03:31:58 +00002557 switch (attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00002558 default:
2559 assert(0 && "invalid ownership attribute");
2560 return;
John McCallc7ad3812011-01-25 03:31:58 +00002561 case AttributeList::AT_ns_returns_autoreleased:
2562 d->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(attr.getLoc(),
2563 S.Context));
2564 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00002565 case AttributeList::AT_cf_returns_not_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002566 d->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002567 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002568 return;
2569 case AttributeList::AT_ns_returns_not_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002570 d->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002571 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00002572 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002573 case AttributeList::AT_cf_returns_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002574 d->addAttr(::new (S.Context) CFReturnsRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002575 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002576 return;
2577 case AttributeList::AT_ns_returns_retained:
John McCallc7ad3812011-01-25 03:31:58 +00002578 d->addAttr(::new (S.Context) NSReturnsRetainedAttr(attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002579 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00002580 return;
2581 };
2582}
2583
Charles Davisf0122fe2010-02-16 18:27:26 +00002584static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
2585 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00002586 Attr.getKind() == AttributeList::AT_dllexport ||
2587 Attr.getKind() == AttributeList::AT_uuid;
2588}
2589
2590//===----------------------------------------------------------------------===//
2591// Microsoft specific attribute handlers.
2592//===----------------------------------------------------------------------===//
2593
2594static void HandleUuidAttr(Decl *d, const AttributeList &Attr, Sema &S) {
2595 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
2596 // check the attribute arguments.
2597 if (Attr.getNumArgs() != 1) {
2598 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2599 return;
2600 }
2601 Expr *Arg = Attr.getArg(0);
2602 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Francois Pichetd3d3be92010-12-20 01:41:49 +00002603 if (Str == 0 || Str->isWide()) {
2604 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
2605 << "uuid" << 1;
2606 return;
2607 }
2608
2609 llvm::StringRef StrRef = Str->getString();
2610
2611 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
2612 StrRef.back() == '}';
2613
2614 // Validate GUID length.
2615 if (IsCurly && StrRef.size() != 38) {
2616 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2617 return;
2618 }
2619 if (!IsCurly && StrRef.size() != 36) {
2620 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2621 return;
2622 }
2623
2624 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
2625 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Anders Carlssonf89e0422011-01-23 21:07:30 +00002626 llvm::StringRef::iterator I = StrRef.begin();
2627 if (IsCurly) // Skip the optional '{'
2628 ++I;
2629
2630 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00002631 if (i == 8 || i == 13 || i == 18 || i == 23) {
2632 if (*I != '-') {
2633 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2634 return;
2635 }
2636 } else if (!isxdigit(*I)) {
2637 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
2638 return;
2639 }
2640 I++;
2641 }
Francois Pichet11542142010-12-19 06:50:37 +00002642
2643 d->addAttr(::new (S.Context) UuidAttr(Attr.getLoc(), S.Context,
2644 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00002645 } else
Francois Pichet11542142010-12-19 06:50:37 +00002646 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00002647}
2648
Ted Kremenekb71368d2009-05-09 02:44:38 +00002649//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00002650// Top Level Sema Entry Points
2651//===----------------------------------------------------------------------===//
2652
Peter Collingbourne60700392011-01-21 02:08:45 +00002653static void ProcessNonInheritableDeclAttr(Scope *scope, Decl *D,
2654 const AttributeList &Attr, Sema &S) {
2655 switch (Attr.getKind()) {
2656 case AttributeList::AT_device: HandleDeviceAttr (D, Attr, S); break;
2657 case AttributeList::AT_host: HandleHostAttr (D, Attr, S); break;
2658 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
2659 default:
2660 break;
2661 }
2662}
Abramo Bagnarae215f722010-04-30 13:10:51 +00002663
Peter Collingbourne60700392011-01-21 02:08:45 +00002664static void ProcessInheritableDeclAttr(Scope *scope, Decl *D,
2665 const AttributeList &Attr, Sema &S) {
Chris Lattner803d0802008-06-29 00:43:07 +00002666 switch (Attr.getKind()) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00002667 case AttributeList::AT_IBAction: HandleIBAction(D, Attr, S); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00002668 case AttributeList::AT_IBOutlet: HandleIBOutlet(D, Attr, S); break;
2669 case AttributeList::AT_IBOutletCollection:
2670 HandleIBOutletCollection(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002671 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00002672 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00002673 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00002674 case AttributeList::AT_neon_vector_type:
2675 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00002676 // Ignore these, these are type attributes, handled by
2677 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00002678 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00002679 case AttributeList::AT_device:
2680 case AttributeList::AT_host:
2681 case AttributeList::AT_overloadable:
2682 // Ignore, this is a non-inheritable attribute, handled
2683 // by ProcessNonInheritableDeclAttr.
2684 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002685 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
2686 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002687 case AttributeList::AT_always_inline:
Daniel Dunbaraf668b02008-10-28 00:17:57 +00002688 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00002689 case AttributeList::AT_analyzer_noreturn:
Mike Stumpbf916502009-07-24 19:02:52 +00002690 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002691 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00002692 case AttributeList::AT_carries_dependency:
Sean Hunt7725e672009-11-25 04:20:27 +00002693 HandleDependencyAttr (D, Attr, S); break;
Eric Christophera6cf1e72010-12-02 02:45:55 +00002694 case AttributeList::AT_common: HandleCommonAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002695 case AttributeList::AT_constant: HandleConstantAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002696 case AttributeList::AT_constructor: HandleConstructorAttr (D, Attr, S); break;
2697 case AttributeList::AT_deprecated: HandleDeprecatedAttr (D, Attr, S); break;
2698 case AttributeList::AT_destructor: HandleDestructorAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002699 case AttributeList::AT_ext_vector_type:
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00002700 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattner803d0802008-06-29 00:43:07 +00002701 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002702 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
2703 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002704 case AttributeList::AT_global: HandleGlobalAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002705 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr (D, Attr, S); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00002706 case AttributeList::AT_launch_bounds:
2707 HandleLaunchBoundsAttr(D, Attr, S);
2708 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002709 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
2710 case AttributeList::AT_malloc: HandleMallocAttr (D, Attr, S); break;
Dan Gohman34c26302010-11-17 00:03:07 +00002711 case AttributeList::AT_may_alias: HandleMayAliasAttr (D, Attr, S); break;
Eric Christophera6cf1e72010-12-02 02:45:55 +00002712 case AttributeList::AT_nocommon: HandleNoCommonAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002713 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002714 case AttributeList::AT_ownership_returns:
2715 case AttributeList::AT_ownership_takes:
2716 case AttributeList::AT_ownership_holds:
2717 HandleOwnershipAttr (D, Attr, S); break;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00002718 case AttributeList::AT_naked: HandleNakedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002719 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
2720 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
Peter Collingbourneced76712010-12-01 03:15:31 +00002721 case AttributeList::AT_shared: HandleSharedAttr (D, Attr, S); break;
John Thompson35cc9622010-08-09 21:53:52 +00002722 case AttributeList::AT_vecreturn: HandleVecReturnAttr (D, Attr, S); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00002723
2724 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00002725 case AttributeList::AT_cf_consumed:
2726 case AttributeList::AT_ns_consumed: HandleNSConsumedAttr (D, Attr, S); break;
2727 case AttributeList::AT_ns_consumes_self:
2728 HandleNSConsumesSelfAttr(D, Attr, S); break;
2729
2730 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00002731 case AttributeList::AT_ns_returns_not_retained:
2732 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00002733 case AttributeList::AT_ns_returns_retained:
2734 case AttributeList::AT_cf_returns_retained:
2735 HandleNSReturnsRetainedAttr(D, Attr, S); break;
2736
Nate Begeman6f3d8382009-06-26 06:32:41 +00002737 case AttributeList::AT_reqd_wg_size:
2738 HandleReqdWorkGroupSize(D, Attr, S); break;
2739
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002740 case AttributeList::AT_init_priority:
2741 HandleInitPriorityAttr(D, Attr, S); break;
2742
Sean Hunt7725e672009-11-25 04:20:27 +00002743 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
2744 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002745 case AttributeList::AT_unavailable: HandleUnavailableAttr (D, Attr, S); break;
2746 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
2747 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002748 case AttributeList::AT_visibility: HandleVisibilityAttr (D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00002749 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
2750 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002751 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002752 case AttributeList::AT_weakref: HandleWeakRefAttr (D, Attr, S); break;
Sean Hunt7725e672009-11-25 04:20:27 +00002753 case AttributeList::AT_weak_import: HandleWeakImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00002754 case AttributeList::AT_transparent_union:
2755 HandleTransparentUnionAttr(D, Attr, S);
2756 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002757 case AttributeList::AT_objc_exception:
2758 HandleObjCExceptionAttr(D, Attr, S);
2759 break;
Sean Hunt7725e672009-11-25 04:20:27 +00002760 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
2761 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
2762 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
2763 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
2764 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
2765 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
2766 case AttributeList::AT_nodebug: HandleNoDebugAttr (D, Attr, S); break;
2767 case AttributeList::AT_noinline: HandleNoInlineAttr (D, Attr, S); break;
2768 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Mike Stumpbf916502009-07-24 19:02:52 +00002769 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00002770 // Just ignore
2771 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002772 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
2773 HandleNoInstrumentFunctionAttr(D, Attr, S);
2774 break;
John McCall04a67a62010-02-05 21:31:56 +00002775 case AttributeList::AT_stdcall:
2776 case AttributeList::AT_cdecl:
2777 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002778 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00002779 case AttributeList::AT_pascal:
Abramo Bagnarae215f722010-04-30 13:10:51 +00002780 HandleCallConvAttr(D, Attr, S);
John McCall04a67a62010-02-05 21:31:56 +00002781 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00002782 case AttributeList::AT_opencl_kernel_function:
2783 HandleOpenCLKernelAttr(D, Attr, S);
2784 break;
Francois Pichet11542142010-12-19 06:50:37 +00002785 case AttributeList::AT_uuid:
2786 HandleUuidAttr(D, Attr, S);
2787 break;
Chris Lattner803d0802008-06-29 00:43:07 +00002788 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00002789 // Ask target about the attribute.
2790 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
2791 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00002792 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
2793 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00002794 break;
2795 }
2796}
2797
Peter Collingbourne60700392011-01-21 02:08:45 +00002798/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
2799/// the attribute applies to decls. If the attribute is a type attribute, just
2800/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
2801/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
2802static void ProcessDeclAttribute(Scope *scope, Decl *D,
2803 const AttributeList &Attr, Sema &S,
2804 bool NonInheritable, bool Inheritable) {
2805 if (Attr.isInvalid())
2806 return;
2807
2808 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
2809 // FIXME: Try to deal with other __declspec attributes!
2810 return;
2811
2812 if (NonInheritable)
2813 ProcessNonInheritableDeclAttr(scope, D, Attr, S);
2814
2815 if (Inheritable)
2816 ProcessInheritableDeclAttr(scope, D, Attr, S);
2817}
2818
Chris Lattner803d0802008-06-29 00:43:07 +00002819/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
2820/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00002821void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00002822 const AttributeList *AttrList,
2823 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002824 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Peter Collingbourne60700392011-01-21 02:08:45 +00002825 ProcessDeclAttribute(S, D, *l, *this, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002826 }
2827
2828 // GCC accepts
2829 // static int a9 __attribute__((weakref));
2830 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00002831 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002832 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00002833 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00002834 return;
Chris Lattner803d0802008-06-29 00:43:07 +00002835 }
2836}
2837
Ryan Flynne25ff832009-07-30 03:15:39 +00002838/// DeclClonePragmaWeak - clone existing decl (maybe definition),
2839/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump1eb44332009-09-09 15:08:12 +00002840NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002841 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00002842 NamedDecl *NewD = 0;
2843 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
2844 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
2845 FD->getLocation(), DeclarationName(II),
John McCalla93c9342009-12-07 02:54:59 +00002846 FD->getType(), FD->getTypeSourceInfo());
John McCallb6217662010-03-15 10:12:16 +00002847 if (FD->getQualifier()) {
2848 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
2849 NewFD->setQualifierInfo(FD->getQualifier(), FD->getQualifierRange());
2850 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002851 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
2852 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
2853 VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00002854 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002855 VD->getStorageClass(),
2856 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00002857 if (VD->getQualifier()) {
2858 VarDecl *NewVD = cast<VarDecl>(NewD);
2859 NewVD->setQualifierInfo(VD->getQualifier(), VD->getQualifierRange());
2860 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002861 }
2862 return NewD;
2863}
2864
2865/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
2866/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00002867void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002868 if (W.getUsed()) return; // only do this once
2869 W.setUsed(true);
2870 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
2871 IdentifierInfo *NDId = ND->getIdentifier();
2872 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Sean Huntcf807c42010-08-18 23:23:40 +00002873 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
2874 NDId->getName()));
2875 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00002876 WeakTopLevelDecl.push_back(NewD);
2877 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
2878 // to insert Decl at TU scope, sorry.
2879 DeclContext *SavedContext = CurContext;
2880 CurContext = Context.getTranslationUnitDecl();
2881 PushOnScopeChains(NewD, S);
2882 CurContext = SavedContext;
2883 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00002884 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00002885 }
2886}
2887
Chris Lattner0744e5f2008-06-29 00:23:49 +00002888/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
2889/// it, apply them to D. This is a bit tricky because PD can have attributes
2890/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00002891void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
2892 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00002893 // It's valid to "forward-declare" #pragma weak, in which case we
2894 // have to do this.
Peter Collingbourne60700392011-01-21 02:08:45 +00002895 if (Inheritable && !WeakUndeclaredIdentifiers.empty()) {
John McCalld4aff0e2010-10-27 00:59:00 +00002896 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
2897 if (IdentifierInfo *Id = ND->getIdentifier()) {
2898 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
2899 = WeakUndeclaredIdentifiers.find(Id);
2900 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
2901 WeakInfo W = I->second;
2902 DeclApplyPragmaWeak(S, ND, W);
2903 WeakUndeclaredIdentifiers[Id] = W;
2904 }
Ryan Flynne25ff832009-07-30 03:15:39 +00002905 }
2906 }
2907 }
2908
Chris Lattner0744e5f2008-06-29 00:23:49 +00002909 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00002910 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00002911 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00002912
Chris Lattner0744e5f2008-06-29 00:23:49 +00002913 // Walk the declarator structure, applying decl attributes that were in a type
2914 // position to the decl itself. This handles cases like:
2915 // int *__attr__(x)** D;
2916 // when X is a decl attribute.
2917 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
2918 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00002919 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00002920
Chris Lattner0744e5f2008-06-29 00:23:49 +00002921 // Finally, apply any attributes on the decl itself.
2922 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00002923 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00002924}
John McCall54abf7d2009-11-04 02:18:39 +00002925
John McCalleee1d542011-02-14 07:13:47 +00002926// This duplicates a vector push_back but hides the need to know the
2927// size of the type.
2928void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
2929 assert(StackSize <= StackCapacity);
2930
2931 // Grow the stack if necessary.
2932 if (StackSize == StackCapacity) {
2933 unsigned newCapacity = 2 * StackCapacity + 2;
2934 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
2935 const char *oldBuffer = (const char*) Stack;
2936
2937 if (StackCapacity)
2938 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
2939
2940 delete[] oldBuffer;
2941 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
2942 StackCapacity = newCapacity;
2943 }
2944
2945 assert(StackSize < StackCapacity);
2946 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00002947}
2948
John McCalleee1d542011-02-14 07:13:47 +00002949void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
2950 Decl *decl) {
2951 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00002952
John McCalleee1d542011-02-14 07:13:47 +00002953 // Check the invariants.
2954 assert(DD.StackSize >= state.SavedStackSize);
2955 assert(state.SavedStackSize >= DD.ActiveStackBase);
2956 assert(DD.ParsingDepth > 0);
2957
2958 // Drop the parsing depth.
2959 DD.ParsingDepth--;
2960
2961 // If there are no active diagnostics, we're done.
2962 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00002963 return;
2964
John McCall2f514482010-01-27 03:50:35 +00002965 // We only want to actually emit delayed diagnostics when we
2966 // successfully parsed a decl.
John McCalleee1d542011-02-14 07:13:47 +00002967 if (decl) {
2968 // We emit all the active diagnostics, not just those starting
2969 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00002970 // decl spec and another for each declarator; in a decl group like:
2971 // deprecated_typedef foo, *bar, baz();
2972 // only the declarator pops will be passed decls. This is correct;
2973 // we really do need to consider delayed diagnostics from the decl spec
2974 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00002975 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
2976 DelayedDiagnostic &diag = DD.Stack[i];
2977 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00002978 continue;
2979
John McCalleee1d542011-02-14 07:13:47 +00002980 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00002981 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00002982 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00002983 break;
2984
2985 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00002986 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00002987 break;
2988 }
2989 }
2990 }
2991
John McCall58e6f342010-03-16 05:22:47 +00002992 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00002993 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
2994 DD.Stack[i].destroy();
John McCall58e6f342010-03-16 05:22:47 +00002995
John McCalleee1d542011-02-14 07:13:47 +00002996 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00002997}
2998
2999static bool isDeclDeprecated(Decl *D) {
3000 do {
3001 if (D->hasAttr<DeprecatedAttr>())
3002 return true;
3003 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3004 return false;
3005}
3006
John McCall9c3087b2010-08-26 02:13:20 +00003007void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003008 Decl *Ctx) {
3009 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003010 return;
3011
John McCall2f514482010-01-27 03:50:35 +00003012 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003013 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003014 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003015 << DD.getDeprecationDecl()->getDeclName()
3016 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003017 else
3018 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003019 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003020}
3021
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003022void Sema::EmitDeprecationWarning(NamedDecl *D, llvm::StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003023 SourceLocation Loc,
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003024 bool UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003025 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003026 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3027 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003028 return;
3029 }
3030
3031 // Otherwise, don't warn if our current context is deprecated.
3032 if (isDeclDeprecated(cast<Decl>(CurContext)))
3033 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003034 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003035 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3036 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003037 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003038 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003039 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
3040 else
3041 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
3042 }
John McCall54abf7d2009-11-04 02:18:39 +00003043}