blob: 8757005a4783d3685b5583ca37ba617636c9dee8 [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
Daniel Dunbard3f2c102008-10-19 02:04:16 +000027static const FunctionType *getFunctionType(Decl *d) {
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();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000040
41 return Ty->getAsFunctionType();
Chris Lattner6b6b5372008-06-26 18:38:35 +000042}
43
Daniel Dunbar35682492008-09-26 04:12:28 +000044// FIXME: We should provide an abstraction around a method or function
45// to provide the following bits of information.
46
Daniel Dunbard3f2c102008-10-19 02:04:16 +000047/// isFunctionOrMethod - Return true if the given decl has function
48/// type (function or function-typed variable) or an Objective-C
49/// method.
Daniel Dunbar35682492008-09-26 04:12:28 +000050static bool isFunctionOrMethod(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000051 return getFunctionType(d) || isa<ObjCMethodDecl>(d);
Daniel Dunbar35682492008-09-26 04:12:28 +000052}
53
Daniel Dunbard3f2c102008-10-19 02:04:16 +000054/// hasFunctionProto - Return true if the given decl has a argument
55/// information. This decl should have already passed
56/// isFunctionOrMethod.
57static bool hasFunctionProto(Decl *d) {
58 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +000059 return isa<FunctionProtoType>(FnTy);
Daniel Dunbard3f2c102008-10-19 02:04:16 +000060 } else {
61 assert(isa<ObjCMethodDecl>(d));
62 return true;
63 }
64}
65
66/// getFunctionOrMethodNumArgs - Return number of function or method
67/// arguments. It is an error to call this on a K&R function (use
68/// hasFunctionProto first).
Daniel Dunbar35682492008-09-26 04:12:28 +000069static unsigned getFunctionOrMethodNumArgs(Decl *d) {
Chris Lattner89951a82009-02-20 18:43:26 +000070 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000071 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chris Lattner89951a82009-02-20 18:43:26 +000072 return cast<ObjCMethodDecl>(d)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +000073}
74
75static QualType getFunctionOrMethodArgType(Decl *d, unsigned Idx) {
Chris Lattner89951a82009-02-20 18:43:26 +000076 if (const FunctionType *FnTy = getFunctionType(d))
Douglas Gregor72564e72009-02-26 23:50:07 +000077 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chris Lattner89951a82009-02-20 18:43:26 +000078
79 return cast<ObjCMethodDecl>(d)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +000080}
81
82static bool isFunctionOrMethodVariadic(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000083 if (const FunctionType *FnTy = getFunctionType(d)) {
Douglas Gregor72564e72009-02-26 23:50:07 +000084 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +000085 return proto->isVariadic();
86 } else {
87 return cast<ObjCMethodDecl>(d)->isVariadic();
88 }
89}
90
Chris Lattner6b6b5372008-06-26 18:38:35 +000091static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
Chris Lattnerb77792e2008-07-26 22:17:49 +000092 const PointerType *PT = T->getAsPointerType();
93 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +000094 return false;
95
Chris Lattnerb77792e2008-07-26 22:17:49 +000096 const ObjCInterfaceType *ClsT =PT->getPointeeType()->getAsObjCInterfaceType();
Chris Lattner6b6b5372008-06-26 18:38:35 +000097 if (!ClsT)
98 return false;
99
100 IdentifierInfo* ClsName = ClsT->getDecl()->getIdentifier();
101
102 // FIXME: Should we walk the chain of classes?
103 return ClsName == &Ctx.Idents.get("NSString") ||
104 ClsName == &Ctx.Idents.get("NSMutableString");
105}
106
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000107static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
108 const PointerType *PT = T->getAsPointerType();
109 if (!PT)
110 return false;
111
112 const RecordType *RT = PT->getPointeeType()->getAsRecordType();
113 if (!RT)
114 return false;
115
116 const RecordDecl *RD = RT->getDecl();
117 if (RD->getTagKind() != TagDecl::TK_struct)
118 return false;
119
120 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
121}
122
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000123//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000124// Attribute Implementations
125//===----------------------------------------------------------------------===//
126
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000127// FIXME: All this manual attribute parsing code is gross. At the
128// least add some helper functions to check most argument patterns (#
129// and types of args).
130
Chris Lattner803d0802008-06-29 00:43:07 +0000131static void HandleExtVectorTypeAttr(Decl *d, const AttributeList &Attr,
132 Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000133 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
134 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000135 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000136 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000137 }
138
Chris Lattner6b6b5372008-06-26 18:38:35 +0000139 QualType curType = tDecl->getUnderlyingType();
140 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000141 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000142 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000143 return;
144 }
Chris Lattner545dd342008-06-28 23:36:30 +0000145 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000146 llvm::APSInt vecSize(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000147 if (!sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000148 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
149 << "ext_vector_type" << sizeExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000150 return;
151 }
152 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
153 // in conjunction with complex types (pointers, arrays, functions, etc.).
Chris Lattnerb77792e2008-07-26 22:17:49 +0000154 if (!curType->isIntegerType() && !curType->isRealFloatingType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000155 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << curType;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000156 return;
157 }
158 // unlike gcc's vector_size attribute, the size is specified as the
159 // number of elements, not the number of bytes.
160 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
161
162 if (vectorSize == 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000163 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
164 << sizeExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000165 return;
166 }
167 // Instantiate/Install the vector type, the number of elements is > 0.
Chris Lattner803d0802008-06-29 00:43:07 +0000168 tDecl->setUnderlyingType(S.Context.getExtVectorType(curType, vectorSize));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000169 // Remember this typedef decl, we will need it later for diagnostics.
Chris Lattner803d0802008-06-29 00:43:07 +0000170 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000171}
172
Chris Lattner065c5a82008-06-28 23:48:25 +0000173
174/// HandleVectorSizeAttribute - this attribute is only applicable to
175/// integral and float scalars, although arrays, pointers, and function
176/// return values are allowed in conjunction with this construct. Aggregates
177/// with this attribute are invalid, even if they are of the same size as a
178/// corresponding scalar.
179/// The raw attribute should contain precisely 1 argument, the vector size
180/// for the variable, measured in bytes. If curType and rawAttr are well
181/// formed, this routine will return a new vector type.
Chris Lattner803d0802008-06-29 00:43:07 +0000182static void HandleVectorSizeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner065c5a82008-06-28 23:48:25 +0000183 QualType CurType;
184 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
185 CurType = VD->getType();
186 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
187 CurType = TD->getUnderlyingType();
188 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000189 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
190 << "vector_size" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattner065c5a82008-06-28 23:48:25 +0000191 return;
192 }
193
194 // Check the attribute arugments.
Chris Lattner545dd342008-06-28 23:36:30 +0000195 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000196 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner065c5a82008-06-28 23:48:25 +0000197 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000198 }
Chris Lattner545dd342008-06-28 23:36:30 +0000199 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000200 llvm::APSInt vecSize(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000201 if (!sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000202 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
203 << "vector_size" << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000204 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000205 }
206 // navigate to the base type - we need to provide for vector pointers,
207 // vector arrays, and functions returning vectors.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000208 if (CurType->isPointerType() || CurType->isArrayType() ||
209 CurType->isFunctionType()) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000210 assert(0 && "HandleVector(): Complex type construction unimplemented");
211 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
212 do {
213 if (PointerType *PT = dyn_cast<PointerType>(canonType))
214 canonType = PT->getPointeeType().getTypePtr();
215 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
216 canonType = AT->getElementType().getTypePtr();
217 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
218 canonType = FT->getResultType().getTypePtr();
219 } while (canonType->isPointerType() || canonType->isArrayType() ||
220 canonType->isFunctionType());
221 */
222 }
223 // the base type must be integer or float.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000224 if (!CurType->isIntegerType() && !CurType->isRealFloatingType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000225 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type) << CurType;
Chris Lattner065c5a82008-06-28 23:48:25 +0000226 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000227 }
Chris Lattner803d0802008-06-29 00:43:07 +0000228 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000229 // vecSize is specified in bytes - convert to bits.
230 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
231
232 // the vector size needs to be an integral multiple of the type size.
233 if (vectorSize % typeSize) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000234 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
235 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000236 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000237 }
238 if (vectorSize == 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000239 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
240 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000241 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000242 }
Chris Lattner065c5a82008-06-28 23:48:25 +0000243
244 // Success! Instantiate the vector type, the number of elements is > 0, and
245 // not required to be a power of 2, unlike GCC.
Chris Lattner803d0802008-06-29 00:43:07 +0000246 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize);
Chris Lattner065c5a82008-06-28 23:48:25 +0000247
248 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
249 VD->setType(CurType);
250 else
251 cast<TypedefDecl>(D)->setUnderlyingType(CurType);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000252}
253
Chris Lattner803d0802008-06-29 00:43:07 +0000254static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000255 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000256 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000257 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000258 return;
259 }
260
261 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000262 TD->addAttr(new PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000263 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
264 // If the alignment is less than or equal to 8 bits, the packed attribute
265 // has no effect.
266 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000267 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000268 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000269 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000270 else
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000271 FD->addAttr(new PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000272 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000273 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000274}
275
Ted Kremenek96329d42008-07-15 22:26:48 +0000276static void HandleIBOutletAttr(Decl *d, const AttributeList &Attr, Sema &S) {
277 // check the attribute arguments.
278 if (Attr.getNumArgs() > 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000279 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek96329d42008-07-15 22:26:48 +0000280 return;
281 }
282
283 // The IBOutlet attribute only applies to instance variables of Objective-C
284 // classes.
Ted Kremenek32742602009-02-17 22:20:20 +0000285 if (isa<ObjCIvarDecl>(d) || isa<ObjCPropertyDecl>(d))
286 d->addAttr(new IBOutletAttr());
Ted Kremenek96329d42008-07-15 22:26:48 +0000287 else
Ted Kremenek32742602009-02-17 22:20:20 +0000288 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet);
Ted Kremenek96329d42008-07-15 22:26:48 +0000289}
290
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000291static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000292 // GCC ignores the nonnull attribute on K&R style function
293 // prototypes, so we ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000294 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000295 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000296 << "nonnull" << 0 /*function*/;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000297 return;
298 }
299
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000300 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000301
302 // The nonnull attribute only applies to pointers.
303 llvm::SmallVector<unsigned, 10> NonNullArgs;
304
305 for (AttributeList::arg_iterator I=Attr.arg_begin(),
306 E=Attr.arg_end(); I!=E; ++I) {
307
308
309 // The argument must be an integer constant expression.
Ted Kremenekf5e88342008-12-04 19:38:33 +0000310 Expr *Ex = static_cast<Expr *>(*I);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000311 llvm::APSInt ArgNum(32);
312 if (!Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000313 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
314 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000315 return;
316 }
317
318 unsigned x = (unsigned) ArgNum.getZExtValue();
319
320 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000321 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000322 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000323 return;
324 }
Ted Kremenek465172f2008-07-21 22:09:15 +0000325
326 --x;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000327
328 // Is the function argument a pointer type?
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000329 QualType T = getFunctionOrMethodArgType(d, x);
330 if (!T->isPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000331 // FIXME: Should also highlight argument in decl.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000332 S.Diag(Attr.getLoc(), diag::err_nonnull_pointers_only)
333 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000334 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000335 }
336
337 NonNullArgs.push_back(x);
338 }
339
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000340 // If no arguments were specified to __attribute__((nonnull)) then all
341 // pointer arguments have a nonnull attribute.
342 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000343 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
344 QualType T = getFunctionOrMethodArgType(d, I);
345 if (T->isPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000346 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000347 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000348
349 if (NonNullArgs.empty()) {
350 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
351 return;
352 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000353 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000354
355 unsigned* start = &NonNullArgs[0];
356 unsigned size = NonNullArgs.size();
357 std::sort(start, start + size);
358 d->addAttr(new NonNullAttr(start, size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000359}
360
Chris Lattner803d0802008-06-29 00:43:07 +0000361static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000362 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000363 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000364 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000365 return;
366 }
367
Chris Lattner545dd342008-06-28 23:36:30 +0000368 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000369 Arg = Arg->IgnoreParenCasts();
370 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
371
372 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000373 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000374 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000375 return;
376 }
377
378 const char *Alias = Str->getStrData();
379 unsigned AliasLen = Str->getByteLength();
380
381 // FIXME: check if target symbol exists in current file
382
383 d->addAttr(new AliasAttr(std::string(Alias, AliasLen)));
384}
385
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000386static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
387 Sema &S) {
388 // check the attribute arguments.
389 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000390 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000391 return;
392 }
Anders Carlsson5bab7882009-02-19 19:16:48 +0000393
394 if (!isFunctionOrMethod(d)) {
395 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
396 << "always_inline" << 0 /*function*/;
397 return;
398 }
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000399
400 d->addAttr(new AlwaysInlineAttr());
401}
402
Chris Lattner803d0802008-06-29 00:43:07 +0000403static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000404 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000405 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000406 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000407 return;
408 }
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000409
410 if (!isFunctionOrMethod(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000411 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000412 << "noreturn" << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000413 return;
414 }
415
416 d->addAttr(new NoReturnAttr());
417}
418
Ted Kremenek73798892008-07-25 04:39:19 +0000419static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
420 // check the attribute arguments.
421 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000422 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +0000423 return;
424 }
425
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000426 if (!isa<VarDecl>(d) && !isFunctionOrMethod(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000427 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000428 << "unused" << 2 /*variable and function*/;
Ted Kremenek73798892008-07-25 04:39:19 +0000429 return;
430 }
431
432 d->addAttr(new UnusedAttr());
433}
434
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000435static void HandleUsedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
436 // check the attribute arguments.
437 if (Attr.getNumArgs() != 0) {
438 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
439 return;
440 }
441
442 if (const VarDecl *VD = dyn_cast<VarDecl>(d)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +0000443 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000444 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
445 return;
446 }
447 } else if (!isFunctionOrMethod(d)) {
448 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000449 << "used" << 2 /*variable and function*/;
Daniel Dunbarb805dad2009-02-13 19:23:53 +0000450 return;
451 }
452
453 d->addAttr(new UsedAttr());
454}
455
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000456static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
457 // check the attribute arguments.
458 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000459 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
460 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000461 return;
462 }
463
464 int priority = 65535; // FIXME: Do not hardcode such constants.
465 if (Attr.getNumArgs() > 0) {
466 Expr *E = static_cast<Expr *>(Attr.getArg(0));
467 llvm::APSInt Idx(32);
468 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000469 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000470 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000471 return;
472 }
473 priority = Idx.getZExtValue();
474 }
475
476 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
477 if (!Fn) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000478 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000479 << "constructor" << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000480 return;
481 }
482
483 d->addAttr(new ConstructorAttr(priority));
484}
485
486static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
487 // check the attribute arguments.
488 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000489 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
490 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000491 return;
492 }
493
494 int priority = 65535; // FIXME: Do not hardcode such constants.
495 if (Attr.getNumArgs() > 0) {
496 Expr *E = static_cast<Expr *>(Attr.getArg(0));
497 llvm::APSInt Idx(32);
498 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000499 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000500 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000501 return;
502 }
503 priority = Idx.getZExtValue();
504 }
505
Anders Carlsson6782fc62008-08-22 22:10:48 +0000506 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000507 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000508 << "destructor" << 0 /*function*/;
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000509 return;
510 }
511
512 d->addAttr(new DestructorAttr(priority));
513}
514
Chris Lattner803d0802008-06-29 00:43:07 +0000515static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000516 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000517 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000518 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000519 return;
520 }
521
522 d->addAttr(new DeprecatedAttr());
523}
524
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +0000525static void HandleUnavailableAttr(Decl *d, const AttributeList &Attr, Sema &S) {
526 // check the attribute arguments.
527 if (Attr.getNumArgs() != 0) {
528 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
529 return;
530 }
531
532 d->addAttr(new UnavailableAttr());
533}
534
Chris Lattner803d0802008-06-29 00:43:07 +0000535static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000536 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000537 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000538 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000539 return;
540 }
541
Chris Lattner545dd342008-06-28 23:36:30 +0000542 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000543 Arg = Arg->IgnoreParenCasts();
544 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
545
546 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000547 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000548 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000549 return;
550 }
551
552 const char *TypeStr = Str->getStrData();
553 unsigned TypeLen = Str->getByteLength();
554 VisibilityAttr::VisibilityTypes type;
555
556 if (TypeLen == 7 && !memcmp(TypeStr, "default", 7))
557 type = VisibilityAttr::DefaultVisibility;
558 else if (TypeLen == 6 && !memcmp(TypeStr, "hidden", 6))
559 type = VisibilityAttr::HiddenVisibility;
560 else if (TypeLen == 8 && !memcmp(TypeStr, "internal", 8))
561 type = VisibilityAttr::HiddenVisibility; // FIXME
562 else if (TypeLen == 9 && !memcmp(TypeStr, "protected", 9))
563 type = VisibilityAttr::ProtectedVisibility;
564 else {
Chris Lattner08631c52008-11-23 21:45:46 +0000565 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000566 return;
567 }
568
569 d->addAttr(new VisibilityAttr(type));
570}
571
Chris Lattner0db29ec2009-02-14 08:09:34 +0000572static void HandleObjCExceptionAttr(Decl *D, const AttributeList &Attr,
573 Sema &S) {
574 if (Attr.getNumArgs() != 0) {
575 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
576 return;
577 }
578
579 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
580 if (OCI == 0) {
581 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
582 return;
583 }
584
585 D->addAttr(new ObjCExceptionAttr());
586}
587
588static void HandleObjCNSObject(Decl *D, const AttributeList &Attr, Sema &S) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000589 if (Attr.getNumArgs() != 0) {
590 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
591 return;
592 }
Chris Lattner0db29ec2009-02-14 08:09:34 +0000593 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000594 QualType T = TD->getUnderlyingType();
595 if (!T->isPointerType() ||
596 !T->getAsPointerType()->getPointeeType()->isRecordType()) {
597 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
598 return;
599 }
600 }
Chris Lattner0db29ec2009-02-14 08:09:34 +0000601 D->addAttr(new ObjCNSObjectAttr);
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +0000602}
603
Douglas Gregorf9201e02009-02-11 23:02:49 +0000604static void
605HandleOverloadableAttr(Decl *D, const AttributeList &Attr, Sema &S) {
606 if (Attr.getNumArgs() != 0) {
607 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
608 return;
609 }
610
611 if (!isa<FunctionDecl>(D)) {
612 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
613 return;
614 }
615
616 D->addAttr(new OverloadableAttr);
617}
618
Steve Naroff9eae5762008-09-18 16:44:58 +0000619static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
620 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000621 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000622 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000623 return;
624 }
625
626 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000627 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +0000628 return;
629 }
Steve Naroff9eae5762008-09-18 16:44:58 +0000630
631 BlocksAttr::BlocksAttrTypes type;
Chris Lattner92e62b02008-11-20 04:42:34 +0000632 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +0000633 type = BlocksAttr::ByRef;
634 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000635 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +0000636 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +0000637 return;
638 }
639
640 d->addAttr(new BlocksAttr(type));
641}
642
Anders Carlsson77091822008-10-05 18:05:59 +0000643static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
644 // check the attribute arguments.
645 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000646 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
647 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +0000648 return;
649 }
650
651 int sentinel = 0;
652 if (Attr.getNumArgs() > 0) {
653 Expr *E = static_cast<Expr *>(Attr.getArg(0));
654 llvm::APSInt Idx(32);
655 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000656 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000657 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000658 return;
659 }
660 sentinel = Idx.getZExtValue();
661
662 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000663 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
664 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000665 return;
666 }
667 }
668
669 int nullPos = 0;
670 if (Attr.getNumArgs() > 1) {
671 Expr *E = static_cast<Expr *>(Attr.getArg(1));
672 llvm::APSInt Idx(32);
673 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000674 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +0000675 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000676 return;
677 }
678 nullPos = Idx.getZExtValue();
679
680 if (nullPos > 1 || nullPos < 0) {
681 // FIXME: This error message could be improved, it would be nice
682 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000683 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
684 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000685 return;
686 }
687 }
688
689 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
690 QualType FT = FD->getType();
Douglas Gregor72564e72009-02-26 23:50:07 +0000691 if (!FT->getAsFunctionProtoType()->isVariadic()) {
Anders Carlsson77091822008-10-05 18:05:59 +0000692 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic);
693 return;
694 }
695 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
696 if (!MD->isVariadic()) {
697 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic);
698 return;
699 }
700 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000701 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000702 << "sentinel" << 3 /*function or method*/;
Anders Carlsson77091822008-10-05 18:05:59 +0000703 return;
704 }
705
706 // FIXME: Actually create the attribute.
707}
708
Chris Lattner026dc962009-02-14 07:37:35 +0000709static void HandleWarnUnusedResult(Decl *D, const AttributeList &Attr, Sema &S) {
710 // check the attribute arguments.
711 if (Attr.getNumArgs() != 0) {
712 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
713 return;
714 }
715
716 // TODO: could also be applied to methods?
717 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
718 if (!Fn) {
719 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
720 << "warn_unused_result" << 0 /*function*/;
721 return;
722 }
723
724 Fn->addAttr(new WarnUnusedResultAttr());
725}
726
727static void HandleWeakAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000728 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000729 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000730 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000731 return;
732 }
733
Chris Lattner026dc962009-02-14 07:37:35 +0000734 D->addAttr(new WeakAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000735}
736
Chris Lattner026dc962009-02-14 07:37:35 +0000737static void HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000738 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000739 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000740 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000741 return;
742 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000743
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000744 // Attribute can be applied only to functions or variables.
Chris Lattner026dc962009-02-14 07:37:35 +0000745 if (isa<VarDecl>(D)) {
746 D->addAttr(new DLLImportAttr());
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000747 return;
748 }
749
Chris Lattner026dc962009-02-14 07:37:35 +0000750 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000751 if (!FD) {
752 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000753 << "dllimport" << 2 /*variable and function*/;
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000754 return;
755 }
756
757 // Currently, the dllimport attribute is ignored for inlined functions.
758 // Warning is emitted.
759 if (FD->isInline()) {
760 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
761 return;
762 }
763
764 // The attribute is also overridden by a subsequent declaration as dllexport.
765 // Warning is emitted.
766 for (AttributeList *nextAttr = Attr.getNext(); nextAttr;
767 nextAttr = nextAttr->getNext()) {
768 if (nextAttr->getKind() == AttributeList::AT_dllexport) {
769 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
770 return;
771 }
772 }
773
Chris Lattner026dc962009-02-14 07:37:35 +0000774 if (D->getAttr<DLLExportAttr>()) {
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000775 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllimport";
776 return;
777 }
778
Chris Lattner026dc962009-02-14 07:37:35 +0000779 D->addAttr(new DLLImportAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000780}
781
Chris Lattner026dc962009-02-14 07:37:35 +0000782static void HandleDLLExportAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000783 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000784 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000785 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000786 return;
787 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000788
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000789 // Attribute can be applied only to functions or variables.
Chris Lattner026dc962009-02-14 07:37:35 +0000790 if (isa<VarDecl>(D)) {
791 D->addAttr(new DLLExportAttr());
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000792 return;
793 }
794
Chris Lattner026dc962009-02-14 07:37:35 +0000795 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000796 if (!FD) {
797 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000798 << "dllexport" << 2 /*variable and function*/;
Anton Korobeynikov2f402702008-12-26 00:52:02 +0000799 return;
800 }
801
802 // Currently, the dllexport attribute is ignored for inlined functions,
803 // unless the -fkeep-inline-functions flag has been used. Warning is emitted;
804 if (FD->isInline()) {
805 // FIXME: ... unless the -fkeep-inline-functions flag has been used.
806 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "dllexport";
807 return;
808 }
809
Chris Lattner026dc962009-02-14 07:37:35 +0000810 D->addAttr(new DLLExportAttr());
Chris Lattner6b6b5372008-06-26 18:38:35 +0000811}
812
Chris Lattner026dc962009-02-14 07:37:35 +0000813static void HandleSectionAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +0000814 // Attribute has no arguments.
815 if (Attr.getNumArgs() != 1) {
816 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
817 return;
818 }
819
820 // Make sure that there is a string literal as the sections's single
821 // argument.
822 StringLiteral *SE =
823 dyn_cast<StringLiteral>(static_cast<Expr *>(Attr.getArg(0)));
824 if (!SE) {
825 // FIXME
826 S.Diag(Attr.getLoc(), diag::err_attribute_annotate_no_string);
827 return;
828 }
Chris Lattner026dc962009-02-14 07:37:35 +0000829 D->addAttr(new SectionAttr(std::string(SE->getStrData(),
Daniel Dunbar17f194f2009-02-12 17:28:23 +0000830 SE->getByteLength())));
831}
832
Chris Lattner803d0802008-06-29 00:43:07 +0000833static void HandleStdCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000834 // Attribute has no arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000835 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000836 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000837 return;
838 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000839
840 // Attribute can be applied only to functions.
841 if (!isa<FunctionDecl>(d)) {
842 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000843 << "stdcall" << 0 /*function*/;
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000844 return;
845 }
846
847 // stdcall and fastcall attributes are mutually incompatible.
848 if (d->getAttr<FastCallAttr>()) {
849 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
850 << "stdcall" << "fastcall";
851 return;
852 }
853
Chris Lattner6b6b5372008-06-26 18:38:35 +0000854 d->addAttr(new StdCallAttr());
855}
856
Chris Lattner803d0802008-06-29 00:43:07 +0000857static void HandleFastCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000858 // Attribute has no arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000859 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000860 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000861 return;
862 }
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000863
864 if (!isa<FunctionDecl>(d)) {
865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000866 << "fastcall" << 0 /*function*/;
Anton Korobeynikov7b0a52f2008-12-23 22:24:07 +0000867 return;
868 }
869
870 // stdcall and fastcall attributes are mutually incompatible.
871 if (d->getAttr<StdCallAttr>()) {
872 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
873 << "fastcall" << "stdcall";
874 return;
875 }
876
Chris Lattner6b6b5372008-06-26 18:38:35 +0000877 d->addAttr(new FastCallAttr());
878}
879
Chris Lattner803d0802008-06-29 00:43:07 +0000880static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000881 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000882 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000883 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000884 return;
885 }
886
887 d->addAttr(new NoThrowAttr());
888}
889
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000890static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
891 // check the attribute arguments.
892 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000893 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000894 return;
895 }
896
897 d->addAttr(new ConstAttr());
898}
899
900static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
901 // check the attribute arguments.
902 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000903 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000904 return;
905 }
906
907 d->addAttr(new PureAttr());
908}
909
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000910static void HandleCleanupAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson89941c12009-02-07 23:16:50 +0000911 // Match gcc which ignores cleanup attrs when compiling C++.
912 if (S.getLangOptions().CPlusPlus)
913 return;
914
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000915 if (!Attr.getParameterName()) {
916 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
917 return;
918 }
919
920 if (Attr.getNumArgs() != 0) {
921 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
922 return;
923 }
924
925 VarDecl *VD = dyn_cast<VarDecl>(d);
926
927 if (!VD || !VD->hasLocalStorage()) {
928 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
929 return;
930 }
931
932 // Look up the function
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000933 NamedDecl *CleanupDecl = S.LookupName(S.TUScope, Attr.getParameterName(),
934 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000935 if (!CleanupDecl) {
Anders Carlsson89941c12009-02-07 23:16:50 +0000936 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000937 Attr.getParameterName();
938 return;
939 }
940
941 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
942 if (!FD) {
Anders Carlsson89941c12009-02-07 23:16:50 +0000943 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_arg_not_function) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000944 Attr.getParameterName();
945 return;
946 }
947
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000948 if (FD->getNumParams() != 1) {
Anders Carlsson89941c12009-02-07 23:16:50 +0000949 S.Diag(Attr.getLoc(), diag::err_attribute_cleanup_func_must_take_one_arg) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000950 Attr.getParameterName();
951 return;
952 }
953
Anders Carlsson89941c12009-02-07 23:16:50 +0000954 // We're currently more strict than GCC about what function types we accept.
955 // If this ever proves to be a problem it should be easy to fix.
956 QualType Ty = S.Context.getPointerType(VD->getType());
957 QualType ParamTy = FD->getParamDecl(0)->getType();
Anders Carlssonb90052a2009-02-25 17:19:08 +0000958 if (S.CheckAssignmentConstraints(Ty, ParamTy) != Sema::Compatible) {
Anders Carlsson89941c12009-02-07 23:16:50 +0000959 S.Diag(Attr.getLoc(),
960 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
961 Attr.getParameterName() << ParamTy << Ty;
962 return;
963 }
964
Anders Carlssonf6e35d02009-01-31 01:16:18 +0000965 d->addAttr(new CleanupAttr(FD));
966}
967
Chris Lattner6b6b5372008-06-26 18:38:35 +0000968/// Handle __attribute__((format(type,idx,firstarg))) attributes
969/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +0000970static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000971
Chris Lattner545dd342008-06-28 23:36:30 +0000972 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000973 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +0000974 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000975 return;
976 }
977
Chris Lattner545dd342008-06-28 23:36:30 +0000978 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +0000979 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000980 return;
981 }
982
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000983 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000984 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +0000985 << "format" << 0 /*function*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000986 return;
987 }
988
989 // FIXME: in C++ the implicit 'this' function parameter also counts.
990 // this is needed in order to be compatible with GCC
991 // the index must start in 1 and the limit is numargs+1
Daniel Dunbar35682492008-09-26 04:12:28 +0000992 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000993 unsigned FirstIdx = 1;
994
Chris Lattner545dd342008-06-28 23:36:30 +0000995 const char *Format = Attr.getParameterName()->getName();
996 unsigned FormatLen = Attr.getParameterName()->getLength();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000997
998 // Normalize the argument, __foo__ becomes foo.
999 if (FormatLen > 4 && Format[0] == '_' && Format[1] == '_' &&
1000 Format[FormatLen - 2] == '_' && Format[FormatLen - 1] == '_') {
1001 Format += 2;
1002 FormatLen -= 4;
1003 }
1004
1005 bool Supported = false;
1006 bool is_NSString = false;
1007 bool is_strftime = false;
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001008 bool is_CFString = false;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001009
1010 switch (FormatLen) {
1011 default: break;
Chris Lattner803d0802008-06-29 00:43:07 +00001012 case 5: Supported = !memcmp(Format, "scanf", 5); break;
1013 case 6: Supported = !memcmp(Format, "printf", 6); break;
1014 case 7: Supported = !memcmp(Format, "strfmon", 7); break;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001015 case 8:
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001016 Supported = (is_strftime = !memcmp(Format, "strftime", 8)) ||
1017 (is_NSString = !memcmp(Format, "NSString", 8)) ||
1018 (is_CFString = !memcmp(Format, "CFString", 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001019 break;
1020 }
1021
1022 if (!Supported) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001023 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
1024 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001025 return;
1026 }
1027
1028 // checks for the 2nd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001029 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner803d0802008-06-29 00:43:07 +00001030 llvm::APSInt Idx(32);
1031 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001032 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001033 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001034 return;
1035 }
1036
1037 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001038 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001039 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001040 return;
1041 }
1042
1043 // FIXME: Do we need to bounds check?
1044 unsigned ArgIdx = Idx.getZExtValue() - 1;
1045
1046 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +00001047 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001048
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001049 if (is_CFString) {
1050 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001051 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1052 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00001053 return;
1054 }
1055 } else if (is_NSString) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001056 // FIXME: do we need to check if the type is NSString*? What are
1057 // the semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00001058 if (!isNSStringType(Ty, S.Context)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001059 // FIXME: Should highlight the actual expression that has the
1060 // wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001061 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1062 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001063 return;
1064 }
1065 } else if (!Ty->isPointerType() ||
1066 !Ty->getAsPointerType()->getPointeeType()->isCharType()) {
1067 // FIXME: Should highlight the actual expression that has the
1068 // wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001069 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
1070 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001071 return;
1072 }
1073
1074 // check the 3rd argument
Chris Lattner545dd342008-06-28 23:36:30 +00001075 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattner803d0802008-06-29 00:43:07 +00001076 llvm::APSInt FirstArg(32);
1077 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001078 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001079 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001080 return;
1081 }
1082
1083 // check if the function is variadic if the 3rd argument non-zero
1084 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +00001085 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001086 ++NumArgs; // +1 for ...
1087 } else {
Chris Lattner803d0802008-06-29 00:43:07 +00001088 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001089 return;
1090 }
1091 }
1092
Chris Lattner3c73c412008-11-19 08:23:25 +00001093 // strftime requires FirstArg to be 0 because it doesn't read from any
1094 // variable the input is just the current time + the format string.
Chris Lattner6b6b5372008-06-26 18:38:35 +00001095 if (is_strftime) {
1096 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001097 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
1098 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001099 return;
1100 }
1101 // if 0 it disables parameter checking (to use with e.g. va_list)
1102 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001103 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00001104 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001105 return;
1106 }
1107
1108 d->addAttr(new FormatAttr(std::string(Format, FormatLen),
1109 Idx.getZExtValue(), FirstArg.getZExtValue()));
1110}
1111
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001112static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
1113 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001114 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001115 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001117 return;
1118 }
1119
Eli Friedmanbc887452008-09-02 05:19:23 +00001120 // FIXME: This shouldn't be restricted to typedefs
1121 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
1122 if (!TD || !TD->getUnderlyingType()->isUnionType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001123 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +00001124 << "transparent_union" << 1 /*union*/;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001125 return;
1126 }
1127
Eli Friedmanbc887452008-09-02 05:19:23 +00001128 RecordDecl* RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001129
Eli Friedmanbc887452008-09-02 05:19:23 +00001130 // FIXME: Should we do a check for RD->isDefinition()?
1131
1132 // FIXME: This isn't supposed to be restricted to pointers, but otherwise
1133 // we might silently generate incorrect code; see following code
Douglas Gregor44b43212008-12-11 16:49:14 +00001134 for (RecordDecl::field_iterator Field = RD->field_begin(),
1135 FieldEnd = RD->field_end();
1136 Field != FieldEnd; ++Field) {
1137 if (!Field->getType()->isPointerType()) {
Eli Friedmanbc887452008-09-02 05:19:23 +00001138 S.Diag(Attr.getLoc(), diag::warn_transparent_union_nonpointer);
1139 return;
1140 }
1141 }
1142
1143 // FIXME: This is a complete hack; we should be properly propagating
1144 // transparent_union through Sema. That said, this is close enough to
1145 // correctly compile all the common cases of transparent_union without
1146 // errors or warnings
1147 QualType NewTy = S.Context.VoidPtrTy;
1148 NewTy.addConst();
1149 TD->setUnderlyingType(NewTy);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001150}
1151
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001152static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001153 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001154 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001155 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001156 return;
1157 }
Chris Lattner545dd342008-06-28 23:36:30 +00001158 Expr *argExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001159 StringLiteral *SE = dyn_cast<StringLiteral>(argExpr);
1160
1161 // Make sure that there is a string literal as the annotation's single
1162 // argument.
1163 if (!SE) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001164 S.Diag(Attr.getLoc(), diag::err_attribute_annotate_no_string);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001165 return;
1166 }
1167 d->addAttr(new AnnotateAttr(std::string(SE->getStrData(),
1168 SE->getByteLength())));
1169}
1170
Chris Lattner803d0802008-06-29 00:43:07 +00001171static void HandleAlignedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001172 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001173 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001174 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001175 return;
1176 }
1177
1178 unsigned Align = 0;
Chris Lattner545dd342008-06-28 23:36:30 +00001179 if (Attr.getNumArgs() == 0) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001180 // FIXME: This should be the target specific maximum alignment.
Daniel Dunbar7549c552009-02-18 20:06:09 +00001181 // (For now we just use 128 bits which is the maximum on X86).
Chris Lattner6b6b5372008-06-26 18:38:35 +00001182 Align = 128;
Daniel Dunbar7549c552009-02-18 20:06:09 +00001183 d->addAttr(new AlignedAttr(Align));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001184 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001185 }
Chris Lattner49e2d342008-06-28 23:50:44 +00001186
1187 Expr *alignmentExpr = static_cast<Expr *>(Attr.getArg(0));
1188 llvm::APSInt Alignment(32);
Chris Lattner803d0802008-06-29 00:43:07 +00001189 if (!alignmentExpr->isIntegerConstantExpr(Alignment, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001190 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1191 << "aligned" << alignmentExpr->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00001192 return;
1193 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00001194 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
1195 S.Diag(Attr.getLoc(), diag::err_attribute_aligned_not_power_of_two)
1196 << alignmentExpr->getSourceRange();
1197 return;
1198 }
1199
Chris Lattner49e2d342008-06-28 23:50:44 +00001200 d->addAttr(new AlignedAttr(Alignment.getZExtValue() * 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001201}
Chris Lattnerfbf13472008-06-27 22:18:37 +00001202
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001203/// HandleModeAttr - This attribute modifies the width of a decl with
Chris Lattner065c5a82008-06-28 23:48:25 +00001204/// primitive type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00001205///
1206/// Despite what would be logical, the mode attribute is a decl attribute,
1207/// not a type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make
1208/// 'G' be HImode, not an intermediate pointer.
1209///
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001210static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00001211 // This attribute isn't documented, but glibc uses it. It changes
1212 // the width of an int or unsigned int to the specified size.
1213
1214 // Check that there aren't any arguments
1215 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001216 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001217 return;
1218 }
1219
1220 IdentifierInfo *Name = Attr.getParameterName();
1221 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001222 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001223 return;
1224 }
1225 const char *Str = Name->getName();
1226 unsigned Len = Name->getLength();
1227
1228 // Normalize the attribute name, __foo__ becomes foo.
1229 if (Len > 4 && Str[0] == '_' && Str[1] == '_' &&
1230 Str[Len - 2] == '_' && Str[Len - 1] == '_') {
1231 Str += 2;
1232 Len -= 4;
1233 }
1234
1235 unsigned DestWidth = 0;
1236 bool IntegerMode = true;
1237 switch (Len) {
1238 case 2:
1239 if (!memcmp(Str, "QI", 2)) { DestWidth = 8; break; }
1240 if (!memcmp(Str, "HI", 2)) { DestWidth = 16; break; }
1241 if (!memcmp(Str, "SI", 2)) { DestWidth = 32; break; }
1242 if (!memcmp(Str, "DI", 2)) { DestWidth = 64; break; }
1243 if (!memcmp(Str, "TI", 2)) { DestWidth = 128; break; }
1244 if (!memcmp(Str, "SF", 2)) { DestWidth = 32; IntegerMode = false; break; }
1245 if (!memcmp(Str, "DF", 2)) { DestWidth = 64; IntegerMode = false; break; }
1246 if (!memcmp(Str, "XF", 2)) { DestWidth = 96; IntegerMode = false; break; }
1247 if (!memcmp(Str, "TF", 2)) { DestWidth = 128; IntegerMode = false; break; }
1248 break;
1249 case 4:
1250 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1251 // pointer on PIC16 and other embedded platforms.
1252 if (!memcmp(Str, "word", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001253 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001254 if (!memcmp(Str, "byte", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001255 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001256 break;
1257 case 7:
1258 if (!memcmp(Str, "pointer", 7))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001259 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001260 break;
1261 }
1262
1263 QualType OldTy;
1264 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1265 OldTy = TD->getUnderlyingType();
1266 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1267 OldTy = VD->getType();
1268 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001269 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1270 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001271 return;
1272 }
1273
Eli Friedmanf98aba32009-02-13 02:31:07 +00001274 // FIXME: Sync this with InitializePredefinedMacros; we need to match
1275 // int8_t and friends, at least with glibc.
1276 // FIXME: Make sure 32/64-bit integers don't get defined to types of
1277 // the wrong width on unusual platforms.
1278 // FIXME: Make sure floating-point mappings are accurate
1279 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00001280 QualType NewTy;
1281 switch (DestWidth) {
1282 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00001283 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001284 return;
1285 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00001286 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001287 return;
1288 case 8:
1289 assert(IntegerMode);
1290 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001291 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001292 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001293 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001294 break;
1295 case 16:
1296 assert(IntegerMode);
1297 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001298 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001299 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001300 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001301 break;
1302 case 32:
1303 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001304 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001305 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001306 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001307 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001308 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001309 break;
1310 case 64:
1311 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001312 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001313 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001314 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001315 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001316 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001317 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00001318 case 128:
1319 if (!IntegerMode) {
1320 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
1321 return;
1322 }
1323 NewTy = S.Context.getFixedWidthIntType(128, OldTy->isSignedIntegerType());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001324 }
1325
1326 if (!OldTy->getAsBuiltinType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001327 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001328 else if (!(IntegerMode && OldTy->isIntegerType()) &&
1329 !(!IntegerMode && OldTy->isFloatingType())) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001330 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001331 }
1332
1333 // Install the new type.
1334 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1335 TD->setUnderlyingType(NewTy);
1336 else
1337 cast<ValueDecl>(D)->setType(NewTy);
1338}
Chris Lattner0744e5f2008-06-29 00:23:49 +00001339
Anders Carlssond87df372009-02-13 06:46:13 +00001340static void HandleNodebugAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1341 // check the attribute arguments.
1342 if (Attr.getNumArgs() > 0) {
1343 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1344 return;
1345 }
Anders Carlssone896d982009-02-13 08:11:52 +00001346
Anders Carlsson5bab7882009-02-19 19:16:48 +00001347 if (!isFunctionOrMethod(d)) {
Anders Carlssond87df372009-02-13 06:46:13 +00001348 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Chris Lattner026dc962009-02-14 07:37:35 +00001349 << "nodebug" << 0 /*function*/;
Anders Carlssond87df372009-02-13 06:46:13 +00001350 return;
1351 }
1352
1353 d->addAttr(new NodebugAttr());
1354}
1355
Anders Carlsson5bab7882009-02-19 19:16:48 +00001356static void HandleNoinlineAttr(Decl *d, const AttributeList &Attr, Sema &S) {
1357 // check the attribute arguments.
1358 if (Attr.getNumArgs() != 0) {
1359 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1360 return;
1361 }
1362
1363 if (!isFunctionOrMethod(d)) {
1364 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1365 << "noinline" << 0 /*function*/;
1366 return;
1367 }
1368
1369 d->addAttr(new NoinlineAttr());
1370}
1371
Chris Lattner0744e5f2008-06-29 00:23:49 +00001372//===----------------------------------------------------------------------===//
1373// Top Level Sema Entry Points
1374//===----------------------------------------------------------------------===//
1375
Sebastian Redla89d82c2008-12-21 19:24:58 +00001376/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
Chris Lattner803d0802008-06-29 00:43:07 +00001377/// the attribute applies to decls. If the attribute is a type attribute, just
1378/// silently ignore it.
1379static void ProcessDeclAttribute(Decl *D, const AttributeList &Attr, Sema &S) {
1380 switch (Attr.getKind()) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001381 case AttributeList::AT_IBOutlet: HandleIBOutletAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001382 case AttributeList::AT_address_space:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00001383 case AttributeList::AT_objc_gc:
1384 // Ignore these, these are type attributes, handled by ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00001385 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001386 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
1387 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001388 case AttributeList::AT_always_inline:
1389 HandleAlwaysInlineAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001390 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
1391 case AttributeList::AT_constructor: HandleConstructorAttr(D, Attr, S); break;
1392 case AttributeList::AT_deprecated: HandleDeprecatedAttr(D, Attr, S); break;
1393 case AttributeList::AT_destructor: HandleDestructorAttr(D, Attr, S); break;
1394 case AttributeList::AT_dllexport: HandleDLLExportAttr (D, Attr, S); break;
1395 case AttributeList::AT_dllimport: HandleDLLImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001396 case AttributeList::AT_ext_vector_type:
1397 HandleExtVectorTypeAttr(D, Attr, S);
1398 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001399 case AttributeList::AT_fastcall: HandleFastCallAttr (D, Attr, S); break;
1400 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001401 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001402 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
1403 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
1404 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
1405 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001406 case AttributeList::AT_section: HandleSectionAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001407 case AttributeList::AT_stdcall: HandleStdCallAttr (D, Attr, S); break;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001408 case AttributeList::AT_unavailable: HandleUnavailableAttr(D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001409 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001410 case AttributeList::AT_used: HandleUsedAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001411 case AttributeList::AT_vector_size: HandleVectorSizeAttr(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001412 case AttributeList::AT_visibility: HandleVisibilityAttr(D, Attr, S); break;
Chris Lattner026dc962009-02-14 07:37:35 +00001413 case AttributeList::AT_warn_unused_result: HandleWarnUnusedResult(D,Attr,S);
1414 break;
Chris Lattner803d0802008-06-29 00:43:07 +00001415 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001416 case AttributeList::AT_transparent_union:
1417 HandleTransparentUnionAttr(D, Attr, S);
1418 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00001419 case AttributeList::AT_objc_exception:
1420 HandleObjCExceptionAttr(D, Attr, S);
1421 break;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001422 case AttributeList::AT_overloadable:HandleOverloadableAttr(D, Attr, S); break;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001423 case AttributeList::AT_nsobject: HandleObjCNSObject (D, Attr, S); break;
Steve Naroff9eae5762008-09-18 16:44:58 +00001424 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
Anders Carlsson77091822008-10-05 18:05:59 +00001425 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001426 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
1427 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001428 case AttributeList::AT_cleanup: HandleCleanupAttr (D, Attr, S); break;
Anders Carlssond87df372009-02-13 06:46:13 +00001429 case AttributeList::AT_nodebug: HandleNodebugAttr (D, Attr, S); break;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001430 case AttributeList::AT_noinline: HandleNoinlineAttr (D, Attr, S); break;
Anders Carlsson05f8e472009-02-13 08:16:43 +00001431 case AttributeList::IgnoredAttribute:
1432 // Just ignore
1433 break;
Chris Lattner803d0802008-06-29 00:43:07 +00001434 default:
Anders Carlssond87df372009-02-13 06:46:13 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00001436 break;
1437 }
1438}
1439
1440/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
1441/// attribute list to the specified decl, ignoring any type attributes.
1442void Sema::ProcessDeclAttributeList(Decl *D, const AttributeList *AttrList) {
1443 while (AttrList) {
1444 ProcessDeclAttribute(D, *AttrList, *this);
1445 AttrList = AttrList->getNext();
1446 }
1447}
1448
1449
Chris Lattner0744e5f2008-06-29 00:23:49 +00001450/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
1451/// it, apply them to D. This is a bit tricky because PD can have attributes
1452/// specified in many different places, and we need to find and apply them all.
1453void Sema::ProcessDeclAttributes(Decl *D, const Declarator &PD) {
1454 // Apply decl attributes from the DeclSpec if present.
1455 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
1456 ProcessDeclAttributeList(D, Attrs);
Chris Lattner803d0802008-06-29 00:43:07 +00001457
Chris Lattner0744e5f2008-06-29 00:23:49 +00001458 // Walk the declarator structure, applying decl attributes that were in a type
1459 // position to the decl itself. This handles cases like:
1460 // int *__attr__(x)** D;
1461 // when X is a decl attribute.
1462 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
1463 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
1464 ProcessDeclAttributeList(D, Attrs);
1465
1466 // Finally, apply any attributes on the decl itself.
1467 if (const AttributeList *Attrs = PD.getAttributes())
1468 ProcessDeclAttributeList(D, Attrs);
1469}
1470