blob: cc24735c4adb4a291a2e9dead9773672ddd3deab [file] [log] [blame]
Chris Lattner2c6fcf52008-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
14#include "Sema.h"
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000017#include "clang/AST/DeclObjC.h"
18#include "clang/AST/Expr.h"
Chris Lattneracbc2d22008-06-27 22:18:37 +000019#include "clang/Basic/TargetInfo.h"
Daniel Dunbar34fb6722008-08-11 03:27:53 +000020#include "clang/Parse/DeclSpec.h"
Chris Lattner30ba6742009-08-10 19:03:04 +000021#include "llvm/ADT/StringExtras.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000022using namespace clang;
23
Chris Lattner58418ff2008-06-29 00:16:31 +000024//===----------------------------------------------------------------------===//
25// Helper functions
26//===----------------------------------------------------------------------===//
27
Ted Kremenek527042b2009-08-14 20:49:40 +000028static const FunctionType *getFunctionType(const Decl *d,
29 bool blocksToo = true) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +000030 QualType Ty;
Ted Kremenek527042b2009-08-14 20:49:40 +000031 if (const ValueDecl *decl = dyn_cast<ValueDecl>(d))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000032 Ty = decl->getType();
Ted Kremenek527042b2009-08-14 20:49:40 +000033 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(d))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000034 Ty = decl->getType();
Ted Kremenek527042b2009-08-14 20:49:40 +000035 else if (const TypedefDecl* decl = dyn_cast<TypedefDecl>(d))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000036 Ty = decl->getUnderlyingType();
37 else
38 return 0;
Mike Stumpd3bb5572009-07-24 19:02:52 +000039
Chris Lattner2c6fcf52008-06-26 18:38:35 +000040 if (Ty->isFunctionPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000041 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian28c433d2009-05-18 17:39:25 +000042 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000043 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000044
John McCall9dd450b2009-09-21 23:43:11 +000045 return Ty->getAs<FunctionType>();
Chris Lattner2c6fcf52008-06-26 18:38:35 +000046}
47
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000048// FIXME: We should provide an abstraction around a method or function
49// to provide the following bits of information.
50
Nuno Lopes518e3702009-12-20 23:11:08 +000051/// isFunction - Return true if the given decl has function
Ted Kremenek527042b2009-08-14 20:49:40 +000052/// type (function or function-typed variable).
53static bool isFunction(const Decl *d) {
54 return getFunctionType(d, false) != NULL;
55}
56
57/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000058/// type (function or function-typed variable) or an Objective-C
59/// method.
Ted Kremenek527042b2009-08-14 20:49:40 +000060static bool isFunctionOrMethod(const Decl *d) {
61 return isFunction(d)|| isa<ObjCMethodDecl>(d);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000062}
63
Fariborz Jahanian4447e172009-05-15 23:15:03 +000064/// isFunctionOrMethodOrBlock - Return true if the given decl has function
65/// type (function or function-typed variable) or an Objective-C
66/// method or a block.
Ted Kremenek527042b2009-08-14 20:49:40 +000067static bool isFunctionOrMethodOrBlock(const Decl *d) {
Fariborz Jahanian4447e172009-05-15 23:15:03 +000068 if (isFunctionOrMethod(d))
69 return true;
70 // check for block is more involved.
71 if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
72 QualType Ty = V->getType();
73 return Ty->isBlockPointerType();
74 }
Fariborz Jahanian960910a2009-05-19 17:08:59 +000075 return isa<BlockDecl>(d);
Fariborz Jahanian4447e172009-05-15 23:15:03 +000076}
77
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000078/// hasFunctionProto - Return true if the given decl has a argument
79/// information. This decl should have already passed
Fariborz Jahanian4447e172009-05-15 23:15:03 +000080/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Ted Kremenek527042b2009-08-14 20:49:40 +000081static bool hasFunctionProto(const Decl *d) {
Fariborz Jahanian4447e172009-05-15 23:15:03 +000082 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregordeaad8c2009-02-26 23:50:07 +000083 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian4447e172009-05-15 23:15:03 +000084 else {
Fariborz Jahanian960910a2009-05-19 17:08:59 +000085 assert(isa<ObjCMethodDecl>(d) || isa<BlockDecl>(d));
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000086 return true;
87 }
88}
89
90/// getFunctionOrMethodNumArgs - Return number of function or method
91/// arguments. It is an error to call this on a K&R function (use
92/// hasFunctionProto first).
Ted Kremenek527042b2009-08-14 20:49:40 +000093static unsigned getFunctionOrMethodNumArgs(const Decl *d) {
Chris Lattnera4997152009-02-20 18:43:26 +000094 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregordeaad8c2009-02-26 23:50:07 +000095 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Fariborz Jahanian960910a2009-05-19 17:08:59 +000096 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
97 return BD->getNumParams();
Chris Lattnera4997152009-02-20 18:43:26 +000098 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000099}
100
Ted Kremenek527042b2009-08-14 20:49:40 +0000101static QualType getFunctionOrMethodArgType(const Decl *d, unsigned Idx) {
Chris Lattnera4997152009-02-20 18:43:26 +0000102 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000103 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000104 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
105 return BD->getParamDecl(Idx)->getType();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000106
Chris Lattnera4997152009-02-20 18:43:26 +0000107 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000108}
109
Ted Kremenek527042b2009-08-14 20:49:40 +0000110static QualType getFunctionOrMethodResultType(const Decl *d) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000111 if (const FunctionType *FnTy = getFunctionType(d))
112 return cast<FunctionProtoType>(FnTy)->getResultType();
113 return cast<ObjCMethodDecl>(d)->getResultType();
114}
115
Ted Kremenek527042b2009-08-14 20:49:40 +0000116static bool isFunctionOrMethodVariadic(const Decl *d) {
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000117 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000118 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000119 return proto->isVariadic();
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000120 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
121 return BD->IsVariadic();
122 else {
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000123 return cast<ObjCMethodDecl>(d)->isVariadic();
124 }
125}
126
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000127static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall9dd450b2009-09-21 23:43:11 +0000128 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattner574dee62008-07-26 22:17:49 +0000129 if (!PT)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000130 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000131
John McCall9dd450b2009-09-21 23:43:11 +0000132 const ObjCInterfaceType *ClsT =PT->getPointeeType()->getAs<ObjCInterfaceType>();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000133 if (!ClsT)
134 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000135
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000136 IdentifierInfo* ClsName = ClsT->getDecl()->getIdentifier();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000137
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000138 // FIXME: Should we walk the chain of classes?
139 return ClsName == &Ctx.Idents.get("NSString") ||
140 ClsName == &Ctx.Idents.get("NSMutableString");
141}
142
Daniel Dunbar980c6692008-09-26 03:32:58 +0000143static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000144 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000145 if (!PT)
146 return false;
147
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000148 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000149 if (!RT)
150 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000151
Daniel Dunbar980c6692008-09-26 03:32:58 +0000152 const RecordDecl *RD = RT->getDecl();
153 if (RD->getTagKind() != TagDecl::TK_struct)
154 return false;
155
156 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
157}
158
Chris Lattner58418ff2008-06-29 00:16:31 +0000159//===----------------------------------------------------------------------===//
Chris Lattner58418ff2008-06-29 00:16:31 +0000160// Attribute Implementations
161//===----------------------------------------------------------------------===//
162
Daniel Dunbar032db472008-07-31 22:40:48 +0000163// FIXME: All this manual attribute parsing code is gross. At the
164// least add some helper functions to check most argument patterns (#
165// and types of args).
166
Mike Stumpd3bb5572009-07-24 19:02:52 +0000167static void HandleExtVectorTypeAttr(Scope *scope, Decl *d,
Douglas Gregor758a8692009-06-17 21:51:59 +0000168 const AttributeList &Attr, Sema &S) {
Chris Lattner4a927cb2008-06-28 23:36:30 +0000169 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
170 if (tDecl == 0) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000171 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000172 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000173 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000174
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000175 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor758a8692009-06-17 21:51:59 +0000176
177 Expr *sizeExpr;
178
179 // Special case where the argument is a template id.
180 if (Attr.getParameterName()) {
John McCalle66edc12009-11-24 19:00:30 +0000181 CXXScopeSpec SS;
182 UnqualifiedId id;
183 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
184 sizeExpr = S.ActOnIdExpression(scope, SS, id, false, false).takeAs<Expr>();
Douglas Gregor758a8692009-06-17 21:51:59 +0000185 } else {
186 // check the attribute arguments.
187 if (Attr.getNumArgs() != 1) {
188 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
189 return;
190 }
191 sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000192 }
Douglas Gregor758a8692009-06-17 21:51:59 +0000193
194 // Instantiate/Install the vector type, and let Sema build the type for us.
195 // This will run the reguired checks.
196 QualType T = S.BuildExtVectorType(curType, S.Owned(sizeExpr), Attr.getLoc());
197 if (!T.isNull()) {
John McCall703a3f82009-10-24 08:00:42 +0000198 // FIXME: preserve the old source info.
John McCallbcd03502009-12-07 02:54:59 +0000199 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpd3bb5572009-07-24 19:02:52 +0000200
Douglas Gregor758a8692009-06-17 21:51:59 +0000201 // Remember this typedef decl, we will need it later for diagnostics.
202 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000203 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000204}
205
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000206static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000207 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000208 if (Attr.getNumArgs() > 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000209 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000210 return;
211 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000212
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000213 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Anders Carlsson68e0b682009-08-08 18:23:56 +0000214 TD->addAttr(::new (S.Context) PackedAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000215 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
216 // If the alignment is less than or equal to 8 bits, the packed attribute
217 // has no effect.
218 if (!FD->getType()->isIncompleteType() &&
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000219 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner3b054132008-11-19 05:08:23 +0000220 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000221 << Attr.getName() << FD->getType();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000222 else
Anders Carlsson68e0b682009-08-08 18:23:56 +0000223 FD->addAttr(::new (S.Context) PackedAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000224 } else
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000225 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000226}
227
Ted Kremenek1f672822010-02-18 03:08:58 +0000228static void HandleIBAction(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000229 // check the attribute arguments.
230 if (Attr.getNumArgs() > 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000231 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000232 return;
233 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000234
Ted Kremenek1f672822010-02-18 03:08:58 +0000235 // The IBAction attributes only apply to instance methods.
236 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
237 if (MD->isInstanceMethod()) {
238 d->addAttr(::new (S.Context) IBActionAttr());
239 return;
240 }
241
242 S.Diag(Attr.getLoc(), diag::err_attribute_ibaction) << Attr.getName();
243}
244
245static void HandleIBOutlet(Decl *d, const AttributeList &Attr, Sema &S) {
246 // check the attribute arguments.
247 if (Attr.getNumArgs() > 0) {
248 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
249 return;
250 }
251
252 // The IBOutlet attributes only apply to instance variables of
Ted Kremenek06be9682010-02-17 02:37:45 +0000253 // Objective-C classes.
254 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d)) {
Ted Kremenek1f672822010-02-18 03:08:58 +0000255 d->addAttr(::new (S.Context) IBOutletAttr());
256 return;
Ted Kremenek06be9682010-02-17 02:37:45 +0000257 }
Ted Kremenek1f672822010-02-18 03:08:58 +0000258
259 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet) << Attr.getName();
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000260}
261
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000262static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000263 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
264 // ignore it as well
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000265 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000266 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000267 << Attr.getName() << 0 /*function*/;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000268 return;
269 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000270
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000271 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000272
273 // The nonnull attribute only applies to pointers.
274 llvm::SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000275
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000276 for (AttributeList::arg_iterator I=Attr.arg_begin(),
277 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000278
279
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000280 // The argument must be an integer constant expression.
Ted Kremenek7d71db72008-12-04 19:38:33 +0000281 Expr *Ex = static_cast<Expr *>(*I);
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000282 llvm::APSInt ArgNum(32);
283 if (!Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000284 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
285 << "nonnull" << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000286 return;
287 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000288
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000289 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000290
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000291 if (x < 1 || x > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +0000292 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner91aea712008-11-19 07:22:31 +0000293 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000294 return;
295 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000296
Ted Kremenek5224e6a2008-07-21 22:09:15 +0000297 --x;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000298
299 // Is the function argument a pointer type?
Mike Stumpd3bb5572009-07-24 19:02:52 +0000300 QualType T = getFunctionOrMethodArgType(d, x);
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000301 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000302 // FIXME: Should also highlight argument in decl.
Chris Lattner3b054132008-11-19 05:08:23 +0000303 S.Diag(Attr.getLoc(), diag::err_nonnull_pointers_only)
304 << "nonnull" << Ex->getSourceRange();
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000305 continue;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000306 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000307
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000308 NonNullArgs.push_back(x);
309 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000310
311 // If no arguments were specified to __attribute__((nonnull)) then all pointer
312 // arguments have a nonnull attribute.
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000313 if (NonNullArgs.empty()) {
Ted Kremenek5fa50522008-11-18 06:52:58 +0000314 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
315 QualType T = getFunctionOrMethodArgType(d, I);
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000316 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000317 NonNullArgs.push_back(I);
Ted Kremenek5fa50522008-11-18 06:52:58 +0000318 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000319
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000320 if (NonNullArgs.empty()) {
321 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
322 return;
323 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000324 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000325
326 unsigned* start = &NonNullArgs[0];
327 unsigned size = NonNullArgs.size();
328 std::sort(start, start + size);
Ted Kremenek510ee252010-02-11 07:31:47 +0000329 d->addAttr(::new (S.Context) NonNullAttr(S.Context, start, size));
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000330}
331
Rafael Espindolac18086a2010-02-23 22:00:30 +0000332static bool isStaticVarOrStaticFunciton(Decl *D) {
333 if (VarDecl *VD = dyn_cast<VarDecl>(D))
334 return VD->getStorageClass() == VarDecl::Static;
335 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
336 return FD->getStorageClass() == FunctionDecl::Static;
337 return false;
338}
339
340static void HandleWeakRefAttr(Decl *d, const AttributeList &Attr, Sema &S) {
341 // Check the attribute arguments.
342 if (Attr.getNumArgs() > 1) {
343 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
344 return;
345 }
346
347 // gcc rejects
348 // class c {
349 // static int a __attribute__((weakref ("v2")));
350 // static int b() __attribute__((weakref ("f3")));
351 // };
352 // and ignores the attributes of
353 // void f(void) {
354 // static int a __attribute__((weakref ("v2")));
355 // }
356 // we reject them
357 if (const DeclContext *Ctx = d->getDeclContext()) {
358 Ctx = Ctx->getLookupContext();
359 if (!isa<TranslationUnitDecl>(Ctx) && !isa<NamespaceDecl>(Ctx) ) {
360 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
361 dyn_cast<NamedDecl>(d)->getNameAsString();
362 return;
363 }
364 }
365
366 // The GCC manual says
367 //
368 // At present, a declaration to which `weakref' is attached can only
369 // be `static'.
370 //
371 // It also says
372 //
373 // Without a TARGET,
374 // given as an argument to `weakref' or to `alias', `weakref' is
375 // equivalent to `weak'.
376 //
377 // gcc 4.4.1 will accept
378 // int a7 __attribute__((weakref));
379 // as
380 // int a7 __attribute__((weak));
381 // This looks like a bug in gcc. We reject that for now. We should revisit
382 // it if this behaviour is actually used.
383
384 if (!isStaticVarOrStaticFunciton(d)) {
385 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static) <<
386 dyn_cast<NamedDecl>(d)->getNameAsString();
387 return;
388 }
389
390 // GCC rejects
391 // static ((alias ("y"), weakref)).
392 // Should we? How to check that weakref is before or after alias?
393
394 if (Attr.getNumArgs() == 1) {
395 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
396 Arg = Arg->IgnoreParenCasts();
397 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
398
399 if (Str == 0 || Str->isWide()) {
400 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
401 << "weakref" << 1;
402 return;
403 }
404 // GCC will accept anything as the argument of weakref. Should we
405 // check for an existing decl?
406 d->addAttr(::new (S.Context) AliasAttr(S.Context, Str->getString()));
407 }
408
409 d->addAttr(::new (S.Context) WeakRefAttr());
410}
411
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000412static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000413 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000414 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000415 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000416 return;
417 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000418
Chris Lattner4a927cb2008-06-28 23:36:30 +0000419 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000420 Arg = Arg->IgnoreParenCasts();
421 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +0000422
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000423 if (Str == 0 || Str->isWide()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000424 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000425 << "alias" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000426 return;
427 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000428
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000429 // FIXME: check if target symbol exists in current file
Mike Stumpd3bb5572009-07-24 19:02:52 +0000430
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000431 d->addAttr(::new (S.Context) AliasAttr(S.Context, Str->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000432}
433
Mike Stumpd3bb5572009-07-24 19:02:52 +0000434static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
Daniel Dunbar03a38442008-10-28 00:17:57 +0000435 Sema &S) {
436 // check the attribute arguments.
437 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000438 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbar03a38442008-10-28 00:17:57 +0000439 return;
440 }
Anders Carlsson88097122009-02-19 19:16:48 +0000441
Chris Lattner4225e232009-04-14 17:02:11 +0000442 if (!isa<FunctionDecl>(d)) {
Anders Carlsson88097122009-02-19 19:16:48 +0000443 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000444 << Attr.getName() << 0 /*function*/;
Anders Carlsson88097122009-02-19 19:16:48 +0000445 return;
446 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000447
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000448 d->addAttr(::new (S.Context) AlwaysInlineAttr());
Daniel Dunbar03a38442008-10-28 00:17:57 +0000449}
450
Ryan Flynn1f1fdc02009-08-09 20:07:29 +0000451static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
452 // check the attribute arguments.
453 if (Attr.getNumArgs() != 0) {
454 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
455 return;
456 }
Mike Stump11289f42009-09-09 15:08:12 +0000457
Ted Kremenek08479ae2009-08-15 00:51:46 +0000458 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Mike Stump11289f42009-09-09 15:08:12 +0000459 QualType RetTy = FD->getResultType();
Ted Kremenek08479ae2009-08-15 00:51:46 +0000460 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
461 d->addAttr(::new (S.Context) MallocAttr());
462 return;
463 }
Ryan Flynn1f1fdc02009-08-09 20:07:29 +0000464 }
465
Ted Kremenek08479ae2009-08-15 00:51:46 +0000466 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +0000467}
468
Ted Kremenek40f4ee72009-04-10 00:01:14 +0000469static bool HandleCommonNoReturnAttr(Decl *d, const AttributeList &Attr,
Ted Kremenek3b204e42009-05-13 21:07:32 +0000470 Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000471 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000472 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000473 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek40f4ee72009-04-10 00:01:14 +0000474 return false;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000475 }
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000476
Mike Stump88788fe2009-04-29 19:03:13 +0000477 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
478 ValueDecl *VD = dyn_cast<ValueDecl>(d);
Mike Stumpfeb19452009-12-15 03:11:10 +0000479 if (VD == 0 || (!VD->getType()->isBlockPointerType()
480 && !VD->getType()->isFunctionPointerType())) {
Alexis Hunt96d5c762009-11-21 08:43:09 +0000481 S.Diag(Attr.getLoc(),
482 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
483 : diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000484 << Attr.getName() << 0 /*function*/;
Mike Stump88788fe2009-04-29 19:03:13 +0000485 return false;
486 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000487 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000488
Ted Kremenek40f4ee72009-04-10 00:01:14 +0000489 return true;
490}
491
492static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenekee0934e2010-03-26 22:57:10 +0000493 // NOTE: We don't add the attribute to a FunctionDecl because the noreturn
494 // trait will be part of the function's type.
495
John McCallab26cfa2010-02-05 21:31:56 +0000496 // Don't apply as a decl attribute to ValueDecl.
497 // FIXME: probably ought to diagnose this.
498 if (isa<ValueDecl>(d))
499 return;
500
Mike Stumpd3bb5572009-07-24 19:02:52 +0000501 if (HandleCommonNoReturnAttr(d, Attr, S))
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000502 d->addAttr(::new (S.Context) NoReturnAttr());
Ted Kremenek40f4ee72009-04-10 00:01:14 +0000503}
504
505static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
506 Sema &S) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000507 if (HandleCommonNoReturnAttr(d, Attr, S))
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000508 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr());
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000509}
510
Alexis Hunt96d5c762009-11-21 08:43:09 +0000511static void HandleDependencyAttr(Decl *d, const AttributeList &Attr, Sema &S) {
512 if (!isFunctionOrMethod(d) && !isa<ParmVarDecl>(d)) {
513 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCallab26cfa2010-02-05 21:31:56 +0000514 << Attr.getName() << 8 /*function, method, or parameter*/;
Alexis Hunt96d5c762009-11-21 08:43:09 +0000515 return;
516 }
517 // FIXME: Actually store the attribute on the declaration
518}
519
Ted Kremenek39c59a82008-07-25 04:39:19 +0000520static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
521 // check the attribute arguments.
522 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000523 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek39c59a82008-07-25 04:39:19 +0000524 return;
525 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000526
John McCallcef15822010-03-31 02:47:45 +0000527 if (!isa<VarDecl>(d) && !isa<ObjCIvarDecl>(d) && !isFunctionOrMethod(d) &&
528 !isa<TypeDecl>(d)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000529 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000530 << Attr.getName() << 2 /*variable and function*/;
Ted Kremenek39c59a82008-07-25 04:39:19 +0000531 return;
532 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000533
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000534 d->addAttr(::new (S.Context) UnusedAttr());
Ted Kremenek39c59a82008-07-25 04:39:19 +0000535}
536
Daniel Dunbarfee07a02009-02-13 19:23:53 +0000537static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
538 // check the attribute arguments.
539 if (Attr.getNumArgs() != 0) {
540 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
541 return;
542 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000543
Daniel Dunbarfee07a02009-02-13 19:23:53 +0000544 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar311bf292009-02-13 22:48:56 +0000545 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +0000546 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
547 return;
548 }
549 } else if (!isFunctionOrMethod(d)) {
550 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000551 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarfee07a02009-02-13 19:23:53 +0000552 return;
553 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000554
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000555 d->addAttr(::new (S.Context) UsedAttr());
Daniel Dunbarfee07a02009-02-13 19:23:53 +0000556}
557
Daniel Dunbar032db472008-07-31 22:40:48 +0000558static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
559 // check the attribute arguments.
560 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattner3b054132008-11-19 05:08:23 +0000561 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
562 << "0 or 1";
Daniel Dunbar032db472008-07-31 22:40:48 +0000563 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000564 }
Daniel Dunbar032db472008-07-31 22:40:48 +0000565
566 int priority = 65535; // FIXME: Do not hardcode such constants.
567 if (Attr.getNumArgs() > 0) {
568 Expr *E = static_cast<Expr *>(Attr.getArg(0));
569 llvm::APSInt Idx(32);
570 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000571 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000572 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +0000573 return;
574 }
575 priority = Idx.getZExtValue();
576 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000577
Chris Lattner4225e232009-04-14 17:02:11 +0000578 if (!isa<FunctionDecl>(d)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000579 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000580 << Attr.getName() << 0 /*function*/;
Daniel Dunbar032db472008-07-31 22:40:48 +0000581 return;
582 }
583
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000584 d->addAttr(::new (S.Context) ConstructorAttr(priority));
Daniel Dunbar032db472008-07-31 22:40:48 +0000585}
586
587static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
588 // check the attribute arguments.
589 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattner3b054132008-11-19 05:08:23 +0000590 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
591 << "0 or 1";
Daniel Dunbar032db472008-07-31 22:40:48 +0000592 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000593 }
Daniel Dunbar032db472008-07-31 22:40:48 +0000594
595 int priority = 65535; // FIXME: Do not hardcode such constants.
596 if (Attr.getNumArgs() > 0) {
597 Expr *E = static_cast<Expr *>(Attr.getArg(0));
598 llvm::APSInt Idx(32);
599 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000600 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000601 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +0000602 return;
603 }
604 priority = Idx.getZExtValue();
605 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000606
Anders Carlsson8e82b7f2008-08-22 22:10:48 +0000607 if (!isa<FunctionDecl>(d)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000608 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000609 << Attr.getName() << 0 /*function*/;
Daniel Dunbar032db472008-07-31 22:40:48 +0000610 return;
611 }
612
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000613 d->addAttr(::new (S.Context) DestructorAttr(priority));
Daniel Dunbar032db472008-07-31 22:40:48 +0000614}
615
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000616static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000617 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000618 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000620 return;
621 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000622
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000623 d->addAttr(::new (S.Context) DeprecatedAttr());
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000624}
625
Fariborz Jahanian1470e932008-12-17 01:07:27 +0000626static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
627 // check the attribute arguments.
628 if (Attr.getNumArgs() != 0) {
629 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
630 return;
631 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000632
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000633 d->addAttr(::new (S.Context) UnavailableAttr());
Fariborz Jahanian1470e932008-12-17 01:07:27 +0000634}
635
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000636static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000637 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000638 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000639 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000640 return;
641 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000642
Chris Lattner4a927cb2008-06-28 23:36:30 +0000643 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000644 Arg = Arg->IgnoreParenCasts();
645 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +0000646
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000647 if (Str == 0 || Str->isWide()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000648 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000649 << "visibility" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000650 return;
651 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000652
Benjamin Kramer12a6ce72010-01-23 18:16:35 +0000653 llvm::StringRef TypeStr = Str->getString();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000654 VisibilityAttr::VisibilityTypes type;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000655
Benjamin Kramer12a6ce72010-01-23 18:16:35 +0000656 if (TypeStr == "default")
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000657 type = VisibilityAttr::DefaultVisibility;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +0000658 else if (TypeStr == "hidden")
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000659 type = VisibilityAttr::HiddenVisibility;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +0000660 else if (TypeStr == "internal")
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000661 type = VisibilityAttr::HiddenVisibility; // FIXME
Benjamin Kramer12a6ce72010-01-23 18:16:35 +0000662 else if (TypeStr == "protected")
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000663 type = VisibilityAttr::ProtectedVisibility;
664 else {
Chris Lattnere3d20d92008-11-23 21:45:46 +0000665 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000666 return;
667 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000668
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000669 d->addAttr(::new (S.Context) VisibilityAttr(type));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000670}
671
Chris Lattner677a3582009-02-14 08:09:34 +0000672static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
673 Sema &S) {
674 if (Attr.getNumArgs() != 0) {
675 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
676 return;
677 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000678
Chris Lattner677a3582009-02-14 08:09:34 +0000679 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
680 if (OCI == 0) {
681 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
682 return;
683 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000684
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000685 D->addAttr(::new (S.Context) ObjCExceptionAttr());
Chris Lattner677a3582009-02-14 08:09:34 +0000686}
687
688static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +0000689 if (Attr.getNumArgs() != 0) {
690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
691 return;
692 }
Chris Lattner677a3582009-02-14 08:09:34 +0000693 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +0000694 QualType T = TD->getUnderlyingType();
695 if (!T->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000696 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +0000697 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
698 return;
699 }
700 }
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000701 D->addAttr(::new (S.Context) ObjCNSObjectAttr());
Fariborz Jahanian255c0952009-01-13 23:34:40 +0000702}
703
Mike Stumpd3bb5572009-07-24 19:02:52 +0000704static void
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +0000705HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
706 if (Attr.getNumArgs() != 0) {
707 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
708 return;
709 }
710
711 if (!isa<FunctionDecl>(D)) {
712 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
713 return;
714 }
715
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000716 D->addAttr(::new (S.Context) OverloadableAttr());
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +0000717}
718
Steve Naroff3405a732008-09-18 16:44:58 +0000719static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000720 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +0000721 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000722 << "blocks" << 1;
Steve Naroff3405a732008-09-18 16:44:58 +0000723 return;
724 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000725
Steve Naroff3405a732008-09-18 16:44:58 +0000726 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000727 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff3405a732008-09-18 16:44:58 +0000728 return;
729 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000730
Steve Naroff3405a732008-09-18 16:44:58 +0000731 BlocksAttr::BlocksAttrTypes type;
Chris Lattner68e48682008-11-20 04:42:34 +0000732 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff3405a732008-09-18 16:44:58 +0000733 type = BlocksAttr::ByRef;
734 else {
Chris Lattner3b054132008-11-19 05:08:23 +0000735 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000736 << "blocks" << Attr.getParameterName();
Steve Naroff3405a732008-09-18 16:44:58 +0000737 return;
738 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000739
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000740 d->addAttr(::new (S.Context) BlocksAttr(type));
Steve Naroff3405a732008-09-18 16:44:58 +0000741}
742
Anders Carlssonc181b012008-10-05 18:05:59 +0000743static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
744 // check the attribute arguments.
745 if (Attr.getNumArgs() > 2) {
Chris Lattner3b054132008-11-19 05:08:23 +0000746 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
747 << "0, 1 or 2";
Anders Carlssonc181b012008-10-05 18:05:59 +0000748 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000749 }
750
Anders Carlssonc181b012008-10-05 18:05:59 +0000751 int sentinel = 0;
752 if (Attr.getNumArgs() > 0) {
753 Expr *E = static_cast<Expr *>(Attr.getArg(0));
754 llvm::APSInt Idx(32);
755 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000756 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000757 << "sentinel" << 1 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +0000758 return;
759 }
760 sentinel = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000761
Anders Carlssonc181b012008-10-05 18:05:59 +0000762 if (sentinel < 0) {
Chris Lattner3b054132008-11-19 05:08:23 +0000763 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
764 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +0000765 return;
766 }
767 }
768
769 int nullPos = 0;
770 if (Attr.getNumArgs() > 1) {
771 Expr *E = static_cast<Expr *>(Attr.getArg(1));
772 llvm::APSInt Idx(32);
773 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000774 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000775 << "sentinel" << 2 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +0000776 return;
777 }
778 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000779
Anders Carlssonc181b012008-10-05 18:05:59 +0000780 if (nullPos > 1 || nullPos < 0) {
781 // FIXME: This error message could be improved, it would be nice
782 // to say what the bounds actually are.
Chris Lattner3b054132008-11-19 05:08:23 +0000783 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
784 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +0000785 return;
786 }
787 }
788
789 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
John McCall9dd450b2009-09-21 23:43:11 +0000790 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +0000791 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpd3bb5572009-07-24 19:02:52 +0000792
Chris Lattner9363e312009-03-17 23:03:47 +0000793 if (isa<FunctionNoProtoType>(FT)) {
794 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
795 return;
796 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000797
Chris Lattner9363e312009-03-17 23:03:47 +0000798 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +0000799 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +0000800 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000801 }
Anders Carlssonc181b012008-10-05 18:05:59 +0000802 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
803 if (!MD->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +0000804 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +0000805 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000806 }
807 } else if (isa<BlockDecl>(d)) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000808 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
809 // caller.
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000810 ;
811 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000812 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000813 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000814 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
John McCall9dd450b2009-09-21 23:43:11 +0000815 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000816 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +0000817 int m = Ty->isFunctionPointerType() ? 0 : 1;
818 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000819 return;
820 }
Mike Stump12b8ce12009-08-04 21:02:39 +0000821 } else {
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000822 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3133a2f2009-05-14 20:57:28 +0000823 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian6607b212009-05-14 20:53:39 +0000824 return;
825 }
Anders Carlssonc181b012008-10-05 18:05:59 +0000826 } else {
Chris Lattner3b054132008-11-19 05:08:23 +0000827 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanian3133a2f2009-05-14 20:57:28 +0000828 << Attr.getName() << 6 /*function, method or block */;
Anders Carlssonc181b012008-10-05 18:05:59 +0000829 return;
830 }
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000831 d->addAttr(::new (S.Context) SentinelAttr(sentinel, nullPos));
Anders Carlssonc181b012008-10-05 18:05:59 +0000832}
833
Chris Lattner237f2752009-02-14 07:37:35 +0000834static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
835 // check the attribute arguments.
836 if (Attr.getNumArgs() != 0) {
837 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
838 return;
839 }
840
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000841 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner237f2752009-02-14 07:37:35 +0000842 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000843 << Attr.getName() << 0 /*function*/;
Chris Lattner237f2752009-02-14 07:37:35 +0000844 return;
845 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000846
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000847 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
848 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
849 << Attr.getName() << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +0000850 return;
851 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +0000852 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
853 if (MD->getResultType()->isVoidType()) {
854 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
855 << Attr.getName() << 1;
856 return;
857 }
858
Nuno Lopes518e3702009-12-20 23:11:08 +0000859 D->addAttr(::new (S.Context) WarnUnusedResultAttr());
Chris Lattner237f2752009-02-14 07:37:35 +0000860}
861
862static void HandleWeakAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000863 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000864 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000865 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000866 return;
867 }
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000868
Fariborz Jahanian41136ee2009-07-16 01:12:24 +0000869 /* weak only applies to non-static declarations */
Rafael Espindolac18086a2010-02-23 22:00:30 +0000870 if (isStaticVarOrStaticFunciton(D)) {
Fariborz Jahanian41136ee2009-07-16 01:12:24 +0000871 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static) <<
872 dyn_cast<NamedDecl>(D)->getNameAsString();
873 return;
874 }
875
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000876 // TODO: could also be applied to methods?
877 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
878 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000879 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000880 return;
881 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000882
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000883 D->addAttr(::new (S.Context) WeakAttr());
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000884}
885
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000886static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
887 // check the attribute arguments.
888 if (Attr.getNumArgs() != 0) {
889 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
890 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000891 }
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000892
893 // weak_import only applies to variable & function declarations.
894 bool isDef = false;
895 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
896 isDef = (!VD->hasExternalStorage() || VD->getInit());
897 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +0000898 isDef = FD->getBody();
Fariborz Jahanian60637982009-05-04 19:35:12 +0000899 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
900 // We ignore weak import on properties and methods
Mike Stump367fee62009-03-18 17:39:31 +0000901 return;
Fariborz Jahaniand3612392009-11-17 19:08:08 +0000902 } else if (!(S.LangOpts.ObjCNonFragileABI && isa<ObjCInterfaceDecl>(D))) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000903 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +0000904 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000905 return;
906 }
907
908 // Merge should handle any subsequent violations.
909 if (isDef) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000910 S.Diag(Attr.getLoc(),
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000911 diag::warn_attribute_weak_import_invalid_on_definition)
912 << "weak_import" << 2 /*variable and function*/;
913 return;
914 }
915
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000916 D->addAttr(::new (S.Context) WeakImportAttr());
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +0000917}
918
Nate Begemanf2758702009-06-26 06:32:41 +0000919static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
920 Sema &S) {
921 // Attribute has 3 arguments.
922 if (Attr.getNumArgs() != 3) {
923 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
924 return;
925 }
926
927 unsigned WGSize[3];
928 for (unsigned i = 0; i < 3; ++i) {
929 Expr *E = static_cast<Expr *>(Attr.getArg(i));
930 llvm::APSInt ArgNum(32);
931 if (!E->isIntegerConstantExpr(ArgNum, S.Context)) {
932 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
933 << "reqd_work_group_size" << E->getSourceRange();
934 return;
935 }
936 WGSize[i] = (unsigned) ArgNum.getZExtValue();
937 }
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000938 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(WGSize[0], WGSize[1],
Nate Begemanf2758702009-06-26 06:32:41 +0000939 WGSize[2]));
940}
941
Chris Lattner237f2752009-02-14 07:37:35 +0000942static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar648bf782009-02-12 17:28:23 +0000943 // Attribute has no arguments.
944 if (Attr.getNumArgs() != 1) {
945 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
946 return;
947 }
948
949 // Make sure that there is a string literal as the sections's single
950 // argument.
Chris Lattner30ba6742009-08-10 19:03:04 +0000951 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
952 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar648bf782009-02-12 17:28:23 +0000953 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +0000954 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar648bf782009-02-12 17:28:23 +0000955 return;
956 }
Mike Stump11289f42009-09-09 15:08:12 +0000957
Chris Lattner30ba6742009-08-10 19:03:04 +0000958 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramer5f089122009-11-30 17:08:26 +0000959 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattner20aee9b2010-01-12 20:58:53 +0000960 if (!Error.empty()) {
961 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
962 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +0000963 return;
964 }
Mike Stump11289f42009-09-09 15:08:12 +0000965
Chris Lattner20aee9b2010-01-12 20:58:53 +0000966 // This attribute cannot be applied to local variables.
967 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
968 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
969 return;
970 }
971
Ted Kremenek7f4945a2010-02-11 05:28:37 +0000972 D->addAttr(::new (S.Context) SectionAttr(S.Context, SE->getString()));
Daniel Dunbar648bf782009-02-12 17:28:23 +0000973}
974
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000975
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000976static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000977 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +0000978 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000979 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000980 return;
981 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000982
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000983 d->addAttr(::new (S.Context) NoThrowAttr());
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000984}
985
Anders Carlssonb8316282008-10-05 23:32:53 +0000986static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
987 // check the attribute arguments.
988 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000989 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlssonb8316282008-10-05 23:32:53 +0000990 return;
991 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000992
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000993 d->addAttr(::new (S.Context) ConstAttr());
Anders Carlssonb8316282008-10-05 23:32:53 +0000994}
995
996static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
997 // check the attribute arguments.
998 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000999 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlssonb8316282008-10-05 23:32:53 +00001000 return;
1001 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001002
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001003 d->addAttr(::new (S.Context) PureAttr());
Anders Carlssonb8316282008-10-05 23:32:53 +00001004}
1005
Anders Carlssond277d792009-01-31 01:16:18 +00001006static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001007 if (!Attr.getParameterName()) {
Anders Carlssond277d792009-01-31 01:16:18 +00001008 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1009 return;
1010 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001011
Anders Carlssond277d792009-01-31 01:16:18 +00001012 if (Attr.getNumArgs() != 0) {
1013 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1014 return;
1015 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001016
Anders Carlssond277d792009-01-31 01:16:18 +00001017 VarDecl *VD = dyn_cast<VarDecl>(d);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001018
Anders Carlssond277d792009-01-31 01:16:18 +00001019 if (!VD || !VD->hasLocalStorage()) {
1020 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1021 return;
1022 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001023
Anders Carlssond277d792009-01-31 01:16:18 +00001024 // Look up the function
John McCall9f3059a2009-10-09 21:13:30 +00001025 NamedDecl *CleanupDecl
1026 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
1027 Sema::LookupOrdinaryName);
Anders Carlssond277d792009-01-31 01:16:18 +00001028 if (!CleanupDecl) {
Anders Carlsson723f55d2009-02-07 23:16:50 +00001029 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssond277d792009-01-31 01:16:18 +00001030 Attr.getParameterName();
1031 return;
1032 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001033
Anders Carlssond277d792009-01-31 01:16:18 +00001034 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1035 if (!FD) {
Anders Carlsson723f55d2009-02-07 23:16:50 +00001036 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_function) <<
Anders Carlssond277d792009-01-31 01:16:18 +00001037 Attr.getParameterName();
1038 return;
1039 }
1040
Anders Carlssond277d792009-01-31 01:16:18 +00001041 if (FD->getNumParams() != 1) {
Anders Carlsson723f55d2009-02-07 23:16:50 +00001042 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_func_must_take_one_arg) <<
Anders Carlssond277d792009-01-31 01:16:18 +00001043 Attr.getParameterName();
1044 return;
1045 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001046
Anders Carlsson723f55d2009-02-07 23:16:50 +00001047 // We're currently more strict than GCC about what function types we accept.
1048 // If this ever proves to be a problem it should be easy to fix.
1049 QualType Ty = S.Context.getPointerType(VD->getType());
1050 QualType ParamTy = FD->getParamDecl(0)->getType();
Eli Friedmanbd0e6732009-04-26 01:30:08 +00001051 if (S.CheckAssignmentConstraints(ParamTy, Ty) != Sema::Compatible) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001052 S.Diag(Attr.getLoc(),
Anders Carlsson723f55d2009-02-07 23:16:50 +00001053 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1054 Attr.getParameterName() << ParamTy << Ty;
1055 return;
1056 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001057
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001058 d->addAttr(::new (S.Context) CleanupAttr(FD));
Anders Carlssond277d792009-01-31 01:16:18 +00001059}
1060
Mike Stumpd3bb5572009-07-24 19:02:52 +00001061/// Handle __attribute__((format_arg((idx)))) attribute based on
1062/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1063static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001064 if (Attr.getNumArgs() != 1) {
1065 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1066 return;
1067 }
1068 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1069 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1070 << Attr.getName() << 0 /*function*/;
1071 return;
1072 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001073 // FIXME: in C++ the implicit 'this' function parameter also counts. this is
1074 // needed in order to be compatible with GCC the index must start with 1.
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001075 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
1076 unsigned FirstIdx = 1;
1077 // checks for the 2nd argument
1078 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
1079 llvm::APSInt Idx(32);
1080 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
1081 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1082 << "format" << 2 << IdxExpr->getSourceRange();
1083 return;
1084 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001085
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001086 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1087 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1088 << "format" << 2 << IdxExpr->getSourceRange();
1089 return;
1090 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001091
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001092 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001093
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001094 // make sure the format string is really a string
1095 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001096
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001097 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1098 if (not_nsstring_type &&
1099 !isCFStringType(Ty, S.Context) &&
1100 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001101 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001102 // FIXME: Should highlight the actual expression that has the wrong type.
1103 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00001104 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001105 << IdxExpr->getSourceRange();
1106 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001107 }
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001108 Ty = getFunctionOrMethodResultType(d);
1109 if (!isNSStringType(Ty, S.Context) &&
1110 !isCFStringType(Ty, S.Context) &&
1111 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001112 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001113 // FIXME: Should highlight the actual expression that has the wrong type.
1114 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00001115 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001116 << IdxExpr->getSourceRange();
1117 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001118 }
1119
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001120 d->addAttr(::new (S.Context) FormatArgAttr(Idx.getZExtValue()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00001121}
1122
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001123enum FormatAttrKind {
1124 CFStringFormat,
1125 NSStringFormat,
1126 StrftimeFormat,
1127 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00001128 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001129 InvalidFormat
1130};
1131
1132/// getFormatAttrKind - Map from format attribute names to supported format
1133/// types.
1134static FormatAttrKind getFormatAttrKind(llvm::StringRef Format) {
1135 // Check for formats that get handled specially.
1136 if (Format == "NSString")
1137 return NSStringFormat;
1138 if (Format == "CFString")
1139 return CFStringFormat;
1140 if (Format == "strftime")
1141 return StrftimeFormat;
1142
1143 // Otherwise, check for supported formats.
1144 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
1145 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
1146 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
1147 Format == "zcmn_err")
1148 return SupportedFormat;
1149
Duncan Sandsde4fe352010-03-23 14:44:19 +00001150 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
1151 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner12161d32010-03-22 21:08:50 +00001152 return IgnoredFormat;
1153
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001154 return InvalidFormat;
1155}
1156
Mike Stumpd3bb5572009-07-24 19:02:52 +00001157/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
1158/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001159static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001160
Chris Lattner4a927cb2008-06-28 23:36:30 +00001161 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001162 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001163 << "format" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001164 return;
1165 }
1166
Chris Lattner4a927cb2008-06-28 23:36:30 +00001167 if (Attr.getNumArgs() != 2) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001168 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001169 return;
1170 }
1171
Fariborz Jahanian4447e172009-05-15 23:15:03 +00001172 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001173 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001174 << Attr.getName() << 0 /*function*/;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001175 return;
1176 }
1177
Daniel Dunbarc136e0c2008-09-26 04:12:28 +00001178 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001179 unsigned FirstIdx = 1;
1180
Daniel Dunbar07d07852009-10-18 21:17:35 +00001181 llvm::StringRef Format = Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001182
1183 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001184 if (Format.startswith("__") && Format.endswith("__"))
1185 Format = Format.substr(2, Format.size() - 4);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001186
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001187 // Check for supported formats.
1188 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner12161d32010-03-22 21:08:50 +00001189
1190 if (Kind == IgnoredFormat)
1191 return;
1192
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001193 if (Kind == InvalidFormat) {
Chris Lattner3b054132008-11-19 05:08:23 +00001194 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar07d07852009-10-18 21:17:35 +00001195 << "format" << Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001196 return;
1197 }
1198
1199 // checks for the 2nd argument
Chris Lattner4a927cb2008-06-28 23:36:30 +00001200 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001201 llvm::APSInt Idx(32);
1202 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001203 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001204 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001205 return;
1206 }
1207
Anders Carlssonbe96bc92009-08-25 14:12:34 +00001208 // FIXME: We should handle the implicit 'this' parameter in a more generic
1209 // way that can be used for other arguments.
1210 bool HasImplicitThisParam = false;
1211 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(d)) {
1212 if (MD->isInstance()) {
1213 HasImplicitThisParam = true;
1214 NumArgs++;
1215 }
1216 }
Mike Stump11289f42009-09-09 15:08:12 +00001217
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001218 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00001219 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001220 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001221 return;
1222 }
1223
1224 // FIXME: Do we need to bounds check?
1225 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001226
Sebastian Redl6eedcc12009-11-17 18:02:24 +00001227 if (HasImplicitThisParam) {
1228 if (ArgIdx == 0) {
1229 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1230 << "a string type" << IdxExpr->getSourceRange();
1231 return;
1232 }
1233 ArgIdx--;
1234 }
Mike Stump11289f42009-09-09 15:08:12 +00001235
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001236 // make sure the format string is really a string
Daniel Dunbarc136e0c2008-09-26 04:12:28 +00001237 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001238
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001239 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00001240 if (!isCFStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001241 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1242 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar980c6692008-09-26 03:32:58 +00001243 return;
1244 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001245 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00001246 // FIXME: do we need to check if the type is NSString*? What are the
1247 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001248 if (!isNSStringType(Ty, S.Context)) {
Mike Stump87c57ac2009-05-16 07:39:55 +00001249 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00001250 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1251 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001252 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001253 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001254 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001255 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump87c57ac2009-05-16 07:39:55 +00001256 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00001257 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1258 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001259 return;
1260 }
1261
1262 // check the 3rd argument
Chris Lattner4a927cb2008-06-28 23:36:30 +00001263 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001264 llvm::APSInt FirstArg(32);
1265 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001266 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001267 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001268 return;
1269 }
1270
1271 // check if the function is variadic if the 3rd argument non-zero
1272 if (FirstArg != 0) {
Daniel Dunbarc136e0c2008-09-26 04:12:28 +00001273 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001274 ++NumArgs; // +1 for ...
1275 } else {
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001276 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001277 return;
1278 }
1279 }
1280
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001281 // strftime requires FirstArg to be 0 because it doesn't read from any
1282 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001283 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001284 if (FirstArg != 0) {
Chris Lattner3b054132008-11-19 05:08:23 +00001285 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1286 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001287 return;
1288 }
1289 // if 0 it disables parameter checking (to use with e.g. va_list)
1290 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00001291 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001292 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001293 return;
1294 }
1295
Ted Kremenek7f4945a2010-02-11 05:28:37 +00001296 d->addAttr(::new (S.Context) FormatAttr(S.Context, Format, Idx.getZExtValue(),
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00001297 FirstArg.getZExtValue()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001298}
1299
Chris Lattnera663a0a2008-06-29 00:28:59 +00001300static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1301 Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001302 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001303 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001304 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001305 return;
1306 }
1307
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001308 // Try to find the underlying union declaration.
1309 RecordDecl *RD = 0;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00001310 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001311 if (TD && TD->getUnderlyingType()->isUnionType())
1312 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1313 else
1314 RD = dyn_cast<RecordDecl>(d);
1315
1316 if (!RD || !RD->isUnion()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001317 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001318 << Attr.getName() << 1 /*union*/;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001319 return;
1320 }
1321
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001322 if (!RD->isDefinition()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001323 S.Diag(Attr.getLoc(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001324 diag::warn_transparent_union_attribute_not_definition);
1325 return;
1326 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001327
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001328 RecordDecl::field_iterator Field = RD->field_begin(),
1329 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001330 if (Field == FieldEnd) {
1331 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1332 return;
1333 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00001334
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001335 FieldDecl *FirstField = *Field;
1336 QualType FirstType = FirstField->getType();
1337 if (FirstType->isFloatingType() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001338 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001339 diag::warn_transparent_union_attribute_floating);
1340 return;
1341 }
1342
1343 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1344 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1345 for (; Field != FieldEnd; ++Field) {
1346 QualType FieldType = Field->getType();
1347 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1348 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1349 // Warn if we drop the attribute.
1350 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001351 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001352 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001353 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001354 diag::warn_transparent_union_attribute_field_size_align)
1355 << isSize << Field->getDeclName() << FieldBits;
1356 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001357 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00001358 diag::note_transparent_union_first_field_size_align)
1359 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00001360 return;
1361 }
1362 }
1363
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001364 RD->addAttr(::new (S.Context) TransparentUnionAttr());
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001365}
1366
Chris Lattnera663a0a2008-06-29 00:28:59 +00001367static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001368 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001369 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001370 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001371 return;
1372 }
Chris Lattner30ba6742009-08-10 19:03:04 +00001373 Expr *ArgExpr = static_cast<Expr *>(Attr.getArg(0));
1374 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001375
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001376 // Make sure that there is a string literal as the annotation's single
1377 // argument.
1378 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00001379 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001380 return;
1381 }
Ted Kremenek7f4945a2010-02-11 05:28:37 +00001382 d->addAttr(::new (S.Context) AnnotateAttr(S.Context, SE->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001383}
1384
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001385static void HandleAlignedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001386 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001387 if (Attr.getNumArgs() > 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001388 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001389 return;
1390 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00001391
1392 //FIXME: The C++0x version of this attribute has more limited applicabilty
1393 // than GNU's, and should error out when it is used to specify a
1394 // weaker alignment, rather than being silently ignored.
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001395
1396 unsigned Align = 0;
Chris Lattner4a927cb2008-06-28 23:36:30 +00001397 if (Attr.getNumArgs() == 0) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001398 // FIXME: This should be the target specific maximum alignment.
Daniel Dunbaraac5bf12009-02-18 20:06:09 +00001399 // (For now we just use 128 bits which is the maximum on X86).
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001400 Align = 128;
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001401 d->addAttr(::new (S.Context) AlignedAttr(Align));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001402 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001403 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001404
Chris Lattner4627b742008-06-28 23:50:44 +00001405 Expr *alignmentExpr = static_cast<Expr *>(Attr.getArg(0));
1406 llvm::APSInt Alignment(32);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001407 if (!alignmentExpr->isIntegerConstantExpr(Alignment, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001408 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1409 << "aligned" << alignmentExpr->getSourceRange();
Chris Lattner4627b742008-06-28 23:50:44 +00001410 return;
1411 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00001412 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001413 S.Diag(Attr.getLoc(), diag::err_attribute_aligned_not_power_of_two)
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00001414 << alignmentExpr->getSourceRange();
1415 return;
1416 }
1417
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001418 d->addAttr(::new (S.Context) AlignedAttr(Alignment.getZExtValue() * 8));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001419}
Chris Lattneracbc2d22008-06-27 22:18:37 +00001420
Mike Stumpd3bb5572009-07-24 19:02:52 +00001421/// HandleModeAttr - This attribute modifies the width of a decl with primitive
1422/// type.
Chris Lattneracbc2d22008-06-27 22:18:37 +00001423///
Mike Stumpd3bb5572009-07-24 19:02:52 +00001424/// Despite what would be logical, the mode attribute is a decl attribute, not a
1425/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
1426/// HImode, not an intermediate pointer.
Chris Lattnera663a0a2008-06-29 00:28:59 +00001427static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00001428 // This attribute isn't documented, but glibc uses it. It changes
1429 // the width of an int or unsigned int to the specified size.
1430
1431 // Check that there aren't any arguments
1432 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001433 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001434 return;
1435 }
1436
1437 IdentifierInfo *Name = Attr.getParameterName();
1438 if (!Name) {
Chris Lattnera663a0a2008-06-29 00:28:59 +00001439 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattneracbc2d22008-06-27 22:18:37 +00001440 return;
1441 }
Daniel Dunbarafff4342009-10-18 02:09:24 +00001442
Daniel Dunbar07d07852009-10-18 21:17:35 +00001443 llvm::StringRef Str = Attr.getParameterName()->getName();
Chris Lattneracbc2d22008-06-27 22:18:37 +00001444
1445 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbarafff4342009-10-18 02:09:24 +00001446 if (Str.startswith("__") && Str.endswith("__"))
1447 Str = Str.substr(2, Str.size() - 4);
Chris Lattneracbc2d22008-06-27 22:18:37 +00001448
1449 unsigned DestWidth = 0;
1450 bool IntegerMode = true;
Eli Friedman4735374e2009-03-03 06:41:03 +00001451 bool ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00001452 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00001453 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00001454 switch (Str[0]) {
1455 case 'Q': DestWidth = 8; break;
1456 case 'H': DestWidth = 16; break;
1457 case 'S': DestWidth = 32; break;
1458 case 'D': DestWidth = 64; break;
1459 case 'X': DestWidth = 96; break;
1460 case 'T': DestWidth = 128; break;
1461 }
1462 if (Str[1] == 'F') {
1463 IntegerMode = false;
1464 } else if (Str[1] == 'C') {
1465 IntegerMode = false;
1466 ComplexMode = true;
1467 } else if (Str[1] != 'I') {
1468 DestWidth = 0;
1469 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00001470 break;
1471 case 4:
1472 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1473 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00001474 if (Str == "word")
Chris Lattnera663a0a2008-06-29 00:28:59 +00001475 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbarafff4342009-10-18 02:09:24 +00001476 else if (Str == "byte")
Chris Lattnera663a0a2008-06-29 00:28:59 +00001477 DestWidth = S.Context.Target.getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00001478 break;
1479 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00001480 if (Str == "pointer")
Chris Lattnera663a0a2008-06-29 00:28:59 +00001481 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00001482 break;
1483 }
1484
1485 QualType OldTy;
1486 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1487 OldTy = TD->getUnderlyingType();
1488 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1489 OldTy = VD->getType();
1490 else {
Chris Lattner3b054132008-11-19 05:08:23 +00001491 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1492 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattneracbc2d22008-06-27 22:18:37 +00001493 return;
1494 }
Eli Friedman4735374e2009-03-03 06:41:03 +00001495
John McCall9dd450b2009-09-21 23:43:11 +00001496 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman4735374e2009-03-03 06:41:03 +00001497 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
1498 else if (IntegerMode) {
1499 if (!OldTy->isIntegralType())
1500 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1501 } else if (ComplexMode) {
1502 if (!OldTy->isComplexType())
1503 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1504 } else {
1505 if (!OldTy->isFloatingType())
1506 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1507 }
1508
Mike Stump87c57ac2009-05-16 07:39:55 +00001509 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
1510 // and friends, at least with glibc.
1511 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
1512 // width on unusual platforms.
Eli Friedman1efaaea2009-02-13 02:31:07 +00001513 // FIXME: Make sure floating-point mappings are accurate
1514 // FIXME: Support XF and TF types
Chris Lattneracbc2d22008-06-27 22:18:37 +00001515 QualType NewTy;
1516 switch (DestWidth) {
1517 case 0:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001518 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001519 return;
1520 default:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001521 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001522 return;
1523 case 8:
Eli Friedman4735374e2009-03-03 06:41:03 +00001524 if (!IntegerMode) {
1525 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1526 return;
1527 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00001528 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00001529 NewTy = S.Context.SignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001530 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00001531 NewTy = S.Context.UnsignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001532 break;
1533 case 16:
Eli Friedman4735374e2009-03-03 06:41:03 +00001534 if (!IntegerMode) {
1535 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1536 return;
1537 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00001538 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00001539 NewTy = S.Context.ShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001540 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00001541 NewTy = S.Context.UnsignedShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001542 break;
1543 case 32:
1544 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00001545 NewTy = S.Context.FloatTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001546 else if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00001547 NewTy = S.Context.IntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001548 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00001549 NewTy = S.Context.UnsignedIntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001550 break;
1551 case 64:
1552 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00001553 NewTy = S.Context.DoubleTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001554 else if (OldTy->isSignedIntegerType())
Chandler Carruth72343702010-01-26 06:39:24 +00001555 if (S.Context.Target.getLongWidth() == 64)
1556 NewTy = S.Context.LongTy;
1557 else
1558 NewTy = S.Context.LongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001559 else
Chandler Carruth72343702010-01-26 06:39:24 +00001560 if (S.Context.Target.getLongWidth() == 64)
1561 NewTy = S.Context.UnsignedLongTy;
1562 else
1563 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001564 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00001565 case 96:
1566 NewTy = S.Context.LongDoubleTy;
1567 break;
Eli Friedman1efaaea2009-02-13 02:31:07 +00001568 case 128:
1569 if (!IntegerMode) {
1570 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1571 return;
1572 }
Anders Carlsson88ea2452009-12-29 07:07:36 +00001573 if (OldTy->isSignedIntegerType())
1574 NewTy = S.Context.Int128Ty;
1575 else
1576 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman4735374e2009-03-03 06:41:03 +00001577 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00001578 }
1579
Eli Friedman4735374e2009-03-03 06:41:03 +00001580 if (ComplexMode) {
1581 NewTy = S.Context.getComplexType(NewTy);
Chris Lattneracbc2d22008-06-27 22:18:37 +00001582 }
1583
1584 // Install the new type.
John McCall703a3f82009-10-24 08:00:42 +00001585 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
1586 // FIXME: preserve existing source info.
John McCallbcd03502009-12-07 02:54:59 +00001587 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCall703a3f82009-10-24 08:00:42 +00001588 } else
Chris Lattneracbc2d22008-06-27 22:18:37 +00001589 cast<ValueDecl>(D)->setType(NewTy);
1590}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00001591
Mike Stump3722f582009-08-26 22:31:08 +00001592static void HandleNoDebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson76187b42009-02-13 06:46:13 +00001593 // check the attribute arguments.
1594 if (Attr.getNumArgs() > 0) {
1595 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1596 return;
1597 }
Anders Carlsson63784f42009-02-13 08:11:52 +00001598
Anders Carlsson88097122009-02-19 19:16:48 +00001599 if (!isFunctionOrMethod(d)) {
Anders Carlsson76187b42009-02-13 06:46:13 +00001600 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001601 << Attr.getName() << 0 /*function*/;
Anders Carlsson76187b42009-02-13 06:46:13 +00001602 return;
1603 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001604
Mike Stump3722f582009-08-26 22:31:08 +00001605 d->addAttr(::new (S.Context) NoDebugAttr());
Anders Carlsson76187b42009-02-13 06:46:13 +00001606}
1607
Mike Stump3722f582009-08-26 22:31:08 +00001608static void HandleNoInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson88097122009-02-19 19:16:48 +00001609 // check the attribute arguments.
1610 if (Attr.getNumArgs() != 0) {
1611 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1612 return;
1613 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001614
Chris Lattner4225e232009-04-14 17:02:11 +00001615 if (!isa<FunctionDecl>(d)) {
Anders Carlsson88097122009-02-19 19:16:48 +00001616 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001617 << Attr.getName() << 0 /*function*/;
Anders Carlsson88097122009-02-19 19:16:48 +00001618 return;
1619 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001620
Mike Stump3722f582009-08-26 22:31:08 +00001621 d->addAttr(::new (S.Context) NoInlineAttr());
Anders Carlsson88097122009-02-19 19:16:48 +00001622}
1623
Chris Lattnerddf6ca02009-04-20 19:12:28 +00001624static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00001625 // check the attribute arguments.
1626 if (Attr.getNumArgs() != 0) {
1627 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1628 return;
1629 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001630
Chris Lattner4225e232009-04-14 17:02:11 +00001631 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
1632 if (Fn == 0) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00001633 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001634 << Attr.getName() << 0 /*function*/;
Chris Lattnereaad6b72009-04-14 16:30:50 +00001635 return;
1636 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001637
Douglas Gregor35b57532009-10-27 21:01:01 +00001638 if (!Fn->isInlineSpecified()) {
Chris Lattnerddf6ca02009-04-20 19:12:28 +00001639 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00001640 return;
1641 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001642
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001643 d->addAttr(::new (S.Context) GNUInlineAttr());
Chris Lattnereaad6b72009-04-14 16:30:50 +00001644}
1645
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00001646static void HandleRegparmAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1647 // check the attribute arguments.
1648 if (Attr.getNumArgs() != 1) {
Eli Friedman7044b762009-03-27 21:06:47 +00001649 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00001650 return;
1651 }
Eli Friedman7044b762009-03-27 21:06:47 +00001652
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00001653 if (!isFunctionOrMethod(d)) {
1654 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek3b204e42009-05-13 21:07:32 +00001655 << Attr.getName() << 0 /*function*/;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00001656 return;
1657 }
Eli Friedman7044b762009-03-27 21:06:47 +00001658
1659 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
1660 llvm::APSInt NumParams(32);
1661 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
1662 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1663 << "regparm" << NumParamsExpr->getSourceRange();
1664 return;
1665 }
1666
Anton Korobeynikov6953ef22009-04-03 23:38:25 +00001667 if (S.Context.Target.getRegParmMax() == 0) {
1668 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00001669 << NumParamsExpr->getSourceRange();
1670 return;
1671 }
1672
Anton Korobeynikov1dfc5f52009-04-04 10:27:50 +00001673 if (NumParams.getLimitedValue(255) > S.Context.Target.getRegParmMax()) {
Anton Korobeynikov6953ef22009-04-03 23:38:25 +00001674 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
1675 << S.Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
Eli Friedman7044b762009-03-27 21:06:47 +00001676 return;
1677 }
1678
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001679 d->addAttr(::new (S.Context) RegparmAttr(NumParams.getZExtValue()));
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00001680}
1681
Alexis Hunt96d5c762009-11-21 08:43:09 +00001682static void HandleFinalAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1683 // check the attribute arguments.
1684 if (Attr.getNumArgs() != 0) {
1685 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1686 return;
1687 }
1688
1689 if (!isa<CXXRecordDecl>(d)
1690 && (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual())) {
1691 S.Diag(Attr.getLoc(),
1692 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1693 : diag::warn_attribute_wrong_decl_type)
1694 << Attr.getName() << 7 /*virtual method or class*/;
1695 return;
1696 }
Alexis Hunt54a02542009-11-25 04:20:27 +00001697
1698 // FIXME: Conform to C++0x redeclaration rules.
1699
1700 if (d->getAttr<FinalAttr>()) {
1701 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "final";
1702 return;
1703 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00001704
1705 d->addAttr(::new (S.Context) FinalAttr());
1706}
1707
Chris Lattner9e2aafe2008-06-29 00:23:49 +00001708//===----------------------------------------------------------------------===//
Alexis Hunt54a02542009-11-25 04:20:27 +00001709// C++0x member checking attributes
1710//===----------------------------------------------------------------------===//
1711
1712static void HandleBaseCheckAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1713 if (Attr.getNumArgs() != 0) {
1714 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1715 return;
1716 }
1717
1718 if (!isa<CXXRecordDecl>(d)) {
1719 S.Diag(Attr.getLoc(),
1720 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1721 : diag::warn_attribute_wrong_decl_type)
1722 << Attr.getName() << 9 /*class*/;
1723 return;
1724 }
1725
1726 if (d->getAttr<BaseCheckAttr>()) {
1727 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "base_check";
1728 return;
1729 }
1730
1731 d->addAttr(::new (S.Context) BaseCheckAttr());
1732}
1733
1734static void HandleHidingAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1735 if (Attr.getNumArgs() != 0) {
1736 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1737 return;
1738 }
1739
1740 if (!isa<RecordDecl>(d->getDeclContext())) {
1741 // FIXME: It's not the type that's the problem
1742 S.Diag(Attr.getLoc(),
1743 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1744 : diag::warn_attribute_wrong_decl_type)
1745 << Attr.getName() << 11 /*member*/;
1746 return;
1747 }
1748
1749 // FIXME: Conform to C++0x redeclaration rules.
1750
1751 if (d->getAttr<HidingAttr>()) {
1752 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "hiding";
1753 return;
1754 }
1755
1756 d->addAttr(::new (S.Context) HidingAttr());
1757}
1758
1759static void HandleOverrideAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1760 if (Attr.getNumArgs() != 0) {
1761 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1762 return;
1763 }
1764
1765 if (!isa<CXXMethodDecl>(d) || !cast<CXXMethodDecl>(d)->isVirtual()) {
1766 // FIXME: It's not the type that's the problem
1767 S.Diag(Attr.getLoc(),
1768 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1769 : diag::warn_attribute_wrong_decl_type)
1770 << Attr.getName() << 10 /*virtual method*/;
1771 return;
1772 }
1773
1774 // FIXME: Conform to C++0x redeclaration rules.
1775
1776 if (d->getAttr<OverrideAttr>()) {
1777 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "override";
1778 return;
1779 }
1780
1781 d->addAttr(::new (S.Context) OverrideAttr());
1782}
1783
1784//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001785// Checker-specific attribute handlers.
1786//===----------------------------------------------------------------------===//
1787
1788static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &Attr,
1789 Sema &S) {
1790
Ted Kremenek3b204e42009-05-13 21:07:32 +00001791 QualType RetTy;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001792
Ted Kremenek3b204e42009-05-13 21:07:32 +00001793 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
1794 RetTy = MD->getResultType();
1795 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
1796 RetTy = FD->getResultType();
1797 else {
Ted Kremenekeebcf572009-08-19 23:56:48 +00001798 SourceLocation L = Attr.getLoc();
1799 S.Diag(d->getLocStart(), diag::warn_attribute_wrong_decl_type)
1800 << SourceRange(L, L) << Attr.getName() << 3 /* function or method */;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001801 return;
1802 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001803
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001804 if (!(S.Context.isObjCNSObjectType(RetTy) || RetTy->getAs<PointerType>()
John McCall9dd450b2009-09-21 23:43:11 +00001805 || RetTy->getAs<ObjCObjectPointerType>())) {
Ted Kremenekeebcf572009-08-19 23:56:48 +00001806 SourceLocation L = Attr.getLoc();
1807 S.Diag(d->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
1808 << SourceRange(L, L) << Attr.getName();
Mike Stumpd3bb5572009-07-24 19:02:52 +00001809 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00001810 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001811
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001812 switch (Attr.getKind()) {
1813 default:
1814 assert(0 && "invalid ownership attribute");
1815 return;
Ted Kremenekd9c66632010-02-18 00:05:45 +00001816 case AttributeList::AT_cf_returns_not_retained:
1817 d->addAttr(::new (S.Context) CFReturnsNotRetainedAttr());
1818 return;
1819 case AttributeList::AT_ns_returns_not_retained:
1820 d->addAttr(::new (S.Context) NSReturnsNotRetainedAttr());
1821 return;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001822 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001823 d->addAttr(::new (S.Context) CFReturnsRetainedAttr());
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001824 return;
1825 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001826 d->addAttr(::new (S.Context) NSReturnsRetainedAttr());
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001827 return;
1828 };
1829}
1830
Charles Davis163855f2010-02-16 18:27:26 +00001831static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
1832 return Attr.getKind() == AttributeList::AT_dllimport ||
1833 Attr.getKind() == AttributeList::AT_dllexport;
1834}
1835
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001836//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00001837// Top Level Sema Entry Points
1838//===----------------------------------------------------------------------===//
1839
Sebastian Redlfc24b632008-12-21 19:24:58 +00001840/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001841/// the attribute applies to decls. If the attribute is a type attribute, just
Alexis Hunt96d5c762009-11-21 08:43:09 +00001842/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
1843/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Mike Stumpd3bb5572009-07-24 19:02:52 +00001844static void ProcessDeclAttribute(Scope *scope, Decl *D,
1845 const AttributeList &Attr, Sema &S) {
Charles Davis163855f2010-02-16 18:27:26 +00001846 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
1847 // FIXME: Try to deal with other __declspec attributes!
Eli Friedman53339e02009-06-08 23:27:34 +00001848 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001849 switch (Attr.getKind()) {
Ted Kremenek1f672822010-02-18 03:08:58 +00001850 case AttributeList::AT_IBAction: HandleIBAction(D, Attr, S); break;
1851 case AttributeList::AT_IBOutlet: HandleIBOutlet(D, Attr, S); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001852 case AttributeList::AT_address_space:
Fariborz Jahanian257eac62009-02-18 17:52:36 +00001853 case AttributeList::AT_objc_gc:
John Thompson47981222009-12-04 21:51:28 +00001854 case AttributeList::AT_vector_size:
Mike Stumpd3bb5572009-07-24 19:02:52 +00001855 // Ignore these, these are type attributes, handled by
1856 // ProcessTypeAttributes.
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001857 break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001858 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
1859 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001860 case AttributeList::AT_always_inline:
Daniel Dunbar03a38442008-10-28 00:17:57 +00001861 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00001862 case AttributeList::AT_analyzer_noreturn:
Mike Stumpd3bb5572009-07-24 19:02:52 +00001863 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001864 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
1865 case AttributeList::AT_base_check: HandleBaseCheckAttr (D, Attr, S); break;
Alexis Hunt96d5c762009-11-21 08:43:09 +00001866 case AttributeList::AT_carries_dependency:
Alexis Hunt54a02542009-11-25 04:20:27 +00001867 HandleDependencyAttr (D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001868 case AttributeList::AT_constructor: HandleConstructorAttr (D, Attr, S); break;
1869 case AttributeList::AT_deprecated: HandleDeprecatedAttr (D, Attr, S); break;
1870 case AttributeList::AT_destructor: HandleDestructorAttr (D, Attr, S); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001871 case AttributeList::AT_ext_vector_type:
Douglas Gregor758a8692009-06-17 21:51:59 +00001872 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001873 break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001874 case AttributeList::AT_final: HandleFinalAttr (D, Attr, S); break;
1875 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
1876 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
1877 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr (D, Attr, S); break;
1878 case AttributeList::AT_hiding: HandleHidingAttr (D, Attr, S); break;
1879 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
1880 case AttributeList::AT_malloc: HandleMallocAttr (D, Attr, S); break;
1881 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
1882 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
1883 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
1884 case AttributeList::AT_override: HandleOverrideAttr (D, Attr, S); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001885
1886 // Checker-specific.
Ted Kremenekd9c66632010-02-18 00:05:45 +00001887 case AttributeList::AT_ns_returns_not_retained:
1888 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00001889 case AttributeList::AT_ns_returns_retained:
1890 case AttributeList::AT_cf_returns_retained:
1891 HandleNSReturnsRetainedAttr(D, Attr, S); break;
1892
Nate Begemanf2758702009-06-26 06:32:41 +00001893 case AttributeList::AT_reqd_wg_size:
1894 HandleReqdWorkGroupSize(D, Attr, S); break;
1895
Alexis Hunt54a02542009-11-25 04:20:27 +00001896 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
1897 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001898 case AttributeList::AT_unavailable: HandleUnavailableAttr (D, Attr, S); break;
1899 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
1900 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001901 case AttributeList::AT_visibility: HandleVisibilityAttr (D, Attr, S); break;
Chris Lattner237f2752009-02-14 07:37:35 +00001902 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
1903 break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001904 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001905 case AttributeList::AT_weakref: HandleWeakRefAttr (D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001906 case AttributeList::AT_weak_import: HandleWeakImportAttr (D, Attr, S); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001907 case AttributeList::AT_transparent_union:
1908 HandleTransparentUnionAttr(D, Attr, S);
1909 break;
Chris Lattner677a3582009-02-14 08:09:34 +00001910 case AttributeList::AT_objc_exception:
1911 HandleObjCExceptionAttr(D, Attr, S);
1912 break;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001913 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
Alexis Hunt54a02542009-11-25 04:20:27 +00001914 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
1915 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
1916 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
1917 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
1918 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
1919 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
1920 case AttributeList::AT_nodebug: HandleNoDebugAttr (D, Attr, S); break;
1921 case AttributeList::AT_noinline: HandleNoInlineAttr (D, Attr, S); break;
1922 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001923 case AttributeList::IgnoredAttribute:
Chris Lattner6d7ffe02009-04-25 18:44:54 +00001924 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Anders Carlssonb4f31342009-02-13 08:16:43 +00001925 // Just ignore
1926 break;
John McCallab26cfa2010-02-05 21:31:56 +00001927 case AttributeList::AT_stdcall:
1928 case AttributeList::AT_cdecl:
1929 case AttributeList::AT_fastcall:
1930 // These are all treated as type attributes.
1931 break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001932 default:
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00001933 // Ask target about the attribute.
1934 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
1935 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
1936 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001937 break;
1938 }
1939}
1940
1941/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
1942/// attribute list to the specified decl, ignoring any type attributes.
Douglas Gregor758a8692009-06-17 21:51:59 +00001943void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001944 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
1945 ProcessDeclAttribute(S, D, *l, *this);
1946 }
1947
1948 // GCC accepts
1949 // static int a9 __attribute__((weakref));
1950 // but that looks really pointless. We reject it.
1951 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
1952 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
1953 dyn_cast<NamedDecl>(D)->getNameAsString();
1954 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00001955 }
1956}
1957
Ryan Flynn7d470f32009-07-30 03:15:39 +00001958/// DeclClonePragmaWeak - clone existing decl (maybe definition),
1959/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump11289f42009-09-09 15:08:12 +00001960NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynnd963a492009-07-31 02:52:19 +00001961 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynn7d470f32009-07-30 03:15:39 +00001962 NamedDecl *NewD = 0;
1963 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
1964 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
1965 FD->getLocation(), DeclarationName(II),
John McCallbcd03502009-12-07 02:54:59 +00001966 FD->getType(), FD->getTypeSourceInfo());
John McCall3e11ebe2010-03-15 10:12:16 +00001967 if (FD->getQualifier()) {
1968 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
1969 NewFD->setQualifierInfo(FD->getQualifier(), FD->getQualifierRange());
1970 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00001971 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1972 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
1973 VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00001974 VD->getType(), VD->getTypeSourceInfo(),
Argyrios Kyrtzidis60ed5602009-08-19 01:27:57 +00001975 VD->getStorageClass());
John McCall3e11ebe2010-03-15 10:12:16 +00001976 if (VD->getQualifier()) {
1977 VarDecl *NewVD = cast<VarDecl>(NewD);
1978 NewVD->setQualifierInfo(VD->getQualifier(), VD->getQualifierRange());
1979 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00001980 }
1981 return NewD;
1982}
1983
1984/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
1985/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00001986void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00001987 if (W.getUsed()) return; // only do this once
1988 W.setUsed(true);
1989 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
1990 IdentifierInfo *NDId = ND->getIdentifier();
1991 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Ted Kremenek7f4945a2010-02-11 05:28:37 +00001992 NewD->addAttr(::new (Context) AliasAttr(Context, NDId->getName()));
Chris Lattnere6eab982009-09-08 18:10:11 +00001993 NewD->addAttr(::new (Context) WeakAttr());
1994 WeakTopLevelDecl.push_back(NewD);
1995 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
1996 // to insert Decl at TU scope, sorry.
1997 DeclContext *SavedContext = CurContext;
1998 CurContext = Context.getTranslationUnitDecl();
1999 PushOnScopeChains(NewD, S);
2000 CurContext = SavedContext;
2001 } else { // just add weak to existing
2002 ND->addAttr(::new (Context) WeakAttr());
Ryan Flynn7d470f32009-07-30 03:15:39 +00002003 }
2004}
2005
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002006/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
2007/// it, apply them to D. This is a bit tricky because PD can have attributes
2008/// specified in many different places, and we need to find and apply them all.
Douglas Gregor758a8692009-06-17 21:51:59 +00002009void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Ryan Flynn7d470f32009-07-30 03:15:39 +00002010 // Handle #pragma weak
2011 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
2012 if (ND->hasLinkage()) {
2013 WeakInfo W = WeakUndeclaredIdentifiers.lookup(ND->getIdentifier());
2014 if (W != WeakInfo()) {
Ryan Flynnd963a492009-07-31 02:52:19 +00002015 // Identifier referenced by #pragma weak before it was declared
2016 DeclApplyPragmaWeak(S, ND, W);
Ryan Flynn7d470f32009-07-30 03:15:39 +00002017 WeakUndeclaredIdentifiers[ND->getIdentifier()] = W;
2018 }
2019 }
2020 }
2021
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002022 // Apply decl attributes from the DeclSpec if present.
2023 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
Douglas Gregor758a8692009-06-17 21:51:59 +00002024 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002025
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002026 // Walk the declarator structure, applying decl attributes that were in a type
2027 // position to the decl itself. This handles cases like:
2028 // int *__attr__(x)** D;
2029 // when X is a decl attribute.
2030 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
2031 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Douglas Gregor758a8692009-06-17 21:51:59 +00002032 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002033
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002034 // Finally, apply any attributes on the decl itself.
2035 if (const AttributeList *Attrs = PD.getAttributes())
Douglas Gregor758a8692009-06-17 21:51:59 +00002036 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002037}
John McCall28a6aea2009-11-04 02:18:39 +00002038
2039/// PushParsingDeclaration - Enter a new "scope" of deprecation
2040/// warnings.
2041///
2042/// The state token we use is the start index of this scope
2043/// on the warning stack.
2044Action::ParsingDeclStackState Sema::PushParsingDeclaration() {
2045 ParsingDeclDepth++;
John McCall86121512010-01-27 03:50:35 +00002046 return (ParsingDeclStackState) DelayedDiagnostics.size();
2047}
2048
2049void Sema::PopParsingDeclaration(ParsingDeclStackState S, DeclPtrTy Ctx) {
2050 assert(ParsingDeclDepth > 0 && "empty ParsingDeclaration stack");
2051 ParsingDeclDepth--;
2052
2053 if (DelayedDiagnostics.empty())
2054 return;
2055
2056 unsigned SavedIndex = (unsigned) S;
2057 assert(SavedIndex <= DelayedDiagnostics.size() &&
2058 "saved index is out of bounds");
2059
John McCall1064d7e2010-03-16 05:22:47 +00002060 unsigned E = DelayedDiagnostics.size();
2061
John McCall86121512010-01-27 03:50:35 +00002062 // We only want to actually emit delayed diagnostics when we
2063 // successfully parsed a decl.
2064 Decl *D = Ctx ? Ctx.getAs<Decl>() : 0;
2065 if (D) {
2066 // We really do want to start with 0 here. We get one push for a
2067 // decl spec and another for each declarator; in a decl group like:
2068 // deprecated_typedef foo, *bar, baz();
2069 // only the declarator pops will be passed decls. This is correct;
2070 // we really do need to consider delayed diagnostics from the decl spec
2071 // for each of the different declarations.
John McCall1064d7e2010-03-16 05:22:47 +00002072 for (unsigned I = 0; I != E; ++I) {
John McCall86121512010-01-27 03:50:35 +00002073 if (DelayedDiagnostics[I].Triggered)
2074 continue;
2075
2076 switch (DelayedDiagnostics[I].Kind) {
2077 case DelayedDiagnostic::Deprecation:
2078 HandleDelayedDeprecationCheck(DelayedDiagnostics[I], D);
2079 break;
2080
2081 case DelayedDiagnostic::Access:
2082 HandleDelayedAccessCheck(DelayedDiagnostics[I], D);
2083 break;
2084 }
2085 }
2086 }
2087
John McCall1064d7e2010-03-16 05:22:47 +00002088 // Destroy all the delayed diagnostics we're about to pop off.
2089 for (unsigned I = SavedIndex; I != E; ++I)
2090 DelayedDiagnostics[I].destroy();
2091
John McCall86121512010-01-27 03:50:35 +00002092 DelayedDiagnostics.set_size(SavedIndex);
John McCall28a6aea2009-11-04 02:18:39 +00002093}
2094
2095static bool isDeclDeprecated(Decl *D) {
2096 do {
2097 if (D->hasAttr<DeprecatedAttr>())
2098 return true;
2099 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
2100 return false;
2101}
2102
John McCall86121512010-01-27 03:50:35 +00002103void Sema::HandleDelayedDeprecationCheck(Sema::DelayedDiagnostic &DD,
2104 Decl *Ctx) {
2105 if (isDeclDeprecated(Ctx))
John McCall28a6aea2009-11-04 02:18:39 +00002106 return;
2107
John McCall86121512010-01-27 03:50:35 +00002108 DD.Triggered = true;
2109 Diag(DD.Loc, diag::warn_deprecated)
2110 << DD.DeprecationData.Decl->getDeclName();
John McCall28a6aea2009-11-04 02:18:39 +00002111}
2112
2113void Sema::EmitDeprecationWarning(NamedDecl *D, SourceLocation Loc) {
2114 // Delay if we're currently parsing a declaration.
2115 if (ParsingDeclDepth) {
John McCall86121512010-01-27 03:50:35 +00002116 DelayedDiagnostics.push_back(DelayedDiagnostic::makeDeprecation(Loc, D));
John McCall28a6aea2009-11-04 02:18:39 +00002117 return;
2118 }
2119
2120 // Otherwise, don't warn if our current context is deprecated.
2121 if (isDeclDeprecated(cast<Decl>(CurContext)))
2122 return;
2123
2124 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
2125}