blob: 40f70fb3cc1a3c750d2f36e158f65d41c8048847 [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"
Daniel Dunbare4858a62008-08-11 03:45:03 +000018#include "clang/Basic/Diagnostic.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000019#include "clang/Basic/TargetInfo.h"
Daniel Dunbar12bc6922008-08-11 03:27:53 +000020#include "clang/Parse/DeclSpec.h"
Ted Kremenek6e1eb872008-07-22 16:56:21 +000021#include <llvm/ADT/StringExtras.h>
Chris Lattner6b6b5372008-06-26 18:38:35 +000022using namespace clang;
23
Chris Lattnere5c5ee12008-06-29 00:16:31 +000024//===----------------------------------------------------------------------===//
25// Helper functions
26//===----------------------------------------------------------------------===//
27
Daniel Dunbard3f2c102008-10-19 02:04:16 +000028static const FunctionType *getFunctionType(Decl *d) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000029 QualType Ty;
Chris Lattner6b6b5372008-06-26 18:38:35 +000030 if (ValueDecl *decl = dyn_cast<ValueDecl>(d))
31 Ty = decl->getType();
32 else if (FieldDecl *decl = dyn_cast<FieldDecl>(d))
33 Ty = decl->getType();
34 else if (TypedefDecl* decl = dyn_cast<TypedefDecl>(d))
35 Ty = decl->getUnderlyingType();
36 else
37 return 0;
38
39 if (Ty->isFunctionPointerType())
40 Ty = Ty->getAsPointerType()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000041
42 return Ty->getAsFunctionType();
Chris Lattner6b6b5372008-06-26 18:38:35 +000043}
44
Daniel Dunbar35682492008-09-26 04:12:28 +000045// FIXME: We should provide an abstraction around a method or function
46// to provide the following bits of information.
47
Daniel Dunbard3f2c102008-10-19 02:04:16 +000048/// isFunctionOrMethod - Return true if the given decl has function
49/// type (function or function-typed variable) or an Objective-C
50/// method.
Daniel Dunbar35682492008-09-26 04:12:28 +000051static bool isFunctionOrMethod(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000052 return getFunctionType(d) || isa<ObjCMethodDecl>(d);
Daniel Dunbar35682492008-09-26 04:12:28 +000053}
54
Daniel Dunbard3f2c102008-10-19 02:04:16 +000055/// hasFunctionProto - Return true if the given decl has a argument
56/// information. This decl should have already passed
57/// isFunctionOrMethod.
58static bool hasFunctionProto(Decl *d) {
59 if (const FunctionType *FnTy = getFunctionType(d)) {
60 return isa<FunctionTypeProto>(FnTy);
61 } else {
62 assert(isa<ObjCMethodDecl>(d));
63 return true;
64 }
65}
66
67/// getFunctionOrMethodNumArgs - Return number of function or method
68/// arguments. It is an error to call this on a K&R function (use
69/// hasFunctionProto first).
Daniel Dunbar35682492008-09-26 04:12:28 +000070static unsigned getFunctionOrMethodNumArgs(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000071 if (const FunctionType *FnTy = getFunctionType(d)) {
72 const FunctionTypeProto *proto = cast<FunctionTypeProto>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +000073 return proto->getNumArgs();
74 } else {
75 return cast<ObjCMethodDecl>(d)->getNumParams();
76 }
77}
78
79static QualType getFunctionOrMethodArgType(Decl *d, unsigned Idx) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000080 if (const FunctionType *FnTy = getFunctionType(d)) {
81 const FunctionTypeProto *proto = cast<FunctionTypeProto>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +000082 return proto->getArgType(Idx);
83 } else {
84 return cast<ObjCMethodDecl>(d)->getParamDecl(Idx)->getType();
85 }
86}
87
88static bool isFunctionOrMethodVariadic(Decl *d) {
Daniel Dunbard3f2c102008-10-19 02:04:16 +000089 if (const FunctionType *FnTy = getFunctionType(d)) {
90 const FunctionTypeProto *proto = cast<FunctionTypeProto>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +000091 return proto->isVariadic();
92 } else {
93 return cast<ObjCMethodDecl>(d)->isVariadic();
94 }
95}
96
Chris Lattner6b6b5372008-06-26 18:38:35 +000097static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
Chris Lattnerb77792e2008-07-26 22:17:49 +000098 const PointerType *PT = T->getAsPointerType();
99 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000100 return false;
101
Chris Lattnerb77792e2008-07-26 22:17:49 +0000102 const ObjCInterfaceType *ClsT =PT->getPointeeType()->getAsObjCInterfaceType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000103 if (!ClsT)
104 return false;
105
106 IdentifierInfo* ClsName = ClsT->getDecl()->getIdentifier();
107
108 // FIXME: Should we walk the chain of classes?
109 return ClsName == &Ctx.Idents.get("NSString") ||
110 ClsName == &Ctx.Idents.get("NSMutableString");
111}
112
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000113static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
114 const PointerType *PT = T->getAsPointerType();
115 if (!PT)
116 return false;
117
118 const RecordType *RT = PT->getPointeeType()->getAsRecordType();
119 if (!RT)
120 return false;
121
122 const RecordDecl *RD = RT->getDecl();
123 if (RD->getTagKind() != TagDecl::TK_struct)
124 return false;
125
126 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
127}
128
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000129//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000130// Attribute Implementations
131//===----------------------------------------------------------------------===//
132
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000133// FIXME: All this manual attribute parsing code is gross. At the
134// least add some helper functions to check most argument patterns (#
135// and types of args).
136
Chris Lattner803d0802008-06-29 00:43:07 +0000137static void HandleExtVectorTypeAttr(Decl *d, const AttributeList &Attr,
138 Sema &S) {
Chris Lattner545dd342008-06-28 23:36:30 +0000139 TypedefDecl *tDecl = dyn_cast<TypedefDecl>(d);
140 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000141 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000142 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000143 }
144
Chris Lattner6b6b5372008-06-26 18:38:35 +0000145 QualType curType = tDecl->getUnderlyingType();
146 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000147 if (Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000148 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000149 return;
150 }
Chris Lattner545dd342008-06-28 23:36:30 +0000151 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000152 llvm::APSInt vecSize(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000153 if (!sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000154 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
155 << "ext_vector_type" << sizeExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000156 return;
157 }
158 // unlike gcc's vector_size attribute, we do not allow vectors to be defined
159 // in conjunction with complex types (pointers, arrays, functions, etc.).
Chris Lattnerb77792e2008-07-26 22:17:49 +0000160 if (!curType->isIntegerType() && !curType->isRealFloatingType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000161 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type)
162 << curType.getAsString();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000163 return;
164 }
165 // unlike gcc's vector_size attribute, the size is specified as the
166 // number of elements, not the number of bytes.
167 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue());
168
169 if (vectorSize == 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000170 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
171 << sizeExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000172 return;
173 }
174 // Instantiate/Install the vector type, the number of elements is > 0.
Chris Lattner803d0802008-06-29 00:43:07 +0000175 tDecl->setUnderlyingType(S.Context.getExtVectorType(curType, vectorSize));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176 // Remember this typedef decl, we will need it later for diagnostics.
Chris Lattner803d0802008-06-29 00:43:07 +0000177 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000178}
179
Chris Lattner065c5a82008-06-28 23:48:25 +0000180
181/// HandleVectorSizeAttribute - this attribute is only applicable to
182/// integral and float scalars, although arrays, pointers, and function
183/// return values are allowed in conjunction with this construct. Aggregates
184/// with this attribute are invalid, even if they are of the same size as a
185/// corresponding scalar.
186/// The raw attribute should contain precisely 1 argument, the vector size
187/// for the variable, measured in bytes. If curType and rawAttr are well
188/// formed, this routine will return a new vector type.
Chris Lattner803d0802008-06-29 00:43:07 +0000189static void HandleVectorSizeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattner065c5a82008-06-28 23:48:25 +0000190 QualType CurType;
191 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
192 CurType = VD->getType();
193 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
194 CurType = TD->getUnderlyingType();
195 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000196 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
197 << "vector_size" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattner065c5a82008-06-28 23:48:25 +0000198 return;
199 }
200
201 // Check the attribute arugments.
Chris Lattner545dd342008-06-28 23:36:30 +0000202 if (Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000203 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner065c5a82008-06-28 23:48:25 +0000204 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000205 }
Chris Lattner545dd342008-06-28 23:36:30 +0000206 Expr *sizeExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000207 llvm::APSInt vecSize(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000208 if (!sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000209 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
210 << "vector_size" << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000211 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000212 }
213 // navigate to the base type - we need to provide for vector pointers,
214 // vector arrays, and functions returning vectors.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000215 if (CurType->isPointerType() || CurType->isArrayType() ||
216 CurType->isFunctionType()) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000217 assert(0 && "HandleVector(): Complex type construction unimplemented");
218 /* FIXME: rebuild the type from the inside out, vectorizing the inner type.
219 do {
220 if (PointerType *PT = dyn_cast<PointerType>(canonType))
221 canonType = PT->getPointeeType().getTypePtr();
222 else if (ArrayType *AT = dyn_cast<ArrayType>(canonType))
223 canonType = AT->getElementType().getTypePtr();
224 else if (FunctionType *FT = dyn_cast<FunctionType>(canonType))
225 canonType = FT->getResultType().getTypePtr();
226 } while (canonType->isPointerType() || canonType->isArrayType() ||
227 canonType->isFunctionType());
228 */
229 }
230 // the base type must be integer or float.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000231 if (!CurType->isIntegerType() && !CurType->isRealFloatingType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000232 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_vector_type)
233 << CurType.getAsString();
Chris Lattner065c5a82008-06-28 23:48:25 +0000234 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000235 }
Chris Lattner803d0802008-06-29 00:43:07 +0000236 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000237 // vecSize is specified in bytes - convert to bits.
238 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8);
239
240 // the vector size needs to be an integral multiple of the type size.
241 if (vectorSize % typeSize) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000242 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_size)
243 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000244 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000245 }
246 if (vectorSize == 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000247 S.Diag(Attr.getLoc(), diag::err_attribute_zero_size)
248 << sizeExpr->getSourceRange();
Chris Lattner065c5a82008-06-28 23:48:25 +0000249 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000250 }
Chris Lattner065c5a82008-06-28 23:48:25 +0000251
252 // Success! Instantiate the vector type, the number of elements is > 0, and
253 // not required to be a power of 2, unlike GCC.
Chris Lattner803d0802008-06-29 00:43:07 +0000254 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize);
Chris Lattner065c5a82008-06-28 23:48:25 +0000255
256 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
257 VD->setType(CurType);
258 else
259 cast<TypedefDecl>(D)->setUnderlyingType(CurType);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000260}
261
Chris Lattner803d0802008-06-29 00:43:07 +0000262static void HandlePackedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000263 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000264 if (Attr.getNumArgs() > 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000265 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000266 return;
267 }
268
269 if (TagDecl *TD = dyn_cast<TagDecl>(d))
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000270 TD->addAttr(new PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000271 else if (FieldDecl *FD = dyn_cast<FieldDecl>(d)) {
272 // If the alignment is less than or equal to 8 bits, the packed attribute
273 // has no effect.
274 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000275 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000276 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
277 << Attr.getName()->getName() << FD->getType().getAsString();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000278 else
Daniel Dunbar3b0db902008-10-16 02:34:03 +0000279 FD->addAttr(new PackedAttr(1));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000280 } else
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000281 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored)
282 << Attr.getName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000283}
284
Ted Kremenek96329d42008-07-15 22:26:48 +0000285static void HandleIBOutletAttr(Decl *d, const AttributeList &Attr, Sema &S) {
286 // check the attribute arguments.
287 if (Attr.getNumArgs() > 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000288 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Ted Kremenek96329d42008-07-15 22:26:48 +0000289 return;
290 }
291
292 // The IBOutlet attribute only applies to instance variables of Objective-C
293 // classes.
294 if (ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(d))
295 ID->addAttr(new IBOutletAttr());
296 else
297 S.Diag(Attr.getLoc(), diag::err_attribute_iboutlet_non_ivar);
298}
299
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000300static void HandleNonNullAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000301 // GCC ignores the nonnull attribute on K&R style function
302 // prototypes, so we ignore it as well
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000303 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000304 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
305 << "nonnull" << "function";
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000306 return;
307 }
308
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000309 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000310
311 // The nonnull attribute only applies to pointers.
312 llvm::SmallVector<unsigned, 10> NonNullArgs;
313
314 for (AttributeList::arg_iterator I=Attr.arg_begin(),
315 E=Attr.arg_end(); I!=E; ++I) {
316
317
318 // The argument must be an integer constant expression.
319 Expr *Ex = static_cast<Expr *>(Attr.getArg(0));
320 llvm::APSInt ArgNum(32);
321 if (!Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000322 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
323 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000324 return;
325 }
326
327 unsigned x = (unsigned) ArgNum.getZExtValue();
328
329 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000330 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
331 << "nonnull" << llvm::utostr_32(I.getArgNum()) << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000332 return;
333 }
Ted Kremenek465172f2008-07-21 22:09:15 +0000334
335 --x;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000336
337 // Is the function argument a pointer type?
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000338 QualType T = getFunctionOrMethodArgType(d, x);
339 if (!T->isPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000340 // FIXME: Should also highlight argument in decl.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000341 S.Diag(Attr.getLoc(), diag::err_nonnull_pointers_only)
342 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000343 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000344 }
345
346 NonNullArgs.push_back(x);
347 }
348
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000349 // If no arguments were specified to __attribute__((nonnull)) then all
350 // pointer arguments have a nonnull attribute.
351 if (NonNullArgs.empty()) {
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000352 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(d); I != E; ++I) {
353 QualType T = getFunctionOrMethodArgType(d, I);
354 if (T->isPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000355 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000356 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000357
358 if (NonNullArgs.empty()) {
359 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
360 return;
361 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000362 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000363
364 unsigned* start = &NonNullArgs[0];
365 unsigned size = NonNullArgs.size();
366 std::sort(start, start + size);
367 d->addAttr(new NonNullAttr(start, size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000368}
369
Chris Lattner803d0802008-06-29 00:43:07 +0000370static void HandleAliasAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000371 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000372 if (Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000373 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000374 return;
375 }
376
Chris Lattner545dd342008-06-28 23:36:30 +0000377 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000378 Arg = Arg->IgnoreParenCasts();
379 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
380
381 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000382 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
383 << "alias" << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000384 return;
385 }
386
387 const char *Alias = Str->getStrData();
388 unsigned AliasLen = Str->getByteLength();
389
390 // FIXME: check if target symbol exists in current file
391
392 d->addAttr(new AliasAttr(std::string(Alias, AliasLen)));
393}
394
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000395static void HandleAlwaysInlineAttr(Decl *d, const AttributeList &Attr,
396 Sema &S) {
397 // check the attribute arguments.
398 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000399 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000400 return;
401 }
402
403 d->addAttr(new AlwaysInlineAttr());
404}
405
Chris Lattner803d0802008-06-29 00:43:07 +0000406static void HandleNoReturnAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000407 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000408 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000409 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000410 return;
411 }
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000412
413 if (!isFunctionOrMethod(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000414 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
415 << "noreturn" << "function";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000416 return;
417 }
418
419 d->addAttr(new NoReturnAttr());
420}
421
Ted Kremenek73798892008-07-25 04:39:19 +0000422static void HandleUnusedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
423 // check the attribute arguments.
424 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000425 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Ted Kremenek73798892008-07-25 04:39:19 +0000426 return;
427 }
428
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000429 if (!isa<VarDecl>(d) && !isFunctionOrMethod(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000430 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
431 << "unused" << "variable and function";
Ted Kremenek73798892008-07-25 04:39:19 +0000432 return;
433 }
434
435 d->addAttr(new UnusedAttr());
436}
437
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000438static void HandleConstructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
439 // check the attribute arguments.
440 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000441 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
442 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000443 return;
444 }
445
446 int priority = 65535; // FIXME: Do not hardcode such constants.
447 if (Attr.getNumArgs() > 0) {
448 Expr *E = static_cast<Expr *>(Attr.getArg(0));
449 llvm::APSInt Idx(32);
450 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000451 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
452 << "constructor" << "1" << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000453 return;
454 }
455 priority = Idx.getZExtValue();
456 }
457
458 FunctionDecl *Fn = dyn_cast<FunctionDecl>(d);
459 if (!Fn) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000460 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
461 << "constructor" << "function";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000462 return;
463 }
464
465 d->addAttr(new ConstructorAttr(priority));
466}
467
468static void HandleDestructorAttr(Decl *d, const AttributeList &Attr, Sema &S) {
469 // check the attribute arguments.
470 if (Attr.getNumArgs() != 0 && Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000471 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
472 << "0 or 1";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000473 return;
474 }
475
476 int priority = 65535; // FIXME: Do not hardcode such constants.
477 if (Attr.getNumArgs() > 0) {
478 Expr *E = static_cast<Expr *>(Attr.getArg(0));
479 llvm::APSInt Idx(32);
480 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000481 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
482 << "destructor" << "1" << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000483 return;
484 }
485 priority = Idx.getZExtValue();
486 }
487
Anders Carlsson6782fc62008-08-22 22:10:48 +0000488 if (!isa<FunctionDecl>(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000489 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
490 << "destructor" << "function";
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000491 return;
492 }
493
494 d->addAttr(new DestructorAttr(priority));
495}
496
Chris Lattner803d0802008-06-29 00:43:07 +0000497static void HandleDeprecatedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000498 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000499 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000500 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000501 return;
502 }
503
504 d->addAttr(new DeprecatedAttr());
505}
506
Chris Lattner803d0802008-06-29 00:43:07 +0000507static void HandleVisibilityAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000508 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000509 if (Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000510 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000511 return;
512 }
513
Chris Lattner545dd342008-06-28 23:36:30 +0000514 Expr *Arg = static_cast<Expr*>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000515 Arg = Arg->IgnoreParenCasts();
516 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
517
518 if (Str == 0 || Str->isWide()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000519 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
520 << "visibility" << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000521 return;
522 }
523
524 const char *TypeStr = Str->getStrData();
525 unsigned TypeLen = Str->getByteLength();
526 VisibilityAttr::VisibilityTypes type;
527
528 if (TypeLen == 7 && !memcmp(TypeStr, "default", 7))
529 type = VisibilityAttr::DefaultVisibility;
530 else if (TypeLen == 6 && !memcmp(TypeStr, "hidden", 6))
531 type = VisibilityAttr::HiddenVisibility;
532 else if (TypeLen == 8 && !memcmp(TypeStr, "internal", 8))
533 type = VisibilityAttr::HiddenVisibility; // FIXME
534 else if (TypeLen == 9 && !memcmp(TypeStr, "protected", 9))
535 type = VisibilityAttr::ProtectedVisibility;
536 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000537 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
538 << "visibility" << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000539 return;
540 }
541
542 d->addAttr(new VisibilityAttr(type));
543}
544
Anders Carlssonaa0d25b2008-08-23 23:22:21 +0000545static void HandleObjCGCAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Anders Carlsson6e14a8f2008-08-24 16:33:25 +0000546 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000547 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
548 << "objc_gc" << "1";
Anders Carlssonaa0d25b2008-08-23 23:22:21 +0000549 return;
550 }
551
552 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000553 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
554 << "1";
Anders Carlssonaa0d25b2008-08-23 23:22:21 +0000555 return;
556 }
557
558 const char *TypeStr = Attr.getParameterName()->getName();
559 unsigned TypeLen = Attr.getParameterName()->getLength();
560
561 ObjCGCAttr::GCAttrTypes type;
562
563 if (TypeLen == 4 && !memcmp(TypeStr, "weak", 4))
564 type = ObjCGCAttr::Weak;
Anders Carlsson6e14a8f2008-08-24 16:33:25 +0000565 else if (TypeLen == 6 && !memcmp(TypeStr, "strong", 6))
Anders Carlssonaa0d25b2008-08-23 23:22:21 +0000566 type = ObjCGCAttr::Strong;
567 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000568 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
569 << "objc_gc" << TypeStr;
Anders Carlssonaa0d25b2008-08-23 23:22:21 +0000570 return;
571 }
572
573 d->addAttr(new ObjCGCAttr(type));
574}
575
Steve Naroff9eae5762008-09-18 16:44:58 +0000576static void HandleBlocksAttr(Decl *d, const AttributeList &Attr, Sema &S) {
577 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000578 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
579 << "blocks" << "1";
Steve Naroff9eae5762008-09-18 16:44:58 +0000580 return;
581 }
582
583 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000584 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
585 << "1";
Steve Naroff9eae5762008-09-18 16:44:58 +0000586 return;
587 }
588 const char *TypeStr = Attr.getParameterName()->getName();
589 unsigned TypeLen = Attr.getParameterName()->getLength();
590
591 BlocksAttr::BlocksAttrTypes type;
592
593 if (TypeLen == 5 && !memcmp(TypeStr, "byref", 5))
594 type = BlocksAttr::ByRef;
595 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000596 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
597 << "blocks" << TypeStr;
Steve Naroff9eae5762008-09-18 16:44:58 +0000598 return;
599 }
600
601 d->addAttr(new BlocksAttr(type));
602}
603
Anders Carlsson77091822008-10-05 18:05:59 +0000604static void HandleSentinelAttr(Decl *d, const AttributeList &Attr, Sema &S) {
605 // check the attribute arguments.
606 if (Attr.getNumArgs() > 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000607 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
608 << "0, 1 or 2";
Anders Carlsson77091822008-10-05 18:05:59 +0000609 return;
610 }
611
612 int sentinel = 0;
613 if (Attr.getNumArgs() > 0) {
614 Expr *E = static_cast<Expr *>(Attr.getArg(0));
615 llvm::APSInt Idx(32);
616 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000617 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
618 << "sentinel" << "1" << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000619 return;
620 }
621 sentinel = Idx.getZExtValue();
622
623 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000624 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
625 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000626 return;
627 }
628 }
629
630 int nullPos = 0;
631 if (Attr.getNumArgs() > 1) {
632 Expr *E = static_cast<Expr *>(Attr.getArg(1));
633 llvm::APSInt Idx(32);
634 if (!E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000635 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
636 << "sentinel" << "2" << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000637 return;
638 }
639 nullPos = Idx.getZExtValue();
640
641 if (nullPos > 1 || nullPos < 0) {
642 // FIXME: This error message could be improved, it would be nice
643 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000644 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
645 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +0000646 return;
647 }
648 }
649
650 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(d)) {
651 QualType FT = FD->getType();
652 if (!FT->getAsFunctionTypeProto()->isVariadic()) {
653 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic);
654 return;
655 }
656 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(d)) {
657 if (!MD->isVariadic()) {
658 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic);
659 return;
660 }
661 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000662 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
663 << "sentinel" << "function or method";
Anders Carlsson77091822008-10-05 18:05:59 +0000664 return;
665 }
666
667 // FIXME: Actually create the attribute.
668}
669
Chris Lattner803d0802008-06-29 00:43:07 +0000670static void HandleWeakAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000671 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000672 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000673 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000674 return;
675 }
676
677 d->addAttr(new WeakAttr());
678}
679
Chris Lattner803d0802008-06-29 00:43:07 +0000680static void HandleDLLImportAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000681 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000682 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000683 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000684 return;
685 }
686
687 d->addAttr(new DLLImportAttr());
688}
689
Chris Lattner803d0802008-06-29 00:43:07 +0000690static void HandleDLLExportAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000691 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000692 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000693 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000694 return;
695 }
696
697 d->addAttr(new DLLExportAttr());
698}
699
Chris Lattner803d0802008-06-29 00:43:07 +0000700static void HandleStdCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000701 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000702 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000703 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000704 return;
705 }
706
707 d->addAttr(new StdCallAttr());
708}
709
Chris Lattner803d0802008-06-29 00:43:07 +0000710static void HandleFastCallAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000711 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000712 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000713 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000714 return;
715 }
716
717 d->addAttr(new FastCallAttr());
718}
719
Chris Lattner803d0802008-06-29 00:43:07 +0000720static void HandleNothrowAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000721 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000722 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000723 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000724 return;
725 }
726
727 d->addAttr(new NoThrowAttr());
728}
729
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000730static void HandleConstAttr(Decl *d, const AttributeList &Attr, Sema &S) {
731 // check the attribute arguments.
732 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000733 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000734 return;
735 }
736
737 d->addAttr(new ConstAttr());
738}
739
740static void HandlePureAttr(Decl *d, const AttributeList &Attr, Sema &S) {
741 // check the attribute arguments.
742 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000743 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Anders Carlsson232eb7d2008-10-05 23:32:53 +0000744 return;
745 }
746
747 d->addAttr(new PureAttr());
748}
749
Chris Lattner6b6b5372008-06-26 18:38:35 +0000750/// Handle __attribute__((format(type,idx,firstarg))) attributes
751/// based on http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chris Lattner803d0802008-06-29 00:43:07 +0000752static void HandleFormatAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000753
Chris Lattner545dd342008-06-28 23:36:30 +0000754 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000755 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
756 << "format" << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000757 return;
758 }
759
Chris Lattner545dd342008-06-28 23:36:30 +0000760 if (Attr.getNumArgs() != 2) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000761 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "3";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000762 return;
763 }
764
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000765 if (!isFunctionOrMethod(d) || !hasFunctionProto(d)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000766 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
767 << "format" << "function";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000768 return;
769 }
770
771 // FIXME: in C++ the implicit 'this' function parameter also counts.
772 // this is needed in order to be compatible with GCC
773 // the index must start in 1 and the limit is numargs+1
Daniel Dunbar35682492008-09-26 04:12:28 +0000774 unsigned NumArgs = getFunctionOrMethodNumArgs(d);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000775 unsigned FirstIdx = 1;
776
Chris Lattner545dd342008-06-28 23:36:30 +0000777 const char *Format = Attr.getParameterName()->getName();
778 unsigned FormatLen = Attr.getParameterName()->getLength();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000779
780 // Normalize the argument, __foo__ becomes foo.
781 if (FormatLen > 4 && Format[0] == '_' && Format[1] == '_' &&
782 Format[FormatLen - 2] == '_' && Format[FormatLen - 1] == '_') {
783 Format += 2;
784 FormatLen -= 4;
785 }
786
787 bool Supported = false;
788 bool is_NSString = false;
789 bool is_strftime = false;
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000790 bool is_CFString = false;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000791
792 switch (FormatLen) {
793 default: break;
Chris Lattner803d0802008-06-29 00:43:07 +0000794 case 5: Supported = !memcmp(Format, "scanf", 5); break;
795 case 6: Supported = !memcmp(Format, "printf", 6); break;
796 case 7: Supported = !memcmp(Format, "strfmon", 7); break;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000797 case 8:
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000798 Supported = (is_strftime = !memcmp(Format, "strftime", 8)) ||
799 (is_NSString = !memcmp(Format, "NSString", 8)) ||
800 (is_CFString = !memcmp(Format, "CFString", 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000801 break;
802 }
803
804 if (!Supported) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000805 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
806 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000807 return;
808 }
809
810 // checks for the 2nd argument
Chris Lattner545dd342008-06-28 23:36:30 +0000811 Expr *IdxExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner803d0802008-06-29 00:43:07 +0000812 llvm::APSInt Idx(32);
813 if (!IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000814 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
815 << "format" << "2" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000816 return;
817 }
818
819 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000820 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
821 << "format" << "2" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000822 return;
823 }
824
825 // FIXME: Do we need to bounds check?
826 unsigned ArgIdx = Idx.getZExtValue() - 1;
827
828 // make sure the format string is really a string
Daniel Dunbar35682492008-09-26 04:12:28 +0000829 QualType Ty = getFunctionOrMethodArgType(d, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000830
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000831 if (is_CFString) {
832 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000833 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
834 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000835 return;
836 }
837 } else if (is_NSString) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000838 // FIXME: do we need to check if the type is NSString*? What are
839 // the semantics?
Chris Lattner803d0802008-06-29 00:43:07 +0000840 if (!isNSStringType(Ty, S.Context)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000841 // FIXME: Should highlight the actual expression that has the
842 // wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000843 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
844 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000845 return;
846 }
847 } else if (!Ty->isPointerType() ||
848 !Ty->getAsPointerType()->getPointeeType()->isCharType()) {
849 // FIXME: Should highlight the actual expression that has the
850 // wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000851 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
852 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000853 return;
854 }
855
856 // check the 3rd argument
Chris Lattner545dd342008-06-28 23:36:30 +0000857 Expr *FirstArgExpr = static_cast<Expr *>(Attr.getArg(1));
Chris Lattner803d0802008-06-29 00:43:07 +0000858 llvm::APSInt FirstArg(32);
859 if (!FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000860 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
861 << "format" << "3" << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000862 return;
863 }
864
865 // check if the function is variadic if the 3rd argument non-zero
866 if (FirstArg != 0) {
Daniel Dunbar35682492008-09-26 04:12:28 +0000867 if (isFunctionOrMethodVariadic(d)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000868 ++NumArgs; // +1 for ...
869 } else {
Chris Lattner803d0802008-06-29 00:43:07 +0000870 S.Diag(d->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000871 return;
872 }
873 }
874
875 // strftime requires FirstArg to be 0 because it doesn't read from any variable
876 // the input is just the current time + the format string
877 if (is_strftime) {
878 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000879 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
880 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000881 return;
882 }
883 // if 0 it disables parameter checking (to use with e.g. va_list)
884 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000885 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
886 << "format" << "3" << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000887 return;
888 }
889
890 d->addAttr(new FormatAttr(std::string(Format, FormatLen),
891 Idx.getZExtValue(), FirstArg.getZExtValue()));
892}
893
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000894static void HandleTransparentUnionAttr(Decl *d, const AttributeList &Attr,
895 Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000896 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000897 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000898 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000899 return;
900 }
901
Eli Friedmanbc887452008-09-02 05:19:23 +0000902 // FIXME: This shouldn't be restricted to typedefs
903 TypedefDecl *TD = dyn_cast<TypedefDecl>(d);
904 if (!TD || !TD->getUnderlyingType()->isUnionType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000905 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
906 << "transparent_union" << "union";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000907 return;
908 }
909
Eli Friedmanbc887452008-09-02 05:19:23 +0000910 RecordDecl* RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000911
Eli Friedmanbc887452008-09-02 05:19:23 +0000912 // FIXME: Should we do a check for RD->isDefinition()?
913
914 // FIXME: This isn't supposed to be restricted to pointers, but otherwise
915 // we might silently generate incorrect code; see following code
916 for (int i = 0; i < RD->getNumMembers(); i++) {
917 if (!RD->getMember(i)->getType()->isPointerType()) {
918 S.Diag(Attr.getLoc(), diag::warn_transparent_union_nonpointer);
919 return;
920 }
921 }
922
923 // FIXME: This is a complete hack; we should be properly propagating
924 // transparent_union through Sema. That said, this is close enough to
925 // correctly compile all the common cases of transparent_union without
926 // errors or warnings
927 QualType NewTy = S.Context.VoidPtrTy;
928 NewTy.addConst();
929 TD->setUnderlyingType(NewTy);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000930}
931
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000932static void HandleAnnotateAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000933 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000934 if (Attr.getNumArgs() != 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000935 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000936 return;
937 }
Chris Lattner545dd342008-06-28 23:36:30 +0000938 Expr *argExpr = static_cast<Expr *>(Attr.getArg(0));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000939 StringLiteral *SE = dyn_cast<StringLiteral>(argExpr);
940
941 // Make sure that there is a string literal as the annotation's single
942 // argument.
943 if (!SE) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000944 S.Diag(Attr.getLoc(), diag::err_attribute_annotate_no_string);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000945 return;
946 }
947 d->addAttr(new AnnotateAttr(std::string(SE->getStrData(),
948 SE->getByteLength())));
949}
950
Chris Lattner803d0802008-06-29 00:43:07 +0000951static void HandleAlignedAttr(Decl *d, const AttributeList &Attr, Sema &S) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000952 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +0000953 if (Attr.getNumArgs() > 1) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000954 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "1";
Chris Lattner6b6b5372008-06-26 18:38:35 +0000955 return;
956 }
957
958 unsigned Align = 0;
Chris Lattner545dd342008-06-28 23:36:30 +0000959 if (Attr.getNumArgs() == 0) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000960 // FIXME: This should be the target specific maximum alignment.
961 // (For now we just use 128 bits which is the maximum on X86.
962 Align = 128;
963 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000964 }
Chris Lattner49e2d342008-06-28 23:50:44 +0000965
966 Expr *alignmentExpr = static_cast<Expr *>(Attr.getArg(0));
967 llvm::APSInt Alignment(32);
Chris Lattner803d0802008-06-29 00:43:07 +0000968 if (!alignmentExpr->isIntegerConstantExpr(Alignment, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000969 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
970 << "aligned" << alignmentExpr->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +0000971 return;
972 }
973 d->addAttr(new AlignedAttr(Alignment.getZExtValue() * 8));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000974}
Chris Lattnerfbf13472008-06-27 22:18:37 +0000975
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000976/// HandleModeAttr - This attribute modifies the width of a decl with
Chris Lattner065c5a82008-06-28 23:48:25 +0000977/// primitive type.
Chris Lattnerfbf13472008-06-27 22:18:37 +0000978///
979/// Despite what would be logical, the mode attribute is a decl attribute,
980/// not a type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make
981/// 'G' be HImode, not an intermediate pointer.
982///
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000983static void HandleModeAttr(Decl *D, const AttributeList &Attr, Sema &S) {
Chris Lattnerfbf13472008-06-27 22:18:37 +0000984 // This attribute isn't documented, but glibc uses it. It changes
985 // the width of an int or unsigned int to the specified size.
986
987 // Check that there aren't any arguments
988 if (Attr.getNumArgs() != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000989 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << "0";
Chris Lattnerfbf13472008-06-27 22:18:37 +0000990 return;
991 }
992
993 IdentifierInfo *Name = Attr.getParameterName();
994 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +0000995 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +0000996 return;
997 }
998 const char *Str = Name->getName();
999 unsigned Len = Name->getLength();
1000
1001 // Normalize the attribute name, __foo__ becomes foo.
1002 if (Len > 4 && Str[0] == '_' && Str[1] == '_' &&
1003 Str[Len - 2] == '_' && Str[Len - 1] == '_') {
1004 Str += 2;
1005 Len -= 4;
1006 }
1007
1008 unsigned DestWidth = 0;
1009 bool IntegerMode = true;
1010 switch (Len) {
1011 case 2:
1012 if (!memcmp(Str, "QI", 2)) { DestWidth = 8; break; }
1013 if (!memcmp(Str, "HI", 2)) { DestWidth = 16; break; }
1014 if (!memcmp(Str, "SI", 2)) { DestWidth = 32; break; }
1015 if (!memcmp(Str, "DI", 2)) { DestWidth = 64; break; }
1016 if (!memcmp(Str, "TI", 2)) { DestWidth = 128; break; }
1017 if (!memcmp(Str, "SF", 2)) { DestWidth = 32; IntegerMode = false; break; }
1018 if (!memcmp(Str, "DF", 2)) { DestWidth = 64; IntegerMode = false; break; }
1019 if (!memcmp(Str, "XF", 2)) { DestWidth = 96; IntegerMode = false; break; }
1020 if (!memcmp(Str, "TF", 2)) { DestWidth = 128; IntegerMode = false; break; }
1021 break;
1022 case 4:
1023 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
1024 // pointer on PIC16 and other embedded platforms.
1025 if (!memcmp(Str, "word", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001026 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001027 if (!memcmp(Str, "byte", 4))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001028 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001029 break;
1030 case 7:
1031 if (!memcmp(Str, "pointer", 7))
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001032 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001033 break;
1034 }
1035
1036 QualType OldTy;
1037 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1038 OldTy = TD->getUnderlyingType();
1039 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
1040 OldTy = VD->getType();
1041 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001042 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
1043 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00001044 return;
1045 }
1046
1047 // FIXME: Need proper fixed-width types
1048 QualType NewTy;
1049 switch (DestWidth) {
1050 case 0:
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001051 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001052 return;
1053 default:
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001054 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) <<Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00001055 return;
1056 case 8:
1057 assert(IntegerMode);
1058 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001059 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001060 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001061 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001062 break;
1063 case 16:
1064 assert(IntegerMode);
1065 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001066 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001067 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001068 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001069 break;
1070 case 32:
1071 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001072 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001073 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001074 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001075 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001076 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001077 break;
1078 case 64:
1079 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001080 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001081 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001082 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001083 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001084 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00001085 break;
1086 }
1087
1088 if (!OldTy->getAsBuiltinType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001089 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001090 else if (!(IntegerMode && OldTy->isIntegerType()) &&
1091 !(!IntegerMode && OldTy->isFloatingType())) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00001092 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
Chris Lattnerfbf13472008-06-27 22:18:37 +00001093 }
1094
1095 // Install the new type.
1096 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D))
1097 TD->setUnderlyingType(NewTy);
1098 else
1099 cast<ValueDecl>(D)->setType(NewTy);
1100}
Chris Lattner0744e5f2008-06-29 00:23:49 +00001101
1102//===----------------------------------------------------------------------===//
1103// Top Level Sema Entry Points
1104//===----------------------------------------------------------------------===//
1105
Chris Lattner803d0802008-06-29 00:43:07 +00001106/// HandleDeclAttribute - Apply the specific attribute to the specified decl if
1107/// the attribute applies to decls. If the attribute is a type attribute, just
1108/// silently ignore it.
1109static void ProcessDeclAttribute(Decl *D, const AttributeList &Attr, Sema &S) {
1110 switch (Attr.getKind()) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001111 case AttributeList::AT_IBOutlet: HandleIBOutletAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001112 case AttributeList::AT_address_space:
1113 // Ignore this, this is a type attribute, handled by ProcessTypeAttributes.
1114 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001115 case AttributeList::AT_alias: HandleAliasAttr (D, Attr, S); break;
1116 case AttributeList::AT_aligned: HandleAlignedAttr (D, Attr, S); break;
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001117 case AttributeList::AT_always_inline:
1118 HandleAlwaysInlineAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001119 case AttributeList::AT_annotate: HandleAnnotateAttr (D, Attr, S); break;
1120 case AttributeList::AT_constructor: HandleConstructorAttr(D, Attr, S); break;
1121 case AttributeList::AT_deprecated: HandleDeprecatedAttr(D, Attr, S); break;
1122 case AttributeList::AT_destructor: HandleDestructorAttr(D, Attr, S); break;
1123 case AttributeList::AT_dllexport: HandleDLLExportAttr (D, Attr, S); break;
1124 case AttributeList::AT_dllimport: HandleDLLImportAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001125 case AttributeList::AT_ext_vector_type:
1126 HandleExtVectorTypeAttr(D, Attr, S);
1127 break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001128 case AttributeList::AT_fastcall: HandleFastCallAttr (D, Attr, S); break;
1129 case AttributeList::AT_format: HandleFormatAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001130 case AttributeList::AT_mode: HandleModeAttr (D, Attr, S); break;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001131 case AttributeList::AT_nonnull: HandleNonNullAttr (D, Attr, S); break;
1132 case AttributeList::AT_noreturn: HandleNoReturnAttr (D, Attr, S); break;
1133 case AttributeList::AT_nothrow: HandleNothrowAttr (D, Attr, S); break;
1134 case AttributeList::AT_packed: HandlePackedAttr (D, Attr, S); break;
1135 case AttributeList::AT_stdcall: HandleStdCallAttr (D, Attr, S); break;
1136 case AttributeList::AT_unused: HandleUnusedAttr (D, Attr, S); break;
1137 case AttributeList::AT_vector_size: HandleVectorSizeAttr(D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001138 case AttributeList::AT_visibility: HandleVisibilityAttr(D, Attr, S); break;
1139 case AttributeList::AT_weak: HandleWeakAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001140 case AttributeList::AT_transparent_union:
1141 HandleTransparentUnionAttr(D, Attr, S);
1142 break;
Anders Carlssonaa0d25b2008-08-23 23:22:21 +00001143 case AttributeList::AT_objc_gc: HandleObjCGCAttr (D, Attr, S); break;
Steve Naroff9eae5762008-09-18 16:44:58 +00001144 case AttributeList::AT_blocks: HandleBlocksAttr (D, Attr, S); break;
Anders Carlsson77091822008-10-05 18:05:59 +00001145 case AttributeList::AT_sentinel: HandleSentinelAttr (D, Attr, S); break;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001146 case AttributeList::AT_const: HandleConstAttr (D, Attr, S); break;
1147 case AttributeList::AT_pure: HandlePureAttr (D, Attr, S); break;
Chris Lattner803d0802008-06-29 00:43:07 +00001148 default:
1149#if 0
1150 // TODO: when we have the full set of attributes, warn about unknown ones.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001151 S.Diag(Attr->getLoc(), diag::warn_attribute_ignored)
1152 << Attr->getName()->getName();
Chris Lattner803d0802008-06-29 00:43:07 +00001153#endif
1154 break;
1155 }
1156}
1157
1158/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
1159/// attribute list to the specified decl, ignoring any type attributes.
1160void Sema::ProcessDeclAttributeList(Decl *D, const AttributeList *AttrList) {
1161 while (AttrList) {
1162 ProcessDeclAttribute(D, *AttrList, *this);
1163 AttrList = AttrList->getNext();
1164 }
1165}
1166
1167
Chris Lattner0744e5f2008-06-29 00:23:49 +00001168/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
1169/// it, apply them to D. This is a bit tricky because PD can have attributes
1170/// specified in many different places, and we need to find and apply them all.
1171void Sema::ProcessDeclAttributes(Decl *D, const Declarator &PD) {
1172 // Apply decl attributes from the DeclSpec if present.
1173 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes())
1174 ProcessDeclAttributeList(D, Attrs);
Chris Lattner803d0802008-06-29 00:43:07 +00001175
Chris Lattner0744e5f2008-06-29 00:23:49 +00001176 // Walk the declarator structure, applying decl attributes that were in a type
1177 // position to the decl itself. This handles cases like:
1178 // int *__attr__(x)** D;
1179 // when X is a decl attribute.
1180 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
1181 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
1182 ProcessDeclAttributeList(D, Attrs);
1183
1184 // Finally, apply any attributes on the decl itself.
1185 if (const AttributeList *Attrs = PD.getAttributes())
1186 ProcessDeclAttributeList(D, Attrs);
1187}
1188