blob: 70e684b36ec24ab76aef15c315bfc6e6f7f4885c [file] [log] [blame]
Chris Lattner6b6b5372008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
John McCall384aff82010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000018#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
20#include "clang/AST/Expr.h"
John McCallf85e1932011-06-15 23:02:42 +000021#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000022#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000023#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000024#include "clang/Sema/DelayedDiagnostic.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000025#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000026using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000027using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000028
John McCall883cc2c2011-03-02 12:29:23 +000029/// These constants match the enumerated choices of
30/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000031enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000032 ExpectedFunction,
33 ExpectedUnion,
34 ExpectedVariableOrFunction,
35 ExpectedFunctionOrMethod,
36 ExpectedParameter,
37 ExpectedParameterOrMethod,
38 ExpectedFunctionMethodOrBlock,
39 ExpectedClassOrVirtualMethod,
40 ExpectedFunctionMethodOrParameter,
41 ExpectedClass,
42 ExpectedVirtualMethod,
43 ExpectedClassMember,
44 ExpectedVariable,
45 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000046 ExpectedVariableFunctionOrLabel,
47 ExpectedFieldOrGlobalVar
John McCall883cc2c2011-03-02 12:29:23 +000048};
49
Chris Lattnere5c5ee12008-06-29 00:16:31 +000050//===----------------------------------------------------------------------===//
51// Helper functions
52//===----------------------------------------------------------------------===//
53
Chandler Carruth87c44602011-07-01 23:49:12 +000054static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000055 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000056 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000057 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000058 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000059 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000060 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000061 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000062 Ty = decl->getUnderlyingType();
63 else
64 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000065
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000067 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000068 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000069 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000070
John McCall183700f2009-09-21 23:43:11 +000071 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000072}
73
Daniel Dunbar35682492008-09-26 04:12:28 +000074// FIXME: We should provide an abstraction around a method or function
75// to provide the following bits of information.
76
Nuno Lopesd20254f2009-12-20 23:11:08 +000077/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000078/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000079static bool isFunction(const Decl *D) {
80 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000081}
82
83/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000084/// type (function or function-typed variable) or an Objective-C
85/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000086static bool isFunctionOrMethod(const Decl *D) {
87 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000088}
89
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000090/// isFunctionOrMethodOrBlock - Return true if the given decl has function
91/// type (function or function-typed variable) or an Objective-C
92/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000093static bool isFunctionOrMethodOrBlock(const Decl *D) {
94 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000095 return true;
96 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +000097 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000098 QualType Ty = V->getType();
99 return Ty->isBlockPointerType();
100 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000101 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000102}
103
John McCall711c52b2011-01-05 12:14:39 +0000104/// Return true if the given decl has a declarator that should have
105/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000106static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000107 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000108 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
109 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000110}
111
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000112/// hasFunctionProto - Return true if the given decl has a argument
113/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000114/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000115static bool hasFunctionProto(const Decl *D) {
116 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000117 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000118 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000119 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000120 return true;
121 }
122}
123
124/// getFunctionOrMethodNumArgs - Return number of function or method
125/// arguments. It is an error to call this on a K&R function (use
126/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000127static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
128 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000129 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000130 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000131 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000132 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000133}
134
Chandler Carruth87c44602011-07-01 23:49:12 +0000135static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
136 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000137 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000138 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000139 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000140
Chandler Carruth87c44602011-07-01 23:49:12 +0000141 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000142}
143
Chandler Carruth87c44602011-07-01 23:49:12 +0000144static QualType getFunctionOrMethodResultType(const Decl *D) {
145 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000146 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000147 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000148}
149
Chandler Carruth87c44602011-07-01 23:49:12 +0000150static bool isFunctionOrMethodVariadic(const Decl *D) {
151 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000152 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000153 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000154 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000155 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000156 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000157 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000158 }
159}
160
Chandler Carruth87c44602011-07-01 23:49:12 +0000161static bool isInstanceMethod(const Decl *D) {
162 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000163 return MethodDecl->isInstance();
164 return false;
165}
166
Chris Lattner6b6b5372008-06-26 18:38:35 +0000167static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000168 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000169 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000170 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000171
John McCall506b57e2010-05-17 21:00:27 +0000172 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
173 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000174 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000175
John McCall506b57e2010-05-17 21:00:27 +0000176 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000177
Chris Lattner6b6b5372008-06-26 18:38:35 +0000178 // FIXME: Should we walk the chain of classes?
179 return ClsName == &Ctx.Idents.get("NSString") ||
180 ClsName == &Ctx.Idents.get("NSMutableString");
181}
182
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000183static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000184 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000185 if (!PT)
186 return false;
187
Ted Kremenek6217b802009-07-29 21:53:49 +0000188 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000189 if (!RT)
190 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000191
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000193 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000194 return false;
195
196 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
197}
198
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000199/// \brief Check if the attribute has exactly as many args as Num. May
200/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000201static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
202 unsigned int Num) {
203 if (Attr.getNumArgs() != Num) {
204 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
205 return false;
206 }
207
208 return true;
209}
210
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000211
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000212/// \brief Check if the attribute has at least as many args as Num. May
213/// output an error.
214static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
215 unsigned int Num) {
216 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000217 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
218 return false;
219 }
220
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000221 return true;
222}
223
224///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000225/// \brief Check if passed in Decl is a field or potentially shared global var
226/// \return true if the Decl is a field or potentially shared global variable
227///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000228static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000229 if (isa<FieldDecl>(D))
230 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000231 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000232 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
233
234 return false;
235}
236
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000237/// \brief Check if the passed-in expression is of type int or bool.
238static bool isIntOrBool(Expr *Exp) {
239 QualType QT = Exp->getType();
240 return QT->isBooleanType() || QT->isIntegerType();
241}
242
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000243///
244/// \brief Check if passed in Decl is a pointer type.
245/// Note that this function may produce an error message.
246/// \return true if the Decl is a pointer type; false otherwise
247///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000248static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
249 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000250 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000251 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000252 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000253 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
254 << Attr.getName()->getName() << QT;
255 } else {
256 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
257 << Attr.getName();
258 }
259 return false;
260}
261
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000262/// \brief Checks that the passed in QualType either is of RecordType or points
263/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000264static const RecordType *getRecordType(QualType QT) {
265 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000266 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000267
268 // Now check if we point to record type.
269 if (const PointerType *PT = QT->getAs<PointerType>())
270 return PT->getPointeeType()->getAs<RecordType>();
271
272 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000273}
274
275/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
276/// from Sidx, resolve to a lockable object. May flag an error.
277static bool checkAttrArgsAreLockableObjs(Sema & S, Decl *D,
278 const AttributeList & Attr,
279 int Sidx = 0,
280 bool ParamIdxOk = false) {
281 for(unsigned int Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
282 Expr *ArgExp = Attr.getArg(Idx);
283 if (ArgExp->isTypeDependent())
284 continue;
285
286 QualType Arg_QT = ArgExp->getType();
287
288 // Get record type.
289 // first see if we can just cast to record type, or point to record type
290 const RecordType *RT = getRecordType(Arg_QT);
291
292 // now check if we idx into a record type function param
293 if (!RT && ParamIdxOk) {
294 FunctionDecl *FD = dyn_cast <FunctionDecl>(D);
295 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
296 if(FD && IL) {
297 unsigned int NumParams = FD->getNumParams();
298 llvm::APInt ArgValue = IL->getValue();
299 uint64_t ParamIdx_from1 = ArgValue.getZExtValue();
300 uint64_t ParamIdx_from0 = ParamIdx_from1 - 1;
301 if(!ArgValue.isStrictlyPositive() || ParamIdx_from1 > NumParams) {
302 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
303 << Attr.getName() << Idx + 1 << NumParams;
304 return false;
305 }
306 Arg_QT = FD->getParamDecl(ParamIdx_from0)->getType();
307 RT = getRecordType(Arg_QT);
308 }
309 }
310
311 // Flag error if could not get record type for this argument
312 if (!RT) {
313 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_class)
314 << Attr.getName();
315 return false;
316 }
317
318 // Flag error if the type is not lockable
319 if (!RT->getDecl()->getAttr<LockableAttr>()) {
320 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
321 << Attr.getName();
322 return false;
323 }
324 }
325 return true;
326}
327
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000328//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000329// Attribute Implementations
330//===----------------------------------------------------------------------===//
331
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000332// FIXME: All this manual attribute parsing code is gross. At the
333// least add some helper functions to check most argument patterns (#
334// and types of args).
335
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000336static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
337 bool pointer = false) {
338 assert(!Attr.isInvalid());
339
340 if (!checkAttributeNumArgs(S, Attr, 0))
341 return;
342
343 // D must be either a member field or global (potentially shared) variable.
344 if (!mayBeSharedVariable(D)) {
345 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000346 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000347 return;
348 }
349
350 if (pointer && !checkIsPointer(S, D, Attr))
351 return;
352
353 if (pointer)
354 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getLoc(), S.Context));
355 else
356 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getLoc(), S.Context));
357}
358
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000359static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000360 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000361 assert(!Attr.isInvalid());
362
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000363 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000364 return;
365
366 // D must be either a member field or global (potentially shared) variable.
367 if (!mayBeSharedVariable(D)) {
368 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000369 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000370 return;
371 }
372
373 if (pointer && !checkIsPointer(S, D, Attr))
374 return;
375
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000376 // check that all arguments are lockable objects
377 if (!checkAttrArgsAreLockableObjs(S, D, Attr))
378 return;
379
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000380 if (pointer)
381 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getLoc(), S.Context));
382 else
383 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getLoc(), S.Context));
384}
385
386
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000387static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
388 bool scoped = false) {
389 assert(!Attr.isInvalid());
390
391 if (!checkAttributeNumArgs(S, Attr, 0))
392 return;
393
394 if (!isa<CXXRecordDecl>(D)) {
395 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
396 << Attr.getName() << ExpectedClass;
397 return;
398 }
399
400 if (scoped)
401 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getLoc(), S.Context));
402 else
403 D->addAttr(::new (S.Context) LockableAttr(Attr.getLoc(), S.Context));
404}
405
406static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
407 const AttributeList &Attr) {
408 assert(!Attr.isInvalid());
409
410 if (!checkAttributeNumArgs(S, Attr, 0))
411 return;
412
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000413 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000414 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
415 << Attr.getName() << ExpectedFunctionOrMethod;
416 return;
417 }
418
419 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getLoc(),
420 S.Context));
421}
422
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000423static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
424 bool before) {
425 assert(!Attr.isInvalid());
426
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000427 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000428 return;
429
430 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000431 ValueDecl *VD = dyn_cast<ValueDecl>(D);
432 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000433 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000434 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000435 return;
436 }
437
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000438 // Check that this attribute only applies to lockable types
439 QualType QT = VD->getType();
440 if (!QT->isDependentType()) {
441 const RecordType *RT = getRecordType(QT);
442 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
443 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
444 << Attr.getName();
445 return;
446 }
447 }
448
449 // check that all arguments are lockable objects
450 if (!checkAttrArgsAreLockableObjs(S, D, Attr))
451 return;
452
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000453 if (before)
454 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getLoc(), S.Context));
455 else
456 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getLoc(), S.Context));
457}
458
459static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000460 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000461 assert(!Attr.isInvalid());
462
463 // zero or more arguments ok
464
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000465 // check that the attribute is applied to a function
466 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000467 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
468 << Attr.getName() << ExpectedFunctionOrMethod;
469 return;
470 }
471
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000472 // check that all arguments are lockable objects
473 if (!checkAttrArgsAreLockableObjs(S, D, Attr, 0, /*ParamIdxOk=*/true))
474 return;
475
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000476 if (exclusive)
477 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getLoc(),
478 S.Context));
479 else
480 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getLoc(),
481 S.Context));
482}
483
484static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000485 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000486 assert(!Attr.isInvalid());
487
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000488 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000489 return;
490
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000491
492 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000493 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
494 << Attr.getName() << ExpectedFunctionOrMethod;
495 return;
496 }
497
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000498 if (!isIntOrBool(Attr.getArg(0))) {
499 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
500 << Attr.getName();
501 return;
502 }
503
504 // check that all arguments are lockable objects
505 if (!checkAttrArgsAreLockableObjs(S, D, Attr, 1))
506 return;
507
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000508 if (exclusive)
509 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getLoc(),
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000510 S.Context));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000511 else
512 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getLoc(),
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000513 S.Context));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000514}
515
516static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000517 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000518 assert(!Attr.isInvalid());
519
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000520 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000521 return;
522
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000523 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000524 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
525 << Attr.getName() << ExpectedFunctionOrMethod;
526 return;
527 }
528
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000529 // check that all arguments are lockable objects
530 if (!checkAttrArgsAreLockableObjs(S, D, Attr))
531 return;
532
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000533 if (exclusive)
534 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getLoc(),
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000535 S.Context));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000536 else
537 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getLoc(),
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000538 S.Context));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000539}
540
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000542 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000543 assert(!Attr.isInvalid());
544
545 // zero or more arguments ok
546
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000547 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000548 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
549 << Attr.getName() << ExpectedFunctionOrMethod;
550 return;
551 }
552
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000553 // check that all arguments are lockable objects
554 if (!checkAttrArgsAreLockableObjs(S, D, Attr, 0, /*ParamIdxOk=*/true))
555 return;
556
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000557 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getLoc(), S.Context));
558}
559
560static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000561 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000562 assert(!Attr.isInvalid());
563
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000564 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000565 return;
566
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000567 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000568 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
569 << Attr.getName() << ExpectedFunctionOrMethod;
570 return;
571 }
572
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000573 // check that all arguments are lockable objects
574 if (!checkAttrArgsAreLockableObjs(S, D, Attr))
575 return;
576
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000577 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getLoc(), S.Context));
578}
579
580static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000581 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000582 assert(!Attr.isInvalid());
583
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000584 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000585 return;
586
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000587 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000588 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
589 << Attr.getName() << ExpectedFunctionOrMethod;
590 return;
591 }
592
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000593 // check that all arguments are lockable objects
594 if (!checkAttrArgsAreLockableObjs(S, D, Attr))
595 return;
596
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000597 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getLoc(), S.Context));
598}
599
600
Chandler Carruth1b03c872011-07-02 00:01:44 +0000601static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
602 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000603 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000604 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000605 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000606 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000607 }
Mike Stumpbf916502009-07-24 19:02:52 +0000608
Chris Lattner6b6b5372008-06-26 18:38:35 +0000609 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000610
611 Expr *sizeExpr;
612
613 // Special case where the argument is a template id.
614 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000615 CXXScopeSpec SS;
616 UnqualifiedId id;
617 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000618
619 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
620 if (Size.isInvalid())
621 return;
622
623 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000624 } else {
625 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000626 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000627 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000628
Peter Collingbourne7a730022010-11-23 20:45:58 +0000629 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000630 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000631
632 // Instantiate/Install the vector type, and let Sema build the type for us.
633 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000634 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000635 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000636 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000637 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000638
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000639 // Remember this typedef decl, we will need it later for diagnostics.
640 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000641 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000642}
643
Chandler Carruth1b03c872011-07-02 00:01:44 +0000644static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000645 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000646 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000647 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000648
Chandler Carruth87c44602011-07-01 23:49:12 +0000649 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Sean Huntcf807c42010-08-18 23:23:40 +0000650 TD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000651 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000652 // If the alignment is less than or equal to 8 bits, the packed attribute
653 // has no effect.
654 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000655 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000656 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000657 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000658 else
Sean Huntcf807c42010-08-18 23:23:40 +0000659 FD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000660 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000661 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000662}
663
Chandler Carruth1b03c872011-07-02 00:01:44 +0000664static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000665 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000666 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getLoc(), S.Context));
667 else
668 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
669}
670
Chandler Carruth1b03c872011-07-02 00:01:44 +0000671static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000672 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000673 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000674 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000675
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000676 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000677 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000678 if (MD->isInstanceMethod()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000679 D->addAttr(::new (S.Context) IBActionAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000680 return;
681 }
682
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000683 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000684}
685
Chandler Carruth1b03c872011-07-02 00:01:44 +0000686static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000687 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000688 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000689 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000690
691 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000692 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000693 if (isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D)) {
694 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000695 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000696 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000697
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000698 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000699}
700
Chandler Carruth1b03c872011-07-02 00:01:44 +0000701static void handleIBOutletCollection(Sema &S, Decl *D,
702 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000703
704 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000705 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000706 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
707 return;
708 }
709
710 // The IBOutletCollection attributes only apply to instance variables of
711 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000712 if (!(isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000713 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek857e9182010-05-19 17:38:06 +0000714 return;
715 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000716 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000717 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
718 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
719 << VD->getType() << 0;
720 return;
721 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000722 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000723 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
724 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
725 << PD->getType() << 1;
726 return;
727 }
728
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000729 IdentifierInfo *II = Attr.getParameterName();
730 if (!II)
731 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000732
John McCallb3d87482010-08-24 05:47:05 +0000733 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000734 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000735 if (!TypeRep) {
736 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
737 return;
738 }
John McCallb3d87482010-08-24 05:47:05 +0000739 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000740 // Diagnose use of non-object type in iboutletcollection attribute.
741 // FIXME. Gnu attribute extension ignores use of builtin types in
742 // attributes. So, __attribute__((iboutletcollection(char))) will be
743 // treated as __attribute__((iboutletcollection())).
744 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
745 !QT->isObjCObjectType()) {
746 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
747 return;
748 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000749 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getLoc(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +0000750 QT));
Ted Kremenek857e9182010-05-19 17:38:06 +0000751}
752
Chandler Carruthd309c812011-07-01 23:49:16 +0000753static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000754 if (const RecordType *UT = T->getAsUnionType())
755 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
756 RecordDecl *UD = UT->getDecl();
757 for (RecordDecl::field_iterator it = UD->field_begin(),
758 itend = UD->field_end(); it != itend; ++it) {
759 QualType QT = it->getType();
760 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
761 T = QT;
762 return;
763 }
764 }
765 }
766}
767
Chandler Carruth1b03c872011-07-02 00:01:44 +0000768static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000769 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
770 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000771 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000772 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000773 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000774 return;
775 }
Mike Stumpbf916502009-07-24 19:02:52 +0000776
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000777 // In C++ the implicit 'this' function parameter also counts, and they are
778 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000779 bool HasImplicitThisParam = isInstanceMethod(D);
780 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000781
782 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000783 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000784
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000785 for (AttributeList::arg_iterator I=Attr.arg_begin(),
786 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000787
788
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000789 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000790 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000791 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000792 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
793 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000794 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
795 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000796 return;
797 }
Mike Stumpbf916502009-07-24 19:02:52 +0000798
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000799 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000800
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000801 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000802 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000803 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000804 return;
805 }
Mike Stumpbf916502009-07-24 19:02:52 +0000806
Ted Kremenek465172f2008-07-21 22:09:15 +0000807 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000808 if (HasImplicitThisParam) {
809 if (x == 0) {
810 S.Diag(Attr.getLoc(),
811 diag::err_attribute_invalid_implicit_this_argument)
812 << "nonnull" << Ex->getSourceRange();
813 return;
814 }
815 --x;
816 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000817
818 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000819 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000820 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000821
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000822 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000823 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000824 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000825 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000826 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000827 }
Mike Stumpbf916502009-07-24 19:02:52 +0000828
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000829 NonNullArgs.push_back(x);
830 }
Mike Stumpbf916502009-07-24 19:02:52 +0000831
832 // If no arguments were specified to __attribute__((nonnull)) then all pointer
833 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000834 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000835 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
836 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000837 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000838 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000839 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000840 }
Mike Stumpbf916502009-07-24 19:02:52 +0000841
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000842 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000843 if (NonNullArgs.empty()) {
844 // Warn the trivial case only if attribute is not coming from a
845 // macro instantiation.
846 if (Attr.getLoc().isFileID())
847 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000848 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000849 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000850 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000851
852 unsigned* start = &NonNullArgs[0];
853 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000854 llvm::array_pod_sort(start, start + size);
Chandler Carruth87c44602011-07-01 23:49:12 +0000855 D->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000856 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000857}
858
Chandler Carruth1b03c872011-07-02 00:01:44 +0000859static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000860 // This attribute must be applied to a function declaration.
861 // The first argument to the attribute must be a string,
862 // the name of the resource, for example "malloc".
863 // The following arguments must be argument indexes, the arguments must be
864 // of integer type for Returns, otherwise of pointer type.
865 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000866 // after being held. free() should be __attribute((ownership_takes)), whereas
867 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000868
869 if (!AL.getParameterName()) {
870 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
871 << AL.getName()->getName() << 1;
872 return;
873 }
874 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000875 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000876 switch (AL.getKind()) {
877 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000878 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000879 if (AL.getNumArgs() < 1) {
880 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
881 return;
882 }
Jordy Rose2a479922010-08-12 08:54:03 +0000883 break;
884 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000885 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000886 if (AL.getNumArgs() < 1) {
887 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
888 return;
889 }
Jordy Rose2a479922010-08-12 08:54:03 +0000890 break;
891 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000892 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000893 if (AL.getNumArgs() > 1) {
894 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
895 << AL.getNumArgs() + 1;
896 return;
897 }
Jordy Rose2a479922010-08-12 08:54:03 +0000898 break;
899 default:
900 // This should never happen given how we are called.
901 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000902 }
903
Chandler Carruth87c44602011-07-01 23:49:12 +0000904 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000905 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
906 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000907 return;
908 }
909
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000910 // In C++ the implicit 'this' function parameter also counts, and they are
911 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000912 bool HasImplicitThisParam = isInstanceMethod(D);
913 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000914
Chris Lattner5f9e2722011-07-23 10:55:15 +0000915 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000916
917 // Normalize the argument, __foo__ becomes foo.
918 if (Module.startswith("__") && Module.endswith("__"))
919 Module = Module.substr(2, Module.size() - 4);
920
Chris Lattner5f9e2722011-07-23 10:55:15 +0000921 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000922
Jordy Rose2a479922010-08-12 08:54:03 +0000923 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
924 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000925
Peter Collingbourne7a730022010-11-23 20:45:58 +0000926 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000927 llvm::APSInt ArgNum(32);
928 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
929 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
930 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
931 << AL.getName()->getName() << IdxExpr->getSourceRange();
932 continue;
933 }
934
935 unsigned x = (unsigned) ArgNum.getZExtValue();
936
937 if (x > NumArgs || x < 1) {
938 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
939 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
940 continue;
941 }
942 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000943 if (HasImplicitThisParam) {
944 if (x == 0) {
945 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
946 << "ownership" << IdxExpr->getSourceRange();
947 return;
948 }
949 --x;
950 }
951
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000952 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +0000953 case OwnershipAttr::Takes:
954 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000955 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000956 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000957 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
958 // FIXME: Should also highlight argument in decl.
959 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +0000960 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000961 << "pointer"
962 << IdxExpr->getSourceRange();
963 continue;
964 }
965 break;
966 }
Sean Huntcf807c42010-08-18 23:23:40 +0000967 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000968 if (AL.getNumArgs() > 1) {
969 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +0000970 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000971 llvm::APSInt ArgNum(32);
972 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
973 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
974 S.Diag(AL.getLoc(), diag::err_ownership_type)
975 << "ownership_returns" << "integer"
976 << IdxExpr->getSourceRange();
977 return;
978 }
979 }
980 break;
981 }
Jordy Rose2a479922010-08-12 08:54:03 +0000982 default:
983 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000984 } // switch
985
986 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +0000987 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +0000988 i = D->specific_attr_begin<OwnershipAttr>(),
989 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +0000990 i != e; ++i) {
991 if ((*i)->getOwnKind() != K) {
992 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
993 I!=E; ++I) {
994 if (x == *I) {
995 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
996 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000997 }
998 }
999 }
1000 }
1001 OwnershipArgs.push_back(x);
1002 }
1003
1004 unsigned* start = OwnershipArgs.data();
1005 unsigned size = OwnershipArgs.size();
1006 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001007
1008 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1009 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1010 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001011 }
Sean Huntcf807c42010-08-18 23:23:40 +00001012
Chandler Carruth87c44602011-07-01 23:49:12 +00001013 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001014 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001015}
1016
John McCall332bb2a2011-02-08 22:35:49 +00001017/// Whether this declaration has internal linkage for the purposes of
1018/// things that want to complain about things not have internal linkage.
1019static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1020 switch (D->getLinkage()) {
1021 case NoLinkage:
1022 case InternalLinkage:
1023 return true;
1024
1025 // Template instantiations that go from external to unique-external
1026 // shouldn't get diagnosed.
1027 case UniqueExternalLinkage:
1028 return true;
1029
1030 case ExternalLinkage:
1031 return false;
1032 }
1033 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001034 return false;
1035}
1036
Chandler Carruth1b03c872011-07-02 00:01:44 +00001037static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001038 // Check the attribute arguments.
1039 if (Attr.getNumArgs() > 1) {
1040 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1041 return;
1042 }
1043
Chandler Carruth87c44602011-07-01 23:49:12 +00001044 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001045 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001046 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001047 return;
1048 }
1049
Chandler Carruth87c44602011-07-01 23:49:12 +00001050 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001051
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001052 // gcc rejects
1053 // class c {
1054 // static int a __attribute__((weakref ("v2")));
1055 // static int b() __attribute__((weakref ("f3")));
1056 // };
1057 // and ignores the attributes of
1058 // void f(void) {
1059 // static int a __attribute__((weakref ("v2")));
1060 // }
1061 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001062 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001063 if (!Ctx->isFileContext()) {
1064 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001065 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001066 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001067 }
1068
1069 // The GCC manual says
1070 //
1071 // At present, a declaration to which `weakref' is attached can only
1072 // be `static'.
1073 //
1074 // It also says
1075 //
1076 // Without a TARGET,
1077 // given as an argument to `weakref' or to `alias', `weakref' is
1078 // equivalent to `weak'.
1079 //
1080 // gcc 4.4.1 will accept
1081 // int a7 __attribute__((weakref));
1082 // as
1083 // int a7 __attribute__((weak));
1084 // This looks like a bug in gcc. We reject that for now. We should revisit
1085 // it if this behaviour is actually used.
1086
John McCall332bb2a2011-02-08 22:35:49 +00001087 if (!hasEffectivelyInternalLinkage(nd)) {
1088 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001089 return;
1090 }
1091
1092 // GCC rejects
1093 // static ((alias ("y"), weakref)).
1094 // Should we? How to check that weakref is before or after alias?
1095
1096 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001097 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001098 Arg = Arg->IgnoreParenCasts();
1099 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1100
Douglas Gregor5cee1192011-07-27 05:40:30 +00001101 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001102 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1103 << "weakref" << 1;
1104 return;
1105 }
1106 // GCC will accept anything as the argument of weakref. Should we
1107 // check for an existing decl?
Chandler Carruth87c44602011-07-01 23:49:12 +00001108 D->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001109 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001110 }
1111
Chandler Carruth87c44602011-07-01 23:49:12 +00001112 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001113}
1114
Chandler Carruth1b03c872011-07-02 00:01:44 +00001115static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001116 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001117 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001118 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001119 return;
1120 }
Mike Stumpbf916502009-07-24 19:02:52 +00001121
Peter Collingbourne7a730022010-11-23 20:45:58 +00001122 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001123 Arg = Arg->IgnoreParenCasts();
1124 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001125
Douglas Gregor5cee1192011-07-27 05:40:30 +00001126 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001127 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001128 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001129 return;
1130 }
Mike Stumpbf916502009-07-24 19:02:52 +00001131
Daniel Dunbardb57a4c2011-04-19 21:43:27 +00001132 if (S.Context.Target.getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001133 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1134 return;
1135 }
1136
Chris Lattner6b6b5372008-06-26 18:38:35 +00001137 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001138
Chandler Carruth87c44602011-07-01 23:49:12 +00001139 D->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001140 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001141}
1142
Chandler Carruth1b03c872011-07-02 00:01:44 +00001143static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001144 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001145 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001146 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001147
Chandler Carruth87c44602011-07-01 23:49:12 +00001148 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001149 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001150 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001151 return;
1152 }
1153
Chandler Carruth87c44602011-07-01 23:49:12 +00001154 D->addAttr(::new (S.Context) NakedAttr(Attr.getLoc(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001155}
1156
Chandler Carruth1b03c872011-07-02 00:01:44 +00001157static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1158 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001159 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001160 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001161 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1162 return;
1163 }
1164
Chandler Carruth87c44602011-07-01 23:49:12 +00001165 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001166 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001167 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001168 return;
1169 }
Mike Stumpbf916502009-07-24 19:02:52 +00001170
Chandler Carruth87c44602011-07-01 23:49:12 +00001171 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001172}
1173
Chandler Carruth1b03c872011-07-02 00:01:44 +00001174static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001175 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001176 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001177 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1178 return;
1179 }
Mike Stump1eb44332009-09-09 15:08:12 +00001180
Chandler Carruth87c44602011-07-01 23:49:12 +00001181 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001182 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001183 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001184 D->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001185 return;
1186 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001187 }
1188
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001189 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001190}
1191
Chandler Carruth1b03c872011-07-02 00:01:44 +00001192static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001193 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001194 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001195 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001196
Chandler Carruth87c44602011-07-01 23:49:12 +00001197 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getLoc(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001198}
1199
Chandler Carruth1b03c872011-07-02 00:01:44 +00001200static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001201 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001202 if (isa<VarDecl>(D))
1203 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getLoc(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001204 else
1205 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001206 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001207}
1208
Chandler Carruth1b03c872011-07-02 00:01:44 +00001209static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001210 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001211 if (isa<VarDecl>(D))
1212 D->addAttr(::new (S.Context) CommonAttr(Attr.getLoc(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001213 else
1214 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001215 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001216}
1217
Chandler Carruth1b03c872011-07-02 00:01:44 +00001218static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001219 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001220
1221 if (S.CheckNoReturnAttr(attr)) return;
1222
Chandler Carruth87c44602011-07-01 23:49:12 +00001223 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001224 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001225 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001226 return;
1227 }
1228
Chandler Carruth87c44602011-07-01 23:49:12 +00001229 D->addAttr(::new (S.Context) NoReturnAttr(attr.getLoc(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001230}
1231
1232bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001233 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001234 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1235 attr.setInvalid();
1236 return true;
1237 }
1238
1239 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001240}
1241
Chandler Carruth1b03c872011-07-02 00:01:44 +00001242static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1243 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001244
1245 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1246 // because 'analyzer_noreturn' does not impact the type.
1247
Chandler Carruth1731e202011-07-11 23:30:35 +00001248 if(!checkAttributeNumArgs(S, Attr, 0))
1249 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001250
Chandler Carruth87c44602011-07-01 23:49:12 +00001251 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1252 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001253 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1254 && !VD->getType()->isFunctionPointerType())) {
1255 S.Diag(Attr.getLoc(),
1256 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1257 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001258 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001259 return;
1260 }
1261 }
1262
Chandler Carruth87c44602011-07-01 23:49:12 +00001263 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001264}
1265
John Thompson35cc9622010-08-09 21:53:52 +00001266// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001267static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001268/*
1269 Returning a Vector Class in Registers
1270
Eric Christopherf48f3672010-12-01 22:13:54 +00001271 According to the PPU ABI specifications, a class with a single member of
1272 vector type is returned in memory when used as the return value of a function.
1273 This results in inefficient code when implementing vector classes. To return
1274 the value in a single vector register, add the vecreturn attribute to the
1275 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001276
1277 Example:
1278
1279 struct Vector
1280 {
1281 __vector float xyzw;
1282 } __attribute__((vecreturn));
1283
1284 Vector Add(Vector lhs, Vector rhs)
1285 {
1286 Vector result;
1287 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1288 return result; // This will be returned in a register
1289 }
1290*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001291 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001292 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001293 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001294 return;
1295 }
1296
Chandler Carruth87c44602011-07-01 23:49:12 +00001297 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001298 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1299 return;
1300 }
1301
Chandler Carruth87c44602011-07-01 23:49:12 +00001302 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001303 int count = 0;
1304
1305 if (!isa<CXXRecordDecl>(record)) {
1306 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1307 return;
1308 }
1309
1310 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1311 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1312 return;
1313 }
1314
Eric Christopherf48f3672010-12-01 22:13:54 +00001315 for (RecordDecl::field_iterator iter = record->field_begin();
1316 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001317 if ((count == 1) || !iter->getType()->isVectorType()) {
1318 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1319 return;
1320 }
1321 count++;
1322 }
1323
Chandler Carruth87c44602011-07-01 23:49:12 +00001324 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001325}
1326
Chandler Carruth1b03c872011-07-02 00:01:44 +00001327static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001328 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001329 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001330 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001331 return;
1332 }
1333 // FIXME: Actually store the attribute on the declaration
1334}
1335
Chandler Carruth1b03c872011-07-02 00:01:44 +00001336static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001337 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001338 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001339 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001340 return;
1341 }
Mike Stumpbf916502009-07-24 19:02:52 +00001342
Chandler Carruth87c44602011-07-01 23:49:12 +00001343 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1344 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001345 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001346 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001347 return;
1348 }
Mike Stumpbf916502009-07-24 19:02:52 +00001349
Chandler Carruth87c44602011-07-01 23:49:12 +00001350 D->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001351}
1352
Chandler Carruth1b03c872011-07-02 00:01:44 +00001353static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001354 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001355 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001356 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1357 return;
1358 }
Mike Stumpbf916502009-07-24 19:02:52 +00001359
Chandler Carruth87c44602011-07-01 23:49:12 +00001360 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001361 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001362 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1363 return;
1364 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001365 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001366 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001367 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001368 return;
1369 }
Mike Stumpbf916502009-07-24 19:02:52 +00001370
Chandler Carruth87c44602011-07-01 23:49:12 +00001371 D->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001372}
1373
Chandler Carruth1b03c872011-07-02 00:01:44 +00001374static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001375 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001376 if (Attr.getNumArgs() > 1) {
1377 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001378 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001379 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001380
1381 int priority = 65535; // FIXME: Do not hardcode such constants.
1382 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001383 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001384 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001385 if (E->isTypeDependent() || E->isValueDependent() ||
1386 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001387 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001388 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001389 return;
1390 }
1391 priority = Idx.getZExtValue();
1392 }
Mike Stumpbf916502009-07-24 19:02:52 +00001393
Chandler Carruth87c44602011-07-01 23:49:12 +00001394 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001395 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001396 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001397 return;
1398 }
1399
Chandler Carruth87c44602011-07-01 23:49:12 +00001400 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001401 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001402}
1403
Chandler Carruth1b03c872011-07-02 00:01:44 +00001404static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001405 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001406 if (Attr.getNumArgs() > 1) {
1407 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001408 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001409 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001410
1411 int priority = 65535; // FIXME: Do not hardcode such constants.
1412 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001413 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001414 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001415 if (E->isTypeDependent() || E->isValueDependent() ||
1416 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001417 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001418 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001419 return;
1420 }
1421 priority = Idx.getZExtValue();
1422 }
Mike Stumpbf916502009-07-24 19:02:52 +00001423
Chandler Carruth87c44602011-07-01 23:49:12 +00001424 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001425 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001426 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001427 return;
1428 }
1429
Chandler Carruth87c44602011-07-01 23:49:12 +00001430 D->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001431 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001432}
1433
Chandler Carruth1b03c872011-07-02 00:01:44 +00001434static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001435 unsigned NumArgs = Attr.getNumArgs();
1436 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001437 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001438 return;
1439 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001440
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001441 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001442 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001443 if (NumArgs == 1) {
1444 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001445 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001446 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1447 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001448 return;
1449 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001450 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001451 }
Mike Stumpbf916502009-07-24 19:02:52 +00001452
Chandler Carruth87c44602011-07-01 23:49:12 +00001453 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001454}
1455
Chandler Carruth1b03c872011-07-02 00:01:44 +00001456static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001457 unsigned NumArgs = Attr.getNumArgs();
1458 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001459 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001460 return;
1461 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001462
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001463 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001464 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001465 if (NumArgs == 1) {
1466 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001467 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001468 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001469 diag::err_attribute_not_string) << "unavailable";
1470 return;
1471 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001472 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001473 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001474 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001475}
1476
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001477static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1478 const AttributeList &Attr) {
1479 unsigned NumArgs = Attr.getNumArgs();
1480 if (NumArgs > 0) {
1481 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1482 return;
1483 }
1484
1485 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
1486 Attr.getLoc(), S.Context));
1487}
1488
Chandler Carruth1b03c872011-07-02 00:01:44 +00001489static void handleAvailabilityAttr(Sema &S, Decl *D,
1490 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001491 IdentifierInfo *Platform = Attr.getParameterName();
1492 SourceLocation PlatformLoc = Attr.getParameterLoc();
1493
Chris Lattner5f9e2722011-07-23 10:55:15 +00001494 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001495 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1496 if (PlatformName.empty()) {
1497 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1498 << Platform;
1499
1500 PlatformName = Platform->getName();
1501 }
1502
1503 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1504 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1505 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001506 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001507
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001508 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001509 // of these steps are needed).
1510 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001511 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001512 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1513 << 1 << PlatformName << Deprecated.Version.getAsString()
1514 << 0 << Introduced.Version.getAsString();
1515 return;
1516 }
1517
1518 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001519 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001520 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1521 << 2 << PlatformName << Obsoleted.Version.getAsString()
1522 << 0 << Introduced.Version.getAsString();
1523 return;
1524 }
1525
1526 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001527 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001528 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1529 << 2 << PlatformName << Obsoleted.Version.getAsString()
1530 << 1 << Deprecated.Version.getAsString();
1531 return;
1532 }
1533
Chandler Carruth87c44602011-07-01 23:49:12 +00001534 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getLoc(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001535 Platform,
1536 Introduced.Version,
1537 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001538 Obsoleted.Version,
1539 IsUnavailable));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001540}
1541
Chandler Carruth1b03c872011-07-02 00:01:44 +00001542static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001543 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001544 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001545 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001546
Peter Collingbourne7a730022010-11-23 20:45:58 +00001547 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001548 Arg = Arg->IgnoreParenCasts();
1549 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001550
Douglas Gregor5cee1192011-07-27 05:40:30 +00001551 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001552 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001553 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001554 return;
1555 }
Mike Stumpbf916502009-07-24 19:02:52 +00001556
Chris Lattner5f9e2722011-07-23 10:55:15 +00001557 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001558 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001559
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001560 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001561 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001562 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001563 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001564 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001565 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001566 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001567 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001568 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001569 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001570 return;
1571 }
Mike Stumpbf916502009-07-24 19:02:52 +00001572
Chandler Carruth87c44602011-07-01 23:49:12 +00001573 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001574}
1575
Chandler Carruth1b03c872011-07-02 00:01:44 +00001576static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1577 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001578 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1579 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001580 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001581 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001582 return;
1583 }
1584
Chandler Carruth87c44602011-07-01 23:49:12 +00001585 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1586 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1587 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001588 << "objc_method_family" << 1;
1589 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001590 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001591 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001592 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001593 return;
1594 }
1595
Chris Lattner5f9e2722011-07-23 10:55:15 +00001596 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001597 ObjCMethodFamilyAttr::FamilyKind family;
1598 if (param == "none")
1599 family = ObjCMethodFamilyAttr::OMF_None;
1600 else if (param == "alloc")
1601 family = ObjCMethodFamilyAttr::OMF_alloc;
1602 else if (param == "copy")
1603 family = ObjCMethodFamilyAttr::OMF_copy;
1604 else if (param == "init")
1605 family = ObjCMethodFamilyAttr::OMF_init;
1606 else if (param == "mutableCopy")
1607 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1608 else if (param == "new")
1609 family = ObjCMethodFamilyAttr::OMF_new;
1610 else {
1611 // Just warn and ignore it. This is future-proof against new
1612 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001613 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001614 return;
1615 }
1616
John McCallf85e1932011-06-15 23:02:42 +00001617 if (family == ObjCMethodFamilyAttr::OMF_init &&
1618 !method->getResultType()->isObjCObjectPointerType()) {
1619 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1620 << method->getResultType();
1621 // Ignore the attribute.
1622 return;
1623 }
1624
Chandler Carruth87c44602011-07-01 23:49:12 +00001625 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getLoc(),
John McCallf85e1932011-06-15 23:02:42 +00001626 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001627}
1628
Chandler Carruth1b03c872011-07-02 00:01:44 +00001629static void handleObjCExceptionAttr(Sema &S, Decl *D,
1630 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001631 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001632 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001633
Chris Lattner0db29ec2009-02-14 08:09:34 +00001634 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1635 if (OCI == 0) {
1636 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1637 return;
1638 }
Mike Stumpbf916502009-07-24 19:02:52 +00001639
Sean Huntcf807c42010-08-18 23:23:40 +00001640 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001641}
1642
Chandler Carruth1b03c872011-07-02 00:01:44 +00001643static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001644 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001645 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001646 return;
1647 }
Richard Smith162e1c12011-04-15 14:24:37 +00001648 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001649 QualType T = TD->getUnderlyingType();
1650 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001651 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001652 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1653 return;
1654 }
1655 }
Sean Huntcf807c42010-08-18 23:23:40 +00001656 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001657}
1658
Mike Stumpbf916502009-07-24 19:02:52 +00001659static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001660handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001661 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001662 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001663 return;
1664 }
1665
1666 if (!isa<FunctionDecl>(D)) {
1667 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1668 return;
1669 }
1670
Sean Huntcf807c42010-08-18 23:23:40 +00001671 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001672}
1673
Chandler Carruth1b03c872011-07-02 00:01:44 +00001674static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001675 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001676 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001677 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001678 return;
1679 }
Mike Stumpbf916502009-07-24 19:02:52 +00001680
Steve Naroff9eae5762008-09-18 16:44:58 +00001681 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001682 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001683 return;
1684 }
Mike Stumpbf916502009-07-24 19:02:52 +00001685
Sean Huntcf807c42010-08-18 23:23:40 +00001686 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001687 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001688 type = BlocksAttr::ByRef;
1689 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001690 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001691 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001692 return;
1693 }
Mike Stumpbf916502009-07-24 19:02:52 +00001694
Chandler Carruth87c44602011-07-01 23:49:12 +00001695 D->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001696}
1697
Chandler Carruth1b03c872011-07-02 00:01:44 +00001698static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001699 // check the attribute arguments.
1700 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001701 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001702 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001703 }
1704
Anders Carlsson77091822008-10-05 18:05:59 +00001705 int sentinel = 0;
1706 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001707 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001708 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001709 if (E->isTypeDependent() || E->isValueDependent() ||
1710 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001711 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001712 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001713 return;
1714 }
1715 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001716
Anders Carlsson77091822008-10-05 18:05:59 +00001717 if (sentinel < 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001718 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1719 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001720 return;
1721 }
1722 }
1723
1724 int nullPos = 0;
1725 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001726 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001727 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001728 if (E->isTypeDependent() || E->isValueDependent() ||
1729 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001730 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001731 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001732 return;
1733 }
1734 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001735
Anders Carlsson77091822008-10-05 18:05:59 +00001736 if (nullPos > 1 || nullPos < 0) {
1737 // FIXME: This error message could be improved, it would be nice
1738 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001739 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1740 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001741 return;
1742 }
1743 }
1744
Chandler Carruth87c44602011-07-01 23:49:12 +00001745 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall183700f2009-09-21 23:43:11 +00001746 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001747 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001748
Chris Lattner897cd902009-03-17 23:03:47 +00001749 if (isa<FunctionNoProtoType>(FT)) {
1750 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1751 return;
1752 }
Mike Stumpbf916502009-07-24 19:02:52 +00001753
Chris Lattner897cd902009-03-17 23:03:47 +00001754 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001755 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001756 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001757 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001758 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001759 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001760 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001761 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001762 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001763 } else if (isa<BlockDecl>(D)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001764 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1765 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001766 ;
Chandler Carruth87c44602011-07-01 23:49:12 +00001767 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001768 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001769 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001770 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001771 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001772 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001773 int m = Ty->isFunctionPointerType() ? 0 : 1;
1774 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001775 return;
1776 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001777 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001778 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001779 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001780 return;
1781 }
Anders Carlsson77091822008-10-05 18:05:59 +00001782 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001783 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001784 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001785 return;
1786 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001787 D->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001788 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001789}
1790
Chandler Carruth1b03c872011-07-02 00:01:44 +00001791static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001792 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001793 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001794 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001795
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001796 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001797 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001798 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001799 return;
1800 }
Mike Stumpbf916502009-07-24 19:02:52 +00001801
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001802 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1803 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1804 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001805 return;
1806 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001807 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1808 if (MD->getResultType()->isVoidType()) {
1809 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1810 << Attr.getName() << 1;
1811 return;
1812 }
1813
Sean Huntcf807c42010-08-18 23:23:40 +00001814 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001815}
1816
Chandler Carruth1b03c872011-07-02 00:01:44 +00001817static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001818 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001819 if (Attr.hasParameterOrArguments()) {
1820 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001821 return;
1822 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001823
Chandler Carruth87c44602011-07-01 23:49:12 +00001824 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
1825 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1826 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001827 return;
1828 }
1829
Chandler Carruth87c44602011-07-01 23:49:12 +00001830 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001831
1832 // 'weak' only applies to declarations with external linkage.
1833 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001834 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001835 return;
1836 }
Mike Stumpbf916502009-07-24 19:02:52 +00001837
Chandler Carruth87c44602011-07-01 23:49:12 +00001838 nd->addAttr(::new (S.Context) WeakAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001839}
1840
Chandler Carruth1b03c872011-07-02 00:01:44 +00001841static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001842 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001843 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001844 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001845
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001846
1847 // weak_import only applies to variable & function declarations.
1848 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001849 if (!D->canBeWeakImported(isDef)) {
1850 if (isDef)
1851 S.Diag(Attr.getLoc(),
1852 diag::warn_attribute_weak_import_invalid_on_definition)
1853 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001854 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Daniel Dunbardb57a4c2011-04-19 21:43:27 +00001855 (S.Context.Target.getTriple().isOSDarwin() &&
Douglas Gregordef86312011-03-23 13:27:51 +00001856 isa<ObjCInterfaceDecl>(D))) {
1857 // Nothing to warn about here.
1858 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001859 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001860 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001861
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001862 return;
1863 }
1864
Sean Huntcf807c42010-08-18 23:23:40 +00001865 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001866}
1867
Chandler Carruth1b03c872011-07-02 00:01:44 +00001868static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1869 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001870 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001871 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00001872 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001873
1874 unsigned WGSize[3];
1875 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001876 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001877 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001878 if (E->isTypeDependent() || E->isValueDependent() ||
1879 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001880 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1881 << "reqd_work_group_size" << E->getSourceRange();
1882 return;
1883 }
1884 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1885 }
Sean Huntcf807c42010-08-18 23:23:40 +00001886 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1887 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001888 WGSize[2]));
1889}
1890
Chandler Carruth1b03c872011-07-02 00:01:44 +00001891static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001892 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001893 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001894 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001895
1896 // Make sure that there is a string literal as the sections's single
1897 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001898 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001899 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001900 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001901 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001902 return;
1903 }
Mike Stump1eb44332009-09-09 15:08:12 +00001904
Chris Lattner797c3c42009-08-10 19:03:04 +00001905 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramerbb377ed2009-11-30 17:08:26 +00001906 std::string Error = S.Context.Target.isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001907 if (!Error.empty()) {
1908 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1909 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001910 return;
1911 }
Mike Stump1eb44332009-09-09 15:08:12 +00001912
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001913 // This attribute cannot be applied to local variables.
1914 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1915 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1916 return;
1917 }
1918
Eric Christopherf48f3672010-12-01 22:13:54 +00001919 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context,
1920 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001921}
1922
Chris Lattner6b6b5372008-06-26 18:38:35 +00001923
Chandler Carruth1b03c872011-07-02 00:01:44 +00001924static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001925 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001926 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001927 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001928 return;
1929 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001930
Chandler Carruth87c44602011-07-01 23:49:12 +00001931 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001932 if (Existing->getLocation().isInvalid())
1933 Existing->setLocation(Attr.getLoc());
1934 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001935 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001936 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00001937}
1938
Chandler Carruth1b03c872011-07-02 00:01:44 +00001939static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001940 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001941 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001942 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001943 return;
1944 }
Mike Stumpbf916502009-07-24 19:02:52 +00001945
Chandler Carruth87c44602011-07-01 23:49:12 +00001946 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001947 if (Existing->getLocation().isInvalid())
1948 Existing->setLocation(Attr.getLoc());
1949 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001950 D->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001951 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001952}
1953
Chandler Carruth1b03c872011-07-02 00:01:44 +00001954static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001955 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001956 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001957 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001958
Chandler Carruth87c44602011-07-01 23:49:12 +00001959 D->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00001960}
1961
Chandler Carruth1b03c872011-07-02 00:01:44 +00001962static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001963 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001964 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1965 return;
1966 }
Mike Stumpbf916502009-07-24 19:02:52 +00001967
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001968 if (Attr.getNumArgs() != 0) {
1969 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1970 return;
1971 }
Mike Stumpbf916502009-07-24 19:02:52 +00001972
Chandler Carruth87c44602011-07-01 23:49:12 +00001973 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00001974
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001975 if (!VD || !VD->hasLocalStorage()) {
1976 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
1977 return;
1978 }
Mike Stumpbf916502009-07-24 19:02:52 +00001979
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001980 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00001981 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00001982 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001983 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
1984 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001985 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001986 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001987 Attr.getParameterName();
1988 return;
1989 }
Mike Stumpbf916502009-07-24 19:02:52 +00001990
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001991 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
1992 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00001993 S.Diag(Attr.getParameterLoc(),
1994 diag::err_attribute_cleanup_arg_not_function)
1995 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001996 return;
1997 }
1998
Anders Carlssonf6e35d02009-01-31 01:16:18 +00001999 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002000 S.Diag(Attr.getParameterLoc(),
2001 diag::err_attribute_cleanup_func_must_take_one_arg)
2002 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002003 return;
2004 }
Mike Stumpbf916502009-07-24 19:02:52 +00002005
Anders Carlsson89941c12009-02-07 23:16:50 +00002006 // We're currently more strict than GCC about what function types we accept.
2007 // If this ever proves to be a problem it should be easy to fix.
2008 QualType Ty = S.Context.getPointerType(VD->getType());
2009 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002010 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2011 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002012 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002013 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2014 Attr.getParameterName() << ParamTy << Ty;
2015 return;
2016 }
Mike Stumpbf916502009-07-24 19:02:52 +00002017
Chandler Carruth87c44602011-07-01 23:49:12 +00002018 D->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002019 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002020}
2021
Mike Stumpbf916502009-07-24 19:02:52 +00002022/// Handle __attribute__((format_arg((idx)))) attribute based on
2023/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002024static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002025 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002026 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002027
Chandler Carruth87c44602011-07-01 23:49:12 +00002028 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002029 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002030 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002031 return;
2032 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002033
2034 // In C++ the implicit 'this' function parameter also counts, and they are
2035 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002036 bool HasImplicitThisParam = isInstanceMethod(D);
2037 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002038 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002039
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002040 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002041 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002042 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002043 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2044 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002045 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2046 << "format" << 2 << IdxExpr->getSourceRange();
2047 return;
2048 }
Mike Stumpbf916502009-07-24 19:02:52 +00002049
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002050 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2051 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2052 << "format" << 2 << IdxExpr->getSourceRange();
2053 return;
2054 }
Mike Stumpbf916502009-07-24 19:02:52 +00002055
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002056 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002057
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002058 if (HasImplicitThisParam) {
2059 if (ArgIdx == 0) {
2060 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2061 << "format_arg" << IdxExpr->getSourceRange();
2062 return;
2063 }
2064 ArgIdx--;
2065 }
2066
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002067 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002068 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002069
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002070 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2071 if (not_nsstring_type &&
2072 !isCFStringType(Ty, S.Context) &&
2073 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002074 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002075 // FIXME: Should highlight the actual expression that has the wrong type.
2076 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002077 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002078 << IdxExpr->getSourceRange();
2079 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002080 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002081 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002082 if (!isNSStringType(Ty, S.Context) &&
2083 !isCFStringType(Ty, S.Context) &&
2084 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002085 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002086 // FIXME: Should highlight the actual expression that has the wrong type.
2087 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002088 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002089 << IdxExpr->getSourceRange();
2090 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002091 }
2092
Chandler Carruth87c44602011-07-01 23:49:12 +00002093 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002094 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002095}
2096
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002097enum FormatAttrKind {
2098 CFStringFormat,
2099 NSStringFormat,
2100 StrftimeFormat,
2101 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002102 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002103 InvalidFormat
2104};
2105
2106/// getFormatAttrKind - Map from format attribute names to supported format
2107/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002108static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002109 // Check for formats that get handled specially.
2110 if (Format == "NSString")
2111 return NSStringFormat;
2112 if (Format == "CFString")
2113 return CFStringFormat;
2114 if (Format == "strftime")
2115 return StrftimeFormat;
2116
2117 // Otherwise, check for supported formats.
2118 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2119 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2120 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002121 Format == "zcmn_err" ||
2122 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002123 return SupportedFormat;
2124
Duncan Sandsbc525952010-03-23 14:44:19 +00002125 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2126 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002127 return IgnoredFormat;
2128
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002129 return InvalidFormat;
2130}
2131
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002132/// Handle __attribute__((init_priority(priority))) attributes based on
2133/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002134static void handleInitPriorityAttr(Sema &S, Decl *D,
2135 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002136 if (!S.getLangOptions().CPlusPlus) {
2137 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2138 return;
2139 }
2140
Chandler Carruth87c44602011-07-01 23:49:12 +00002141 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002142 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2143 Attr.setInvalid();
2144 return;
2145 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002146 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002147 if (S.Context.getAsArrayType(T))
2148 T = S.Context.getBaseElementType(T);
2149 if (!T->getAs<RecordType>()) {
2150 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2151 Attr.setInvalid();
2152 return;
2153 }
2154
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002155 if (Attr.getNumArgs() != 1) {
2156 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2157 Attr.setInvalid();
2158 return;
2159 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002160 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002161
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002162 llvm::APSInt priority(32);
2163 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2164 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2165 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2166 << "init_priority" << priorityExpr->getSourceRange();
2167 Attr.setInvalid();
2168 return;
2169 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002170 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002171 if (prioritynum < 101 || prioritynum > 65535) {
2172 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2173 << priorityExpr->getSourceRange();
2174 Attr.setInvalid();
2175 return;
2176 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002177 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002178 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002179}
2180
Mike Stumpbf916502009-07-24 19:02:52 +00002181/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2182/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002183static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002184
Chris Lattner545dd342008-06-28 23:36:30 +00002185 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002186 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002187 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002188 return;
2189 }
2190
Chris Lattner545dd342008-06-28 23:36:30 +00002191 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002192 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002193 return;
2194 }
2195
Chandler Carruth87c44602011-07-01 23:49:12 +00002196 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002197 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002198 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002199 return;
2200 }
2201
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002202 // In C++ the implicit 'this' function parameter also counts, and they are
2203 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002204 bool HasImplicitThisParam = isInstanceMethod(D);
2205 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002206 unsigned FirstIdx = 1;
2207
Chris Lattner5f9e2722011-07-23 10:55:15 +00002208 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002209
2210 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002211 if (Format.startswith("__") && Format.endswith("__"))
2212 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002213
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002214 // Check for supported formats.
2215 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002216
2217 if (Kind == IgnoredFormat)
2218 return;
2219
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002220 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002221 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002222 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002223 return;
2224 }
2225
2226 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002227 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002228 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002229 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2230 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002231 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002232 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002233 return;
2234 }
2235
2236 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002237 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002238 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002239 return;
2240 }
2241
2242 // FIXME: Do we need to bounds check?
2243 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002244
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002245 if (HasImplicitThisParam) {
2246 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002247 S.Diag(Attr.getLoc(),
2248 diag::err_format_attribute_implicit_this_format_string)
2249 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002250 return;
2251 }
2252 ArgIdx--;
2253 }
Mike Stump1eb44332009-09-09 15:08:12 +00002254
Chris Lattner6b6b5372008-06-26 18:38:35 +00002255 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002256 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002257
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002258 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002259 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002260 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2261 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002262 return;
2263 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002264 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002265 // FIXME: do we need to check if the type is NSString*? What are the
2266 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002267 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002268 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002269 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2270 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002271 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002272 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002273 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002274 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002275 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002276 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2277 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002278 return;
2279 }
2280
2281 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002282 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002283 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002284 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2285 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002286 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002287 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002288 return;
2289 }
2290
2291 // check if the function is variadic if the 3rd argument non-zero
2292 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002293 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002294 ++NumArgs; // +1 for ...
2295 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002296 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002297 return;
2298 }
2299 }
2300
Chris Lattner3c73c412008-11-19 08:23:25 +00002301 // strftime requires FirstArg to be 0 because it doesn't read from any
2302 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002303 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002304 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002305 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2306 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002307 return;
2308 }
2309 // if 0 it disables parameter checking (to use with e.g. va_list)
2310 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002311 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002312 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002313 return;
2314 }
2315
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002316 // Check whether we already have an equivalent format attribute.
2317 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002318 i = D->specific_attr_begin<FormatAttr>(),
2319 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002320 i != e ; ++i) {
2321 FormatAttr *f = *i;
2322 if (f->getType() == Format &&
2323 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2324 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2325 // If we don't have a valid location for this attribute, adopt the
2326 // location.
2327 if (f->getLocation().isInvalid())
2328 f->setLocation(Attr.getLoc());
2329 return;
2330 }
2331 }
2332
Chandler Carruth87c44602011-07-01 23:49:12 +00002333 D->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002334 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002335 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002336}
2337
Chandler Carruth1b03c872011-07-02 00:01:44 +00002338static void handleTransparentUnionAttr(Sema &S, Decl *D,
2339 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002340 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002341 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002342 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002343
Chris Lattner6b6b5372008-06-26 18:38:35 +00002344
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002345 // Try to find the underlying union declaration.
2346 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002347 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002348 if (TD && TD->getUnderlyingType()->isUnionType())
2349 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2350 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002351 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002352
2353 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002354 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002355 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002356 return;
2357 }
2358
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002359 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002360 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002361 diag::warn_transparent_union_attribute_not_definition);
2362 return;
2363 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002364
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002365 RecordDecl::field_iterator Field = RD->field_begin(),
2366 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002367 if (Field == FieldEnd) {
2368 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2369 return;
2370 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002371
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002372 FieldDecl *FirstField = *Field;
2373 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002374 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002375 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002376 diag::warn_transparent_union_attribute_floating)
2377 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002378 return;
2379 }
2380
2381 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2382 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2383 for (; Field != FieldEnd; ++Field) {
2384 QualType FieldType = Field->getType();
2385 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2386 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2387 // Warn if we drop the attribute.
2388 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002389 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002390 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002391 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002392 diag::warn_transparent_union_attribute_field_size_align)
2393 << isSize << Field->getDeclName() << FieldBits;
2394 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002395 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002396 diag::note_transparent_union_first_field_size_align)
2397 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002398 return;
2399 }
2400 }
2401
Sean Huntcf807c42010-08-18 23:23:40 +00002402 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002403}
2404
Chandler Carruth1b03c872011-07-02 00:01:44 +00002405static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002406 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002407 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002408 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002409
Peter Collingbourne7a730022010-11-23 20:45:58 +00002410 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002411 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002412
Chris Lattner6b6b5372008-06-26 18:38:35 +00002413 // Make sure that there is a string literal as the annotation's single
2414 // argument.
2415 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002416 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002417 return;
2418 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002419 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002420 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002421}
2422
Chandler Carruth1b03c872011-07-02 00:01:44 +00002423static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002424 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002425 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002426 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002427 return;
2428 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002429
2430 //FIXME: The C++0x version of this attribute has more limited applicabilty
2431 // than GNU's, and should error out when it is used to specify a
2432 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002433
Chris Lattner545dd342008-06-28 23:36:30 +00002434 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00002435 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002436 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002437 }
Mike Stumpbf916502009-07-24 19:02:52 +00002438
Peter Collingbourne7a730022010-11-23 20:45:58 +00002439 S.AddAlignedAttr(Attr.getLoc(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002440}
2441
2442void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
2443 if (E->isTypeDependent() || E->isValueDependent()) {
2444 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00002445 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002446 return;
2447 }
2448
Sean Huntcf807c42010-08-18 23:23:40 +00002449 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002450 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002451 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2452 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2453 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002454 return;
2455 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002456 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002457 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2458 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002459 return;
2460 }
2461
Sean Huntcf807c42010-08-18 23:23:40 +00002462 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
2463}
2464
2465void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
2466 // FIXME: Cache the number on the Attr object if non-dependent?
2467 // FIXME: Perform checking of type validity
2468 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
2469 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002470}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002471
Chandler Carruthd309c812011-07-01 23:49:16 +00002472/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002473/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002474///
Mike Stumpbf916502009-07-24 19:02:52 +00002475/// Despite what would be logical, the mode attribute is a decl attribute, not a
2476/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2477/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002478static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002479 // This attribute isn't documented, but glibc uses it. It changes
2480 // the width of an int or unsigned int to the specified size.
2481
2482 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002483 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002484 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002485
Chris Lattnerfbf13472008-06-27 22:18:37 +00002486
2487 IdentifierInfo *Name = Attr.getParameterName();
2488 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002489 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002490 return;
2491 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002492
Chris Lattner5f9e2722011-07-23 10:55:15 +00002493 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002494
2495 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002496 if (Str.startswith("__") && Str.endswith("__"))
2497 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002498
2499 unsigned DestWidth = 0;
2500 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002501 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002502 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002503 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002504 switch (Str[0]) {
2505 case 'Q': DestWidth = 8; break;
2506 case 'H': DestWidth = 16; break;
2507 case 'S': DestWidth = 32; break;
2508 case 'D': DestWidth = 64; break;
2509 case 'X': DestWidth = 96; break;
2510 case 'T': DestWidth = 128; break;
2511 }
2512 if (Str[1] == 'F') {
2513 IntegerMode = false;
2514 } else if (Str[1] == 'C') {
2515 IntegerMode = false;
2516 ComplexMode = true;
2517 } else if (Str[1] != 'I') {
2518 DestWidth = 0;
2519 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002520 break;
2521 case 4:
2522 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2523 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002524 if (Str == "word")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002525 DestWidth = S.Context.Target.getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002526 else if (Str == "byte")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002527 DestWidth = S.Context.Target.getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002528 break;
2529 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002530 if (Str == "pointer")
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002531 DestWidth = S.Context.Target.getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002532 break;
2533 }
2534
2535 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002536 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002537 OldTy = TD->getUnderlyingType();
2538 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2539 OldTy = VD->getType();
2540 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002541 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2542 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00002543 return;
2544 }
Eli Friedman73397492009-03-03 06:41:03 +00002545
John McCall183700f2009-09-21 23:43:11 +00002546 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002547 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2548 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002549 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002550 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2551 } else if (ComplexMode) {
2552 if (!OldTy->isComplexType())
2553 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2554 } else {
2555 if (!OldTy->isFloatingType())
2556 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2557 }
2558
Mike Stump390b4cc2009-05-16 07:39:55 +00002559 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2560 // and friends, at least with glibc.
2561 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2562 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002563 // FIXME: Make sure floating-point mappings are accurate
2564 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002565 QualType NewTy;
2566 switch (DestWidth) {
2567 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002568 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002569 return;
2570 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002571 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002572 return;
2573 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002574 if (!IntegerMode) {
2575 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2576 return;
2577 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002578 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002579 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002580 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002581 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002582 break;
2583 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002584 if (!IntegerMode) {
2585 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2586 return;
2587 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002588 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002589 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002590 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002591 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002592 break;
2593 case 32:
2594 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002595 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002596 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002597 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002598 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002599 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002600 break;
2601 case 64:
2602 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002603 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002604 else if (OldTy->isSignedIntegerType())
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002605 if (S.Context.Target.getLongWidth() == 64)
2606 NewTy = S.Context.LongTy;
2607 else
2608 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002609 else
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002610 if (S.Context.Target.getLongWidth() == 64)
2611 NewTy = S.Context.UnsignedLongTy;
2612 else
2613 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002614 break;
Eli Friedman73397492009-03-03 06:41:03 +00002615 case 96:
2616 NewTy = S.Context.LongDoubleTy;
2617 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002618 case 128:
2619 if (!IntegerMode) {
2620 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2621 return;
2622 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002623 if (OldTy->isSignedIntegerType())
2624 NewTy = S.Context.Int128Ty;
2625 else
2626 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002627 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002628 }
2629
Eli Friedman73397492009-03-03 06:41:03 +00002630 if (ComplexMode) {
2631 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002632 }
2633
2634 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002635 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002636 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002637 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002638 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002639 cast<ValueDecl>(D)->setType(NewTy);
2640}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002641
Chandler Carruth1b03c872011-07-02 00:01:44 +00002642static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002643 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002644 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002645 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002646
Chandler Carruth87c44602011-07-01 23:49:12 +00002647 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002648 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002649 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002650 return;
2651 }
Mike Stumpbf916502009-07-24 19:02:52 +00002652
Chandler Carruth87c44602011-07-01 23:49:12 +00002653 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002654}
2655
Chandler Carruth1b03c872011-07-02 00:01:44 +00002656static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002657 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002658 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002659 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002660
Mike Stumpbf916502009-07-24 19:02:52 +00002661
Chandler Carruth87c44602011-07-01 23:49:12 +00002662 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002663 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002664 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002665 return;
2666 }
Mike Stumpbf916502009-07-24 19:02:52 +00002667
Chandler Carruth87c44602011-07-01 23:49:12 +00002668 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002669}
2670
Chandler Carruth1b03c872011-07-02 00:01:44 +00002671static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2672 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002673 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002674 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002675 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002676
Chris Lattner7255a2d2010-06-22 00:03:40 +00002677
Chandler Carruth87c44602011-07-01 23:49:12 +00002678 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002679 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002680 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002681 return;
2682 }
2683
Chandler Carruth87c44602011-07-01 23:49:12 +00002684 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002685 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002686}
2687
Chandler Carruth1b03c872011-07-02 00:01:44 +00002688static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002689 if (S.LangOpts.CUDA) {
2690 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002691 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002692 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2693 return;
2694 }
2695
Chandler Carruth87c44602011-07-01 23:49:12 +00002696 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002697 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002698 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002699 return;
2700 }
2701
Chandler Carruth87c44602011-07-01 23:49:12 +00002702 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002703 } else {
2704 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2705 }
2706}
2707
Chandler Carruth1b03c872011-07-02 00:01:44 +00002708static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002709 if (S.LangOpts.CUDA) {
2710 // check the attribute arguments.
2711 if (Attr.getNumArgs() != 0) {
2712 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2713 return;
2714 }
2715
Chandler Carruth87c44602011-07-01 23:49:12 +00002716 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002717 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002718 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002719 return;
2720 }
2721
Chandler Carruth87c44602011-07-01 23:49:12 +00002722 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002723 } else {
2724 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2725 }
2726}
2727
Chandler Carruth1b03c872011-07-02 00:01:44 +00002728static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002729 if (S.LangOpts.CUDA) {
2730 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002731 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002732 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002733
Chandler Carruth87c44602011-07-01 23:49:12 +00002734 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002735 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002736 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002737 return;
2738 }
2739
Chandler Carruth87c44602011-07-01 23:49:12 +00002740 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002741 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002742 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002743 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2744 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2745 << FD->getType()
2746 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2747 "void");
2748 } else {
2749 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2750 << FD->getType();
2751 }
2752 return;
2753 }
2754
Chandler Carruth87c44602011-07-01 23:49:12 +00002755 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002756 } else {
2757 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2758 }
2759}
2760
Chandler Carruth1b03c872011-07-02 00:01:44 +00002761static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002762 if (S.LangOpts.CUDA) {
2763 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002764 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002765 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002766
Peter Collingbourneced76712010-12-01 03:15:31 +00002767
Chandler Carruth87c44602011-07-01 23:49:12 +00002768 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002769 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002770 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002771 return;
2772 }
2773
Chandler Carruth87c44602011-07-01 23:49:12 +00002774 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002775 } else {
2776 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2777 }
2778}
2779
Chandler Carruth1b03c872011-07-02 00:01:44 +00002780static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002781 if (S.LangOpts.CUDA) {
2782 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002783 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002784 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002785
Peter Collingbourneced76712010-12-01 03:15:31 +00002786
Chandler Carruth87c44602011-07-01 23:49:12 +00002787 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002788 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002789 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002790 return;
2791 }
2792
Chandler Carruth87c44602011-07-01 23:49:12 +00002793 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002794 } else {
2795 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2796 }
2797}
2798
Chandler Carruth1b03c872011-07-02 00:01:44 +00002799static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002800 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002801 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002802 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002803
Chandler Carruth87c44602011-07-01 23:49:12 +00002804 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002805 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002806 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002807 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002808 return;
2809 }
Mike Stumpbf916502009-07-24 19:02:52 +00002810
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002811 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002812 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002813 return;
2814 }
Mike Stumpbf916502009-07-24 19:02:52 +00002815
Chandler Carruth87c44602011-07-01 23:49:12 +00002816 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002817}
2818
Chandler Carruth1b03c872011-07-02 00:01:44 +00002819static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002820 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002821
Chandler Carruth87c44602011-07-01 23:49:12 +00002822 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002823 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2824 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002825 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002826 return;
2827
Chandler Carruth87c44602011-07-01 23:49:12 +00002828 if (!isa<ObjCMethodDecl>(D)) {
2829 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2830 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002831 return;
2832 }
2833
Chandler Carruth87c44602011-07-01 23:49:12 +00002834 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002835 case AttributeList::AT_fastcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002836 D->addAttr(::new (S.Context) FastCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002837 return;
2838 case AttributeList::AT_stdcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002839 D->addAttr(::new (S.Context) StdCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002840 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002841 case AttributeList::AT_thiscall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002842 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002843 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002844 case AttributeList::AT_cdecl:
Chandler Carruth87c44602011-07-01 23:49:12 +00002845 D->addAttr(::new (S.Context) CDeclAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002846 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002847 case AttributeList::AT_pascal:
Chandler Carruth87c44602011-07-01 23:49:12 +00002848 D->addAttr(::new (S.Context) PascalAttr(Attr.getLoc(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002849 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002850 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002851 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002852 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002853 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002854 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002855 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002856 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002857 return;
2858 }
2859
Chris Lattner5f9e2722011-07-23 10:55:15 +00002860 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002861 PcsAttr::PCSType PCS;
2862 if (StrRef == "aapcs")
2863 PCS = PcsAttr::AAPCS;
2864 else if (StrRef == "aapcs-vfp")
2865 PCS = PcsAttr::AAPCS_VFP;
2866 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002867 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2868 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002869 return;
2870 }
2871
Chandler Carruth87c44602011-07-01 23:49:12 +00002872 D->addAttr(::new (S.Context) PcsAttr(Attr.getLoc(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002873 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002874 default:
2875 llvm_unreachable("unexpected attribute kind");
2876 return;
2877 }
2878}
2879
Chandler Carruth1b03c872011-07-02 00:01:44 +00002880static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002881 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00002882 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getLoc(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00002883}
2884
John McCall711c52b2011-01-05 12:14:39 +00002885bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2886 if (attr.isInvalid())
2887 return true;
2888
Ted Kremenek831efae2011-04-15 05:49:29 +00002889 if ((attr.getNumArgs() != 0 &&
2890 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
2891 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00002892 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2893 attr.setInvalid();
2894 return true;
2895 }
2896
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002897 // TODO: diagnose uses of these conventions on the wrong target. Or, better
2898 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00002899 switch (attr.getKind()) {
2900 case AttributeList::AT_cdecl: CC = CC_C; break;
2901 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2902 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2903 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2904 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002905 case AttributeList::AT_pcs: {
2906 Expr *Arg = attr.getArg(0);
2907 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002908 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002909 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
2910 << "pcs" << 1;
2911 attr.setInvalid();
2912 return true;
2913 }
2914
Chris Lattner5f9e2722011-07-23 10:55:15 +00002915 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002916 if (StrRef == "aapcs") {
2917 CC = CC_AAPCS;
2918 break;
2919 } else if (StrRef == "aapcs-vfp") {
2920 CC = CC_AAPCS_VFP;
2921 break;
2922 }
2923 // FALLS THROUGH
2924 }
John McCall711c52b2011-01-05 12:14:39 +00002925 default: llvm_unreachable("unexpected attribute kind"); return true;
2926 }
2927
2928 return false;
2929}
2930
Chandler Carruth1b03c872011-07-02 00:01:44 +00002931static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002932 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00002933
2934 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00002935 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00002936 return;
2937
Chandler Carruth87c44602011-07-01 23:49:12 +00002938 if (!isa<ObjCMethodDecl>(D)) {
2939 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2940 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002941 return;
2942 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002943
Chandler Carruth87c44602011-07-01 23:49:12 +00002944 D->addAttr(::new (S.Context) RegparmAttr(Attr.getLoc(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00002945}
2946
2947/// Checks a regparm attribute, returning true if it is ill-formed and
2948/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00002949bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
2950 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00002951 return true;
2952
Chandler Carruth87c44602011-07-01 23:49:12 +00002953 if (Attr.getNumArgs() != 1) {
2954 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2955 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00002956 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002957 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002958
Chandler Carruth87c44602011-07-01 23:49:12 +00002959 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002960 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002961 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00002962 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002963 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002964 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00002965 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00002966 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002967 }
2968
John McCall711c52b2011-01-05 12:14:39 +00002969 if (Context.Target.getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002970 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002971 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00002972 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00002973 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002974 }
2975
John McCall711c52b2011-01-05 12:14:39 +00002976 numParams = NumParams.getZExtValue();
2977 if (numParams > Context.Target.getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002978 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
John McCall711c52b2011-01-05 12:14:39 +00002979 << Context.Target.getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00002980 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00002981 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00002982 }
2983
John McCall711c52b2011-01-05 12:14:39 +00002984 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00002985}
2986
Chandler Carruth1b03c872011-07-02 00:01:44 +00002987static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00002988 if (S.LangOpts.CUDA) {
2989 // check the attribute arguments.
2990 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002991 // FIXME: 0 is not okay.
2992 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00002993 return;
2994 }
2995
Chandler Carruth87c44602011-07-01 23:49:12 +00002996 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00002997 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002998 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00002999 return;
3000 }
3001
3002 Expr *MaxThreadsExpr = Attr.getArg(0);
3003 llvm::APSInt MaxThreads(32);
3004 if (MaxThreadsExpr->isTypeDependent() ||
3005 MaxThreadsExpr->isValueDependent() ||
3006 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3007 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3008 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3009 return;
3010 }
3011
3012 llvm::APSInt MinBlocks(32);
3013 if (Attr.getNumArgs() > 1) {
3014 Expr *MinBlocksExpr = Attr.getArg(1);
3015 if (MinBlocksExpr->isTypeDependent() ||
3016 MinBlocksExpr->isValueDependent() ||
3017 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3018 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3019 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3020 return;
3021 }
3022 }
3023
Chandler Carruth87c44602011-07-01 23:49:12 +00003024 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getLoc(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003025 MaxThreads.getZExtValue(),
3026 MinBlocks.getZExtValue()));
3027 } else {
3028 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3029 }
3030}
3031
Chris Lattner0744e5f2008-06-29 00:23:49 +00003032//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003033// Checker-specific attribute handlers.
3034//===----------------------------------------------------------------------===//
3035
John McCallc7ad3812011-01-25 03:31:58 +00003036static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3037 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
3038}
3039static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3040 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
3041}
3042
Chandler Carruth1b03c872011-07-02 00:01:44 +00003043static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003044 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003045 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003046 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3047 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003048 return;
3049 }
3050
3051 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003052 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003053 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3054 cf = false;
3055 } else {
3056 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3057 cf = true;
3058 }
3059
3060 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003061 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
3062 << SourceRange(Attr.getLoc()) << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003063 return;
3064 }
3065
3066 if (cf)
Chandler Carruth87c44602011-07-01 23:49:12 +00003067 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003068 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003069 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003070}
3071
Chandler Carruth1b03c872011-07-02 00:01:44 +00003072static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3073 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003074 if (!isa<ObjCMethodDecl>(D)) {
3075 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3076 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003077 return;
3078 }
3079
Chandler Carruth87c44602011-07-01 23:49:12 +00003080 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003081}
3082
Chandler Carruth1b03c872011-07-02 00:01:44 +00003083static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3084 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003085
John McCallc7ad3812011-01-25 03:31:58 +00003086 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003087
Chandler Carruth87c44602011-07-01 23:49:12 +00003088 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003089 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003090 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003091 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003092 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3093 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003094 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003095 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003096 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003097 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003098 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3099 << SourceRange(Attr.getLoc()) << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003100 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003101 return;
3102 }
Mike Stumpbf916502009-07-24 19:02:52 +00003103
John McCallc7ad3812011-01-25 03:31:58 +00003104 bool typeOK;
3105 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003106 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003107 default: llvm_unreachable("invalid ownership attribute"); return;
3108 case AttributeList::AT_ns_returns_autoreleased:
3109 case AttributeList::AT_ns_returns_retained:
3110 case AttributeList::AT_ns_returns_not_retained:
3111 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3112 cf = false;
3113 break;
3114
3115 case AttributeList::AT_cf_returns_retained:
3116 case AttributeList::AT_cf_returns_not_retained:
3117 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3118 cf = true;
3119 break;
3120 }
3121
3122 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003123 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3124 << SourceRange(Attr.getLoc())
3125 << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003126 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003127 }
Mike Stumpbf916502009-07-24 19:02:52 +00003128
Chandler Carruth87c44602011-07-01 23:49:12 +00003129 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003130 default:
3131 assert(0 && "invalid ownership attribute");
3132 return;
John McCallc7ad3812011-01-25 03:31:58 +00003133 case AttributeList::AT_ns_returns_autoreleased:
Chandler Carruth87c44602011-07-01 23:49:12 +00003134 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getLoc(),
John McCallc7ad3812011-01-25 03:31:58 +00003135 S.Context));
3136 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003137 case AttributeList::AT_cf_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003138 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003139 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003140 return;
3141 case AttributeList::AT_ns_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003142 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003143 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003144 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003145 case AttributeList::AT_cf_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003146 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003147 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003148 return;
3149 case AttributeList::AT_ns_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003150 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003151 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003152 return;
3153 };
3154}
3155
John McCalldc7c5ad2011-07-22 08:53:00 +00003156static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3157 const AttributeList &attr) {
3158 SourceLocation loc = attr.getLoc();
3159
3160 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3161
3162 if (!isa<ObjCMethodDecl>(method)) {
3163 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3164 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3165 return;
3166 }
3167
3168 // Check that the method returns a normal pointer.
3169 QualType resultType = method->getResultType();
3170 if (!resultType->isPointerType() || resultType->isObjCRetainableType()) {
3171 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3172 << SourceRange(loc)
3173 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3174
3175 // Drop the attribute.
3176 return;
3177 }
3178
3179 method->addAttr(
3180 ::new (S.Context) ObjCReturnsInnerPointerAttr(loc, S.Context));
3181}
3182
Chandler Carruth1b03c872011-07-02 00:01:44 +00003183static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3184 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003185 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003186
Chandler Carruth87c44602011-07-01 23:49:12 +00003187 SourceLocation L = Attr.getLoc();
3188 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3189 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003190}
3191
Chandler Carruth1b03c872011-07-02 00:01:44 +00003192static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3193 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003194 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
3195 SourceLocation L = Attr.getLoc();
3196 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3197 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003198 return;
3199 }
3200
Chandler Carruth87c44602011-07-01 23:49:12 +00003201 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003202 QualType type = vd->getType();
3203
3204 if (!type->isDependentType() &&
3205 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003206 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003207 << type;
3208 return;
3209 }
3210
3211 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3212
3213 // If we have no lifetime yet, check the lifetime we're presumably
3214 // going to infer.
3215 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3216 lifetime = type->getObjCARCImplicitLifetime();
3217
3218 switch (lifetime) {
3219 case Qualifiers::OCL_None:
3220 assert(type->isDependentType() &&
3221 "didn't infer lifetime for non-dependent type?");
3222 break;
3223
3224 case Qualifiers::OCL_Weak: // meaningful
3225 case Qualifiers::OCL_Strong: // meaningful
3226 break;
3227
3228 case Qualifiers::OCL_ExplicitNone:
3229 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003230 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003231 << (lifetime == Qualifiers::OCL_Autoreleasing);
3232 break;
3233 }
3234
Chandler Carruth87c44602011-07-01 23:49:12 +00003235 D->addAttr(::new (S.Context)
3236 ObjCPreciseLifetimeAttr(Attr.getLoc(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003237}
3238
Charles Davisf0122fe2010-02-16 18:27:26 +00003239static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3240 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003241 Attr.getKind() == AttributeList::AT_dllexport ||
3242 Attr.getKind() == AttributeList::AT_uuid;
3243}
3244
3245//===----------------------------------------------------------------------===//
3246// Microsoft specific attribute handlers.
3247//===----------------------------------------------------------------------===//
3248
Chandler Carruth1b03c872011-07-02 00:01:44 +00003249static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet11542142010-12-19 06:50:37 +00003250 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
3251 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003252 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003253 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003254
Francois Pichet11542142010-12-19 06:50:37 +00003255 Expr *Arg = Attr.getArg(0);
3256 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003257 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003258 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3259 << "uuid" << 1;
3260 return;
3261 }
3262
Chris Lattner5f9e2722011-07-23 10:55:15 +00003263 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003264
3265 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3266 StrRef.back() == '}';
3267
3268 // Validate GUID length.
3269 if (IsCurly && StrRef.size() != 38) {
3270 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3271 return;
3272 }
3273 if (!IsCurly && StrRef.size() != 36) {
3274 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3275 return;
3276 }
3277
3278 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3279 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003280 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003281 if (IsCurly) // Skip the optional '{'
3282 ++I;
3283
3284 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003285 if (i == 8 || i == 13 || i == 18 || i == 23) {
3286 if (*I != '-') {
3287 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3288 return;
3289 }
3290 } else if (!isxdigit(*I)) {
3291 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3292 return;
3293 }
3294 I++;
3295 }
Francois Pichet11542142010-12-19 06:50:37 +00003296
Chandler Carruth87c44602011-07-01 23:49:12 +00003297 D->addAttr(::new (S.Context) UuidAttr(Attr.getLoc(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003298 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003299 } else
Francois Pichet11542142010-12-19 06:50:37 +00003300 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003301}
3302
Ted Kremenekb71368d2009-05-09 02:44:38 +00003303//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003304// Top Level Sema Entry Points
3305//===----------------------------------------------------------------------===//
3306
Chandler Carruth1b03c872011-07-02 00:01:44 +00003307static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3308 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003309 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003310 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3311 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3312 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003313 default:
3314 break;
3315 }
3316}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003317
Chandler Carruth1b03c872011-07-02 00:01:44 +00003318static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3319 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003320 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003321 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3322 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003323 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003324 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003325 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003326 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003327 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003328 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003329 case AttributeList::AT_neon_vector_type:
3330 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003331 // Ignore these, these are type attributes, handled by
3332 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003333 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003334 case AttributeList::AT_device:
3335 case AttributeList::AT_host:
3336 case AttributeList::AT_overloadable:
3337 // Ignore, this is a non-inheritable attribute, handled
3338 // by ProcessNonInheritableDeclAttr.
3339 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003340 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3341 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003342 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003343 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003344 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003345 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3346 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3347 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003348 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003349 handleDependencyAttr (S, D, Attr); break;
3350 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3351 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3352 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3353 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3354 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003355 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003356 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003357 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003358 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3359 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3360 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3361 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003362 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003363 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003364 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003365 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3366 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3367 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3368 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3369 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003370 case AttributeList::AT_ownership_returns:
3371 case AttributeList::AT_ownership_takes:
3372 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003373 handleOwnershipAttr (S, D, Attr); break;
3374 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3375 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3376 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3377 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3378 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003379
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003380 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003381 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003382 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003383 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003384
John McCalldc7c5ad2011-07-22 08:53:00 +00003385 case AttributeList::AT_objc_returns_inner_pointer:
3386 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3387
Ted Kremenekb71368d2009-05-09 02:44:38 +00003388 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003389 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003390 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003391 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003392 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003393
3394 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003395 case AttributeList::AT_ns_returns_not_retained:
3396 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003397 case AttributeList::AT_ns_returns_retained:
3398 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003399 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003400
Nate Begeman6f3d8382009-06-26 06:32:41 +00003401 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003402 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003403
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003404 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003405 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003406
Chandler Carruth1b03c872011-07-02 00:01:44 +00003407 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3408 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3409 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3410 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003411 case AttributeList::AT_arc_weakref_unavailable:
3412 handleArcWeakrefUnavailableAttr (S, D, Attr);
3413 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003414 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
3415 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3416 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3417 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003418 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003419 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3420 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3421 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003422 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003423 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003424 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003425 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003426 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003427 break;
John McCalld5313b02011-03-02 11:33:24 +00003428 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003429 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003430 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003431 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3432 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3433 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3434 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3435 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3436 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3437 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3438 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3439 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003440 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003441 // Just ignore
3442 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003443 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003444 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003445 break;
John McCall04a67a62010-02-05 21:31:56 +00003446 case AttributeList::AT_stdcall:
3447 case AttributeList::AT_cdecl:
3448 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003449 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003450 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003451 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003452 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003453 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003454 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003455 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003456 break;
Francois Pichet11542142010-12-19 06:50:37 +00003457 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003458 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003459 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003460
3461 // Thread safety attributes:
3462 case AttributeList::AT_guarded_var:
3463 handleGuardedVarAttr(S, D, Attr);
3464 break;
3465 case AttributeList::AT_pt_guarded_var:
3466 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3467 break;
3468 case AttributeList::AT_scoped_lockable:
3469 handleLockableAttr(S, D, Attr, /*scoped = */true);
3470 break;
3471 case AttributeList::AT_no_thread_safety_analysis:
3472 handleNoThreadSafetyAttr(S, D, Attr);
3473 break;
3474 case AttributeList::AT_lockable:
3475 handleLockableAttr(S, D, Attr);
3476 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003477 case AttributeList::AT_guarded_by:
3478 handleGuardedByAttr(S, D, Attr);
3479 break;
3480 case AttributeList::AT_pt_guarded_by:
3481 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3482 break;
3483 case AttributeList::AT_exclusive_lock_function:
3484 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3485 break;
3486 case AttributeList::AT_exclusive_locks_required:
3487 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3488 break;
3489 case AttributeList::AT_exclusive_trylock_function:
3490 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3491 break;
3492 case AttributeList::AT_lock_returned:
3493 handleLockReturnedAttr(S, D, Attr);
3494 break;
3495 case AttributeList::AT_locks_excluded:
3496 handleLocksExcludedAttr(S, D, Attr);
3497 break;
3498 case AttributeList::AT_shared_lock_function:
3499 handleLockFunAttr(S, D, Attr);
3500 break;
3501 case AttributeList::AT_shared_locks_required:
3502 handleLocksRequiredAttr(S, D, Attr);
3503 break;
3504 case AttributeList::AT_shared_trylock_function:
3505 handleTrylockFunAttr(S, D, Attr);
3506 break;
3507 case AttributeList::AT_unlock_function:
3508 handleUnlockFunAttr(S, D, Attr);
3509 break;
3510 case AttributeList::AT_acquired_before:
3511 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3512 break;
3513 case AttributeList::AT_acquired_after:
3514 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3515 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003516
Chris Lattner803d0802008-06-29 00:43:07 +00003517 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003518 // Ask target about the attribute.
3519 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3520 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003521 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3522 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003523 break;
3524 }
3525}
3526
Peter Collingbourne60700392011-01-21 02:08:45 +00003527/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3528/// the attribute applies to decls. If the attribute is a type attribute, just
3529/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3530/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003531static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3532 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003533 bool NonInheritable, bool Inheritable) {
3534 if (Attr.isInvalid())
3535 return;
3536
3537 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3538 // FIXME: Try to deal with other __declspec attributes!
3539 return;
3540
3541 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003542 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003543
3544 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003545 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003546}
3547
Chris Lattner803d0802008-06-29 00:43:07 +00003548/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3549/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003550void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003551 const AttributeList *AttrList,
3552 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003553 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003554 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003555 }
3556
3557 // GCC accepts
3558 // static int a9 __attribute__((weakref));
3559 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003560 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003561 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003562 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003563 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003564 }
3565}
3566
Ryan Flynne25ff832009-07-30 03:15:39 +00003567/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3568/// #pragma weak needs a non-definition decl and source may not have one
Mike Stump1eb44332009-09-09 15:08:12 +00003569NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003570 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003571 NamedDecl *NewD = 0;
3572 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
3573 NewD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003574 FD->getInnerLocStart(),
Ryan Flynne25ff832009-07-30 03:15:39 +00003575 FD->getLocation(), DeclarationName(II),
John McCalla93c9342009-12-07 02:54:59 +00003576 FD->getType(), FD->getTypeSourceInfo());
John McCallb6217662010-03-15 10:12:16 +00003577 if (FD->getQualifier()) {
3578 FunctionDecl *NewFD = cast<FunctionDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003579 NewFD->setQualifierInfo(FD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003580 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003581 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3582 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003583 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003584 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003585 VD->getStorageClass(),
3586 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003587 if (VD->getQualifier()) {
3588 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003589 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003590 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003591 }
3592 return NewD;
3593}
3594
3595/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3596/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003597void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003598 if (W.getUsed()) return; // only do this once
3599 W.setUsed(true);
3600 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3601 IdentifierInfo *NDId = ND->getIdentifier();
3602 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias());
Sean Huntcf807c42010-08-18 23:23:40 +00003603 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3604 NDId->getName()));
3605 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003606 WeakTopLevelDecl.push_back(NewD);
3607 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3608 // to insert Decl at TU scope, sorry.
3609 DeclContext *SavedContext = CurContext;
3610 CurContext = Context.getTranslationUnitDecl();
3611 PushOnScopeChains(NewD, S);
3612 CurContext = SavedContext;
3613 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003614 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003615 }
3616}
3617
Chris Lattner0744e5f2008-06-29 00:23:49 +00003618/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3619/// it, apply them to D. This is a bit tricky because PD can have attributes
3620/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003621void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3622 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003623 // It's valid to "forward-declare" #pragma weak, in which case we
3624 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003625 if (Inheritable) {
3626 LoadExternalWeakUndeclaredIdentifiers();
3627 if (!WeakUndeclaredIdentifiers.empty()) {
3628 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3629 if (IdentifierInfo *Id = ND->getIdentifier()) {
3630 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3631 = WeakUndeclaredIdentifiers.find(Id);
3632 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3633 WeakInfo W = I->second;
3634 DeclApplyPragmaWeak(S, ND, W);
3635 WeakUndeclaredIdentifiers[Id] = W;
3636 }
John McCalld4aff0e2010-10-27 00:59:00 +00003637 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003638 }
3639 }
3640 }
3641
Chris Lattner0744e5f2008-06-29 00:23:49 +00003642 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003643 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003644 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003645
Chris Lattner0744e5f2008-06-29 00:23:49 +00003646 // Walk the declarator structure, applying decl attributes that were in a type
3647 // position to the decl itself. This handles cases like:
3648 // int *__attr__(x)** D;
3649 // when X is a decl attribute.
3650 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3651 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003652 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003653
Chris Lattner0744e5f2008-06-29 00:23:49 +00003654 // Finally, apply any attributes on the decl itself.
3655 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003656 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003657}
John McCall54abf7d2009-11-04 02:18:39 +00003658
John McCallf85e1932011-06-15 23:02:42 +00003659/// Is the given declaration allowed to use a forbidden type?
3660static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3661 // Private ivars are always okay. Unfortunately, people don't
3662 // always properly make their ivars private, even in system headers.
3663 // Plus we need to make fields okay, too.
3664 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl))
3665 return false;
3666
3667 // Require it to be declared in a system header.
3668 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3669}
3670
3671/// Handle a delayed forbidden-type diagnostic.
3672static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3673 Decl *decl) {
3674 if (decl && isForbiddenTypeAllowed(S, decl)) {
3675 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3676 "this system declaration uses an unsupported type"));
3677 return;
3678 }
3679
3680 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3681 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3682 diag.Triggered = true;
3683}
3684
John McCalleee1d542011-02-14 07:13:47 +00003685// This duplicates a vector push_back but hides the need to know the
3686// size of the type.
3687void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3688 assert(StackSize <= StackCapacity);
3689
3690 // Grow the stack if necessary.
3691 if (StackSize == StackCapacity) {
3692 unsigned newCapacity = 2 * StackCapacity + 2;
3693 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3694 const char *oldBuffer = (const char*) Stack;
3695
3696 if (StackCapacity)
3697 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3698
3699 delete[] oldBuffer;
3700 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3701 StackCapacity = newCapacity;
3702 }
3703
3704 assert(StackSize < StackCapacity);
3705 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003706}
3707
John McCalleee1d542011-02-14 07:13:47 +00003708void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3709 Decl *decl) {
3710 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003711
John McCalleee1d542011-02-14 07:13:47 +00003712 // Check the invariants.
3713 assert(DD.StackSize >= state.SavedStackSize);
3714 assert(state.SavedStackSize >= DD.ActiveStackBase);
3715 assert(DD.ParsingDepth > 0);
3716
3717 // Drop the parsing depth.
3718 DD.ParsingDepth--;
3719
3720 // If there are no active diagnostics, we're done.
3721 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003722 return;
3723
John McCall2f514482010-01-27 03:50:35 +00003724 // We only want to actually emit delayed diagnostics when we
3725 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00003726 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00003727 // We emit all the active diagnostics, not just those starting
3728 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003729 // decl spec and another for each declarator; in a decl group like:
3730 // deprecated_typedef foo, *bar, baz();
3731 // only the declarator pops will be passed decls. This is correct;
3732 // we really do need to consider delayed diagnostics from the decl spec
3733 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003734 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3735 DelayedDiagnostic &diag = DD.Stack[i];
3736 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003737 continue;
3738
John McCalleee1d542011-02-14 07:13:47 +00003739 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003740 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003741 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003742 break;
3743
3744 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003745 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003746 break;
John McCallf85e1932011-06-15 23:02:42 +00003747
3748 case DelayedDiagnostic::ForbiddenType:
3749 handleDelayedForbiddenType(S, diag, decl);
3750 break;
John McCall2f514482010-01-27 03:50:35 +00003751 }
3752 }
3753 }
3754
John McCall58e6f342010-03-16 05:22:47 +00003755 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003756 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00003757 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00003758
John McCalleee1d542011-02-14 07:13:47 +00003759 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003760}
3761
3762static bool isDeclDeprecated(Decl *D) {
3763 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003764 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00003765 return true;
3766 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3767 return false;
3768}
3769
John McCall9c3087b2010-08-26 02:13:20 +00003770void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003771 Decl *Ctx) {
3772 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003773 return;
3774
John McCall2f514482010-01-27 03:50:35 +00003775 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003776 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003777 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003778 << DD.getDeprecationDecl()->getDeclName()
3779 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003780 else
3781 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003782 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003783}
3784
Chris Lattner5f9e2722011-07-23 10:55:15 +00003785void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003786 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003787 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003788 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003789 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3790 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003791 return;
3792 }
3793
3794 // Otherwise, don't warn if our current context is deprecated.
3795 if (isDeclDeprecated(cast<Decl>(CurContext)))
3796 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003797 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003798 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3799 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003800 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003801 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003802 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003803 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003804 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003805 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
3806 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003807 }
John McCall54abf7d2009-11-04 02:18:39 +00003808}