blob: aa827a40c62f0c4d2cd1fcae7f10554e30a6f818 [file] [log] [blame]
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
John McCall28a0cf72010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000018#include "clang/AST/DeclTemplate.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
20#include "clang/AST/Expr.h"
John McCall31168b02011-06-15 23:02:42 +000021#include "clang/Basic/SourceManager.h"
Chris Lattneracbc2d22008-06-27 22:18:37 +000022#include "clang/Basic/TargetInfo.h"
John McCall8b0666c2010-08-20 18:27:03 +000023#include "clang/Sema/DeclSpec.h"
John McCallb45a1e72010-08-26 02:13:20 +000024#include "clang/Sema/DelayedDiagnostic.h"
John McCallf1e8b342011-09-29 07:17:38 +000025#include "clang/Sema/Lookup.h"
Chris Lattner30ba6742009-08-10 19:03:04 +000026#include "llvm/ADT/StringExtras.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000027using namespace clang;
John McCallb45a1e72010-08-26 02:13:20 +000028using namespace sema;
Chris Lattner2c6fcf52008-06-26 18:38:35 +000029
John McCall5fca7ea2011-03-02 12:29:23 +000030/// These constants match the enumerated choices of
31/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000032enum AttributeDeclKind {
John McCall5fca7ea2011-03-02 12:29:23 +000033 ExpectedFunction,
34 ExpectedUnion,
35 ExpectedVariableOrFunction,
36 ExpectedFunctionOrMethod,
37 ExpectedParameter,
38 ExpectedParameterOrMethod,
39 ExpectedFunctionMethodOrBlock,
40 ExpectedClassOrVirtualMethod,
41 ExpectedFunctionMethodOrParameter,
42 ExpectedClass,
43 ExpectedVirtualMethod,
44 ExpectedClassMember,
45 ExpectedVariable,
46 ExpectedMethod,
Caitlin Sadowski63fa6672011-07-28 20:12:35 +000047 ExpectedVariableFunctionOrLabel,
48 ExpectedFieldOrGlobalVar
John McCall5fca7ea2011-03-02 12:29:23 +000049};
50
Chris Lattner58418ff2008-06-29 00:16:31 +000051//===----------------------------------------------------------------------===//
52// Helper functions
53//===----------------------------------------------------------------------===//
54
Chandler Carruthff4c4f02011-07-01 23:49:12 +000055static const FunctionType *getFunctionType(const Decl *D,
Ted Kremenek527042b2009-08-14 20:49:40 +000056 bool blocksToo = true) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +000057 QualType Ty;
Chandler Carruthff4c4f02011-07-01 23:49:12 +000058 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000059 Ty = decl->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000060 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000061 Ty = decl->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000062 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000063 Ty = decl->getUnderlyingType();
64 else
65 return 0;
Mike Stumpd3bb5572009-07-24 19:02:52 +000066
Chris Lattner2c6fcf52008-06-26 18:38:35 +000067 if (Ty->isFunctionPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000068 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian28c433d2009-05-18 17:39:25 +000069 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000070 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000071
John McCall9dd450b2009-09-21 23:43:11 +000072 return Ty->getAs<FunctionType>();
Chris Lattner2c6fcf52008-06-26 18:38:35 +000073}
74
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000075// FIXME: We should provide an abstraction around a method or function
76// to provide the following bits of information.
77
Nuno Lopes518e3702009-12-20 23:11:08 +000078/// isFunction - Return true if the given decl has function
Ted Kremenek527042b2009-08-14 20:49:40 +000079/// type (function or function-typed variable).
Chandler Carruthff4c4f02011-07-01 23:49:12 +000080static bool isFunction(const Decl *D) {
81 return getFunctionType(D, false) != NULL;
Ted Kremenek527042b2009-08-14 20:49:40 +000082}
83
84/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000085/// type (function or function-typed variable) or an Objective-C
86/// method.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000087static bool isFunctionOrMethod(const Decl *D) {
88 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000089}
90
Fariborz Jahanian4447e172009-05-15 23:15:03 +000091/// isFunctionOrMethodOrBlock - Return true if the given decl has function
92/// type (function or function-typed variable) or an Objective-C
93/// method or a block.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000094static bool isFunctionOrMethodOrBlock(const Decl *D) {
95 if (isFunctionOrMethod(D))
Fariborz Jahanian4447e172009-05-15 23:15:03 +000096 return true;
97 // check for block is more involved.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000098 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian4447e172009-05-15 23:15:03 +000099 QualType Ty = V->getType();
100 return Ty->isBlockPointerType();
101 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000102 return isa<BlockDecl>(D);
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000103}
104
John McCall3882ace2011-01-05 12:14:39 +0000105/// Return true if the given decl has a declarator that should have
106/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000107static bool hasDeclarator(const Decl *D) {
John McCall31168b02011-06-15 23:02:42 +0000108 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000109 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
110 isa<ObjCPropertyDecl>(D);
John McCall3882ace2011-01-05 12:14:39 +0000111}
112
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000113/// hasFunctionProto - Return true if the given decl has a argument
114/// information. This decl should have already passed
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000115/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000116static bool hasFunctionProto(const Decl *D) {
117 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000118 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000119 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000120 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000121 return true;
122 }
123}
124
125/// getFunctionOrMethodNumArgs - Return number of function or method
126/// arguments. It is an error to call this on a K&R function (use
127/// hasFunctionProto first).
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000128static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
129 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000130 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000131 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000132 return BD->getNumParams();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000133 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000134}
135
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000136static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
137 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000138 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000139 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000140 return BD->getParamDecl(Idx)->getType();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000141
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000142 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000143}
144
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000145static QualType getFunctionOrMethodResultType(const Decl *D) {
146 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000147 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000148 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000149}
150
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000151static bool isFunctionOrMethodVariadic(const Decl *D) {
152 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000153 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000154 return proto->isVariadic();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000155 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenek8af4f402010-04-29 16:48:58 +0000156 return BD->isVariadic();
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000157 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000158 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000159 }
160}
161
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000162static bool isInstanceMethod(const Decl *D) {
163 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth743682b2010-11-16 08:35:43 +0000164 return MethodDecl->isInstance();
165 return false;
166}
167
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000168static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall9dd450b2009-09-21 23:43:11 +0000169 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattner574dee62008-07-26 22:17:49 +0000170 if (!PT)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000171 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000172
John McCall96fa4842010-05-17 21:00:27 +0000173 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
174 if (!Cls)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000175 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000176
John McCall96fa4842010-05-17 21:00:27 +0000177 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000178
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000179 // FIXME: Should we walk the chain of classes?
180 return ClsName == &Ctx.Idents.get("NSString") ||
181 ClsName == &Ctx.Idents.get("NSMutableString");
182}
183
Daniel Dunbar980c6692008-09-26 03:32:58 +0000184static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000185 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000186 if (!PT)
187 return false;
188
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000189 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000190 if (!RT)
191 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000192
Daniel Dunbar980c6692008-09-26 03:32:58 +0000193 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara6150c882010-05-11 21:36:43 +0000194 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar980c6692008-09-26 03:32:58 +0000195 return false;
196
197 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
198}
199
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000200/// \brief Check if the attribute has exactly as many args as Num. May
201/// output an error.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000202static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
203 unsigned int Num) {
204 if (Attr.getNumArgs() != Num) {
205 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
206 return false;
207 }
208
209 return true;
210}
211
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000212
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000213/// \brief Check if the attribute has at least as many args as Num. May
214/// output an error.
215static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
216 unsigned int Num) {
217 if (Attr.getNumArgs() < Num) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000218 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
219 return false;
220 }
221
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000222 return true;
223}
224
225///
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000226/// \brief Check if passed in Decl is a field or potentially shared global var
227/// \return true if the Decl is a field or potentially shared global variable
228///
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000229static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000230 if (isa<FieldDecl>(D))
231 return true;
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000232 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000233 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
234
235 return false;
236}
237
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000238/// \brief Check if the passed-in expression is of type int or bool.
239static bool isIntOrBool(Expr *Exp) {
240 QualType QT = Exp->getType();
241 return QT->isBooleanType() || QT->isIntegerType();
242}
243
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000244///
245/// \brief Check if passed in Decl is a pointer type.
246/// Note that this function may produce an error message.
247/// \return true if the Decl is a pointer type; false otherwise
248///
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000249static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
250 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000251 QualType QT = vd->getType();
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000252 if (QT->isAnyPointerType())
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000253 return true;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000254 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
255 << Attr.getName()->getName() << QT;
256 } else {
257 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
258 << Attr.getName();
259 }
260 return false;
261}
262
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000263/// \brief Checks that the passed in QualType either is of RecordType or points
264/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000265static const RecordType *getRecordType(QualType QT) {
266 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000267 return RT;
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000268
269 // Now check if we point to record type.
270 if (const PointerType *PT = QT->getAs<PointerType>())
271 return PT->getPointeeType()->getAs<RecordType>();
272
273 return 0;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000274}
275
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000276/// \brief Thread Safety Analysis: Checks that the passed in RecordType
277/// resolves to a lockable object. May flag an error.
Benjamin Kramer2667afa2011-09-03 03:30:59 +0000278static bool checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
279 const RecordType *RT) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000280 // Flag error if could not get record type for this argument.
Benjamin Kramer2667afa2011-09-03 03:30:59 +0000281 if (!RT) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000282 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_class)
283 << Attr.getName();
284 return false;
285 }
286 // Flag error if the type is not lockable.
Benjamin Kramer2667afa2011-09-03 03:30:59 +0000287 if (!RT->getDecl()->getAttr<LockableAttr>()) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000288 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
289 << Attr.getName();
290 return false;
291 }
292 return true;
293}
294
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000295/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
296/// from Sidx, resolve to a lockable object. May flag an error.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000297/// \param Sidx The attribute argument index to start checking with.
298/// \param ParamIdxOk Whether an argument can be indexing into a function
299/// parameter list.
300static bool checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
301 const AttributeList &Attr,
302 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000303 int Sidx = 0,
304 bool ParamIdxOk = false) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000305 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000306 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000307
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000308 if (ArgExp->isTypeDependent()) {
309 // FIXME -- need to processs this again on template instantiation
310 Args.push_back(ArgExp);
311 continue;
312 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000313
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000314 QualType ArgTy = ArgExp->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000315
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000316 // First see if we can just cast to record type, or point to record type.
317 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000318
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000319 // Now check if we index into a record type function param.
320 if(!RT && ParamIdxOk) {
321 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000322 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
323 if(FD && IL) {
324 unsigned int NumParams = FD->getNumParams();
325 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000326 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
327 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
328 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000329 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
330 << Attr.getName() << Idx + 1 << NumParams;
331 return false;
332 }
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000333 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
334 RT = getRecordType(ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000335 }
336 }
337
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000338 if (!checkForLockableRecord(S, D, Attr, RT))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000339 return false;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000340
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000341 Args.push_back(ArgExp);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000342 }
343 return true;
344}
345
Chris Lattner58418ff2008-06-29 00:16:31 +0000346//===----------------------------------------------------------------------===//
Chris Lattner58418ff2008-06-29 00:16:31 +0000347// Attribute Implementations
348//===----------------------------------------------------------------------===//
349
Daniel Dunbar032db472008-07-31 22:40:48 +0000350// FIXME: All this manual attribute parsing code is gross. At the
351// least add some helper functions to check most argument patterns (#
352// and types of args).
353
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000354static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
355 bool pointer = false) {
356 assert(!Attr.isInvalid());
357
358 if (!checkAttributeNumArgs(S, Attr, 0))
359 return;
360
361 // D must be either a member field or global (potentially shared) variable.
362 if (!mayBeSharedVariable(D)) {
363 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000364 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000365 return;
366 }
367
368 if (pointer && !checkIsPointer(S, D, Attr))
369 return;
370
371 if (pointer)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000372 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000373 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000374 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000375}
376
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000377static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000378 bool pointer = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000379 assert(!Attr.isInvalid());
380
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000381 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000382 return;
383
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000384 Expr *Arg = Attr.getArg(0);
385
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000386 // D must be either a member field or global (potentially shared) variable.
387 if (!mayBeSharedVariable(D)) {
388 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000389 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000390 return;
391 }
392
393 if (pointer && !checkIsPointer(S, D, Attr))
394 return;
395
DeLesley Hutchinsceec3062012-01-20 22:37:06 +0000396 if (!Arg->isTypeDependent()) {
397 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
398 return;
399 // FIXME -- semantic checks for dependent attributes
400 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000401
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000402 if (pointer)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000403 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000404 S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000405 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000406 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000407}
408
409
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000410static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
411 bool scoped = false) {
412 assert(!Attr.isInvalid());
413
414 if (!checkAttributeNumArgs(S, Attr, 0))
415 return;
416
Caitlin Sadowski086fb952011-09-16 00:35:54 +0000417 // FIXME: Lockable structs for C code.
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000418 if (!isa<CXXRecordDecl>(D)) {
419 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
420 << Attr.getName() << ExpectedClass;
421 return;
422 }
423
424 if (scoped)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000425 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000426 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000427 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000428}
429
430static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
431 const AttributeList &Attr) {
432 assert(!Attr.isInvalid());
433
434 if (!checkAttributeNumArgs(S, Attr, 0))
435 return;
436
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000437 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
439 << Attr.getName() << ExpectedFunctionOrMethod;
440 return;
441 }
442
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000443 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000444 S.Context));
445}
446
Kostya Serebryany588d6ab2012-01-24 19:25:38 +0000447static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
448 const AttributeList &Attr) {
449 assert(!Attr.isInvalid());
450
451 if (!checkAttributeNumArgs(S, Attr, 0))
452 return;
453
454 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
455 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
456 << Attr.getName() << ExpectedFunctionOrMethod;
457 return;
458 }
459
460 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
461 S.Context));
462}
463
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000464static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
465 bool before) {
466 assert(!Attr.isInvalid());
467
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000468 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000469 return;
470
471 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000472 ValueDecl *VD = dyn_cast<ValueDecl>(D);
473 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000474 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000475 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000476 return;
477 }
478
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000479 // Check that this attribute only applies to lockable types
480 QualType QT = VD->getType();
481 if (!QT->isDependentType()) {
482 const RecordType *RT = getRecordType(QT);
483 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
484 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
485 << Attr.getName();
486 return;
487 }
488 }
489
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000490 SmallVector<Expr*, 1> Args;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000491 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000492 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000493 return;
494
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000495 unsigned Size = Args.size();
496 assert(Size == Attr.getNumArgs());
497 Expr **StartArg = Size == 0 ? 0 : &Args[0];
498
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000499 if (before)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000500 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000501 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000502 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000503 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000504 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000505}
506
507static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000508 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000509 assert(!Attr.isInvalid());
510
511 // zero or more arguments ok
512
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000513 // check that the attribute is applied to a function
514 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000515 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
516 << Attr.getName() << ExpectedFunctionOrMethod;
517 return;
518 }
519
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000520 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000521 SmallVector<Expr*, 1> Args;
522 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000523 return;
524
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000525 unsigned Size = Args.size();
526 assert(Size == Attr.getNumArgs());
527 Expr **StartArg = Size == 0 ? 0 : &Args[0];
528
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000529 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000530 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000531 S.Context, StartArg,
532 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000533 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000534 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000535 S.Context, StartArg,
536 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000537}
538
539static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000540 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000541 assert(!Attr.isInvalid());
542
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000543 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000544 return;
545
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000546
547 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-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 Sadowski4b1e8392011-08-09 17:59:31 +0000553 if (!isIntOrBool(Attr.getArg(0))) {
554 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
555 << Attr.getName();
556 return;
557 }
558
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000559 SmallVector<Expr*, 2> Args;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000560 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000561 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000562 return;
563
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000564 unsigned Size = Args.size();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000565 Expr **StartArg = Size == 0 ? 0 : &Args[0];
566
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000567 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000568 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000569 S.Context,
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000570 Attr.getArg(0),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000571 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000572 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000573 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000574 S.Context,
575 Attr.getArg(0),
576 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000577}
578
579static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000580 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000581 assert(!Attr.isInvalid());
582
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000583 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000584 return;
585
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000586 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000587 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
588 << Attr.getName() << ExpectedFunctionOrMethod;
589 return;
590 }
591
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000592 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000593 SmallVector<Expr*, 1> Args;
594 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000595 return;
596
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000597 unsigned Size = Args.size();
598 assert(Size == Attr.getNumArgs());
599 Expr **StartArg = Size == 0 ? 0 : &Args[0];
600
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000601 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000602 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000603 S.Context, StartArg,
604 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000605 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000606 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000607 S.Context, StartArg,
608 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000609}
610
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000611static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000612 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000613 assert(!Attr.isInvalid());
614
615 // zero or more arguments ok
616
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000617 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000618 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
619 << Attr.getName() << ExpectedFunctionOrMethod;
620 return;
621 }
622
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000623 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000624 SmallVector<Expr*, 1> Args;
625 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000626 return;
627
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000628 unsigned Size = Args.size();
629 assert(Size == Attr.getNumArgs());
630 Expr **StartArg = Size == 0 ? 0 : &Args[0];
631
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000632 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000633 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000634}
635
636static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000637 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000638 assert(!Attr.isInvalid());
639
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000640 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000641 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000642 Expr *Arg = Attr.getArg(0);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000643
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000644 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000645 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
646 << Attr.getName() << ExpectedFunctionOrMethod;
647 return;
648 }
649
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000650 if (Arg->isTypeDependent())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000651 return;
652
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000653 // check that the argument is lockable object
654 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
655 return;
656
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000657 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000658}
659
660static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000661 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000662 assert(!Attr.isInvalid());
663
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000664 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000665 return;
666
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000667 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000668 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
669 << Attr.getName() << ExpectedFunctionOrMethod;
670 return;
671 }
672
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000673 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000674 SmallVector<Expr*, 1> Args;
675 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000676 return;
677
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000678 unsigned Size = Args.size();
679 assert(Size == Attr.getNumArgs());
680 Expr **StartArg = Size == 0 ? 0 : &Args[0];
681
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000682 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000683 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000684}
685
686
Chandler Carruthedc2c642011-07-02 00:01:44 +0000687static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
688 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000689 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000690 if (tDecl == 0) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000691 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000692 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000693 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000694
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000695 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor758a8692009-06-17 21:51:59 +0000696
697 Expr *sizeExpr;
698
699 // Special case where the argument is a template id.
700 if (Attr.getParameterName()) {
John McCalle66edc12009-11-24 19:00:30 +0000701 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000702 SourceLocation TemplateKWLoc;
John McCalle66edc12009-11-24 19:00:30 +0000703 UnqualifiedId id;
704 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor39c02722011-06-15 16:02:29 +0000705
Abramo Bagnara7945c982012-01-27 09:46:47 +0000706 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
707 false, false);
Douglas Gregor39c02722011-06-15 16:02:29 +0000708 if (Size.isInvalid())
709 return;
710
711 sizeExpr = Size.get();
Douglas Gregor758a8692009-06-17 21:51:59 +0000712 } else {
713 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000714 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor758a8692009-06-17 21:51:59 +0000715 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000716
Peter Collingbournee57e9ef2010-11-23 20:45:58 +0000717 sizeExpr = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000718 }
Douglas Gregor758a8692009-06-17 21:51:59 +0000719
720 // Instantiate/Install the vector type, and let Sema build the type for us.
721 // This will run the reguired checks.
John McCallb268a282010-08-23 23:25:46 +0000722 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor758a8692009-06-17 21:51:59 +0000723 if (!T.isNull()) {
John McCall703a3f82009-10-24 08:00:42 +0000724 // FIXME: preserve the old source info.
John McCallbcd03502009-12-07 02:54:59 +0000725 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpd3bb5572009-07-24 19:02:52 +0000726
Douglas Gregor758a8692009-06-17 21:51:59 +0000727 // Remember this typedef decl, we will need it later for diagnostics.
728 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000729 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000730}
731
Chandler Carruthedc2c642011-07-02 00:01:44 +0000732static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000733 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000734 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000735 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000736
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000737 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000738 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000739 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000740 // If the alignment is less than or equal to 8 bits, the packed attribute
741 // has no effect.
742 if (!FD->getType()->isIncompleteType() &&
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000743 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner3b054132008-11-19 05:08:23 +0000744 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000745 << Attr.getName() << FD->getType();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000746 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000747 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000748 } else
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000749 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000750}
751
Chandler Carruthedc2c642011-07-02 00:01:44 +0000752static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000753 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000754 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +0000755 else
756 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
757}
758
Chandler Carruthedc2c642011-07-02 00:01:44 +0000759static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000760 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000761 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000762 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000763
Ted Kremenek1f672822010-02-18 03:08:58 +0000764 // The IBAction attributes only apply to instance methods.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000765 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek1f672822010-02-18 03:08:58 +0000766 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000767 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek1f672822010-02-18 03:08:58 +0000768 return;
769 }
770
Ted Kremenekd68ec812011-02-04 06:54:16 +0000771 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek1f672822010-02-18 03:08:58 +0000772}
773
Ted Kremenek7fd17232011-09-29 07:02:25 +0000774static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
775 // The IBOutlet/IBOutletCollection attributes only apply to instance
776 // variables or properties of Objective-C classes. The outlet must also
777 // have an object reference type.
778 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
779 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +0000780 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000781 << Attr.getName() << VD->getType() << 0;
782 return false;
783 }
784 }
785 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
786 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +0000787 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000788 << Attr.getName() << PD->getType() << 1;
789 return false;
790 }
791 }
792 else {
793 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
794 return false;
795 }
796
797 return true;
798}
799
Chandler Carruthedc2c642011-07-02 00:01:44 +0000800static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek1f672822010-02-18 03:08:58 +0000801 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000802 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek1f672822010-02-18 03:08:58 +0000803 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000804
805 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek1f672822010-02-18 03:08:58 +0000806 return;
Ted Kremenek1f672822010-02-18 03:08:58 +0000807
Ted Kremenek7fd17232011-09-29 07:02:25 +0000808 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000809}
810
Chandler Carruthedc2c642011-07-02 00:01:44 +0000811static void handleIBOutletCollection(Sema &S, Decl *D,
812 const AttributeList &Attr) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000813
814 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000815 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000816 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
817 return;
818 }
819
Ted Kremenek7fd17232011-09-29 07:02:25 +0000820 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek26bde772010-05-19 17:38:06 +0000821 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000822
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000823 IdentifierInfo *II = Attr.getParameterName();
824 if (!II)
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000825 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian798f8322010-08-17 21:39:27 +0000826
John McCallba7bf592010-08-24 05:47:05 +0000827 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000828 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000829 if (!TypeRep) {
830 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
831 return;
832 }
John McCallba7bf592010-08-24 05:47:05 +0000833 QualType QT = TypeRep.get();
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000834 // Diagnose use of non-object type in iboutletcollection attribute.
835 // FIXME. Gnu attribute extension ignores use of builtin types in
836 // attributes. So, __attribute__((iboutletcollection(char))) will be
837 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000838 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000839 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
840 return;
841 }
Argyrios Kyrtzidis8db67df2011-09-13 18:41:59 +0000842 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
843 QT, Attr.getParameterLoc()));
Ted Kremenek26bde772010-05-19 17:38:06 +0000844}
845
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000846static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +0000847 if (const RecordType *UT = T->getAsUnionType())
848 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
849 RecordDecl *UD = UT->getDecl();
850 for (RecordDecl::field_iterator it = UD->field_begin(),
851 itend = UD->field_end(); it != itend; ++it) {
852 QualType QT = it->getType();
853 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
854 T = QT;
855 return;
856 }
857 }
858 }
859}
860
Chandler Carruthedc2c642011-07-02 00:01:44 +0000861static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000862 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
863 // ignore it as well
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000864 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +0000866 << Attr.getName() << ExpectedFunction;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000867 return;
868 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000869
Chandler Carruth743682b2010-11-16 08:35:43 +0000870 // In C++ the implicit 'this' function parameter also counts, and they are
871 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000872 bool HasImplicitThisParam = isInstanceMethod(D);
873 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000874
875 // The nonnull attribute only applies to pointers.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000876 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000877
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000878 for (AttributeList::arg_iterator I=Attr.arg_begin(),
879 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000880
881
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000882 // The argument must be an integer constant expression.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +0000883 Expr *Ex = *I;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000884 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +0000885 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
886 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000887 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
888 << "nonnull" << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000889 return;
890 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000891
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000892 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000893
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000894 if (x < 1 || x > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +0000895 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner91aea712008-11-19 07:22:31 +0000896 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000897 return;
898 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000899
Ted Kremenek5224e6a2008-07-21 22:09:15 +0000900 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +0000901 if (HasImplicitThisParam) {
902 if (x == 0) {
903 S.Diag(Attr.getLoc(),
904 diag::err_attribute_invalid_implicit_this_argument)
905 << "nonnull" << Ex->getSourceRange();
906 return;
907 }
908 --x;
909 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000910
911 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000912 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000913 possibleTransparentUnionPointerType(T);
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +0000914
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000915 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000916 // FIXME: Should also highlight argument in decl.
Douglas Gregor62157e52010-08-12 18:48:43 +0000917 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattner3b054132008-11-19 05:08:23 +0000918 << "nonnull" << Ex->getSourceRange();
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000919 continue;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000920 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000921
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000922 NonNullArgs.push_back(x);
923 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000924
925 // If no arguments were specified to __attribute__((nonnull)) then all pointer
926 // arguments have a nonnull attribute.
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000927 if (NonNullArgs.empty()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000928 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
929 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000930 possibleTransparentUnionPointerType(T);
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000931 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000932 NonNullArgs.push_back(I);
Ted Kremenek5fa50522008-11-18 06:52:58 +0000933 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000934
Ted Kremenek22813f42010-10-21 18:49:36 +0000935 // No pointer arguments?
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +0000936 if (NonNullArgs.empty()) {
937 // Warn the trivial case only if attribute is not coming from a
938 // macro instantiation.
939 if (Attr.getLoc().isFileID())
940 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000941 return;
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +0000942 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000943 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000944
945 unsigned* start = &NonNullArgs[0];
946 unsigned size = NonNullArgs.size();
Ted Kremenekd21139a2010-07-31 01:52:11 +0000947 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000948 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000949 size));
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000950}
951
Chandler Carruthedc2c642011-07-02 00:01:44 +0000952static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekd21139a2010-07-31 01:52:11 +0000953 // This attribute must be applied to a function declaration.
954 // The first argument to the attribute must be a string,
955 // the name of the resource, for example "malloc".
956 // The following arguments must be argument indexes, the arguments must be
957 // of integer type for Returns, otherwise of pointer type.
958 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000959 // after being held. free() should be __attribute((ownership_takes)), whereas
960 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekd21139a2010-07-31 01:52:11 +0000961
962 if (!AL.getParameterName()) {
963 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
964 << AL.getName()->getName() << 1;
965 return;
966 }
967 // Figure out our Kind, and check arguments while we're at it.
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000968 OwnershipAttr::OwnershipKind K;
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000969 switch (AL.getKind()) {
970 case AttributeList::AT_ownership_takes:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000971 K = OwnershipAttr::Takes;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000972 if (AL.getNumArgs() < 1) {
973 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
974 return;
975 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000976 break;
977 case AttributeList::AT_ownership_holds:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000978 K = OwnershipAttr::Holds;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000979 if (AL.getNumArgs() < 1) {
980 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
981 return;
982 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000983 break;
984 case AttributeList::AT_ownership_returns:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000985 K = OwnershipAttr::Returns;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000986 if (AL.getNumArgs() > 1) {
987 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
988 << AL.getNumArgs() + 1;
989 return;
990 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000991 break;
992 default:
993 // This should never happen given how we are called.
994 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekd21139a2010-07-31 01:52:11 +0000995 }
996
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000997 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall5fca7ea2011-03-02 12:29:23 +0000998 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
999 << AL.getName() << ExpectedFunction;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001000 return;
1001 }
1002
Chandler Carruth743682b2010-11-16 08:35:43 +00001003 // In C++ the implicit 'this' function parameter also counts, and they are
1004 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001005 bool HasImplicitThisParam = isInstanceMethod(D);
1006 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001007
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001008 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekd21139a2010-07-31 01:52:11 +00001009
1010 // Normalize the argument, __foo__ becomes foo.
1011 if (Module.startswith("__") && Module.endswith("__"))
1012 Module = Module.substr(2, Module.size() - 4);
1013
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001014 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001015
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001016 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1017 ++I) {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001018
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001019 Expr *IdxExpr = *I;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001020 llvm::APSInt ArgNum(32);
1021 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1022 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1023 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1024 << AL.getName()->getName() << IdxExpr->getSourceRange();
1025 continue;
1026 }
1027
1028 unsigned x = (unsigned) ArgNum.getZExtValue();
1029
1030 if (x > NumArgs || x < 1) {
1031 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1032 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1033 continue;
1034 }
1035 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +00001036 if (HasImplicitThisParam) {
1037 if (x == 0) {
1038 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1039 << "ownership" << IdxExpr->getSourceRange();
1040 return;
1041 }
1042 --x;
1043 }
1044
Ted Kremenekd21139a2010-07-31 01:52:11 +00001045 switch (K) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001046 case OwnershipAttr::Takes:
1047 case OwnershipAttr::Holds: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001048 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001049 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001050 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1051 // FIXME: Should also highlight argument in decl.
1052 S.Diag(AL.getLoc(), diag::err_ownership_type)
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001053 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekd21139a2010-07-31 01:52:11 +00001054 << "pointer"
1055 << IdxExpr->getSourceRange();
1056 continue;
1057 }
1058 break;
1059 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001060 case OwnershipAttr::Returns: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001061 if (AL.getNumArgs() > 1) {
1062 // Is the function argument an integer type?
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001063 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001064 llvm::APSInt ArgNum(32);
1065 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1066 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1067 S.Diag(AL.getLoc(), diag::err_ownership_type)
1068 << "ownership_returns" << "integer"
1069 << IdxExpr->getSourceRange();
1070 return;
1071 }
1072 }
1073 break;
1074 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001075 } // switch
1076
1077 // Check we don't have a conflict with another ownership attribute.
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001078 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001079 i = D->specific_attr_begin<OwnershipAttr>(),
1080 e = D->specific_attr_end<OwnershipAttr>();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001081 i != e; ++i) {
1082 if ((*i)->getOwnKind() != K) {
1083 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1084 I!=E; ++I) {
1085 if (x == *I) {
1086 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1087 << AL.getName()->getName() << "ownership_*";
Ted Kremenekd21139a2010-07-31 01:52:11 +00001088 }
1089 }
1090 }
1091 }
1092 OwnershipArgs.push_back(x);
1093 }
1094
1095 unsigned* start = OwnershipArgs.data();
1096 unsigned size = OwnershipArgs.size();
1097 llvm::array_pod_sort(start, start + size);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001098
1099 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1100 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1101 return;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001102 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001103
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001104 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001105 start, size));
Ted Kremenekd21139a2010-07-31 01:52:11 +00001106}
1107
John McCall7a198ce2011-02-08 22:35:49 +00001108/// Whether this declaration has internal linkage for the purposes of
1109/// things that want to complain about things not have internal linkage.
1110static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1111 switch (D->getLinkage()) {
1112 case NoLinkage:
1113 case InternalLinkage:
1114 return true;
1115
1116 // Template instantiations that go from external to unique-external
1117 // shouldn't get diagnosed.
1118 case UniqueExternalLinkage:
1119 return true;
1120
1121 case ExternalLinkage:
1122 return false;
1123 }
1124 llvm_unreachable("unknown linkage kind!");
Rafael Espindolac18086a2010-02-23 22:00:30 +00001125}
1126
Chandler Carruthedc2c642011-07-02 00:01:44 +00001127static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001128 // Check the attribute arguments.
1129 if (Attr.getNumArgs() > 1) {
1130 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1131 return;
1132 }
1133
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001134 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall7a198ce2011-02-08 22:35:49 +00001135 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001136 << Attr.getName() << ExpectedVariableOrFunction;
John McCall7a198ce2011-02-08 22:35:49 +00001137 return;
1138 }
1139
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001140 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001141
Rafael Espindolac18086a2010-02-23 22:00:30 +00001142 // gcc rejects
1143 // class c {
1144 // static int a __attribute__((weakref ("v2")));
1145 // static int b() __attribute__((weakref ("f3")));
1146 // };
1147 // and ignores the attributes of
1148 // void f(void) {
1149 // static int a __attribute__((weakref ("v2")));
1150 // }
1151 // we reject them
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001152 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl50c68252010-08-31 00:36:30 +00001153 if (!Ctx->isFileContext()) {
1154 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall7a198ce2011-02-08 22:35:49 +00001155 nd->getNameAsString();
Sebastian Redl50c68252010-08-31 00:36:30 +00001156 return;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001157 }
1158
1159 // The GCC manual says
1160 //
1161 // At present, a declaration to which `weakref' is attached can only
1162 // be `static'.
1163 //
1164 // It also says
1165 //
1166 // Without a TARGET,
1167 // given as an argument to `weakref' or to `alias', `weakref' is
1168 // equivalent to `weak'.
1169 //
1170 // gcc 4.4.1 will accept
1171 // int a7 __attribute__((weakref));
1172 // as
1173 // int a7 __attribute__((weak));
1174 // This looks like a bug in gcc. We reject that for now. We should revisit
1175 // it if this behaviour is actually used.
1176
John McCall7a198ce2011-02-08 22:35:49 +00001177 if (!hasEffectivelyInternalLinkage(nd)) {
1178 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001179 return;
1180 }
1181
1182 // GCC rejects
1183 // static ((alias ("y"), weakref)).
1184 // Should we? How to check that weakref is before or after alias?
1185
1186 if (Attr.getNumArgs() == 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001187 Expr *Arg = Attr.getArg(0);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001188 Arg = Arg->IgnoreParenCasts();
1189 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1190
Douglas Gregorfb65e592011-07-27 05:40:30 +00001191 if (!Str || !Str->isAscii()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001192 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1193 << "weakref" << 1;
1194 return;
1195 }
1196 // GCC will accept anything as the argument of weakref. Should we
1197 // check for an existing decl?
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001198 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001199 Str->getString()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001200 }
1201
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001202 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001203}
1204
Chandler Carruthedc2c642011-07-02 00:01:44 +00001205static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001206 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001207 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001208 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001209 return;
1210 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001211
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001212 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001213 Arg = Arg->IgnoreParenCasts();
1214 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001215
Douglas Gregorfb65e592011-07-27 05:40:30 +00001216 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001217 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001218 << "alias" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001219 return;
1220 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001221
Douglas Gregore8bbc122011-09-02 00:18:52 +00001222 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001223 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1224 return;
1225 }
1226
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001227 // FIXME: check if target symbol exists in current file
Mike Stumpd3bb5572009-07-24 19:02:52 +00001228
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001229 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001230 Str->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001231}
1232
Chandler Carruthedc2c642011-07-02 00:01:44 +00001233static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001234 // Check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001235 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar03a38442008-10-28 00:17:57 +00001236 return;
Anders Carlsson88097122009-02-19 19:16:48 +00001237
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001238 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00001239 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001240 << Attr.getName() << ExpectedFunction;
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001241 return;
1242 }
1243
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001244 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001245}
1246
Chandler Carruthedc2c642011-07-02 00:01:44 +00001247static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1248 const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001249 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001250 if (Attr.hasParameterOrArguments()) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001251 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1252 return;
1253 }
1254
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001255 if (!isa<FunctionDecl>(D)) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001256 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001257 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00001258 return;
1259 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001260
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001261 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbar03a38442008-10-28 00:17:57 +00001262}
1263
Chandler Carruthedc2c642011-07-02 00:01:44 +00001264static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001265 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001266 if (Attr.hasParameterOrArguments()) {
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001267 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1268 return;
1269 }
Mike Stump11289f42009-09-09 15:08:12 +00001270
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001271 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001272 QualType RetTy = FD->getResultType();
Ted Kremenek08479ae2009-08-15 00:51:46 +00001273 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001274 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek08479ae2009-08-15 00:51:46 +00001275 return;
1276 }
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001277 }
1278
Ted Kremenek08479ae2009-08-15 00:51:46 +00001279 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001280}
1281
Chandler Carruthedc2c642011-07-02 00:01:44 +00001282static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001283 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001284 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001285 return;
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001286
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001287 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001288}
1289
Chandler Carruthedc2c642011-07-02 00:01:44 +00001290static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001291 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001292 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001293 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001294 else
1295 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001296 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001297}
1298
Chandler Carruthedc2c642011-07-02 00:01:44 +00001299static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001300 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001301 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001302 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001303 else
1304 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001305 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001306}
1307
Chandler Carruthedc2c642011-07-02 00:01:44 +00001308static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001309 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00001310
1311 if (S.CheckNoReturnAttr(attr)) return;
1312
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001313 if (!isa<ObjCMethodDecl>(D)) {
John McCall3882ace2011-01-05 12:14:39 +00001314 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001315 << attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00001316 return;
1317 }
1318
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001319 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall3882ace2011-01-05 12:14:39 +00001320}
1321
1322bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek1551d552011-04-15 05:49:29 +00001323 if (attr.hasParameterOrArguments()) {
John McCall3882ace2011-01-05 12:14:39 +00001324 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1325 attr.setInvalid();
1326 return true;
1327 }
1328
1329 return false;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00001330}
1331
Chandler Carruthedc2c642011-07-02 00:01:44 +00001332static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1333 const AttributeList &Attr) {
Ted Kremenek5295ce82010-08-19 00:51:58 +00001334
1335 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1336 // because 'analyzer_noreturn' does not impact the type.
1337
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001338 if(!checkAttributeNumArgs(S, Attr, 0))
1339 return;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001340
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001341 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1342 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenek5295ce82010-08-19 00:51:58 +00001343 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1344 && !VD->getType()->isFunctionPointerType())) {
1345 S.Diag(Attr.getLoc(),
1346 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1347 : diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001348 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001349 return;
1350 }
1351 }
1352
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001353 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001354}
1355
John Thompsoncdb847ba2010-08-09 21:53:52 +00001356// PS3 PPU-specific.
Chandler Carruthedc2c642011-07-02 00:01:44 +00001357static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001358/*
1359 Returning a Vector Class in Registers
1360
Eric Christopherbc638a82010-12-01 22:13:54 +00001361 According to the PPU ABI specifications, a class with a single member of
1362 vector type is returned in memory when used as the return value of a function.
1363 This results in inefficient code when implementing vector classes. To return
1364 the value in a single vector register, add the vecreturn attribute to the
1365 class definition. This attribute is also applicable to struct types.
John Thompsoncdb847ba2010-08-09 21:53:52 +00001366
1367 Example:
1368
1369 struct Vector
1370 {
1371 __vector float xyzw;
1372 } __attribute__((vecreturn));
1373
1374 Vector Add(Vector lhs, Vector rhs)
1375 {
1376 Vector result;
1377 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1378 return result; // This will be returned in a register
1379 }
1380*/
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001381 if (!isa<RecordDecl>(D)) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001382 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001383 << Attr.getName() << ExpectedClass;
John Thompsoncdb847ba2010-08-09 21:53:52 +00001384 return;
1385 }
1386
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001387 if (D->getAttr<VecReturnAttr>()) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001388 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1389 return;
1390 }
1391
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001392 RecordDecl *record = cast<RecordDecl>(D);
John Thompson9a587aaa2010-09-18 01:12:07 +00001393 int count = 0;
1394
1395 if (!isa<CXXRecordDecl>(record)) {
1396 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1397 return;
1398 }
1399
1400 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1401 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1402 return;
1403 }
1404
Eric Christopherbc638a82010-12-01 22:13:54 +00001405 for (RecordDecl::field_iterator iter = record->field_begin();
1406 iter != record->field_end(); iter++) {
John Thompson9a587aaa2010-09-18 01:12:07 +00001407 if ((count == 1) || !iter->getType()->isVectorType()) {
1408 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1409 return;
1410 }
1411 count++;
1412 }
1413
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001414 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompsoncdb847ba2010-08-09 21:53:52 +00001415}
1416
Chandler Carruthedc2c642011-07-02 00:01:44 +00001417static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001418 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001419 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001420 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Alexis Hunt96d5c762009-11-21 08:43:09 +00001421 return;
1422 }
1423 // FIXME: Actually store the attribute on the declaration
1424}
1425
Chandler Carruthedc2c642011-07-02 00:01:44 +00001426static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek39c59a82008-07-25 04:39:19 +00001427 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001428 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001429 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001430 return;
1431 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001432
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001433 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1434 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001436 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001437 return;
1438 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001439
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001440 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek39c59a82008-07-25 04:39:19 +00001441}
1442
Rafael Espindola70107f92011-10-03 14:59:42 +00001443static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1444 const AttributeList &Attr) {
1445 // check the attribute arguments.
1446 if (Attr.hasParameterOrArguments()) {
1447 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1448 return;
1449 }
1450
1451 if (!isa<FunctionDecl>(D)) {
1452 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1453 << Attr.getName() << ExpectedFunction;
1454 return;
1455 }
1456
1457 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1458}
1459
Chandler Carruthedc2c642011-07-02 00:01:44 +00001460static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001461 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001462 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001463 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1464 return;
1465 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001466
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001467 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar311bf292009-02-13 22:48:56 +00001468 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001469 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1470 return;
1471 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001472 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001473 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001474 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001475 return;
1476 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001477
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001478 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001479}
1480
Chandler Carruthedc2c642011-07-02 00:01:44 +00001481static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001482 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001483 if (Attr.getNumArgs() > 1) {
1484 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001485 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001486 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001487
1488 int priority = 65535; // FIXME: Do not hardcode such constants.
1489 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001490 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001491 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001492 if (E->isTypeDependent() || E->isValueDependent() ||
1493 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001494 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001495 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001496 return;
1497 }
1498 priority = Idx.getZExtValue();
1499 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001500
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001501 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001502 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001503 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001504 return;
1505 }
1506
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001507 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001508 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001509}
1510
Chandler Carruthedc2c642011-07-02 00:01:44 +00001511static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001512 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001513 if (Attr.getNumArgs() > 1) {
1514 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001515 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001516 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001517
1518 int priority = 65535; // FIXME: Do not hardcode such constants.
1519 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001520 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001521 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001522 if (E->isTypeDependent() || E->isValueDependent() ||
1523 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001524 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001525 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001526 return;
1527 }
1528 priority = Idx.getZExtValue();
1529 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001530
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001531 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001532 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001533 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001534 return;
1535 }
1536
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001537 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001538 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001539}
1540
Chandler Carruthedc2c642011-07-02 00:01:44 +00001541static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner190aa102011-02-24 05:42:24 +00001542 unsigned NumArgs = Attr.getNumArgs();
1543 if (NumArgs > 1) {
John McCall80ee5962011-03-02 12:15:05 +00001544 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001545 return;
1546 }
Chris Lattner190aa102011-02-24 05:42:24 +00001547
Fariborz Jahanian551063102010-10-06 21:18:44 +00001548 // Handle the case where deprecated attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001549 StringRef Str;
Chris Lattner190aa102011-02-24 05:42:24 +00001550 if (NumArgs == 1) {
1551 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanian551063102010-10-06 21:18:44 +00001552 if (!SE) {
Chris Lattner190aa102011-02-24 05:42:24 +00001553 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1554 << "deprecated";
Fariborz Jahanian551063102010-10-06 21:18:44 +00001555 return;
1556 }
Chris Lattner190aa102011-02-24 05:42:24 +00001557 Str = SE->getString();
Fariborz Jahanian551063102010-10-06 21:18:44 +00001558 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001559
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001560 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001561}
1562
Chandler Carruthedc2c642011-07-02 00:01:44 +00001563static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner190aa102011-02-24 05:42:24 +00001564 unsigned NumArgs = Attr.getNumArgs();
1565 if (NumArgs > 1) {
John McCall80ee5962011-03-02 12:15:05 +00001566 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanian1470e932008-12-17 01:07:27 +00001567 return;
1568 }
Chris Lattner190aa102011-02-24 05:42:24 +00001569
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001570 // Handle the case where unavailable attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001571 StringRef Str;
Chris Lattner190aa102011-02-24 05:42:24 +00001572 if (NumArgs == 1) {
1573 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001574 if (!SE) {
Chris Lattner190aa102011-02-24 05:42:24 +00001575 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001576 diag::err_attribute_not_string) << "unavailable";
1577 return;
1578 }
Chris Lattner190aa102011-02-24 05:42:24 +00001579 Str = SE->getString();
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001580 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001581 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanian1470e932008-12-17 01:07:27 +00001582}
1583
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001584static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1585 const AttributeList &Attr) {
1586 unsigned NumArgs = Attr.getNumArgs();
1587 if (NumArgs > 0) {
1588 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1589 return;
1590 }
1591
1592 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001593 Attr.getRange(), S.Context));
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001594}
1595
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00001596static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001597 const AttributeList &Attr) {
Fariborz Jahanian7249e362012-01-03 22:52:32 +00001598 if (!isa<ObjCInterfaceDecl>(D)) {
1599 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1600 return;
1601 }
1602
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001603 unsigned NumArgs = Attr.getNumArgs();
1604 if (NumArgs > 0) {
1605 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1606 return;
1607 }
1608
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00001609 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001610 Attr.getRange(), S.Context));
1611}
1612
Chandler Carruthedc2c642011-07-02 00:01:44 +00001613static void handleAvailabilityAttr(Sema &S, Decl *D,
1614 const AttributeList &Attr) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001615 IdentifierInfo *Platform = Attr.getParameterName();
1616 SourceLocation PlatformLoc = Attr.getParameterLoc();
1617
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001618 StringRef PlatformName
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001619 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1620 if (PlatformName.empty()) {
1621 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1622 << Platform;
1623
1624 PlatformName = Platform->getName();
1625 }
1626
1627 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1628 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1629 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregor7ab142b2011-03-26 03:35:55 +00001630 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001631
Douglas Gregor05a51ae2011-08-10 16:09:55 +00001632 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001633 // of these steps are needed).
1634 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001635 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001636 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1637 << 1 << PlatformName << Deprecated.Version.getAsString()
1638 << 0 << Introduced.Version.getAsString();
1639 return;
1640 }
1641
1642 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001643 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001644 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1645 << 2 << PlatformName << Obsoleted.Version.getAsString()
1646 << 0 << Introduced.Version.getAsString();
1647 return;
1648 }
1649
1650 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001651 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001652 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1653 << 2 << PlatformName << Obsoleted.Version.getAsString()
1654 << 1 << Deprecated.Version.getAsString();
1655 return;
1656 }
1657
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00001658 StringRef Str;
1659 const StringLiteral *SE =
1660 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1661 if (SE)
1662 Str = SE->getString();
1663
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001664 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001665 Platform,
1666 Introduced.Version,
1667 Deprecated.Version,
Douglas Gregor7ab142b2011-03-26 03:35:55 +00001668 Obsoleted.Version,
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00001669 IsUnavailable,
1670 Str));
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001671}
1672
Chandler Carruthedc2c642011-07-02 00:01:44 +00001673static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001674 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001675 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001676 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001677
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001678 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001679 Arg = Arg->IgnoreParenCasts();
1680 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001681
Douglas Gregorfb65e592011-07-27 05:40:30 +00001682 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001683 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001684 << "visibility" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001685 return;
1686 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001687
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001688 StringRef TypeStr = Str->getString();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001689 VisibilityAttr::VisibilityType type;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001690
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001691 if (TypeStr == "default")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001692 type = VisibilityAttr::Default;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001693 else if (TypeStr == "hidden")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001694 type = VisibilityAttr::Hidden;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001695 else if (TypeStr == "internal")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001696 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001697 else if (TypeStr == "protected")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001698 type = VisibilityAttr::Protected;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001699 else {
Chris Lattnere3d20d92008-11-23 21:45:46 +00001700 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001701 return;
1702 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001703
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001704 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001705}
1706
Chandler Carruthedc2c642011-07-02 00:01:44 +00001707static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1708 const AttributeList &Attr) {
John McCall86bc21f2011-03-02 11:33:24 +00001709 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1710 if (!method) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001711 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001712 << ExpectedMethod;
John McCall86bc21f2011-03-02 11:33:24 +00001713 return;
1714 }
1715
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001716 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1717 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1718 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCall86bc21f2011-03-02 11:33:24 +00001719 << "objc_method_family" << 1;
1720 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001721 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCall86bc21f2011-03-02 11:33:24 +00001722 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001723 Attr.setInvalid();
John McCall86bc21f2011-03-02 11:33:24 +00001724 return;
1725 }
1726
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001727 StringRef param = Attr.getParameterName()->getName();
John McCall86bc21f2011-03-02 11:33:24 +00001728 ObjCMethodFamilyAttr::FamilyKind family;
1729 if (param == "none")
1730 family = ObjCMethodFamilyAttr::OMF_None;
1731 else if (param == "alloc")
1732 family = ObjCMethodFamilyAttr::OMF_alloc;
1733 else if (param == "copy")
1734 family = ObjCMethodFamilyAttr::OMF_copy;
1735 else if (param == "init")
1736 family = ObjCMethodFamilyAttr::OMF_init;
1737 else if (param == "mutableCopy")
1738 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1739 else if (param == "new")
1740 family = ObjCMethodFamilyAttr::OMF_new;
1741 else {
1742 // Just warn and ignore it. This is future-proof against new
1743 // families being used in system headers.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001744 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCall86bc21f2011-03-02 11:33:24 +00001745 return;
1746 }
1747
John McCall31168b02011-06-15 23:02:42 +00001748 if (family == ObjCMethodFamilyAttr::OMF_init &&
1749 !method->getResultType()->isObjCObjectPointerType()) {
1750 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1751 << method->getResultType();
1752 // Ignore the attribute.
1753 return;
1754 }
1755
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001756 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCall31168b02011-06-15 23:02:42 +00001757 S.Context, family));
John McCall86bc21f2011-03-02 11:33:24 +00001758}
1759
Chandler Carruthedc2c642011-07-02 00:01:44 +00001760static void handleObjCExceptionAttr(Sema &S, Decl *D,
1761 const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001762 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner677a3582009-02-14 08:09:34 +00001763 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001764
Chris Lattner677a3582009-02-14 08:09:34 +00001765 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1766 if (OCI == 0) {
1767 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1768 return;
1769 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001770
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001771 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner677a3582009-02-14 08:09:34 +00001772}
1773
Chandler Carruthedc2c642011-07-02 00:01:44 +00001774static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001775 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00001776 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001777 return;
1778 }
Richard Smithdda56e42011-04-15 14:24:37 +00001779 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001780 QualType T = TD->getUnderlyingType();
1781 if (!T->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001782 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001783 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1784 return;
1785 }
1786 }
Fariborz Jahanian21c24842011-12-16 15:54:29 +00001787 else
Fariborz Jahaniana45495a2011-11-29 01:48:40 +00001788 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001789 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001790}
1791
Mike Stumpd3bb5572009-07-24 19:02:52 +00001792static void
Chandler Carruthedc2c642011-07-02 00:01:44 +00001793handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001794 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00001795 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001796 return;
1797 }
1798
1799 if (!isa<FunctionDecl>(D)) {
1800 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1801 return;
1802 }
1803
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001804 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001805}
1806
Chandler Carruthedc2c642011-07-02 00:01:44 +00001807static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001808 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001809 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001810 << "blocks" << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00001811 return;
1812 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001813
Steve Naroff3405a732008-09-18 16:44:58 +00001814 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001815 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00001816 return;
1817 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001818
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001819 BlocksAttr::BlockType type;
Chris Lattner68e48682008-11-20 04:42:34 +00001820 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff3405a732008-09-18 16:44:58 +00001821 type = BlocksAttr::ByRef;
1822 else {
Chris Lattner3b054132008-11-19 05:08:23 +00001823 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001824 << "blocks" << Attr.getParameterName();
Steve Naroff3405a732008-09-18 16:44:58 +00001825 return;
1826 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001827
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001828 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff3405a732008-09-18 16:44:58 +00001829}
1830
Chandler Carruthedc2c642011-07-02 00:01:44 +00001831static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001832 // check the attribute arguments.
1833 if (Attr.getNumArgs() > 2) {
John McCall80ee5962011-03-02 12:15:05 +00001834 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlssonc181b012008-10-05 18:05:59 +00001835 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001836 }
1837
John McCallb46f2872011-09-09 07:56:05 +00001838 unsigned sentinel = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001839 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001840 Expr *E = Attr.getArg(0);
Anders Carlssonc181b012008-10-05 18:05:59 +00001841 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001842 if (E->isTypeDependent() || E->isValueDependent() ||
1843 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001844 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001845 << "sentinel" << 1 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001846 return;
1847 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001848
John McCallb46f2872011-09-09 07:56:05 +00001849 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001850 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1851 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001852 return;
1853 }
John McCallb46f2872011-09-09 07:56:05 +00001854
1855 sentinel = Idx.getZExtValue();
Anders Carlssonc181b012008-10-05 18:05:59 +00001856 }
1857
John McCallb46f2872011-09-09 07:56:05 +00001858 unsigned nullPos = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001859 if (Attr.getNumArgs() > 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001860 Expr *E = Attr.getArg(1);
Anders Carlssonc181b012008-10-05 18:05:59 +00001861 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001862 if (E->isTypeDependent() || E->isValueDependent() ||
1863 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001864 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001865 << "sentinel" << 2 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001866 return;
1867 }
1868 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00001869
John McCallb46f2872011-09-09 07:56:05 +00001870 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001871 // FIXME: This error message could be improved, it would be nice
1872 // to say what the bounds actually are.
Chris Lattner3b054132008-11-19 05:08:23 +00001873 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1874 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001875 return;
1876 }
1877 }
1878
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001879 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +00001880 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +00001881 if (isa<FunctionNoProtoType>(FT)) {
1882 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1883 return;
1884 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001885
Chris Lattner9363e312009-03-17 23:03:47 +00001886 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001887 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001888 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001889 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001890 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001891 if (!MD->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001892 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001893 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001894 }
Eli Friedman5c5e3b72012-01-06 01:23:10 +00001895 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1896 if (!BD->isVariadic()) {
1897 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
1898 return;
1899 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001900 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001901 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00001902 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001903 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherbc638a82010-12-01 22:13:54 +00001904 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001905 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001906 int m = Ty->isFunctionPointerType() ? 0 : 1;
1907 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001908 return;
1909 }
Mike Stump12b8ce12009-08-04 21:02:39 +00001910 } else {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001911 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001912 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001913 return;
1914 }
Anders Carlssonc181b012008-10-05 18:05:59 +00001915 } else {
Chris Lattner3b054132008-11-19 05:08:23 +00001916 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001917 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlssonc181b012008-10-05 18:05:59 +00001918 return;
1919 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001920 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherbc638a82010-12-01 22:13:54 +00001921 nullPos));
Anders Carlssonc181b012008-10-05 18:05:59 +00001922}
1923
Chandler Carruthedc2c642011-07-02 00:01:44 +00001924static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner237f2752009-02-14 07:37:35 +00001925 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001926 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner237f2752009-02-14 07:37:35 +00001927 return;
Chris Lattner237f2752009-02-14 07:37:35 +00001928
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001929 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner237f2752009-02-14 07:37:35 +00001930 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001931 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner237f2752009-02-14 07:37:35 +00001932 return;
1933 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001934
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001935 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1936 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1937 << Attr.getName() << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +00001938 return;
1939 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001940 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1941 if (MD->getResultType()->isVoidType()) {
1942 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1943 << Attr.getName() << 1;
1944 return;
1945 }
1946
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001947 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner237f2752009-02-14 07:37:35 +00001948}
1949
Chandler Carruthedc2c642011-07-02 00:01:44 +00001950static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001951 // check the attribute arguments.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001952 if (Attr.hasParameterOrArguments()) {
1953 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001954 return;
1955 }
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001956
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001957 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian47f9a732011-10-21 22:27:12 +00001958 if (isa<CXXRecordDecl>(D)) {
1959 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1960 return;
1961 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001962 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1963 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanian41136ee2009-07-16 01:12:24 +00001964 return;
1965 }
1966
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001967 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001968
1969 // 'weak' only applies to declarations with external linkage.
1970 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001971 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001972 return;
1973 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001974
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001975 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001976}
1977
Chandler Carruthedc2c642011-07-02 00:01:44 +00001978static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001979 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001980 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001981 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001982
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001983
1984 // weak_import only applies to variable & function declarations.
1985 bool isDef = false;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001986 if (!D->canBeWeakImported(isDef)) {
1987 if (isDef)
1988 S.Diag(Attr.getLoc(),
1989 diag::warn_attribute_weak_import_invalid_on_definition)
1990 << "weak_import" << 2 /*variable and function*/;
Douglas Gregord71149a2011-03-23 13:27:51 +00001991 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregore8bbc122011-09-02 00:18:52 +00001992 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian3249a1e2011-10-26 23:59:12 +00001993 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregord71149a2011-03-23 13:27:51 +00001994 // Nothing to warn about here.
1995 } else
Fariborz Jahanianea70a172010-04-13 20:22:35 +00001996 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001997 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001998
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001999 return;
2000 }
2001
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002002 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002003}
2004
Chandler Carruthedc2c642011-07-02 00:01:44 +00002005static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2006 const AttributeList &Attr) {
Nate Begemanf2758702009-06-26 06:32:41 +00002007 // Attribute has 3 arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002008 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begemanf2758702009-06-26 06:32:41 +00002009 return;
Nate Begemanf2758702009-06-26 06:32:41 +00002010
2011 unsigned WGSize[3];
2012 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002013 Expr *E = Attr.getArg(i);
Nate Begemanf2758702009-06-26 06:32:41 +00002014 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002015 if (E->isTypeDependent() || E->isValueDependent() ||
2016 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begemanf2758702009-06-26 06:32:41 +00002017 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2018 << "reqd_work_group_size" << E->getSourceRange();
2019 return;
2020 }
2021 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2022 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002023 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002024 WGSize[0], WGSize[1],
Nate Begemanf2758702009-06-26 06:32:41 +00002025 WGSize[2]));
2026}
2027
Chandler Carruthedc2c642011-07-02 00:01:44 +00002028static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar648bf782009-02-12 17:28:23 +00002029 // Attribute has no arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002030 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar648bf782009-02-12 17:28:23 +00002031 return;
Daniel Dunbar648bf782009-02-12 17:28:23 +00002032
2033 // Make sure that there is a string literal as the sections's single
2034 // argument.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002035 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002036 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00002037 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002038 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar648bf782009-02-12 17:28:23 +00002039 return;
2040 }
Mike Stump11289f42009-09-09 15:08:12 +00002041
Chris Lattner30ba6742009-08-10 19:03:04 +00002042 // If the target wants to validate the section specifier, make it happen.
Douglas Gregore8bbc122011-09-02 00:18:52 +00002043 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattner20aee9b2010-01-12 20:58:53 +00002044 if (!Error.empty()) {
2045 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2046 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +00002047 return;
2048 }
Mike Stump11289f42009-09-09 15:08:12 +00002049
Chris Lattner20aee9b2010-01-12 20:58:53 +00002050 // This attribute cannot be applied to local variables.
2051 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2052 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2053 return;
2054 }
2055
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002056 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002057 SE->getString()));
Daniel Dunbar648bf782009-02-12 17:28:23 +00002058}
2059
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002060
Chandler Carruthedc2c642011-07-02 00:01:44 +00002061static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002062 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002063 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002064 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002065 return;
2066 }
Douglas Gregor88336832011-06-15 05:45:11 +00002067
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002068 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002069 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002070 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002071 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002072 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002073 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002074}
2075
Chandler Carruthedc2c642011-07-02 00:01:44 +00002076static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002077 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002078 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002079 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlssonb8316282008-10-05 23:32:53 +00002080 return;
2081 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002082
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002083 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002084 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002085 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002086 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002087 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002088 }
Anders Carlssonb8316282008-10-05 23:32:53 +00002089}
2090
Chandler Carruthedc2c642011-07-02 00:01:44 +00002091static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002092 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002093 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssonb8316282008-10-05 23:32:53 +00002094 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002095
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002096 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlssonb8316282008-10-05 23:32:53 +00002097}
2098
Chandler Carruthedc2c642011-07-02 00:01:44 +00002099static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002100 if (!Attr.getParameterName()) {
Anders Carlssond277d792009-01-31 01:16:18 +00002101 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2102 return;
2103 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002104
Anders Carlssond277d792009-01-31 01:16:18 +00002105 if (Attr.getNumArgs() != 0) {
2106 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2107 return;
2108 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002109
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002110 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002111
Anders Carlssond277d792009-01-31 01:16:18 +00002112 if (!VD || !VD->hasLocalStorage()) {
2113 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2114 return;
2115 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002116
Anders Carlssond277d792009-01-31 01:16:18 +00002117 // Look up the function
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002118 // FIXME: Lookup probably isn't looking in the right place
John McCall9f3059a2009-10-09 21:13:30 +00002119 NamedDecl *CleanupDecl
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002120 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2121 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssond277d792009-01-31 01:16:18 +00002122 if (!CleanupDecl) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002123 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssond277d792009-01-31 01:16:18 +00002124 Attr.getParameterName();
2125 return;
2126 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002127
Anders Carlssond277d792009-01-31 01:16:18 +00002128 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2129 if (!FD) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002130 S.Diag(Attr.getParameterLoc(),
2131 diag::err_attribute_cleanup_arg_not_function)
2132 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002133 return;
2134 }
2135
Anders Carlssond277d792009-01-31 01:16:18 +00002136 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002137 S.Diag(Attr.getParameterLoc(),
2138 diag::err_attribute_cleanup_func_must_take_one_arg)
2139 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002140 return;
2141 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002142
Anders Carlsson723f55d2009-02-07 23:16:50 +00002143 // We're currently more strict than GCC about what function types we accept.
2144 // If this ever proves to be a problem it should be easy to fix.
2145 QualType Ty = S.Context.getPointerType(VD->getType());
2146 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorc03a1082011-01-28 02:26:04 +00002147 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2148 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002149 S.Diag(Attr.getParameterLoc(),
Anders Carlsson723f55d2009-02-07 23:16:50 +00002150 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2151 Attr.getParameterName() << ParamTy << Ty;
2152 return;
2153 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002154
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002155 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidise88168a2010-12-06 17:51:53 +00002156 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssond277d792009-01-31 01:16:18 +00002157}
2158
Mike Stumpd3bb5572009-07-24 19:02:52 +00002159/// Handle __attribute__((format_arg((idx)))) attribute based on
2160/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002161static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002162 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002163 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002164
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002165 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002166 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002167 << Attr.getName() << ExpectedFunction;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002168 return;
2169 }
Chandler Carruth743682b2010-11-16 08:35:43 +00002170
2171 // In C++ the implicit 'this' function parameter also counts, and they are
2172 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002173 bool HasImplicitThisParam = isInstanceMethod(D);
2174 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002175 unsigned FirstIdx = 1;
Chandler Carruth743682b2010-11-16 08:35:43 +00002176
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002177 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002178 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002179 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002180 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2181 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002182 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2183 << "format" << 2 << IdxExpr->getSourceRange();
2184 return;
2185 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002186
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002187 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2188 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2189 << "format" << 2 << IdxExpr->getSourceRange();
2190 return;
2191 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002192
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002193 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002194
Chandler Carruth743682b2010-11-16 08:35:43 +00002195 if (HasImplicitThisParam) {
2196 if (ArgIdx == 0) {
2197 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2198 << "format_arg" << IdxExpr->getSourceRange();
2199 return;
2200 }
2201 ArgIdx--;
2202 }
2203
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002204 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002205 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002206
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002207 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2208 if (not_nsstring_type &&
2209 !isCFStringType(Ty, S.Context) &&
2210 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002211 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002212 // FIXME: Should highlight the actual expression that has the wrong type.
2213 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002214 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002215 << IdxExpr->getSourceRange();
2216 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002217 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002218 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002219 if (!isNSStringType(Ty, S.Context) &&
2220 !isCFStringType(Ty, S.Context) &&
2221 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002222 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002223 // FIXME: Should highlight the actual expression that has the wrong type.
2224 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002225 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002226 << IdxExpr->getSourceRange();
2227 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002228 }
2229
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002230 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth743682b2010-11-16 08:35:43 +00002231 Idx.getZExtValue()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002232}
2233
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002234enum FormatAttrKind {
2235 CFStringFormat,
2236 NSStringFormat,
2237 StrftimeFormat,
2238 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00002239 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002240 InvalidFormat
2241};
2242
2243/// getFormatAttrKind - Map from format attribute names to supported format
2244/// types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002245static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002246 // Check for formats that get handled specially.
2247 if (Format == "NSString")
2248 return NSStringFormat;
2249 if (Format == "CFString")
2250 return CFStringFormat;
2251 if (Format == "strftime")
2252 return StrftimeFormat;
2253
2254 // Otherwise, check for supported formats.
2255 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
Jean-Daniel Dupasfc0da1a2012-01-27 09:14:17 +00002256 Format == "strfmon" || Format == "cmn_err" || Format == "vcmn_err" ||
Chris Lattner0ddd0ae2011-02-18 17:05:55 +00002257 Format == "zcmn_err" ||
2258 Format == "kprintf") // OpenBSD.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002259 return SupportedFormat;
2260
Duncan Sandsde4fe352010-03-23 14:44:19 +00002261 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2262 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner12161d32010-03-22 21:08:50 +00002263 return IgnoredFormat;
2264
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002265 return InvalidFormat;
2266}
2267
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002268/// Handle __attribute__((init_priority(priority))) attributes based on
2269/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002270static void handleInitPriorityAttr(Sema &S, Decl *D,
2271 const AttributeList &Attr) {
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002272 if (!S.getLangOptions().CPlusPlus) {
2273 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2274 return;
2275 }
2276
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002277 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002278 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2279 Attr.setInvalid();
2280 return;
2281 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002282 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002283 if (S.Context.getAsArrayType(T))
2284 T = S.Context.getBaseElementType(T);
2285 if (!T->getAs<RecordType>()) {
2286 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2287 Attr.setInvalid();
2288 return;
2289 }
2290
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002291 if (Attr.getNumArgs() != 1) {
2292 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2293 Attr.setInvalid();
2294 return;
2295 }
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002296 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002297
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002298 llvm::APSInt priority(32);
2299 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2300 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2301 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2302 << "init_priority" << priorityExpr->getSourceRange();
2303 Attr.setInvalid();
2304 return;
2305 }
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +00002306 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002307 if (prioritynum < 101 || prioritynum > 65535) {
2308 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2309 << priorityExpr->getSourceRange();
2310 Attr.setInvalid();
2311 return;
2312 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002313 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002314 prioritynum));
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002315}
2316
Mike Stumpd3bb5572009-07-24 19:02:52 +00002317/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2318/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002319static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002320
Chris Lattner4a927cb2008-06-28 23:36:30 +00002321 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002322 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002323 << "format" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002324 return;
2325 }
2326
Chris Lattner4a927cb2008-06-28 23:36:30 +00002327 if (Attr.getNumArgs() != 2) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002328 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002329 return;
2330 }
2331
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002332 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002333 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002334 << Attr.getName() << ExpectedFunction;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002335 return;
2336 }
2337
Chandler Carruth743682b2010-11-16 08:35:43 +00002338 // In C++ the implicit 'this' function parameter also counts, and they are
2339 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002340 bool HasImplicitThisParam = isInstanceMethod(D);
2341 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002342 unsigned FirstIdx = 1;
2343
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002344 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002345
2346 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002347 if (Format.startswith("__") && Format.endswith("__"))
2348 Format = Format.substr(2, Format.size() - 4);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002349
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002350 // Check for supported formats.
2351 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner12161d32010-03-22 21:08:50 +00002352
2353 if (Kind == IgnoredFormat)
2354 return;
2355
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002356 if (Kind == InvalidFormat) {
Chris Lattner3b054132008-11-19 05:08:23 +00002357 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar07d07852009-10-18 21:17:35 +00002358 << "format" << Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002359 return;
2360 }
2361
2362 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002363 Expr *IdxExpr = Attr.getArg(0);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002364 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002365 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2366 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002367 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002368 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002369 return;
2370 }
2371
2372 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002373 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002374 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002375 return;
2376 }
2377
2378 // FIXME: Do we need to bounds check?
2379 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002380
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002381 if (HasImplicitThisParam) {
2382 if (ArgIdx == 0) {
Chandler Carruth743682b2010-11-16 08:35:43 +00002383 S.Diag(Attr.getLoc(),
2384 diag::err_format_attribute_implicit_this_format_string)
2385 << IdxExpr->getSourceRange();
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002386 return;
2387 }
2388 ArgIdx--;
2389 }
Mike Stump11289f42009-09-09 15:08:12 +00002390
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002391 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002392 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002393
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002394 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00002395 if (!isCFStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002396 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2397 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar980c6692008-09-26 03:32:58 +00002398 return;
2399 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002400 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002401 // FIXME: do we need to check if the type is NSString*? What are the
2402 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002403 if (!isNSStringType(Ty, S.Context)) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002404 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002405 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2406 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002407 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002408 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002409 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002410 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002411 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002412 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2413 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002414 return;
2415 }
2416
2417 // check the 3rd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002418 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002419 llvm::APSInt FirstArg(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002420 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2421 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002422 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002423 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002424 return;
2425 }
2426
2427 // check if the function is variadic if the 3rd argument non-zero
2428 if (FirstArg != 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002429 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002430 ++NumArgs; // +1 for ...
2431 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002432 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002433 return;
2434 }
2435 }
2436
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002437 // strftime requires FirstArg to be 0 because it doesn't read from any
2438 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002439 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002440 if (FirstArg != 0) {
Chris Lattner3b054132008-11-19 05:08:23 +00002441 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2442 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002443 return;
2444 }
2445 // if 0 it disables parameter checking (to use with e.g. va_list)
2446 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002447 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002448 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002449 return;
2450 }
2451
Douglas Gregor88336832011-06-15 05:45:11 +00002452 // Check whether we already have an equivalent format attribute.
2453 for (specific_attr_iterator<FormatAttr>
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002454 i = D->specific_attr_begin<FormatAttr>(),
2455 e = D->specific_attr_end<FormatAttr>();
Douglas Gregor88336832011-06-15 05:45:11 +00002456 i != e ; ++i) {
2457 FormatAttr *f = *i;
2458 if (f->getType() == Format &&
2459 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2460 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2461 // If we don't have a valid location for this attribute, adopt the
2462 // location.
2463 if (f->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002464 f->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002465 return;
2466 }
2467 }
2468
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002469 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002470 Idx.getZExtValue(),
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002471 FirstArg.getZExtValue()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002472}
2473
Chandler Carruthedc2c642011-07-02 00:01:44 +00002474static void handleTransparentUnionAttr(Sema &S, Decl *D,
2475 const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002476 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002477 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002478 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002479
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002480
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002481 // Try to find the underlying union declaration.
2482 RecordDecl *RD = 0;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002483 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002484 if (TD && TD->getUnderlyingType()->isUnionType())
2485 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2486 else
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002487 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002488
2489 if (!RD || !RD->isUnion()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002490 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002491 << Attr.getName() << ExpectedUnion;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002492 return;
2493 }
2494
John McCallf937c022011-10-07 06:10:15 +00002495 if (!RD->isCompleteDefinition()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002496 S.Diag(Attr.getLoc(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002497 diag::warn_transparent_union_attribute_not_definition);
2498 return;
2499 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002500
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002501 RecordDecl::field_iterator Field = RD->field_begin(),
2502 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002503 if (Field == FieldEnd) {
2504 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2505 return;
2506 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002507
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002508 FieldDecl *FirstField = *Field;
2509 QualType FirstType = FirstField->getType();
Douglas Gregor21872662010-06-30 17:24:13 +00002510 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002511 S.Diag(FirstField->getLocation(),
Douglas Gregor21872662010-06-30 17:24:13 +00002512 diag::warn_transparent_union_attribute_floating)
2513 << FirstType->isVectorType() << FirstType;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002514 return;
2515 }
2516
2517 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2518 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2519 for (; Field != FieldEnd; ++Field) {
2520 QualType FieldType = Field->getType();
2521 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2522 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2523 // Warn if we drop the attribute.
2524 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002525 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002526 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002527 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002528 diag::warn_transparent_union_attribute_field_size_align)
2529 << isSize << Field->getDeclName() << FieldBits;
2530 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002531 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002532 diag::note_transparent_union_first_field_size_align)
2533 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002534 return;
2535 }
2536 }
2537
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002538 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002539}
2540
Chandler Carruthedc2c642011-07-02 00:01:44 +00002541static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002542 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002543 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002544 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002545
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002546 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002547 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002548
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002549 // Make sure that there is a string literal as the annotation's single
2550 // argument.
2551 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002552 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002553 return;
2554 }
Julien Lerouge5a6b6982011-09-09 22:41:49 +00002555
2556 // Don't duplicate annotations that are already set.
2557 for (specific_attr_iterator<AnnotateAttr>
2558 i = D->specific_attr_begin<AnnotateAttr>(),
2559 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2560 if ((*i)->getAnnotation() == SE->getString())
2561 return;
2562 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002563 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002564 SE->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002565}
2566
Chandler Carruthedc2c642011-07-02 00:01:44 +00002567static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002568 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00002569 if (Attr.getNumArgs() > 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002570 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002571 return;
2572 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00002573
2574 //FIXME: The C++0x version of this attribute has more limited applicabilty
2575 // than GNU's, and should error out when it is used to specify a
2576 // weaker alignment, rather than being silently ignored.
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002577
Chris Lattner4a927cb2008-06-28 23:36:30 +00002578 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002579 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002580 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002581 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002582
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002583 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002584}
2585
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002586void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002587 // FIXME: Handle pack-expansions here.
2588 if (DiagnoseUnexpandedParameterPack(E))
2589 return;
2590
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002591 if (E->isTypeDependent() || E->isValueDependent()) {
2592 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002593 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002594 return;
2595 }
2596
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002597 SourceLocation AttrLoc = AttrRange.getBegin();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002598 // FIXME: Cache the number on the Attr object?
Chris Lattner4627b742008-06-28 23:50:44 +00002599 llvm::APSInt Alignment(32);
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002600 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2601 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2602 << "aligned" << E->getSourceRange();
Chris Lattner4627b742008-06-28 23:50:44 +00002603 return;
2604 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002605 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002606 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2607 << E->getSourceRange();
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002608 return;
2609 }
2610
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002611 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002612}
2613
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002614void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002615 // FIXME: Cache the number on the Attr object if non-dependent?
2616 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002617 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002618 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002619}
Chris Lattneracbc2d22008-06-27 22:18:37 +00002620
Chandler Carruth3ed22c32011-07-01 23:49:16 +00002621/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpd3bb5572009-07-24 19:02:52 +00002622/// type.
Chris Lattneracbc2d22008-06-27 22:18:37 +00002623///
Mike Stumpd3bb5572009-07-24 19:02:52 +00002624/// Despite what would be logical, the mode attribute is a decl attribute, not a
2625/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2626/// HImode, not an intermediate pointer.
Chandler Carruthedc2c642011-07-02 00:01:44 +00002627static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002628 // This attribute isn't documented, but glibc uses it. It changes
2629 // the width of an int or unsigned int to the specified size.
2630
2631 // Check that there aren't any arguments
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002632 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattneracbc2d22008-06-27 22:18:37 +00002633 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002634
Chris Lattneracbc2d22008-06-27 22:18:37 +00002635
2636 IdentifierInfo *Name = Attr.getParameterName();
2637 if (!Name) {
Chris Lattnera663a0a2008-06-29 00:28:59 +00002638 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002639 return;
2640 }
Daniel Dunbarafff4342009-10-18 02:09:24 +00002641
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002642 StringRef Str = Attr.getParameterName()->getName();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002643
2644 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbarafff4342009-10-18 02:09:24 +00002645 if (Str.startswith("__") && Str.endswith("__"))
2646 Str = Str.substr(2, Str.size() - 4);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002647
2648 unsigned DestWidth = 0;
2649 bool IntegerMode = true;
Eli Friedman4735374e2009-03-03 06:41:03 +00002650 bool ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00002651 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002652 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00002653 switch (Str[0]) {
2654 case 'Q': DestWidth = 8; break;
2655 case 'H': DestWidth = 16; break;
2656 case 'S': DestWidth = 32; break;
2657 case 'D': DestWidth = 64; break;
2658 case 'X': DestWidth = 96; break;
2659 case 'T': DestWidth = 128; break;
2660 }
2661 if (Str[1] == 'F') {
2662 IntegerMode = false;
2663 } else if (Str[1] == 'C') {
2664 IntegerMode = false;
2665 ComplexMode = true;
2666 } else if (Str[1] != 'I') {
2667 DestWidth = 0;
2668 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002669 break;
2670 case 4:
2671 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2672 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00002673 if (Str == "word")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002674 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbarafff4342009-10-18 02:09:24 +00002675 else if (Str == "byte")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002676 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002677 break;
2678 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00002679 if (Str == "pointer")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002680 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002681 break;
2682 }
2683
2684 QualType OldTy;
Richard Smithdda56e42011-04-15 14:24:37 +00002685 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattneracbc2d22008-06-27 22:18:37 +00002686 OldTy = TD->getUnderlyingType();
2687 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2688 OldTy = VD->getType();
2689 else {
Chris Lattner3b054132008-11-19 05:08:23 +00002690 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002691 << "mode" << Attr.getRange();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002692 return;
2693 }
Eli Friedman4735374e2009-03-03 06:41:03 +00002694
John McCall9dd450b2009-09-21 23:43:11 +00002695 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman4735374e2009-03-03 06:41:03 +00002696 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2697 else if (IntegerMode) {
Douglas Gregorb90df602010-06-16 00:17:44 +00002698 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman4735374e2009-03-03 06:41:03 +00002699 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2700 } else if (ComplexMode) {
2701 if (!OldTy->isComplexType())
2702 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2703 } else {
2704 if (!OldTy->isFloatingType())
2705 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2706 }
2707
Mike Stump87c57ac2009-05-16 07:39:55 +00002708 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2709 // and friends, at least with glibc.
2710 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2711 // width on unusual platforms.
Eli Friedman1efaaea2009-02-13 02:31:07 +00002712 // FIXME: Make sure floating-point mappings are accurate
2713 // FIXME: Support XF and TF types
Chris Lattneracbc2d22008-06-27 22:18:37 +00002714 QualType NewTy;
2715 switch (DestWidth) {
2716 case 0:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002717 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002718 return;
2719 default:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002720 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002721 return;
2722 case 8:
Eli Friedman4735374e2009-03-03 06:41:03 +00002723 if (!IntegerMode) {
2724 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2725 return;
2726 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002727 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002728 NewTy = S.Context.SignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002729 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002730 NewTy = S.Context.UnsignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002731 break;
2732 case 16:
Eli Friedman4735374e2009-03-03 06:41:03 +00002733 if (!IntegerMode) {
2734 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2735 return;
2736 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002737 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002738 NewTy = S.Context.ShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002739 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002740 NewTy = S.Context.UnsignedShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002741 break;
2742 case 32:
2743 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00002744 NewTy = S.Context.FloatTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002745 else if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002746 NewTy = S.Context.IntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002747 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002748 NewTy = S.Context.UnsignedIntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002749 break;
2750 case 64:
2751 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00002752 NewTy = S.Context.DoubleTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002753 else if (OldTy->isSignedIntegerType())
Douglas Gregore8bbc122011-09-02 00:18:52 +00002754 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00002755 NewTy = S.Context.LongTy;
2756 else
2757 NewTy = S.Context.LongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002758 else
Douglas Gregore8bbc122011-09-02 00:18:52 +00002759 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00002760 NewTy = S.Context.UnsignedLongTy;
2761 else
2762 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002763 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00002764 case 96:
2765 NewTy = S.Context.LongDoubleTy;
2766 break;
Eli Friedman1efaaea2009-02-13 02:31:07 +00002767 case 128:
2768 if (!IntegerMode) {
2769 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2770 return;
2771 }
Anders Carlsson88ea2452009-12-29 07:07:36 +00002772 if (OldTy->isSignedIntegerType())
2773 NewTy = S.Context.Int128Ty;
2774 else
2775 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman4735374e2009-03-03 06:41:03 +00002776 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002777 }
2778
Eli Friedman4735374e2009-03-03 06:41:03 +00002779 if (ComplexMode) {
2780 NewTy = S.Context.getComplexType(NewTy);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002781 }
2782
2783 // Install the new type.
Richard Smithdda56e42011-04-15 14:24:37 +00002784 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCall703a3f82009-10-24 08:00:42 +00002785 // FIXME: preserve existing source info.
John McCallbcd03502009-12-07 02:54:59 +00002786 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCall703a3f82009-10-24 08:00:42 +00002787 } else
Chris Lattneracbc2d22008-06-27 22:18:37 +00002788 cast<ValueDecl>(D)->setType(NewTy);
2789}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002790
Chandler Carruthedc2c642011-07-02 00:01:44 +00002791static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson76187b42009-02-13 06:46:13 +00002792 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002793 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson76187b42009-02-13 06:46:13 +00002794 return;
Anders Carlsson63784f42009-02-13 08:11:52 +00002795
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002796 if (!isFunctionOrMethod(D)) {
Anders Carlsson76187b42009-02-13 06:46:13 +00002797 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002798 << Attr.getName() << ExpectedFunction;
Anders Carlsson76187b42009-02-13 06:46:13 +00002799 return;
2800 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002801
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002802 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlsson76187b42009-02-13 06:46:13 +00002803}
2804
Chandler Carruthedc2c642011-07-02 00:01:44 +00002805static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson88097122009-02-19 19:16:48 +00002806 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002807 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson88097122009-02-19 19:16:48 +00002808 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002809
Mike Stumpd3bb5572009-07-24 19:02:52 +00002810
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002811 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00002812 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002813 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00002814 return;
2815 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002816
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002817 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson88097122009-02-19 19:16:48 +00002818}
2819
Chandler Carruthedc2c642011-07-02 00:01:44 +00002820static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2821 const AttributeList &Attr) {
Chris Lattner3c77a352010-06-22 00:03:40 +00002822 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002823 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner3c77a352010-06-22 00:03:40 +00002824 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002825
Chris Lattner3c77a352010-06-22 00:03:40 +00002826
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002827 if (!isa<FunctionDecl>(D)) {
Chris Lattner3c77a352010-06-22 00:03:40 +00002828 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002829 << Attr.getName() << ExpectedFunction;
Chris Lattner3c77a352010-06-22 00:03:40 +00002830 return;
2831 }
2832
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002833 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00002834 S.Context));
Chris Lattner3c77a352010-06-22 00:03:40 +00002835}
2836
Chandler Carruthedc2c642011-07-02 00:01:44 +00002837static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002838 if (S.LangOpts.CUDA) {
2839 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002840 if (Attr.hasParameterOrArguments()) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002841 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2842 return;
2843 }
2844
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002845 if (!isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002846 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002847 << Attr.getName() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002848 return;
2849 }
2850
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002851 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002852 } else {
2853 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2854 }
2855}
2856
Chandler Carruthedc2c642011-07-02 00:01:44 +00002857static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002858 if (S.LangOpts.CUDA) {
2859 // check the attribute arguments.
2860 if (Attr.getNumArgs() != 0) {
2861 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2862 return;
2863 }
2864
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002865 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002866 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002867 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002868 return;
2869 }
2870
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002871 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002872 } else {
2873 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2874 }
2875}
2876
Chandler Carruthedc2c642011-07-02 00:01:44 +00002877static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002878 if (S.LangOpts.CUDA) {
2879 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002880 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002881 return;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002882
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002883 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002884 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002885 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002886 return;
2887 }
2888
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002889 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00002890 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara6d810632010-12-14 22:11:44 +00002891 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00002892 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2893 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2894 << FD->getType()
2895 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2896 "void");
2897 } else {
2898 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2899 << FD->getType();
2900 }
2901 return;
2902 }
2903
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002904 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002905 } else {
2906 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2907 }
2908}
2909
Chandler Carruthedc2c642011-07-02 00:01:44 +00002910static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002911 if (S.LangOpts.CUDA) {
2912 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002913 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002914 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002915
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002916
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002917 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002918 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002919 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002920 return;
2921 }
2922
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002923 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002924 } else {
2925 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2926 }
2927}
2928
Chandler Carruthedc2c642011-07-02 00:01:44 +00002929static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002930 if (S.LangOpts.CUDA) {
2931 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002932 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002933 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002934
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002935
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002936 if (!isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002937 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002938 << Attr.getName() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002939 return;
2940 }
2941
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002942 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002943 } else {
2944 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2945 }
2946}
2947
Chandler Carruthedc2c642011-07-02 00:01:44 +00002948static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00002949 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002950 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnereaad6b72009-04-14 16:30:50 +00002951 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002952
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002953 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattner4225e232009-04-14 17:02:11 +00002954 if (Fn == 0) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00002955 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002956 << Attr.getName() << ExpectedFunction;
Chris Lattnereaad6b72009-04-14 16:30:50 +00002957 return;
2958 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002959
Douglas Gregor35b57532009-10-27 21:01:01 +00002960 if (!Fn->isInlineSpecified()) {
Chris Lattnerddf6ca02009-04-20 19:12:28 +00002961 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00002962 return;
2963 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002964
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002965 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattnereaad6b72009-04-14 16:30:50 +00002966}
2967
Chandler Carruthedc2c642011-07-02 00:01:44 +00002968static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002969 if (hasDeclarator(D)) return;
Abramo Bagnara50099372010-04-30 13:10:51 +00002970
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002971 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall3882ace2011-01-05 12:14:39 +00002972 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2973 CallingConv CC;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002974 if (S.CheckCallingConvAttr(Attr, CC))
John McCall3882ace2011-01-05 12:14:39 +00002975 return;
2976
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002977 if (!isa<ObjCMethodDecl>(D)) {
2978 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2979 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00002980 return;
2981 }
2982
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002983 switch (Attr.getKind()) {
Abramo Bagnara50099372010-04-30 13:10:51 +00002984 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002985 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002986 return;
2987 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002988 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002989 return;
Douglas Gregora941dca2010-05-18 16:57:00 +00002990 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002991 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor4d13d102010-08-30 23:30:49 +00002992 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00002993 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002994 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002995 return;
Dawn Perchik335e16b2010-09-03 01:29:35 +00002996 case AttributeList::AT_pascal:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002997 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik335e16b2010-09-03 01:29:35 +00002998 return;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002999 case AttributeList::AT_pcs: {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003000 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003001 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003002 if (!Str || !Str->isAscii()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003003 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003004 << "pcs" << 1;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003005 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003006 return;
3007 }
3008
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003009 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003010 PcsAttr::PCSType PCS;
3011 if (StrRef == "aapcs")
3012 PCS = PcsAttr::AAPCS;
3013 else if (StrRef == "aapcs-vfp")
3014 PCS = PcsAttr::AAPCS_VFP;
3015 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003016 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3017 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003018 return;
3019 }
3020
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003021 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003022 }
Abramo Bagnara50099372010-04-30 13:10:51 +00003023 default:
3024 llvm_unreachable("unexpected attribute kind");
Abramo Bagnara50099372010-04-30 13:10:51 +00003025 }
3026}
3027
Chandler Carruthedc2c642011-07-02 00:01:44 +00003028static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth9312c642011-07-11 23:33:05 +00003029 assert(!Attr.isInvalid());
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003030 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003031}
3032
John McCall3882ace2011-01-05 12:14:39 +00003033bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3034 if (attr.isInvalid())
3035 return true;
3036
Ted Kremenek1551d552011-04-15 05:49:29 +00003037 if ((attr.getNumArgs() != 0 &&
3038 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3039 attr.getParameterName()) {
John McCall3882ace2011-01-05 12:14:39 +00003040 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3041 attr.setInvalid();
3042 return true;
3043 }
3044
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003045 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3046 // move to TargetAttributesSema one day.
John McCall3882ace2011-01-05 12:14:39 +00003047 switch (attr.getKind()) {
3048 case AttributeList::AT_cdecl: CC = CC_C; break;
3049 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3050 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3051 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3052 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003053 case AttributeList::AT_pcs: {
3054 Expr *Arg = attr.getArg(0);
3055 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003056 if (!Str || !Str->isAscii()) {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003057 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3058 << "pcs" << 1;
3059 attr.setInvalid();
3060 return true;
3061 }
3062
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003063 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003064 if (StrRef == "aapcs") {
3065 CC = CC_AAPCS;
3066 break;
3067 } else if (StrRef == "aapcs-vfp") {
3068 CC = CC_AAPCS_VFP;
3069 break;
3070 }
3071 // FALLS THROUGH
3072 }
David Blaikie8a40f702012-01-17 06:56:22 +00003073 default: llvm_unreachable("unexpected attribute kind");
John McCall3882ace2011-01-05 12:14:39 +00003074 }
3075
3076 return false;
3077}
3078
Chandler Carruthedc2c642011-07-02 00:01:44 +00003079static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003080 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00003081
3082 unsigned numParams;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003083 if (S.CheckRegparmAttr(Attr, numParams))
John McCall3882ace2011-01-05 12:14:39 +00003084 return;
3085
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003086 if (!isa<ObjCMethodDecl>(D)) {
3087 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3088 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003089 return;
3090 }
Eli Friedman7044b762009-03-27 21:06:47 +00003091
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003092 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall3882ace2011-01-05 12:14:39 +00003093}
3094
3095/// Checks a regparm attribute, returning true if it is ill-formed and
3096/// otherwise setting numParams to the appropriate value.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003097bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3098 if (Attr.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00003099 return true;
3100
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003101 if (Attr.getNumArgs() != 1) {
3102 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3103 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003104 return true;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003105 }
Eli Friedman7044b762009-03-27 21:06:47 +00003106
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003107 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman7044b762009-03-27 21:06:47 +00003108 llvm::APSInt NumParams(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00003109 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall3882ace2011-01-05 12:14:39 +00003110 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003111 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman7044b762009-03-27 21:06:47 +00003112 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003113 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003114 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003115 }
3116
Douglas Gregore8bbc122011-09-02 00:18:52 +00003117 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003118 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00003119 << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003120 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003121 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003122 }
3123
John McCall3882ace2011-01-05 12:14:39 +00003124 numParams = NumParams.getZExtValue();
Douglas Gregore8bbc122011-09-02 00:18:52 +00003125 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003126 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregore8bbc122011-09-02 00:18:52 +00003127 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003128 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003129 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003130 }
3131
John McCall3882ace2011-01-05 12:14:39 +00003132 return false;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003133}
3134
Chandler Carruthedc2c642011-07-02 00:01:44 +00003135static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne827301e2010-12-12 23:03:07 +00003136 if (S.LangOpts.CUDA) {
3137 // check the attribute arguments.
3138 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCall80ee5962011-03-02 12:15:05 +00003139 // FIXME: 0 is not okay.
3140 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003141 return;
3142 }
3143
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003144 if (!isFunctionOrMethod(D)) {
Peter Collingbourne827301e2010-12-12 23:03:07 +00003145 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003146 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003147 return;
3148 }
3149
3150 Expr *MaxThreadsExpr = Attr.getArg(0);
3151 llvm::APSInt MaxThreads(32);
3152 if (MaxThreadsExpr->isTypeDependent() ||
3153 MaxThreadsExpr->isValueDependent() ||
3154 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3155 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3156 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3157 return;
3158 }
3159
3160 llvm::APSInt MinBlocks(32);
3161 if (Attr.getNumArgs() > 1) {
3162 Expr *MinBlocksExpr = Attr.getArg(1);
3163 if (MinBlocksExpr->isTypeDependent() ||
3164 MinBlocksExpr->isValueDependent() ||
3165 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3166 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3167 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3168 return;
3169 }
3170 }
3171
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003172 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne827301e2010-12-12 23:03:07 +00003173 MaxThreads.getZExtValue(),
3174 MinBlocks.getZExtValue()));
3175 } else {
3176 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3177 }
3178}
3179
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003180//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003181// Checker-specific attribute handlers.
3182//===----------------------------------------------------------------------===//
3183
John McCalled433932011-01-25 03:31:58 +00003184static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003185 return type->isDependentType() ||
3186 type->isObjCObjectPointerType() ||
3187 S.Context.isObjCNSObjectType(type);
John McCalled433932011-01-25 03:31:58 +00003188}
3189static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003190 return type->isDependentType() ||
3191 type->isPointerType() ||
3192 isValidSubjectOfNSAttribute(S, type);
John McCalled433932011-01-25 03:31:58 +00003193}
3194
Chandler Carruthedc2c642011-07-02 00:01:44 +00003195static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003196 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCalled433932011-01-25 03:31:58 +00003197 if (!param) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003198 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003199 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCalled433932011-01-25 03:31:58 +00003200 return;
3201 }
3202
3203 bool typeOK, cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003204 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCalled433932011-01-25 03:31:58 +00003205 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3206 cf = false;
3207 } else {
3208 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3209 cf = true;
3210 }
3211
3212 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003213 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003214 << Attr.getRange() << Attr.getName() << cf;
John McCalled433932011-01-25 03:31:58 +00003215 return;
3216 }
3217
3218 if (cf)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003219 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003220 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003221 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003222}
3223
Chandler Carruthedc2c642011-07-02 00:01:44 +00003224static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3225 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003226 if (!isa<ObjCMethodDecl>(D)) {
3227 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003228 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCalled433932011-01-25 03:31:58 +00003229 return;
3230 }
3231
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003232 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003233}
3234
Chandler Carruthedc2c642011-07-02 00:01:44 +00003235static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3236 const AttributeList &Attr) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003237
John McCalled433932011-01-25 03:31:58 +00003238 QualType returnType;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003239
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003240 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003241 returnType = MD->getResultType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003242 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00003243 returnType = PD->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003244 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3245 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCall31168b02011-06-15 23:02:42 +00003246 return; // ignore: was handled as a type attribute
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003247 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003248 returnType = FD->getResultType();
Ted Kremenek3b204e42009-05-13 21:07:32 +00003249 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003250 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003251 << Attr.getRange() << Attr.getName()
John McCall5fca7ea2011-03-02 12:29:23 +00003252 << ExpectedFunctionOrMethod;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003253 return;
3254 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003255
John McCalled433932011-01-25 03:31:58 +00003256 bool typeOK;
3257 bool cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003258 switch (Attr.getKind()) {
David Blaikie8a40f702012-01-17 06:56:22 +00003259 default: llvm_unreachable("invalid ownership attribute");
John McCalled433932011-01-25 03:31:58 +00003260 case AttributeList::AT_ns_returns_autoreleased:
3261 case AttributeList::AT_ns_returns_retained:
3262 case AttributeList::AT_ns_returns_not_retained:
3263 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3264 cf = false;
3265 break;
3266
3267 case AttributeList::AT_cf_returns_retained:
3268 case AttributeList::AT_cf_returns_not_retained:
3269 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3270 cf = true;
3271 break;
3272 }
3273
3274 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003275 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003276 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003277 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00003278 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003279
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003280 switch (Attr.getKind()) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003281 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003282 llvm_unreachable("invalid ownership attribute");
John McCalled433932011-01-25 03:31:58 +00003283 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003284 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCalled433932011-01-25 03:31:58 +00003285 S.Context));
3286 return;
Ted Kremenekd9c66632010-02-18 00:05:45 +00003287 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003288 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003289 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003290 return;
3291 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003292 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003293 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003294 return;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003295 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003296 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003297 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003298 return;
3299 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003300 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003301 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003302 return;
3303 };
3304}
3305
John McCallcf166702011-07-22 08:53:00 +00003306static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3307 const AttributeList &attr) {
3308 SourceLocation loc = attr.getLoc();
3309
3310 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3311
3312 if (!isa<ObjCMethodDecl>(method)) {
3313 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3314 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3315 return;
3316 }
3317
3318 // Check that the method returns a normal pointer.
3319 QualType resultType = method->getResultType();
Fariborz Jahanian044a5be2011-09-30 20:50:23 +00003320
3321 if (!resultType->isReferenceType() &&
3322 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCallcf166702011-07-22 08:53:00 +00003323 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3324 << SourceRange(loc)
3325 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3326
3327 // Drop the attribute.
3328 return;
3329 }
3330
3331 method->addAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003332 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCallcf166702011-07-22 08:53:00 +00003333}
3334
John McCall32f5fe12011-09-30 05:12:12 +00003335/// Handle cf_audited_transfer and cf_unknown_transfer.
3336static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3337 if (!isa<FunctionDecl>(D)) {
3338 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3339 << A.getRange() << A.getName() << 0 /*function*/;
3340 return;
3341 }
3342
3343 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3344
3345 // Check whether there's a conflicting attribute already present.
3346 Attr *Existing;
3347 if (IsAudited) {
3348 Existing = D->getAttr<CFUnknownTransferAttr>();
3349 } else {
3350 Existing = D->getAttr<CFAuditedTransferAttr>();
3351 }
3352 if (Existing) {
3353 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3354 << A.getName()
3355 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3356 << A.getRange() << Existing->getRange();
3357 return;
3358 }
3359
3360 // All clear; add the attribute.
3361 if (IsAudited) {
3362 D->addAttr(
3363 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3364 } else {
3365 D->addAttr(
3366 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3367 }
3368}
3369
John McCallf1e8b342011-09-29 07:17:38 +00003370static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3371 const AttributeList &Attr) {
3372 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3373 if (!RD || RD->isUnion()) {
3374 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3375 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3376 }
3377
3378 IdentifierInfo *ParmName = Attr.getParameterName();
3379
3380 // In Objective-C, verify that the type names an Objective-C type.
3381 // We don't want to check this outside of ObjC because people sometimes
3382 // do crazy C declarations of Objective-C types.
3383 if (ParmName && S.getLangOptions().ObjC1) {
3384 // Check for an existing type with this name.
3385 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3386 Sema::LookupOrdinaryName);
3387 if (S.LookupName(R, Sc)) {
3388 NamedDecl *Target = R.getFoundDecl();
3389 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3390 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3391 S.Diag(Target->getLocStart(), diag::note_declared_at);
3392 }
3393 }
3394 }
3395
3396 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3397 ParmName));
3398}
3399
Chandler Carruthedc2c642011-07-02 00:01:44 +00003400static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3401 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003402 if (hasDeclarator(D)) return;
John McCall31168b02011-06-15 23:02:42 +00003403
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003404 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003405 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCall31168b02011-06-15 23:02:42 +00003406}
3407
Chandler Carruthedc2c642011-07-02 00:01:44 +00003408static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3409 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003410 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003411 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003412 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCall31168b02011-06-15 23:02:42 +00003413 return;
3414 }
3415
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003416 ValueDecl *vd = cast<ValueDecl>(D);
John McCall31168b02011-06-15 23:02:42 +00003417 QualType type = vd->getType();
3418
3419 if (!type->isDependentType() &&
3420 !type->isObjCLifetimeType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003421 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCall31168b02011-06-15 23:02:42 +00003422 << type;
3423 return;
3424 }
3425
3426 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3427
3428 // If we have no lifetime yet, check the lifetime we're presumably
3429 // going to infer.
3430 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3431 lifetime = type->getObjCARCImplicitLifetime();
3432
3433 switch (lifetime) {
3434 case Qualifiers::OCL_None:
3435 assert(type->isDependentType() &&
3436 "didn't infer lifetime for non-dependent type?");
3437 break;
3438
3439 case Qualifiers::OCL_Weak: // meaningful
3440 case Qualifiers::OCL_Strong: // meaningful
3441 break;
3442
3443 case Qualifiers::OCL_ExplicitNone:
3444 case Qualifiers::OCL_Autoreleasing:
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003445 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCall31168b02011-06-15 23:02:42 +00003446 << (lifetime == Qualifiers::OCL_Autoreleasing);
3447 break;
3448 }
3449
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003450 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003451 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCall31168b02011-06-15 23:02:42 +00003452}
3453
Charles Davis163855f2010-02-16 18:27:26 +00003454static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3455 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Picheta83957a2010-12-19 06:50:37 +00003456 Attr.getKind() == AttributeList::AT_dllexport ||
3457 Attr.getKind() == AttributeList::AT_uuid;
3458}
3459
3460//===----------------------------------------------------------------------===//
3461// Microsoft specific attribute handlers.
3462//===----------------------------------------------------------------------===//
3463
Chandler Carruthedc2c642011-07-02 00:01:44 +00003464static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet0706d202011-09-17 17:15:52 +00003465 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Picheta83957a2010-12-19 06:50:37 +00003466 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003467 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Picheta83957a2010-12-19 06:50:37 +00003468 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003469
Francois Picheta83957a2010-12-19 06:50:37 +00003470 Expr *Arg = Attr.getArg(0);
3471 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003472 if (!Str || !Str->isAscii()) {
Francois Pichet7da11662010-12-20 01:41:49 +00003473 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3474 << "uuid" << 1;
3475 return;
3476 }
3477
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003478 StringRef StrRef = Str->getString();
Francois Pichet7da11662010-12-20 01:41:49 +00003479
3480 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3481 StrRef.back() == '}';
3482
3483 // Validate GUID length.
3484 if (IsCurly && StrRef.size() != 38) {
3485 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3486 return;
3487 }
3488 if (!IsCurly && StrRef.size() != 36) {
3489 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3490 return;
3491 }
3492
3493 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3494 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003495 StringRef::iterator I = StrRef.begin();
Anders Carlsson19588aa2011-01-23 21:07:30 +00003496 if (IsCurly) // Skip the optional '{'
3497 ++I;
3498
3499 for (int i = 0; i < 36; ++i) {
Francois Pichet7da11662010-12-20 01:41:49 +00003500 if (i == 8 || i == 13 || i == 18 || i == 23) {
3501 if (*I != '-') {
3502 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3503 return;
3504 }
3505 } else if (!isxdigit(*I)) {
3506 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3507 return;
3508 }
3509 I++;
3510 }
Francois Picheta83957a2010-12-19 06:50:37 +00003511
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003512 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Picheta83957a2010-12-19 06:50:37 +00003513 Str->getString()));
Francois Pichet7da11662010-12-20 01:41:49 +00003514 } else
Francois Picheta83957a2010-12-19 06:50:37 +00003515 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davis163855f2010-02-16 18:27:26 +00003516}
3517
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003518//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003519// Top Level Sema Entry Points
3520//===----------------------------------------------------------------------===//
3521
Chandler Carruthedc2c642011-07-02 00:01:44 +00003522static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3523 const AttributeList &Attr) {
Peter Collingbourneb331b262011-01-21 02:08:45 +00003524 switch (Attr.getKind()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003525 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3526 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3527 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourneb331b262011-01-21 02:08:45 +00003528 default:
3529 break;
3530 }
3531}
Abramo Bagnara50099372010-04-30 13:10:51 +00003532
Chandler Carruthedc2c642011-07-02 00:01:44 +00003533static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3534 const AttributeList &Attr) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003535 switch (Attr.getKind()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003536 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3537 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek26bde772010-05-19 17:38:06 +00003538 case AttributeList::AT_IBOutletCollection:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003539 handleIBOutletCollection(S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003540 case AttributeList::AT_address_space:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003541 case AttributeList::AT_opencl_image_access:
Fariborz Jahanian257eac62009-02-18 17:52:36 +00003542 case AttributeList::AT_objc_gc:
John Thompson47981222009-12-04 21:51:28 +00003543 case AttributeList::AT_vector_size:
Bob Wilson118baf72010-11-16 00:32:24 +00003544 case AttributeList::AT_neon_vector_type:
3545 case AttributeList::AT_neon_polyvector_type:
Mike Stumpd3bb5572009-07-24 19:02:52 +00003546 // Ignore these, these are type attributes, handled by
3547 // ProcessTypeAttributes.
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003548 break;
Peter Collingbourneb331b262011-01-21 02:08:45 +00003549 case AttributeList::AT_device:
3550 case AttributeList::AT_host:
3551 case AttributeList::AT_overloadable:
3552 // Ignore, this is a non-inheritable attribute, handled
3553 // by ProcessNonInheritableDeclAttr.
3554 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003555 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3556 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003557 case AttributeList::AT_always_inline:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003558 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00003559 case AttributeList::AT_analyzer_noreturn:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003560 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3561 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3562 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Alexis Hunt96d5c762009-11-21 08:43:09 +00003563 case AttributeList::AT_carries_dependency:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003564 handleDependencyAttr (S, D, Attr); break;
3565 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3566 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3567 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3568 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3569 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003570 case AttributeList::AT_ext_vector_type:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003571 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003572 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003573 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3574 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3575 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3576 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003577 case AttributeList::AT_launch_bounds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003578 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne827301e2010-12-12 23:03:07 +00003579 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003580 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3581 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3582 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3583 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3584 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00003585 case AttributeList::AT_ownership_returns:
3586 case AttributeList::AT_ownership_takes:
3587 case AttributeList::AT_ownership_holds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003588 handleOwnershipAttr (S, D, Attr); break;
3589 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3590 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3591 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3592 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3593 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003594
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +00003595 case AttributeList::AT_objc_ownership:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003596 handleObjCOwnershipAttr(S, D, Attr); break;
John McCall31168b02011-06-15 23:02:42 +00003597 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003598 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCall31168b02011-06-15 23:02:42 +00003599
John McCallcf166702011-07-22 08:53:00 +00003600 case AttributeList::AT_objc_returns_inner_pointer:
3601 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3602
John McCallf1e8b342011-09-29 07:17:38 +00003603 case AttributeList::AT_ns_bridged:
3604 handleNSBridgedAttr(S, scope, D, Attr); break;
3605
John McCall32f5fe12011-09-30 05:12:12 +00003606 case AttributeList::AT_cf_audited_transfer:
3607 case AttributeList::AT_cf_unknown_transfer:
3608 handleCFTransferAttr(S, D, Attr); break;
3609
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003610 // Checker-specific.
John McCalled433932011-01-25 03:31:58 +00003611 case AttributeList::AT_cf_consumed:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003612 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCalled433932011-01-25 03:31:58 +00003613 case AttributeList::AT_ns_consumes_self:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003614 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCalled433932011-01-25 03:31:58 +00003615
3616 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenekd9c66632010-02-18 00:05:45 +00003617 case AttributeList::AT_ns_returns_not_retained:
3618 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003619 case AttributeList::AT_ns_returns_retained:
3620 case AttributeList::AT_cf_returns_retained:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003621 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003622
Nate Begemanf2758702009-06-26 06:32:41 +00003623 case AttributeList::AT_reqd_wg_size:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003624 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begemanf2758702009-06-26 06:32:41 +00003625
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003626 case AttributeList::AT_init_priority:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003627 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003628
Chandler Carruthedc2c642011-07-02 00:01:44 +00003629 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3630 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3631 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3632 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00003633 case AttributeList::AT_arc_weakref_unavailable:
3634 handleArcWeakrefUnavailableAttr (S, D, Attr);
3635 break;
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00003636 case AttributeList::AT_objc_requires_property_definitions:
3637 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00003638 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003639 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindola70107f92011-10-03 14:59:42 +00003640 case AttributeList::AT_returns_twice:
3641 handleReturnsTwiceAttr(S, D, Attr);
3642 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003643 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3644 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3645 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner237f2752009-02-14 07:37:35 +00003646 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003647 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3648 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3649 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003650 case AttributeList::AT_transparent_union:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003651 handleTransparentUnionAttr(S, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003652 break;
Chris Lattner677a3582009-02-14 08:09:34 +00003653 case AttributeList::AT_objc_exception:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003654 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner677a3582009-02-14 08:09:34 +00003655 break;
John McCall86bc21f2011-03-02 11:33:24 +00003656 case AttributeList::AT_objc_method_family:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003657 handleObjCMethodFamilyAttr(S, D, Attr);
John McCall86bc21f2011-03-02 11:33:24 +00003658 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003659 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3660 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3661 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3662 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3663 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3664 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3665 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3666 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3667 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003668 case AttributeList::IgnoredAttribute:
Anders Carlssonb4f31342009-02-13 08:16:43 +00003669 // Just ignore
3670 break;
Chris Lattner3c77a352010-06-22 00:03:40 +00003671 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruthedc2c642011-07-02 00:01:44 +00003672 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner3c77a352010-06-22 00:03:40 +00003673 break;
John McCallab26cfa2010-02-05 21:31:56 +00003674 case AttributeList::AT_stdcall:
3675 case AttributeList::AT_cdecl:
3676 case AttributeList::AT_fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003677 case AttributeList::AT_thiscall:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003678 case AttributeList::AT_pascal:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003679 case AttributeList::AT_pcs:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003680 handleCallConvAttr(S, D, Attr);
John McCallab26cfa2010-02-05 21:31:56 +00003681 break;
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003682 case AttributeList::AT_opencl_kernel_function:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003683 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003684 break;
Francois Picheta83957a2010-12-19 06:50:37 +00003685 case AttributeList::AT_uuid:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003686 handleUuidAttr(S, D, Attr);
Francois Picheta83957a2010-12-19 06:50:37 +00003687 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00003688
3689 // Thread safety attributes:
3690 case AttributeList::AT_guarded_var:
3691 handleGuardedVarAttr(S, D, Attr);
3692 break;
3693 case AttributeList::AT_pt_guarded_var:
3694 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3695 break;
3696 case AttributeList::AT_scoped_lockable:
3697 handleLockableAttr(S, D, Attr, /*scoped = */true);
3698 break;
Kostya Serebryany588d6ab2012-01-24 19:25:38 +00003699 case AttributeList::AT_no_address_safety_analysis:
3700 handleNoAddressSafetyAttr(S, D, Attr);
3701 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00003702 case AttributeList::AT_no_thread_safety_analysis:
3703 handleNoThreadSafetyAttr(S, D, Attr);
3704 break;
3705 case AttributeList::AT_lockable:
3706 handleLockableAttr(S, D, Attr);
3707 break;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00003708 case AttributeList::AT_guarded_by:
3709 handleGuardedByAttr(S, D, Attr);
3710 break;
3711 case AttributeList::AT_pt_guarded_by:
3712 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3713 break;
3714 case AttributeList::AT_exclusive_lock_function:
3715 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3716 break;
3717 case AttributeList::AT_exclusive_locks_required:
3718 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3719 break;
3720 case AttributeList::AT_exclusive_trylock_function:
3721 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3722 break;
3723 case AttributeList::AT_lock_returned:
3724 handleLockReturnedAttr(S, D, Attr);
3725 break;
3726 case AttributeList::AT_locks_excluded:
3727 handleLocksExcludedAttr(S, D, Attr);
3728 break;
3729 case AttributeList::AT_shared_lock_function:
3730 handleLockFunAttr(S, D, Attr);
3731 break;
3732 case AttributeList::AT_shared_locks_required:
3733 handleLocksRequiredAttr(S, D, Attr);
3734 break;
3735 case AttributeList::AT_shared_trylock_function:
3736 handleTrylockFunAttr(S, D, Attr);
3737 break;
3738 case AttributeList::AT_unlock_function:
3739 handleUnlockFunAttr(S, D, Attr);
3740 break;
3741 case AttributeList::AT_acquired_before:
3742 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3743 break;
3744 case AttributeList::AT_acquired_after:
3745 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3746 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00003747
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003748 default:
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00003749 // Ask target about the attribute.
3750 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3751 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruthdd1bc0f2010-07-08 09:42:26 +00003752 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3753 << Attr.getName();
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003754 break;
3755 }
3756}
3757
Peter Collingbourneb331b262011-01-21 02:08:45 +00003758/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3759/// the attribute applies to decls. If the attribute is a type attribute, just
3760/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3761/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruthedc2c642011-07-02 00:01:44 +00003762static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3763 const AttributeList &Attr,
Peter Collingbourneb331b262011-01-21 02:08:45 +00003764 bool NonInheritable, bool Inheritable) {
3765 if (Attr.isInvalid())
3766 return;
3767
3768 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3769 // FIXME: Try to deal with other __declspec attributes!
3770 return;
3771
3772 if (NonInheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00003773 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00003774
3775 if (Inheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00003776 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00003777}
3778
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003779/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3780/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherbc638a82010-12-01 22:13:54 +00003781void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourneb331b262011-01-21 02:08:45 +00003782 const AttributeList *AttrList,
3783 bool NonInheritable, bool Inheritable) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00003784 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003785 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindolac18086a2010-02-23 22:00:30 +00003786 }
3787
3788 // GCC accepts
3789 // static int a9 __attribute__((weakref));
3790 // but that looks really pointless. We reject it.
Peter Collingbourneb331b262011-01-21 02:08:45 +00003791 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00003792 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekd21139a2010-07-31 01:52:11 +00003793 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindolac18086a2010-02-23 22:00:30 +00003794 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003795 }
3796}
3797
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00003798// Annotation attributes are the only attributes allowed after an access
3799// specifier.
3800bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3801 const AttributeList *AttrList) {
3802 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3803 if (l->getKind() == AttributeList::AT_annotate) {
3804 handleAnnotateAttr(*this, ASDecl, *l);
3805 } else {
3806 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3807 return true;
3808 }
3809 }
3810
3811 return false;
3812}
3813
John McCall42856de2011-10-01 05:17:03 +00003814/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3815/// contains any decl attributes that we should warn about.
3816static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3817 for ( ; A; A = A->getNext()) {
3818 // Only warn if the attribute is an unignored, non-type attribute.
3819 if (A->isUsedAsTypeAttr()) continue;
3820 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3821
3822 if (A->getKind() == AttributeList::UnknownAttribute) {
3823 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3824 << A->getName() << A->getRange();
3825 } else {
3826 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3827 << A->getName() << A->getRange();
3828 }
3829 }
3830}
3831
3832/// checkUnusedDeclAttributes - Given a declarator which is not being
3833/// used to build a declaration, complain about any decl attributes
3834/// which might be lying around on it.
3835void Sema::checkUnusedDeclAttributes(Declarator &D) {
3836 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3837 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3838 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3839 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3840}
3841
Ryan Flynn7d470f32009-07-30 03:15:39 +00003842/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3843/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedmance3e2c82011-09-07 04:05:06 +00003844NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3845 SourceLocation Loc) {
Ryan Flynnd963a492009-07-31 02:52:19 +00003846 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynn7d470f32009-07-30 03:15:39 +00003847 NamedDecl *NewD = 0;
3848 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedmance3e2c82011-09-07 04:05:06 +00003849 FunctionDecl *NewFD;
3850 // FIXME: Missing call to CheckFunctionDeclaration().
3851 // FIXME: Mangling?
3852 // FIXME: Is the qualifier info correct?
3853 // FIXME: Is the DeclContext correct?
3854 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3855 Loc, Loc, DeclarationName(II),
3856 FD->getType(), FD->getTypeSourceInfo(),
3857 SC_None, SC_None,
3858 false/*isInlineSpecified*/,
3859 FD->hasPrototype(),
3860 false/*isConstexprSpecified*/);
3861 NewD = NewFD;
3862
3863 if (FD->getQualifier())
Douglas Gregor14454802011-02-25 02:25:35 +00003864 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedmance3e2c82011-09-07 04:05:06 +00003865
3866 // Fake up parameter variables; they are declared as if this were
3867 // a typedef.
3868 QualType FDTy = FD->getType();
3869 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3870 SmallVector<ParmVarDecl*, 16> Params;
3871 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3872 AE = FT->arg_type_end(); AI != AE; ++AI) {
3873 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3874 Param->setScopeInfo(0, Params.size());
3875 Params.push_back(Param);
3876 }
David Blaikie9c70e042011-09-21 18:16:56 +00003877 NewFD->setParams(Params);
John McCall3e11ebe2010-03-15 10:12:16 +00003878 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003879 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3880 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00003881 VD->getInnerLocStart(), VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00003882 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00003883 VD->getStorageClass(),
3884 VD->getStorageClassAsWritten());
John McCall3e11ebe2010-03-15 10:12:16 +00003885 if (VD->getQualifier()) {
3886 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregor14454802011-02-25 02:25:35 +00003887 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCall3e11ebe2010-03-15 10:12:16 +00003888 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003889 }
3890 return NewD;
3891}
3892
3893/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3894/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00003895void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00003896 if (W.getUsed()) return; // only do this once
3897 W.setUsed(true);
3898 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3899 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedmance3e2c82011-09-07 04:05:06 +00003900 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003901 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3902 NDId->getName()));
3903 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnere6eab982009-09-08 18:10:11 +00003904 WeakTopLevelDecl.push_back(NewD);
3905 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3906 // to insert Decl at TU scope, sorry.
3907 DeclContext *SavedContext = CurContext;
3908 CurContext = Context.getTranslationUnitDecl();
3909 PushOnScopeChains(NewD, S);
3910 CurContext = SavedContext;
3911 } else { // just add weak to existing
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003912 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynn7d470f32009-07-30 03:15:39 +00003913 }
3914}
3915
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003916/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3917/// it, apply them to D. This is a bit tricky because PD can have attributes
3918/// specified in many different places, and we need to find and apply them all.
Peter Collingbourneb331b262011-01-21 02:08:45 +00003919void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3920 bool NonInheritable, bool Inheritable) {
John McCall6fe02402010-10-27 00:59:00 +00003921 // It's valid to "forward-declare" #pragma weak, in which case we
3922 // have to do this.
Douglas Gregor1c4bfe52011-07-28 18:09:57 +00003923 if (Inheritable) {
3924 LoadExternalWeakUndeclaredIdentifiers();
3925 if (!WeakUndeclaredIdentifiers.empty()) {
3926 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3927 if (IdentifierInfo *Id = ND->getIdentifier()) {
3928 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3929 = WeakUndeclaredIdentifiers.find(Id);
3930 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3931 WeakInfo W = I->second;
3932 DeclApplyPragmaWeak(S, ND, W);
3933 WeakUndeclaredIdentifiers[Id] = W;
3934 }
John McCall6fe02402010-10-27 00:59:00 +00003935 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003936 }
3937 }
3938 }
3939
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003940 // Apply decl attributes from the DeclSpec if present.
John McCall53fa7142010-12-24 02:08:15 +00003941 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003942 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003943
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003944 // Walk the declarator structure, applying decl attributes that were in a type
3945 // position to the decl itself. This handles cases like:
3946 // int *__attr__(x)** D;
3947 // when X is a decl attribute.
3948 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3949 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003950 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003951
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003952 // Finally, apply any attributes on the decl itself.
3953 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003954 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003955}
John McCall28a6aea2009-11-04 02:18:39 +00003956
John McCall31168b02011-06-15 23:02:42 +00003957/// Is the given declaration allowed to use a forbidden type?
3958static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3959 // Private ivars are always okay. Unfortunately, people don't
3960 // always properly make their ivars private, even in system headers.
3961 // Plus we need to make fields okay, too.
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00003962 // Function declarations in sys headers will be marked unavailable.
3963 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3964 !isa<FunctionDecl>(decl))
John McCall31168b02011-06-15 23:02:42 +00003965 return false;
3966
3967 // Require it to be declared in a system header.
3968 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3969}
3970
3971/// Handle a delayed forbidden-type diagnostic.
3972static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3973 Decl *decl) {
3974 if (decl && isForbiddenTypeAllowed(S, decl)) {
3975 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3976 "this system declaration uses an unsupported type"));
3977 return;
3978 }
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00003979 if (S.getLangOptions().ObjCAutoRefCount)
3980 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
3981 // FIXME. we may want to supress diagnostics for all
3982 // kind of forbidden type messages on unavailable functions.
3983 if (FD->hasAttr<UnavailableAttr>() &&
3984 diag.getForbiddenTypeDiagnostic() ==
3985 diag::err_arc_array_param_no_ownership) {
3986 diag.Triggered = true;
3987 return;
3988 }
3989 }
John McCall31168b02011-06-15 23:02:42 +00003990
3991 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3992 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3993 diag.Triggered = true;
3994}
3995
John McCallc1465822011-02-14 07:13:47 +00003996// This duplicates a vector push_back but hides the need to know the
3997// size of the type.
3998void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3999 assert(StackSize <= StackCapacity);
4000
4001 // Grow the stack if necessary.
4002 if (StackSize == StackCapacity) {
4003 unsigned newCapacity = 2 * StackCapacity + 2;
4004 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
4005 const char *oldBuffer = (const char*) Stack;
4006
4007 if (StackCapacity)
4008 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
4009
4010 delete[] oldBuffer;
4011 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
4012 StackCapacity = newCapacity;
4013 }
4014
4015 assert(StackSize < StackCapacity);
4016 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall86121512010-01-27 03:50:35 +00004017}
4018
John McCallc1465822011-02-14 07:13:47 +00004019void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
4020 Decl *decl) {
4021 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall86121512010-01-27 03:50:35 +00004022
John McCallc1465822011-02-14 07:13:47 +00004023 // Check the invariants.
4024 assert(DD.StackSize >= state.SavedStackSize);
4025 assert(state.SavedStackSize >= DD.ActiveStackBase);
4026 assert(DD.ParsingDepth > 0);
4027
4028 // Drop the parsing depth.
4029 DD.ParsingDepth--;
4030
4031 // If there are no active diagnostics, we're done.
4032 if (DD.StackSize == DD.ActiveStackBase)
John McCall86121512010-01-27 03:50:35 +00004033 return;
4034
John McCall86121512010-01-27 03:50:35 +00004035 // We only want to actually emit delayed diagnostics when we
4036 // successfully parsed a decl.
John McCall18a962b2012-01-26 20:04:03 +00004037 if (decl) {
John McCallc1465822011-02-14 07:13:47 +00004038 // We emit all the active diagnostics, not just those starting
4039 // from the saved state. The idea is this: we get one push for a
John McCall86121512010-01-27 03:50:35 +00004040 // decl spec and another for each declarator; in a decl group like:
4041 // deprecated_typedef foo, *bar, baz();
4042 // only the declarator pops will be passed decls. This is correct;
4043 // we really do need to consider delayed diagnostics from the decl spec
4044 // for each of the different declarations.
John McCallc1465822011-02-14 07:13:47 +00004045 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4046 DelayedDiagnostic &diag = DD.Stack[i];
4047 if (diag.Triggered)
John McCall86121512010-01-27 03:50:35 +00004048 continue;
4049
John McCallc1465822011-02-14 07:13:47 +00004050 switch (diag.Kind) {
John McCall86121512010-01-27 03:50:35 +00004051 case DelayedDiagnostic::Deprecation:
John McCall18a962b2012-01-26 20:04:03 +00004052 // Don't bother giving deprecation diagnostics if the decl is invalid.
4053 if (!decl->isInvalidDecl())
4054 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004055 break;
4056
4057 case DelayedDiagnostic::Access:
John McCallc1465822011-02-14 07:13:47 +00004058 S.HandleDelayedAccessCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004059 break;
John McCall31168b02011-06-15 23:02:42 +00004060
4061 case DelayedDiagnostic::ForbiddenType:
4062 handleDelayedForbiddenType(S, diag, decl);
4063 break;
John McCall86121512010-01-27 03:50:35 +00004064 }
4065 }
4066 }
4067
John McCall1064d7e2010-03-16 05:22:47 +00004068 // Destroy all the delayed diagnostics we're about to pop off.
John McCallc1465822011-02-14 07:13:47 +00004069 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor899b68f2011-03-23 15:13:44 +00004070 DD.Stack[i].Destroy();
John McCall1064d7e2010-03-16 05:22:47 +00004071
John McCallc1465822011-02-14 07:13:47 +00004072 DD.StackSize = state.SavedStackSize;
John McCall28a6aea2009-11-04 02:18:39 +00004073}
4074
4075static bool isDeclDeprecated(Decl *D) {
4076 do {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00004077 if (D->isDeprecated())
John McCall28a6aea2009-11-04 02:18:39 +00004078 return true;
Argyrios Kyrtzidisc281c962011-10-06 23:23:27 +00004079 // A category implicitly has the availability of the interface.
4080 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4081 return CatD->getClassInterface()->isDeprecated();
John McCall28a6aea2009-11-04 02:18:39 +00004082 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4083 return false;
4084}
4085
John McCallb45a1e72010-08-26 02:13:20 +00004086void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall86121512010-01-27 03:50:35 +00004087 Decl *Ctx) {
4088 if (isDeclDeprecated(Ctx))
John McCall28a6aea2009-11-04 02:18:39 +00004089 return;
4090
John McCall86121512010-01-27 03:50:35 +00004091 DD.Triggered = true;
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004092 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanian551063102010-10-06 21:18:44 +00004093 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004094 << DD.getDeprecationDecl()->getDeclName()
4095 << DD.getDeprecationMessage();
Fariborz Jahanian551063102010-10-06 21:18:44 +00004096 else
4097 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004098 << DD.getDeprecationDecl()->getDeclName();
John McCall28a6aea2009-11-04 02:18:39 +00004099}
4100
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004101void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004102 SourceLocation Loc,
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004103 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall28a6aea2009-11-04 02:18:39 +00004104 // Delay if we're currently parsing a declaration.
John McCallc1465822011-02-14 07:13:47 +00004105 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
4106 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall28a6aea2009-11-04 02:18:39 +00004107 return;
4108 }
4109
4110 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis9321ad32011-10-06 23:23:20 +00004111 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall28a6aea2009-11-04 02:18:39 +00004112 return;
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004113 if (!Message.empty())
Fariborz Jahanian551063102010-10-06 21:18:44 +00004114 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4115 << Message;
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004116 else {
Peter Collingbourneed12ffb2011-01-02 19:53:12 +00004117 if (!UnknownObjCClass)
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004118 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004119 else {
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004120 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004121 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4122 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004123 }
John McCall28a6aea2009-11-04 02:18:39 +00004124}