blob: f5babc19be1e28f4e38e957ac3eaee3e0badd5bb [file] [log] [blame]
Chris Lattner6b6b5372008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000016#include "clang/AST/DeclObjC.h"
17#include "clang/AST/Expr.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000018#include "clang/Basic/TargetInfo.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000019#include "clang/Parse/DeclSpec.h"
Ted Kremenek6e1eb872008-07-22 16:56:21 +000020#include <llvm/ADT/StringExtras.h>
Chris Lattner6b6b5372008-06-26 18:38:35 +000021using namespace clang;
22
Chris Lattnere5c5ee12008-06-29 00:16:31 +000023//===----------------------------------------------------------------------===//
24// Helper functions
25//===----------------------------------------------------------------------===//
26
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000027static const FunctionType *getFunctionType(Decl *d, bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000028 QualType Ty;
Chris Lattner6b6b5372008-06-26 18:38:35 +000029 if (ValueDecl *decl = dyn_cast<ValueDecl>(d))
30 Ty = decl->getType();
31 else if (FieldDecl *decl = dyn_cast<FieldDecl>(d))
32 Ty = decl->getType();
33 else if (TypedefDecl* decl = dyn_cast<TypedefDecl>(d))
34 Ty = decl->getUnderlyingType();
35 else
36 return 0;
37
38 if (Ty->isFunctionPointerType())
39 Ty = Ty->getAsPointerType()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000040 else if (blocksToo && Ty->isBlockPointerType())
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000041 Ty = Ty->getAsBlockPointerType()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000042
43 return Ty->getAsFunctionType();
Chris Lattner6b6b5372008-06-26 18:38:35 +000044}
45
Daniel Dunbar35682492008-09-26 04:12:28 +000046// FIXME: We should provide an abstraction around a method or function
47// to provide the following bits of information.
48
Daniel Dunbard3f2c102008-10-19 02:04:16 +000049/// isFunctionOrMethod - Return true if the given decl has function
50/// type (function or function-typed variable) or an Objective-C
51/// method.
Daniel Dunbar35682492008-09-26 04:12:28 +000052static bool isFunctionOrMethod(Decl *d) {
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000053 return getFunctionType(d, false) || isa<ObjCMethodDecl>(d);
Daniel Dunbar35682492008-09-26 04:12:28 +000054}
55
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000056/// isFunctionOrMethodOrBlock - Return true if the given decl has function
57/// type (function or function-typed variable) or an Objective-C
58/// method or a block.
59static bool isFunctionOrMethodOrBlock(Decl *d) {
60 if (isFunctionOrMethod(d))
61 return true;
62 // check for block is more involved.
63 if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
64 QualType Ty = V->getType();
65 return Ty->isBlockPointerType();
66 }
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000067 return isa<BlockDecl>(d);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000068}
69
Daniel Dunbard3f2c102008-10-19 02:04:16 +000070/// hasFunctionProto - Return true if the given decl has a argument
71/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000072/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Daniel Dunbard3f2c102008-10-19 02:04:16 +000073static bool hasFunctionProto(Decl *d) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000074 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000075 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000076 else {
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000077 assert(isa<ObjCMethodDecl>(d) || isa<BlockDecl>(d));
Daniel Dunbard3f2c102008-10-19 02:04:16 +000078 return true;
79 }
80}
81
82/// getFunctionOrMethodNumArgs - Return number of function or method
83/// arguments. It is an error to call this on a K&R function (use
84/// hasFunctionProto first).
Daniel Dunbar35682492008-09-26 04:12:28 +000085static unsigned getFunctionOrMethodNumArgs(Decl *d) {
Chris Lattner89951a82009-02-20 18:43:26 +000086 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000087 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000088 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
89 return BD->getNumParams();
Chris Lattner89951a82009-02-20 18:43:26 +000090 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +000091}
92
93static QualType getFunctionOrMethodArgType(Decl *d, unsigned Idx) {
Chris Lattner89951a82009-02-20 18:43:26 +000094 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000095 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +000096 if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
97 return BD->getParamDecl(Idx)->getType();
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000098
Chris Lattner89951a82009-02-20 18:43:26 +000099 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000100}
101
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000102static QualType getFunctionOrMethodResultType(Decl *d) {
103 if (const FunctionType *FnTy = getFunctionType(d))
104 return cast<FunctionProtoType>(FnTy)->getResultType();
105 return cast<ObjCMethodDecl>(d)->getResultType();
106}
107
Daniel Dunbar35682492008-09-26 04:12:28 +0000108static bool isFunctionOrMethodVariadic(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000109 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000110 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000111 return proto->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000112 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(d))
113 return BD->IsVariadic();
114 else {
Daniel Dunbar35682492008-09-26 04:12:28 +0000115 return cast<ObjCMethodDecl>(d)->isVariadic();
116 }
117}
118
Chris Lattner6b6b5372008-06-26 18:38:35 +0000119static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
Steve Naroff14108da2009-07-10 23:34:53 +0000120 const ObjCObjectPointerType *PT = T->getAsObjCObjectPointerType();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000121 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000122 return false;
123
Chris Lattnerb77792e2008-07-26 22:17:49 +0000124 const ObjCInterfaceType *ClsT =PT->getPointeeType()->getAsObjCInterfaceType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000125 if (!ClsT)
126 return false;
127
128 IdentifierInfo* ClsName = ClsT->getDecl()->getIdentifier();
129
130 // FIXME: Should we walk the chain of classes?
131 return ClsName == &Ctx.Idents.get("NSString") ||
132 ClsName == &Ctx.Idents.get("NSMutableString");
133}
134
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000135static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
136 const PointerType *PT = T->getAsPointerType();
137 if (!PT)
138 return false;
139
140 const RecordType *RT = PT->getPointeeType()->getAsRecordType();
141 if (!RT)
142 return false;
143
144 const RecordDecl *RD = RT->getDecl();
145 if (RD->getTagKind() != TagDecl::TK_struct)
146 return false;
147
148 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
149}
150
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000151//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000152// Attribute Implementations
153//===----------------------------------------------------------------------===//
154
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000155// FIXME: All this manual attribute parsing code is gross. At the
156// least add some helper functions to check most argument patterns (#
157// and types of args).
158
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000159static void HandleExtVectorTypeAttr(Scope *scope, Decl *d,
160 const AttributeList &Attr, Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000161 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
162 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000163 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000164 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000165 }
166
Chris Lattner6b6b5372008-06-26 18:38:35 +0000167 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000168
169 Expr *sizeExpr;
170
171 // Special case where the argument is a template id.
172 if (Attr.getParameterName()) {
173 sizeExpr = S.ActOnDeclarationNameExpr(scope, Attr.getLoc(),
174 Attr.getParameterName(),
175 false, 0, false).takeAs<Expr>();
176 } else {
177 // check the attribute arguments.
178 if (Attr.getNumArgs() != 1) {
179 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
180 return;
181 }
182 sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000183 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000184
185 // Instantiate/Install the vector type, and let Sema build the type for us.
186 // This will run the reguired checks.
187 QualType T = S.BuildExtVectorType(curType, S.Owned(sizeExpr), Attr.getLoc());
188 if (!T.isNull()) {
189 tDecl->setUnderlyingType(T);
190
191 // Remember this typedef decl, we will need it later for diagnostics.
192 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000193 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000194}
195
Chris Lattner065c5a82008-06-28 23:48:25 +0000196
197/// HandleVectorSizeAttribute - this attribute is only applicable to
198/// integral and float scalars, although arrays, pointers, and function
199/// return values are allowed in conjunction with this construct. Aggregates
200/// with this attribute are invalid, even if they are of the same size as a
201/// corresponding scalar.
202/// The raw attribute should contain precisely 1 argument, the vector size
203/// for the variable, measured in bytes. If curType and rawAttr are well
204/// formed, this routine will return a new vector type.
Chris Lattner803d0802008-06-29 00:43:07 +0000205static void HandleVectorSizeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner065c5a82008-06-28 23:48:25 +0000206 QualType CurType;
207 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
208 CurType = VD->getType();
209 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
210 CurType = TD->getUnderlyingType();
211 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000212 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
213 << "vector_size" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattner065c5a82008-06-28 23:48:25 +0000214 return;
215 }
216
217 // Check the attribute arugments.
Chris Lattner545dd342008-06-28 23:36:30 +0000218 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000219 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner065c5a82008-06-28 23:48:25 +0000220 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000221 }
Chris Lattner545dd342008-06-28 23:36:30 +0000222 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000223 llvm::APSInt vecSize(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000224 if (!sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000225 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
226 << "vector_size" << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000227 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000228 }
229 // navigate to the base type - we need to provide for vector pointers,
230 // vector arrays, and functions returning vectors.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000231 if (CurType->isPointerType() || CurType->isArrayType() ||
232 CurType->isFunctionType()) {
Chris Lattner2db15bd2009-05-13 04:00:12 +0000233 S.Diag(Attr.getLoc(), diag::err_unsupported_vector_size) << CurType;
234 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000235 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
236 do {
237 if (PointerType *PT = dyn_cast<PointerType>(canonType))
238 canonType = PT->getPointeeType().getTypePtr();
239 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
240 canonType = AT->getElementType().getTypePtr();
241 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
242 canonType = FT->getResultType().getTypePtr();
243 } while (canonType->isPointerType() || canonType->isArrayType() ||
244 canonType->isFunctionType());
245 */
246 }
Chris Lattner82afa2d2009-05-13 05:13:44 +0000247 // the base type must be integer or float, and can't already be a vector.
248 if (CurType->isVectorType() ||
249 (!CurType->isIntegerType() && !CurType->isRealFloatingType())) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000250 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
Chris Lattner065c5a82008-06-28 23:48:25 +0000251 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000252 }
Chris Lattner803d0802008-06-29 00:43:07 +0000253 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000254 // vecSize is specified in bytes - convert to bits.
255 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
256
257 // the vector size needs to be an integral multiple of the type size.
258 if (vectorSize % typeSize) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000259 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
260 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000261 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000262 }
263 if (vectorSize == 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000264 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
265 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000266 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000267 }
Chris Lattner065c5a82008-06-28 23:48:25 +0000268
269 // Success! Instantiate the vector type, the number of elements is > 0, and
270 // not required to be a power of 2, unlike GCC.
Chris Lattner803d0802008-06-29 00:43:07 +0000271 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize);
Chris Lattner065c5a82008-06-28 23:48:25 +0000272
273 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
274 VD->setType(CurType);
275 else
276 cast<TypedefDecl>(D)->setUnderlyingType(CurType);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000277}
278
Chris Lattner803d0802008-06-29 00:43:07 +0000279static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000280 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000281 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000282 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000283 return;
284 }
285
286 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000287 TD->addAttr(::new (S.Context) PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000288 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
289 // If the alignment is less than or equal to 8 bits, the packed attribute
290 // has no effect.
291 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000292 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000293 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000294 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000295 else
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000296 FD->addAttr(::new (S.Context) PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000297 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000298 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000299}
300
Ted Kremenek96329d42008-07-15 22:26:48 +0000301static void HandleIBOutletAttr(Decl *d, const AttributeList &Attr, Sema &S) {
302 // check the attribute arguments.
303 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000304 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek96329d42008-07-15 22:26:48 +0000305 return;
306 }
307
308 // The IBOutlet attribute only applies to instance variables of Objective-C
309 // classes.
Ted Kremenek32742602009-02-17 22:20:20 +0000310 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000311 d->addAttr(::new (S.Context) IBOutletAttr());
Ted Kremenek96329d42008-07-15 22:26:48 +0000312 else
Ted Kremenek32742602009-02-17 22:20:20 +0000313 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet);
Ted Kremenek96329d42008-07-15 22:26:48 +0000314}
315
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000316static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000317 // GCC ignores the nonnull attribute on K&R style function
318 // prototypes, so we ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000319 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000320 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000321 << Attr.getName() << 0 /*function*/;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000322 return;
323 }
324
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000325 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000326
327 // The nonnull attribute only applies to pointers.
328 llvm::SmallVector<unsigned, 10> NonNullArgs;
329
330 for (AttributeList::arg_iterator I=Attr.arg_begin(),
331 E=Attr.arg_end(); I!=E; ++I) {
332
333
334 // The argument must be an integer constant expression.
Ted Kremenekf5e88342008-12-04 19:38:33 +0000335 Expr *Ex = static_cast<Expr *>(*I);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000336 llvm::APSInt ArgNum(32);
337 if (!Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000338 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
339 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000340 return;
341 }
342
343 unsigned x = (unsigned) ArgNum.getZExtValue();
344
345 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000346 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000347 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000348 return;
349 }
Ted Kremenek465172f2008-07-21 22:09:15 +0000350
351 --x;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000352
353 // Is the function argument a pointer type?
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000354 QualType T = getFunctionOrMethodArgType(d, x);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000355 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000356 // FIXME: Should also highlight argument in decl.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000357 S.Diag(Attr.getLoc(), diag::err_nonnull_pointers_only)
358 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000359 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000360 }
361
362 NonNullArgs.push_back(x);
363 }
364
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000365 // If no arguments were specified to __attribute__((nonnull)) then all
366 // pointer arguments have a nonnull attribute.
367 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000368 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
369 QualType T = getFunctionOrMethodArgType(d, I);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000370 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000371 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000372 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000373
374 if (NonNullArgs.empty()) {
375 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
376 return;
377 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000378 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000379
380 unsigned* start = &NonNullArgs[0];
381 unsigned size = NonNullArgs.size();
382 std::sort(start, start + size);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000383 d->addAttr(::new (S.Context) NonNullAttr(start, size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000384}
385
Chris Lattner803d0802008-06-29 00:43:07 +0000386static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000387 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000388 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000389 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000390 return;
391 }
392
Chris Lattner545dd342008-06-28 23:36:30 +0000393 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000394 Arg = Arg->IgnoreParenCasts();
395 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
396
397 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000398 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000399 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000400 return;
401 }
402
403 const char *Alias = Str->getStrData();
404 unsigned AliasLen = Str->getByteLength();
405
406 // FIXME: check if target symbol exists in current file
407
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000408 d->addAttr(::new (S.Context) AliasAttr(std::string(Alias, AliasLen)));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000409}
410
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000411static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
412 Sema &S) {
413 // check the attribute arguments.
414 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000415 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000416 return;
417 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000418
Chris Lattnerc5197432009-04-14 17:02:11 +0000419 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +0000420 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000421 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +0000422 return;
423 }
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000424
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000425 d->addAttr(::new (S.Context) AlwaysInlineAttr());
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000426}
427
Ted Kremenekb7252322009-04-10 00:01:14 +0000428static bool HandleCommonNoReturnAttr(Decl *d, const AttributeList &Attr,
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000429 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000430 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000431 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000432 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenekb7252322009-04-10 00:01:14 +0000433 return false;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000434 }
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000435
Mike Stump19c30c02009-04-29 19:03:13 +0000436 if (!isFunctionOrMethod(d) && !isa<BlockDecl>(d)) {
437 ValueDecl *VD = dyn_cast<ValueDecl>(d);
438 if (VD == 0 || !VD->getType()->isBlockPointerType()) {
439 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000440 << Attr.getName() << 0 /*function*/;
Mike Stump19c30c02009-04-29 19:03:13 +0000441 return false;
442 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000443 }
444
Ted Kremenekb7252322009-04-10 00:01:14 +0000445 return true;
446}
447
448static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000449 if (HandleCommonNoReturnAttr(d, Attr, S))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000450 d->addAttr(::new (S.Context) NoReturnAttr());
Ted Kremenekb7252322009-04-10 00:01:14 +0000451}
452
453static void HandleAnalyzerNoReturnAttr(Decl *d, const AttributeList &Attr,
454 Sema &S) {
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000455 if (HandleCommonNoReturnAttr(d, Attr, S))
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000456 d->addAttr(::new (S.Context) AnalyzerNoReturnAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000457}
458
Ted Kremenek73798892008-07-25 04:39:19 +0000459static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
460 // check the attribute arguments.
461 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000462 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000463 return;
464 }
465
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000466 if (!isa<VarDecl>(d) && !isFunctionOrMethod(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000467 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000468 << Attr.getName() << 2 /*variable and function*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000469 return;
470 }
471
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000472 d->addAttr(::new (S.Context) UnusedAttr());
Ted Kremenek73798892008-07-25 04:39:19 +0000473}
474
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000475static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
476 // check the attribute arguments.
477 if (Attr.getNumArgs() != 0) {
478 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
479 return;
480 }
481
482 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000483 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000484 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
485 return;
486 }
487 } else if (!isFunctionOrMethod(d)) {
488 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000489 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000490 return;
491 }
492
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000493 d->addAttr(::new (S.Context) UsedAttr());
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000494}
495
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000496static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
497 // check the attribute arguments.
498 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000499 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
500 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000501 return;
502 }
503
504 int priority = 65535; // FIXME: Do not hardcode such constants.
505 if (Attr.getNumArgs() > 0) {
506 Expr *E = static_cast<Expr *>(Attr.getArg(0));
507 llvm::APSInt Idx(32);
508 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000509 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000510 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000511 return;
512 }
513 priority = Idx.getZExtValue();
514 }
515
Chris Lattnerc5197432009-04-14 17:02:11 +0000516 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000517 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000518 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000519 return;
520 }
521
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000522 d->addAttr(::new (S.Context) ConstructorAttr(priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000523}
524
525static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
526 // check the attribute arguments.
527 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000528 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
529 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000530 return;
531 }
532
533 int priority = 65535; // FIXME: Do not hardcode such constants.
534 if (Attr.getNumArgs() > 0) {
535 Expr *E = static_cast<Expr *>(Attr.getArg(0));
536 llvm::APSInt Idx(32);
537 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000538 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000539 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000540 return;
541 }
542 priority = Idx.getZExtValue();
543 }
544
Anders Carlsson6782fc62008-08-22 22:10:48 +0000545 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000546 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000547 << Attr.getName() << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000548 return;
549 }
550
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000551 d->addAttr(::new (S.Context) DestructorAttr(priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000552}
553
Chris Lattner803d0802008-06-29 00:43:07 +0000554static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000555 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000556 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000557 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000558 return;
559 }
560
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000561 d->addAttr(::new (S.Context) DeprecatedAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000562}
563
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000564static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
565 // check the attribute arguments.
566 if (Attr.getNumArgs() != 0) {
567 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
568 return;
569 }
570
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000571 d->addAttr(::new (S.Context) UnavailableAttr());
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000572}
573
Chris Lattner803d0802008-06-29 00:43:07 +0000574static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000575 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000576 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000577 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000578 return;
579 }
580
Chris Lattner545dd342008-06-28 23:36:30 +0000581 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000582 Arg = Arg->IgnoreParenCasts();
583 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
584
585 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000586 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000587 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000588 return;
589 }
590
591 const char *TypeStr = Str->getStrData();
592 unsigned TypeLen = Str->getByteLength();
593 VisibilityAttr::VisibilityTypes type;
594
595 if (TypeLen == 7 && !memcmp(TypeStr, "default", 7))
596 type = VisibilityAttr::DefaultVisibility;
597 else if (TypeLen == 6 && !memcmp(TypeStr, "hidden", 6))
598 type = VisibilityAttr::HiddenVisibility;
599 else if (TypeLen == 8 && !memcmp(TypeStr, "internal", 8))
600 type = VisibilityAttr::HiddenVisibility; // FIXME
601 else if (TypeLen == 9 && !memcmp(TypeStr, "protected", 9))
602 type = VisibilityAttr::ProtectedVisibility;
603 else {
Chris Lattner08631c52008-11-23 21:45:46 +0000604 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000605 return;
606 }
607
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000608 d->addAttr(::new (S.Context) VisibilityAttr(type));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000609}
610
Chris Lattner0db29ec2009-02-14 08:09:34 +0000611static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
612 Sema &S) {
613 if (Attr.getNumArgs() != 0) {
614 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
615 return;
616 }
617
618 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
619 if (OCI == 0) {
620 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
621 return;
622 }
623
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000624 D->addAttr(::new (S.Context) ObjCExceptionAttr());
Chris Lattner0db29ec2009-02-14 08:09:34 +0000625}
626
627static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000628 if (Attr.getNumArgs() != 0) {
629 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
630 return;
631 }
Chris Lattner0db29ec2009-02-14 08:09:34 +0000632 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000633 QualType T = TD->getUnderlyingType();
634 if (!T->isPointerType() ||
635 !T->getAsPointerType()->getPointeeType()->isRecordType()) {
636 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
637 return;
638 }
639 }
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000640 D->addAttr(::new (S.Context) ObjCNSObjectAttr());
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000641}
642
Douglas Gregorf9201e02009-02-11 23:02:49 +0000643static void
644HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
645 if (Attr.getNumArgs() != 0) {
646 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
647 return;
648 }
649
650 if (!isa<FunctionDecl>(D)) {
651 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
652 return;
653 }
654
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000655 D->addAttr(::new (S.Context) OverloadableAttr());
Douglas Gregorf9201e02009-02-11 23:02:49 +0000656}
657
Steve Naroff9eae5762008-09-18 16:44:58 +0000658static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
659 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000660 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000661 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000662 return;
663 }
664
665 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000666 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000667 return;
668 }
Steve Naroff9eae5762008-09-18 16:44:58 +0000669
670 BlocksAttr::BlocksAttrTypes type;
Chris Lattner92e62b02008-11-20 04:42:34 +0000671 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +0000672 type = BlocksAttr::ByRef;
673 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000674 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +0000675 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +0000676 return;
677 }
678
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000679 d->addAttr(::new (S.Context) BlocksAttr(type));
Steve Naroff9eae5762008-09-18 16:44:58 +0000680}
681
Anders Carlsson77091822008-10-05 18:05:59 +0000682static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
683 // check the attribute arguments.
684 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000685 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
686 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +0000687 return;
688 }
689
690 int sentinel = 0;
691 if (Attr.getNumArgs() > 0) {
692 Expr *E = static_cast<Expr *>(Attr.getArg(0));
693 llvm::APSInt Idx(32);
694 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000695 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000696 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000697 return;
698 }
699 sentinel = Idx.getZExtValue();
700
701 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000702 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
703 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000704 return;
705 }
706 }
707
708 int nullPos = 0;
709 if (Attr.getNumArgs() > 1) {
710 Expr *E = static_cast<Expr *>(Attr.getArg(1));
711 llvm::APSInt Idx(32);
712 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000713 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000714 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000715 return;
716 }
717 nullPos = Idx.getZExtValue();
718
719 if (nullPos > 1 || nullPos < 0) {
720 // FIXME: This error message could be improved, it would be nice
721 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000722 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
723 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000724 return;
725 }
726 }
727
728 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
Chris Lattner897cd902009-03-17 23:03:47 +0000729 const FunctionType *FT = FD->getType()->getAsFunctionType();
730 assert(FT && "FunctionDecl has non-function type?");
731
732 if (isa<FunctionNoProtoType>(FT)) {
733 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
734 return;
735 }
736
737 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +0000738 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +0000739 return;
740 }
741 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
742 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +0000743 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +0000744 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +0000745 }
746 } else if (isa<BlockDecl>(d)) {
747 // Note! BlockDecl is typeless. Variadic diagnostics
748 // will be issued by the caller.
749 ;
750 } else if (const VarDecl *V = dyn_cast<VarDecl>(d)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +0000751 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000752 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
753 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(d)
754 : Ty->getAsBlockPointerType()->getPointeeType()->getAsFunctionType();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +0000755 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +0000756 int m = Ty->isFunctionPointerType() ? 0 : 1;
757 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +0000758 return;
759 }
760 }
761 else {
762 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +0000763 << Attr.getName() << 6 /*function, method or block */;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +0000764 return;
765 }
Anders Carlsson77091822008-10-05 18:05:59 +0000766 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000767 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Fariborz Jahanianffb00812009-05-14 20:57:28 +0000768 << Attr.getName() << 6 /*function, method or block */;
Anders Carlsson77091822008-10-05 18:05:59 +0000769 return;
770 }
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000771 d->addAttr(::new (S.Context) SentinelAttr(sentinel, nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +0000772}
773
Chris Lattner026dc962009-02-14 07:37:35 +0000774static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
775 // check the attribute arguments.
776 if (Attr.getNumArgs() != 0) {
777 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
778 return;
779 }
780
781 // TODO: could also be applied to methods?
782 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
783 if (!Fn) {
784 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000785 << Attr.getName() << 0 /*function*/;
Chris Lattner026dc962009-02-14 07:37:35 +0000786 return;
787 }
788
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000789 Fn->addAttr(::new (S.Context) WarnUnusedResultAttr());
Chris Lattner026dc962009-02-14 07:37:35 +0000790}
791
792static void HandleWeakAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000793 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000794 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000795 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000796 return;
797 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000798
799 // TODO: could also be applied to methods?
800 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
801 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000802 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000803 return;
804 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000805
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000806 D->addAttr(::new (S.Context) WeakAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000807}
808
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000809static void HandleWeakImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
810 // check the attribute arguments.
811 if (Attr.getNumArgs() != 0) {
812 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
813 return;
814 }
815
816 // weak_import only applies to variable & function declarations.
817 bool isDef = false;
818 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
819 isDef = (!VD->hasExternalStorage() || VD->getInit());
820 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000821 isDef = FD->getBody();
Fariborz Jahaniand4edddd2009-05-04 19:35:12 +0000822 } else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D)) {
823 // We ignore weak import on properties and methods
Mike Stump1c90f4d2009-03-18 17:39:31 +0000824 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000825 } else {
826 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000827 << Attr.getName() << 2 /*variable and function*/;
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000828 return;
829 }
830
831 // Merge should handle any subsequent violations.
832 if (isDef) {
833 S.Diag(Attr.getLoc(),
834 diag::warn_attribute_weak_import_invalid_on_definition)
835 << "weak_import" << 2 /*variable and function*/;
836 return;
837 }
838
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000839 D->addAttr(::new (S.Context) WeakImportAttr());
Daniel Dunbar6e775db2009-03-06 06:39:57 +0000840}
841
Chris Lattner026dc962009-02-14 07:37:35 +0000842static void HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000843 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000844 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000845 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000846 return;
847 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000848
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000849 // Attribute can be applied only to functions or variables.
Chris Lattner026dc962009-02-14 07:37:35 +0000850 if (isa<VarDecl>(D)) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000851 D->addAttr(::new (S.Context) DLLImportAttr());
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000852 return;
853 }
854
Chris Lattner026dc962009-02-14 07:37:35 +0000855 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000856 if (!FD) {
857 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000858 << Attr.getName() << 2 /*variable and function*/;
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000859 return;
860 }
861
862 // Currently, the dllimport attribute is ignored for inlined functions.
863 // Warning is emitted.
864 if (FD->isInline()) {
865 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
866 return;
867 }
868
869 // The attribute is also overridden by a subsequent declaration as dllexport.
870 // Warning is emitted.
871 for (AttributeList *nextAttr = Attr.getNext(); nextAttr;
872 nextAttr = nextAttr->getNext()) {
873 if (nextAttr->getKind() == AttributeList::AT_dllexport) {
874 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
875 return;
876 }
877 }
878
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000879 if (D->getAttr<DLLExportAttr>()) {
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000880 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
881 return;
882 }
883
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000884 D->addAttr(::new (S.Context) DLLImportAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000885}
886
Chris Lattner026dc962009-02-14 07:37:35 +0000887static void HandleDLLExportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000888 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000889 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000890 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000891 return;
892 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000893
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000894 // Attribute can be applied only to functions or variables.
Chris Lattner026dc962009-02-14 07:37:35 +0000895 if (isa<VarDecl>(D)) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000896 D->addAttr(::new (S.Context) DLLExportAttr());
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000897 return;
898 }
899
Chris Lattner026dc962009-02-14 07:37:35 +0000900 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000901 if (!FD) {
902 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000903 << Attr.getName() << 2 /*variable and function*/;
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000904 return;
905 }
906
907 // Currently, the dllexport attribute is ignored for inlined functions,
908 // unless the -fkeep-inline-functions flag has been used. Warning is emitted;
909 if (FD->isInline()) {
910 // FIXME: ... unless the -fkeep-inline-functions flag has been used.
911 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllexport";
912 return;
913 }
914
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000915 D->addAttr(::new (S.Context) DLLExportAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000916}
917
Nate Begeman6f3d8382009-06-26 06:32:41 +0000918static void HandleReqdWorkGroupSize(Decl *D, const AttributeList &Attr,
919 Sema &S) {
920 // Attribute has 3 arguments.
921 if (Attr.getNumArgs() != 3) {
922 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
923 return;
924 }
925
926 unsigned WGSize[3];
927 for (unsigned i = 0; i < 3; ++i) {
928 Expr *E = static_cast<Expr *>(Attr.getArg(i));
929 llvm::APSInt ArgNum(32);
930 if (!E->isIntegerConstantExpr(ArgNum, S.Context)) {
931 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
932 << "reqd_work_group_size" << E->getSourceRange();
933 return;
934 }
935 WGSize[i] = (unsigned) ArgNum.getZExtValue();
936 }
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000937 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +0000938 WGSize[2]));
939}
940
Chris Lattner026dc962009-02-14 07:37:35 +0000941static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +0000942 // Attribute has no arguments.
943 if (Attr.getNumArgs() != 1) {
944 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
945 return;
946 }
947
948 // Make sure that there is a string literal as the sections's single
949 // argument.
950 StringLiteral *SE =
951 dyn_cast<StringLiteral>(static_cast<Expr *>(Attr.getArg(0)));
952 if (!SE) {
953 // FIXME
954 S.Diag(Attr.getLoc(), diag::err_attribute_annotate_no_string);
955 return;
956 }
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000957 D->addAttr(::new (S.Context) SectionAttr(std::string(SE->getStrData(),
Chris Lattner0b2b6e12009-03-04 06:34:08 +0000958 SE->getByteLength())));
Daniel Dunbar17f194f2009-02-12 17:28:23 +0000959}
960
Chris Lattner803d0802008-06-29 00:43:07 +0000961static void HandleStdCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000962 // Attribute has no arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000963 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000964 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000965 return;
966 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000967
968 // Attribute can be applied only to functions.
969 if (!isa<FunctionDecl>(d)) {
970 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000971 << Attr.getName() << 0 /*function*/;
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000972 return;
973 }
974
975 // stdcall and fastcall attributes are mutually incompatible.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000976 if (d->getAttr<FastCallAttr>()) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000977 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
978 << "stdcall" << "fastcall";
979 return;
980 }
981
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000982 d->addAttr(::new (S.Context) StdCallAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000983}
984
Chris Lattner803d0802008-06-29 00:43:07 +0000985static void HandleFastCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000986 // Attribute has no arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000987 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000988 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000989 return;
990 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000991
992 if (!isa<FunctionDecl>(d)) {
993 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +0000994 << Attr.getName() << 0 /*function*/;
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000995 return;
996 }
997
998 // stdcall and fastcall attributes are mutually incompatible.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000999 if (d->getAttr<StdCallAttr>()) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +00001000 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1001 << "fastcall" << "stdcall";
1002 return;
1003 }
1004
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001005 d->addAttr(::new (S.Context) FastCallAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +00001006}
1007
Chris Lattner803d0802008-06-29 00:43:07 +00001008static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001009 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001010 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001011 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001012 return;
1013 }
1014
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001015 d->addAttr(::new (S.Context) NoThrowAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +00001016}
1017
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001018static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1019 // check the attribute arguments.
1020 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001021 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001022 return;
1023 }
1024
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001025 d->addAttr(::new (S.Context) ConstAttr());
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001026}
1027
1028static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1029 // check the attribute arguments.
1030 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001031 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001032 return;
1033 }
1034
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001035 d->addAttr(::new (S.Context) PureAttr());
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001036}
1037
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001038static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001039 // Match gcc which ignores cleanup attrs when compiling C++.
1040 if (S.getLangOptions().CPlusPlus)
1041 return;
1042
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001043 if (!Attr.getParameterName()) {
1044 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1045 return;
1046 }
1047
1048 if (Attr.getNumArgs() != 0) {
1049 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1050 return;
1051 }
1052
1053 VarDecl *VD = dyn_cast<VarDecl>(d);
1054
1055 if (!VD || !VD->hasLocalStorage()) {
1056 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1057 return;
1058 }
1059
1060 // Look up the function
Douglas Gregor47b9a1c2009-02-04 17:27:36 +00001061 NamedDecl *CleanupDecl = S.LookupName(S.TUScope, Attr.getParameterName(),
1062 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001063 if (!CleanupDecl) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001064 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001065 Attr.getParameterName();
1066 return;
1067 }
1068
1069 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1070 if (!FD) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001071 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_function) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001072 Attr.getParameterName();
1073 return;
1074 }
1075
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001076 if (FD->getNumParams() != 1) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001077 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_func_must_take_one_arg) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001078 Attr.getParameterName();
1079 return;
1080 }
1081
Anders Carlsson89941c12009-02-07 23:16:50 +00001082 // We're currently more strict than GCC about what function types we accept.
1083 // If this ever proves to be a problem it should be easy to fix.
1084 QualType Ty = S.Context.getPointerType(VD->getType());
1085 QualType ParamTy = FD->getParamDecl(0)->getType();
Eli Friedmand5e3e8e2009-04-26 01:30:08 +00001086 if (S.CheckAssignmentConstraints(ParamTy, Ty) != Sema::Compatible) {
Anders Carlsson89941c12009-02-07 23:16:50 +00001087 S.Diag(Attr.getLoc(),
1088 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
1089 Attr.getParameterName() << ParamTy << Ty;
1090 return;
1091 }
1092
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001093 d->addAttr(::new (S.Context) CleanupAttr(FD));
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001094}
1095
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001096/// Handle __attribute__((format_arg((idx)))) attribute
1097/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
1098static void HandleFormatArgAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1099 if (Attr.getNumArgs() != 1) {
1100 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1101 return;
1102 }
1103 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
1104 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1105 << Attr.getName() << 0 /*function*/;
1106 return;
1107 }
1108 // FIXME: in C++ the implicit 'this' function parameter also counts.
1109 // this is needed in order to be compatible with GCC
1110 // the index must start with 1.
1111 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
1112 unsigned FirstIdx = 1;
1113 // checks for the 2nd argument
1114 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
1115 llvm::APSInt Idx(32);
1116 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
1117 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
1118 << "format" << 2 << IdxExpr->getSourceRange();
1119 return;
1120 }
1121
1122 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
1123 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1124 << "format" << 2 << IdxExpr->getSourceRange();
1125 return;
1126 }
1127
1128 unsigned ArgIdx = Idx.getZExtValue() - 1;
1129
1130 // make sure the format string is really a string
1131 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
1132
1133 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
1134 if (not_nsstring_type &&
1135 !isCFStringType(Ty, S.Context) &&
1136 (!Ty->isPointerType() ||
1137 !Ty->getAsPointerType()->getPointeeType()->isCharType())) {
1138 // FIXME: Should highlight the actual expression that has the wrong type.
1139 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1140 << (not_nsstring_type ? "a string type" : "an NSString")
1141 << IdxExpr->getSourceRange();
1142 return;
1143 }
1144 Ty = getFunctionOrMethodResultType(d);
1145 if (!isNSStringType(Ty, S.Context) &&
1146 !isCFStringType(Ty, S.Context) &&
1147 (!Ty->isPointerType() ||
1148 !Ty->getAsPointerType()->getPointeeType()->isCharType())) {
1149 // FIXME: Should highlight the actual expression that has the wrong type.
1150 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
1151 << (not_nsstring_type ? "string type" : "NSString")
1152 << IdxExpr->getSourceRange();
1153 return;
1154 }
1155
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001156 d->addAttr(::new (S.Context) FormatArgAttr(Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001157}
1158
Chris Lattner6b6b5372008-06-26 18:38:35 +00001159/// Handle __attribute__((format(type,idx,firstarg))) attributes
1160/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +00001161static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001162
Chris Lattner545dd342008-06-28 23:36:30 +00001163 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001164 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001165 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001166 return;
1167 }
1168
Chris Lattner545dd342008-06-28 23:36:30 +00001169 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001170 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001171 return;
1172 }
1173
Fariborz Jahanian620d89c2009-05-15 23:15:03 +00001174 if (!isFunctionOrMethodOrBlock(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001175 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001176 << Attr.getName() << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001177 return;
1178 }
1179
1180 // FIXME: in C++ the implicit 'this' function parameter also counts.
1181 // this is needed in order to be compatible with GCC
1182 // the index must start in 1 and the limit is numargs+1
Daniel Dunbar35682492008-09-26 04:12:28 +00001183 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001184 unsigned FirstIdx = 1;
1185
Chris Lattner545dd342008-06-28 23:36:30 +00001186 const char *Format = Attr.getParameterName()->getName();
1187 unsigned FormatLen = Attr.getParameterName()->getLength();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001188
1189 // Normalize the argument, __foo__ becomes foo.
1190 if (FormatLen > 4 && Format[0] == '_' && Format[1] == '_' &&
1191 Format[FormatLen - 2] == '_' && Format[FormatLen - 1] == '_') {
1192 Format += 2;
1193 FormatLen -= 4;
1194 }
1195
1196 bool Supported = false;
1197 bool is_NSString = false;
1198 bool is_strftime = false;
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001199 bool is_CFString = false;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001200
1201 switch (FormatLen) {
1202 default: break;
Chris Lattner803d0802008-06-29 00:43:07 +00001203 case 5: Supported = !memcmp(Format, "scanf", 5); break;
1204 case 6: Supported = !memcmp(Format, "printf", 6); break;
1205 case 7: Supported = !memcmp(Format, "strfmon", 7); break;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001206 case 8:
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001207 Supported = (is_strftime = !memcmp(Format, "strftime", 8)) ||
1208 (is_NSString = !memcmp(Format, "NSString", 8)) ||
1209 (is_CFString = !memcmp(Format, "CFString", 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001210 break;
1211 }
1212
1213 if (!Supported) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001214 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1215 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001216 return;
1217 }
1218
1219 // checks for the 2nd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001220 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner803d0802008-06-29 00:43:07 +00001221 llvm::APSInt Idx(32);
1222 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001223 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001224 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001225 return;
1226 }
1227
1228 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001229 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001230 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001231 return;
1232 }
1233
1234 // FIXME: Do we need to bounds check?
1235 unsigned ArgIdx = Idx.getZExtValue() - 1;
1236
1237 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001238 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001239
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001240 if (is_CFString) {
1241 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001242 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1243 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001244 return;
1245 }
1246 } else if (is_NSString) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001247 // FIXME: do we need to check if the type is NSString*? What are the
1248 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001249 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001250 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001251 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1252 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001253 return;
1254 }
1255 } else if (!Ty->isPointerType() ||
1256 !Ty->getAsPointerType()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001257 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001258 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1259 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001260 return;
1261 }
1262
1263 // check the 3rd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001264 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattner803d0802008-06-29 00:43:07 +00001265 llvm::APSInt FirstArg(32);
1266 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001267 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001268 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001269 return;
1270 }
1271
1272 // check if the function is variadic if the 3rd argument non-zero
1273 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001274 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001275 ++NumArgs; // +1 for ...
1276 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001277 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001278 return;
1279 }
1280 }
1281
Chris Lattner3c73c412008-11-19 08:23:25 +00001282 // strftime requires FirstArg to be 0 because it doesn't read from any
1283 // variable the input is just the current time + the format string.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001284 if (is_strftime) {
1285 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001286 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1287 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001288 return;
1289 }
1290 // if 0 it disables parameter checking (to use with e.g. va_list)
1291 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001292 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001293 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001294 return;
1295 }
1296
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001297 d->addAttr(::new (S.Context) FormatAttr(std::string(Format, FormatLen),
Chris Lattner6b6b5372008-06-26 18:38:35 +00001298 Idx.getZExtValue(), FirstArg.getZExtValue()));
1299}
1300
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001301static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1302 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001303 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001304 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001305 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001306 return;
1307 }
1308
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001309 // Try to find the underlying union declaration.
1310 RecordDecl *RD = 0;
Eli Friedmanbc887452008-09-02 05:19:23 +00001311 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001312 if (TD && TD->getUnderlyingType()->isUnionType())
1313 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
1314 else
1315 RD = dyn_cast<RecordDecl>(d);
1316
1317 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001318 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001319 << Attr.getName() << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001320 return;
1321 }
1322
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001323 if (!RD->isDefinition()) {
1324 S.Diag(Attr.getLoc(),
1325 diag::warn_transparent_union_attribute_not_definition);
1326 return;
1327 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001328
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001329 RecordDecl::field_iterator Field = RD->field_begin(),
1330 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001331 if (Field == FieldEnd) {
1332 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
1333 return;
1334 }
Eli Friedmanbc887452008-09-02 05:19:23 +00001335
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00001336 FieldDecl *FirstField = *Field;
1337 QualType FirstType = FirstField->getType();
1338 if (FirstType->isFloatingType() || FirstType->isVectorType()) {
1339 S.Diag(FirstField->getLocation(),
1340 diag::warn_transparent_union_attribute_floating);
1341 return;
1342 }
1343
1344 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
1345 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
1346 for (; Field != FieldEnd; ++Field) {
1347 QualType FieldType = Field->getType();
1348 if (S.Context.getTypeSize(FieldType) != FirstSize ||
1349 S.Context.getTypeAlign(FieldType) != FirstAlign) {
1350 // Warn if we drop the attribute.
1351 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
1352 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
1353 : S.Context.getTypeAlign(FieldType);
1354 S.Diag(Field->getLocation(),
1355 diag::warn_transparent_union_attribute_field_size_align)
1356 << isSize << Field->getDeclName() << FieldBits;
1357 unsigned FirstBits = isSize? FirstSize : FirstAlign;
1358 S.Diag(FirstField->getLocation(),
1359 diag::note_transparent_union_first_field_size_align)
1360 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00001361 return;
1362 }
1363 }
1364
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001365 RD->addAttr(::new (S.Context) TransparentUnionAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +00001366}
1367
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001368static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001369 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001370 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001371 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001372 return;
1373 }
Chris Lattner545dd342008-06-28 23:36:30 +00001374 Expr *argExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001375 StringLiteral *SE = dyn_cast<StringLiteral>(argExpr);
1376
1377 // Make sure that there is a string literal as the annotation's single
1378 // argument.
1379 if (!SE) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001380 S.Diag(Attr.getLoc(), diag::err_attribute_annotate_no_string);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001381 return;
1382 }
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001383 d->addAttr(::new (S.Context) AnnotateAttr(std::string(SE->getStrData(),
Chris Lattner0b2b6e12009-03-04 06:34:08 +00001384 SE->getByteLength())));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001385}
1386
Chris Lattner803d0802008-06-29 00:43:07 +00001387static void HandleAlignedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001388 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001389 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001390 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001391 return;
1392 }
1393
1394 unsigned Align = 0;
Chris Lattner545dd342008-06-28 23:36:30 +00001395 if (Attr.getNumArgs() == 0) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001396 // FIXME: This should be the target specific maximum alignment.
Daniel Dunbar7549c552009-02-18 20:06:09 +00001397 // (For now we just use 128 bits which is the maximum on X86).
Chris Lattner6b6b5372008-06-26 18:38:35 +00001398 Align = 128;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001399 d->addAttr(::new (S.Context) AlignedAttr(Align));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001400 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001401 }
Chris Lattner49e2d342008-06-28 23:50:44 +00001402
1403 Expr *alignmentExpr = static_cast<Expr *>(Attr.getArg(0));
1404 llvm::APSInt Alignment(32);
Chris Lattner803d0802008-06-29 00:43:07 +00001405 if (!alignmentExpr->isIntegerConstantExpr(Alignment, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001406 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1407 << "aligned" << alignmentExpr->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001408 return;
1409 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001410 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
1411 S.Diag(Attr.getLoc(), diag::err_attribute_aligned_not_power_of_two)
1412 << alignmentExpr->getSourceRange();
1413 return;
1414 }
1415
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001416 d->addAttr(::new (S.Context) AlignedAttr(Alignment.getZExtValue() * 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001417}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001418
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001419/// HandleModeAttr - This attribute modifies the width of a decl with
Chris Lattner065c5a82008-06-28 23:48:25 +00001420/// primitive type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001421///
1422/// Despite what would be logical, the mode attribute is a decl attribute,
1423/// not a type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make
1424/// 'G' be HImode, not an intermediate pointer.
1425///
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001426static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001427 // This attribute isn't documented, but glibc uses it. It changes
1428 // the width of an int or unsigned int to the specified size.
1429
1430 // Check that there aren't any arguments
1431 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001432 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001433 return;
1434 }
1435
1436 IdentifierInfo *Name = Attr.getParameterName();
1437 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001438 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001439 return;
1440 }
1441 const char *Str = Name->getName();
1442 unsigned Len = Name->getLength();
1443
1444 // Normalize the attribute name, __foo__ becomes foo.
1445 if (Len > 4 && Str[0] == '_' && Str[1] == '_' &&
1446 Str[Len - 2] == '_' && Str[Len - 1] == '_') {
1447 Str += 2;
1448 Len -= 4;
1449 }
1450
1451 unsigned DestWidth = 0;
1452 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00001453 bool ComplexMode = false;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001454 switch (Len) {
1455 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00001456 switch (Str[0]) {
1457 case 'Q': DestWidth = 8; break;
1458 case 'H': DestWidth = 16; break;
1459 case 'S': DestWidth = 32; break;
1460 case 'D': DestWidth = 64; break;
1461 case 'X': DestWidth = 96; break;
1462 case 'T': DestWidth = 128; break;
1463 }
1464 if (Str[1] == 'F') {
1465 IntegerMode = false;
1466 } else if (Str[1] == 'C') {
1467 IntegerMode = false;
1468 ComplexMode = true;
1469 } else if (Str[1] != 'I') {
1470 DestWidth = 0;
1471 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001472 break;
1473 case 4:
1474 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1475 // pointer on PIC16 and other embedded platforms.
1476 if (!memcmp(Str, "word", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001477 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001478 if (!memcmp(Str, "byte", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001479 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001480 break;
1481 case 7:
1482 if (!memcmp(Str, "pointer", 7))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001483 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001484 break;
1485 }
1486
1487 QualType OldTy;
1488 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1489 OldTy = TD->getUnderlyingType();
1490 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1491 OldTy = VD->getType();
1492 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001493 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1494 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001495 return;
1496 }
Eli Friedman73397492009-03-03 06:41:03 +00001497
1498 if (!OldTy->getAsBuiltinType() && !OldTy->isComplexType())
1499 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
1500 else if (IntegerMode) {
1501 if (!OldTy->isIntegralType())
1502 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1503 } else if (ComplexMode) {
1504 if (!OldTy->isComplexType())
1505 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1506 } else {
1507 if (!OldTy->isFloatingType())
1508 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
1509 }
1510
Mike Stump390b4cc2009-05-16 07:39:55 +00001511 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
1512 // and friends, at least with glibc.
1513 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
1514 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00001515 // FIXME: Make sure floating-point mappings are accurate
1516 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00001517 QualType NewTy;
1518 switch (DestWidth) {
1519 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00001520 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001521 return;
1522 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00001523 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001524 return;
1525 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00001526 if (!IntegerMode) {
1527 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1528 return;
1529 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001530 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001531 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001532 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001533 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001534 break;
1535 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00001536 if (!IntegerMode) {
1537 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1538 return;
1539 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00001540 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001541 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001542 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001543 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001544 break;
1545 case 32:
1546 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001547 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001548 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001549 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001550 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001551 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001552 break;
1553 case 64:
1554 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001555 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001556 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001557 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001558 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001559 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001560 break;
Eli Friedman73397492009-03-03 06:41:03 +00001561 case 96:
1562 NewTy = S.Context.LongDoubleTy;
1563 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00001564 case 128:
1565 if (!IntegerMode) {
1566 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1567 return;
1568 }
1569 NewTy = S.Context.getFixedWidthIntType(128, OldTy->isSignedIntegerType());
Eli Friedman73397492009-03-03 06:41:03 +00001570 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001571 }
1572
Eli Friedman73397492009-03-03 06:41:03 +00001573 if (ComplexMode) {
1574 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001575 }
1576
1577 // Install the new type.
1578 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1579 TD->setUnderlyingType(NewTy);
1580 else
1581 cast<ValueDecl>(D)->setType(NewTy);
1582}
Chris Lattner0744e5f2008-06-29 00:23:49 +00001583
Anders Carlssond87df372009-02-13 06:46:13 +00001584static void HandleNodebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1585 // check the attribute arguments.
1586 if (Attr.getNumArgs() > 0) {
1587 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1588 return;
1589 }
Anders Carlssone896d982009-02-13 08:11:52 +00001590
Anders Carlsson5bab7882009-02-19 19:16:48 +00001591 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00001592 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001593 << Attr.getName() << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00001594 return;
1595 }
1596
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001597 d->addAttr(::new (S.Context) NodebugAttr());
Anders Carlssond87df372009-02-13 06:46:13 +00001598}
1599
Anders Carlsson5bab7882009-02-19 19:16:48 +00001600static void HandleNoinlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1601 // check the attribute arguments.
1602 if (Attr.getNumArgs() != 0) {
1603 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1604 return;
1605 }
1606
Chris Lattnerc5197432009-04-14 17:02:11 +00001607 if (!isa<FunctionDecl>(d)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001608 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001609 << Attr.getName() << 0 /*function*/;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001610 return;
1611 }
1612
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001613 d->addAttr(::new (S.Context) NoinlineAttr());
Anders Carlsson5bab7882009-02-19 19:16:48 +00001614}
1615
Chris Lattnercf2a7212009-04-20 19:12:28 +00001616static void HandleGNUInlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner26e25542009-04-14 16:30:50 +00001617 // check the attribute arguments.
1618 if (Attr.getNumArgs() != 0) {
1619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1620 return;
1621 }
1622
Chris Lattnerc5197432009-04-14 17:02:11 +00001623 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
1624 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00001625 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001626 << Attr.getName() << 0 /*function*/;
Chris Lattner26e25542009-04-14 16:30:50 +00001627 return;
1628 }
1629
Chris Lattnerc5197432009-04-14 17:02:11 +00001630 if (!Fn->isInline()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00001631 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00001632 return;
1633 }
1634
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001635 d->addAttr(::new (S.Context) GNUInlineAttr());
Chris Lattner26e25542009-04-14 16:30:50 +00001636}
1637
Fariborz Jahanianee760332009-03-27 18:38:55 +00001638static void HandleRegparmAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1639 // check the attribute arguments.
1640 if (Attr.getNumArgs() != 1) {
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001641 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianee760332009-03-27 18:38:55 +00001642 return;
1643 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001644
Fariborz Jahanianee760332009-03-27 18:38:55 +00001645 if (!isFunctionOrMethod(d)) {
1646 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001647 << Attr.getName() << 0 /*function*/;
Fariborz Jahanianee760332009-03-27 18:38:55 +00001648 return;
1649 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001650
1651 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
1652 llvm::APSInt NumParams(32);
1653 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
1654 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1655 << "regparm" << NumParamsExpr->getSourceRange();
1656 return;
1657 }
1658
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00001659 if (S.Context.Target.getRegParmMax() == 0) {
1660 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001661 << NumParamsExpr->getSourceRange();
1662 return;
1663 }
1664
Anton Korobeynikov348f28a2009-04-04 10:27:50 +00001665 if (NumParams.getLimitedValue(255) > S.Context.Target.getRegParmMax()) {
Anton Korobeynikov264a76c2009-04-03 23:38:25 +00001666 S.Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
1667 << S.Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001668 return;
1669 }
1670
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001671 d->addAttr(::new (S.Context) RegparmAttr(NumParams.getZExtValue()));
Fariborz Jahanianee760332009-03-27 18:38:55 +00001672}
1673
Chris Lattner0744e5f2008-06-29 00:23:49 +00001674//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00001675// Checker-specific attribute handlers.
1676//===----------------------------------------------------------------------===//
1677
1678static void HandleNSReturnsRetainedAttr(Decl *d, const AttributeList &Attr,
1679 Sema &S) {
1680
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001681 QualType RetTy;
1682
1683 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d))
1684 RetTy = MD->getResultType();
1685 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d))
1686 RetTy = FD->getResultType();
1687 else {
1688 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1689 << Attr.getName() << 3 /* function or method */;
Ted Kremenekb71368d2009-05-09 02:44:38 +00001690 return;
1691 }
1692
Steve Naroff14108da2009-07-10 23:34:53 +00001693 if (!(S.Context.isObjCNSObjectType(RetTy) || RetTy->getAsPointerType()
1694 || RetTy->getAsObjCObjectPointerType())) {
Ted Kremenek5dc53c92009-05-13 21:07:32 +00001695 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1696 << Attr.getName();
1697 return;
1698 }
1699
Ted Kremenekb71368d2009-05-09 02:44:38 +00001700 switch (Attr.getKind()) {
1701 default:
1702 assert(0 && "invalid ownership attribute");
1703 return;
1704 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001705 d->addAttr(::new (S.Context) CFReturnsRetainedAttr());
Ted Kremenekb71368d2009-05-09 02:44:38 +00001706 return;
1707 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001708 d->addAttr(::new (S.Context) NSReturnsRetainedAttr());
Ted Kremenekb71368d2009-05-09 02:44:38 +00001709 return;
1710 };
1711}
1712
1713//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00001714// Top Level Sema Entry Points
1715//===----------------------------------------------------------------------===//
1716
Sebastian Redla89d82c2008-12-21 19:24:58 +00001717/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
Chris Lattner803d0802008-06-29 00:43:07 +00001718/// the attribute applies to decls. If the attribute is a type attribute, just
1719/// silently ignore it.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001720static void ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr, Sema &S) {
Eli Friedman290eeb02009-06-08 23:27:34 +00001721 if (Attr.isDeclspecAttribute())
1722 // FIXME: Try to deal with __declspec attributes!
1723 return;
Chris Lattner803d0802008-06-29 00:43:07 +00001724 switch (Attr.getKind()) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001725 case AttributeList::AT_IBOutlet: HandleIBOutletAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001726 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001727 case AttributeList::AT_objc_gc:
1728 // Ignore these, these are type attributes, handled by ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00001729 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001730 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
1731 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001732 case AttributeList::AT_always_inline:
1733 HandleAlwaysInlineAttr (D, Attr, S); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00001734 case AttributeList::AT_analyzer_noreturn:
1735 HandleAnalyzerNoReturnAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001736 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
1737 case AttributeList::AT_constructor: HandleConstructorAttr(D, Attr, S); break;
1738 case AttributeList::AT_deprecated: HandleDeprecatedAttr(D, Attr, S); break;
1739 case AttributeList::AT_destructor: HandleDestructorAttr(D, Attr, S); break;
1740 case AttributeList::AT_dllexport: HandleDLLExportAttr (D, Attr, S); break;
1741 case AttributeList::AT_dllimport: HandleDLLImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001742 case AttributeList::AT_ext_vector_type:
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001743 HandleExtVectorTypeAttr(scope, D, Attr, S);
Chris Lattner803d0802008-06-29 00:43:07 +00001744 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001745 case AttributeList::AT_fastcall: HandleFastCallAttr (D, Attr, S); break;
1746 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001747 case AttributeList::AT_format_arg: HandleFormatArgAttr (D, Attr, S); break;
Chris Lattnercf2a7212009-04-20 19:12:28 +00001748 case AttributeList::AT_gnu_inline: HandleGNUInlineAttr(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001749 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001750 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
1751 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
1752 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00001753
1754 // Checker-specific.
1755 case AttributeList::AT_ns_returns_retained:
1756 case AttributeList::AT_cf_returns_retained:
1757 HandleNSReturnsRetainedAttr(D, Attr, S); break;
1758
Nate Begeman6f3d8382009-06-26 06:32:41 +00001759 case AttributeList::AT_reqd_wg_size:
1760 HandleReqdWorkGroupSize(D, Attr, S); break;
1761
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001762 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001763 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001764 case AttributeList::AT_stdcall: HandleStdCallAttr (D, Attr, S); break;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001765 case AttributeList::AT_unavailable: HandleUnavailableAttr(D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001766 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001767 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001768 case AttributeList::AT_vector_size: HandleVectorSizeAttr(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001769 case AttributeList::AT_visibility: HandleVisibilityAttr(D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00001770 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
1771 break;
Chris Lattner803d0802008-06-29 00:43:07 +00001772 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001773 case AttributeList::AT_weak_import: HandleWeakImportAttr(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001774 case AttributeList::AT_transparent_union:
1775 HandleTransparentUnionAttr(D, Attr, S);
1776 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00001777 case AttributeList::AT_objc_exception:
1778 HandleObjCExceptionAttr(D, Attr, S);
1779 break;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001780 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001781 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
Steve Naroff9eae5762008-09-18 16:44:58 +00001782 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
Anders Carlsson77091822008-10-05 18:05:59 +00001783 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001784 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
1785 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001786 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
Anders Carlssond87df372009-02-13 06:46:13 +00001787 case AttributeList::AT_nodebug: HandleNodebugAttr (D, Attr, S); break;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001788 case AttributeList::AT_noinline: HandleNoinlineAttr (D, Attr, S); break;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00001789 case AttributeList::AT_regparm: HandleRegparmAttr (D, Attr, S); break;
Anders Carlsson05f8e472009-02-13 08:16:43 +00001790 case AttributeList::IgnoredAttribute:
Chris Lattner5e204482009-04-25 18:44:54 +00001791 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Anders Carlsson05f8e472009-02-13 08:16:43 +00001792 // Just ignore
1793 break;
Chris Lattner803d0802008-06-29 00:43:07 +00001794 default:
Anders Carlssond87df372009-02-13 06:46:13 +00001795 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00001796 break;
1797 }
1798}
1799
1800/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
1801/// attribute list to the specified decl, ignoring any type attributes.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001802void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, const AttributeList *AttrList) {
Chris Lattner803d0802008-06-29 00:43:07 +00001803 while (AttrList) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001804 ProcessDeclAttribute(S, D, *AttrList, *this);
Chris Lattner803d0802008-06-29 00:43:07 +00001805 AttrList = AttrList->getNext();
1806 }
1807}
1808
Chris Lattner0744e5f2008-06-29 00:23:49 +00001809/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
1810/// it, apply them to D. This is a bit tricky because PD can have attributes
1811/// specified in many different places, and we need to find and apply them all.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001812void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00001813 // Apply decl attributes from the DeclSpec if present.
1814 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001815 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner803d0802008-06-29 00:43:07 +00001816
Chris Lattner0744e5f2008-06-29 00:23:49 +00001817 // Walk the declarator structure, applying decl attributes that were in a type
1818 // position to the decl itself. This handles cases like:
1819 // int *__attr__(x)** D;
1820 // when X is a decl attribute.
1821 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
1822 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001823 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00001824
1825 // Finally, apply any attributes on the decl itself.
1826 if (const AttributeList *Attrs = PD.getAttributes())
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00001827 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00001828}