blob: 4074afee1cc659aabcfcc623f920cb473b24b0f6 [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
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000396 if (Arg->isTypeDependent())
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000397 // FIXME: handle attributes with dependent types
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000398 return;
399
400 // check that the argument is lockable object
401 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000402 return;
403
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000404 if (pointer)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000405 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000406 S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000407 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000408 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000409}
410
411
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000412static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
413 bool scoped = false) {
414 assert(!Attr.isInvalid());
415
416 if (!checkAttributeNumArgs(S, Attr, 0))
417 return;
418
Caitlin Sadowski086fb952011-09-16 00:35:54 +0000419 // FIXME: Lockable structs for C code.
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000420 if (!isa<CXXRecordDecl>(D)) {
421 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
422 << Attr.getName() << ExpectedClass;
423 return;
424 }
425
426 if (scoped)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000427 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000428 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000429 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000430}
431
432static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
433 const AttributeList &Attr) {
434 assert(!Attr.isInvalid());
435
436 if (!checkAttributeNumArgs(S, Attr, 0))
437 return;
438
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000439 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000440 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
441 << Attr.getName() << ExpectedFunctionOrMethod;
442 return;
443 }
444
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000445 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000446 S.Context));
447}
448
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000449static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
450 bool before) {
451 assert(!Attr.isInvalid());
452
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000453 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000454 return;
455
456 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000457 ValueDecl *VD = dyn_cast<ValueDecl>(D);
458 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000459 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000460 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000461 return;
462 }
463
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000464 // Check that this attribute only applies to lockable types
465 QualType QT = VD->getType();
466 if (!QT->isDependentType()) {
467 const RecordType *RT = getRecordType(QT);
468 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
469 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
470 << Attr.getName();
471 return;
472 }
473 }
474
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000475 SmallVector<Expr*, 1> Args;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000476 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000477 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000478 return;
479
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000480 unsigned Size = Args.size();
481 assert(Size == Attr.getNumArgs());
482 Expr **StartArg = Size == 0 ? 0 : &Args[0];
483
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000484 if (before)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000485 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000486 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000487 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000488 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000489 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000490}
491
492static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000493 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000494 assert(!Attr.isInvalid());
495
496 // zero or more arguments ok
497
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000498 // check that the attribute is applied to a function
499 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000500 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
501 << Attr.getName() << ExpectedFunctionOrMethod;
502 return;
503 }
504
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000505 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000506 SmallVector<Expr*, 1> Args;
507 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000508 return;
509
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000510 unsigned Size = Args.size();
511 assert(Size == Attr.getNumArgs());
512 Expr **StartArg = Size == 0 ? 0 : &Args[0];
513
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000514 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000515 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000516 S.Context, StartArg,
517 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000518 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000519 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000520 S.Context, StartArg,
521 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000522}
523
524static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000525 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000526 assert(!Attr.isInvalid());
527
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000528 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000529 return;
530
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000531
532 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000533 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
534 << Attr.getName() << ExpectedFunctionOrMethod;
535 return;
536 }
537
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000538 if (!isIntOrBool(Attr.getArg(0))) {
539 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
540 << Attr.getName();
541 return;
542 }
543
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000544 SmallVector<Expr*, 2> Args;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000545 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000546 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000547 return;
548
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000549 unsigned Size = Args.size();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000550 Expr **StartArg = Size == 0 ? 0 : &Args[0];
551
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000552 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000553 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000554 S.Context,
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000555 Attr.getArg(0),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000556 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000557 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000558 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000559 S.Context,
560 Attr.getArg(0),
561 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000562}
563
564static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000565 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000566 assert(!Attr.isInvalid());
567
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000568 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000569 return;
570
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000571 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000572 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
573 << Attr.getName() << ExpectedFunctionOrMethod;
574 return;
575 }
576
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000577 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000578 SmallVector<Expr*, 1> Args;
579 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000580 return;
581
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000582 unsigned Size = Args.size();
583 assert(Size == Attr.getNumArgs());
584 Expr **StartArg = Size == 0 ? 0 : &Args[0];
585
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000586 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000587 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000588 S.Context, StartArg,
589 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000590 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000591 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000592 S.Context, StartArg,
593 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000594}
595
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000596static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000597 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000598 assert(!Attr.isInvalid());
599
600 // zero or more arguments ok
601
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000602 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000603 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
604 << Attr.getName() << ExpectedFunctionOrMethod;
605 return;
606 }
607
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000608 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000609 SmallVector<Expr*, 1> Args;
610 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000611 return;
612
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000613 unsigned Size = Args.size();
614 assert(Size == Attr.getNumArgs());
615 Expr **StartArg = Size == 0 ? 0 : &Args[0];
616
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000617 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000618 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000619}
620
621static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000622 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000623 assert(!Attr.isInvalid());
624
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000625 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000626 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000627 Expr *Arg = Attr.getArg(0);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000628
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000629 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000630 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
631 << Attr.getName() << ExpectedFunctionOrMethod;
632 return;
633 }
634
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000635 if (Arg->isTypeDependent())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000636 return;
637
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000638 // check that the argument is lockable object
639 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
640 return;
641
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000642 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000643}
644
645static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000646 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000647 assert(!Attr.isInvalid());
648
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000649 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000650 return;
651
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000652 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000653 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
654 << Attr.getName() << ExpectedFunctionOrMethod;
655 return;
656 }
657
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000658 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000659 SmallVector<Expr*, 1> Args;
660 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000661 return;
662
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000663 unsigned Size = Args.size();
664 assert(Size == Attr.getNumArgs());
665 Expr **StartArg = Size == 0 ? 0 : &Args[0];
666
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000667 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000668 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000669}
670
671
Chandler Carruthedc2c642011-07-02 00:01:44 +0000672static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
673 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000674 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000675 if (tDecl == 0) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000676 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000677 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000678 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000679
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000680 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor758a8692009-06-17 21:51:59 +0000681
682 Expr *sizeExpr;
683
684 // Special case where the argument is a template id.
685 if (Attr.getParameterName()) {
John McCalle66edc12009-11-24 19:00:30 +0000686 CXXScopeSpec SS;
687 UnqualifiedId id;
688 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor39c02722011-06-15 16:02:29 +0000689
690 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
691 if (Size.isInvalid())
692 return;
693
694 sizeExpr = Size.get();
Douglas Gregor758a8692009-06-17 21:51:59 +0000695 } else {
696 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000697 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor758a8692009-06-17 21:51:59 +0000698 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000699
Peter Collingbournee57e9ef2010-11-23 20:45:58 +0000700 sizeExpr = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000701 }
Douglas Gregor758a8692009-06-17 21:51:59 +0000702
703 // Instantiate/Install the vector type, and let Sema build the type for us.
704 // This will run the reguired checks.
John McCallb268a282010-08-23 23:25:46 +0000705 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor758a8692009-06-17 21:51:59 +0000706 if (!T.isNull()) {
John McCall703a3f82009-10-24 08:00:42 +0000707 // FIXME: preserve the old source info.
John McCallbcd03502009-12-07 02:54:59 +0000708 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpd3bb5572009-07-24 19:02:52 +0000709
Douglas Gregor758a8692009-06-17 21:51:59 +0000710 // Remember this typedef decl, we will need it later for diagnostics.
711 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000712 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000713}
714
Chandler Carruthedc2c642011-07-02 00:01:44 +0000715static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000716 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000717 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000718 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000719
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000720 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000721 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000722 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000723 // If the alignment is less than or equal to 8 bits, the packed attribute
724 // has no effect.
725 if (!FD->getType()->isIncompleteType() &&
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000726 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner3b054132008-11-19 05:08:23 +0000727 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000728 << Attr.getName() << FD->getType();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000729 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000730 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000731 } else
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000732 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000733}
734
Chandler Carruthedc2c642011-07-02 00:01:44 +0000735static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000736 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000737 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +0000738 else
739 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
740}
741
Chandler Carruthedc2c642011-07-02 00:01:44 +0000742static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000743 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000744 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000745 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000746
Ted Kremenek1f672822010-02-18 03:08:58 +0000747 // The IBAction attributes only apply to instance methods.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000748 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek1f672822010-02-18 03:08:58 +0000749 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000750 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek1f672822010-02-18 03:08:58 +0000751 return;
752 }
753
Ted Kremenekd68ec812011-02-04 06:54:16 +0000754 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek1f672822010-02-18 03:08:58 +0000755}
756
Ted Kremenek7fd17232011-09-29 07:02:25 +0000757static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
758 // The IBOutlet/IBOutletCollection attributes only apply to instance
759 // variables or properties of Objective-C classes. The outlet must also
760 // have an object reference type.
761 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
762 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +0000763 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000764 << Attr.getName() << VD->getType() << 0;
765 return false;
766 }
767 }
768 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
769 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +0000770 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000771 << Attr.getName() << PD->getType() << 1;
772 return false;
773 }
774 }
775 else {
776 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
777 return false;
778 }
779
780 return true;
781}
782
Chandler Carruthedc2c642011-07-02 00:01:44 +0000783static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek1f672822010-02-18 03:08:58 +0000784 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000785 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek1f672822010-02-18 03:08:58 +0000786 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000787
788 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek1f672822010-02-18 03:08:58 +0000789 return;
Ted Kremenek1f672822010-02-18 03:08:58 +0000790
Ted Kremenek7fd17232011-09-29 07:02:25 +0000791 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000792}
793
Chandler Carruthedc2c642011-07-02 00:01:44 +0000794static void handleIBOutletCollection(Sema &S, Decl *D,
795 const AttributeList &Attr) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000796
797 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000798 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000799 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
800 return;
801 }
802
Ted Kremenek7fd17232011-09-29 07:02:25 +0000803 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek26bde772010-05-19 17:38:06 +0000804 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000805
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000806 IdentifierInfo *II = Attr.getParameterName();
807 if (!II)
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000808 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian798f8322010-08-17 21:39:27 +0000809
John McCallba7bf592010-08-24 05:47:05 +0000810 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000811 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000812 if (!TypeRep) {
813 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
814 return;
815 }
John McCallba7bf592010-08-24 05:47:05 +0000816 QualType QT = TypeRep.get();
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000817 // Diagnose use of non-object type in iboutletcollection attribute.
818 // FIXME. Gnu attribute extension ignores use of builtin types in
819 // attributes. So, __attribute__((iboutletcollection(char))) will be
820 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000821 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000822 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
823 return;
824 }
Argyrios Kyrtzidis8db67df2011-09-13 18:41:59 +0000825 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
826 QT, Attr.getParameterLoc()));
Ted Kremenek26bde772010-05-19 17:38:06 +0000827}
828
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000829static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +0000830 if (const RecordType *UT = T->getAsUnionType())
831 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
832 RecordDecl *UD = UT->getDecl();
833 for (RecordDecl::field_iterator it = UD->field_begin(),
834 itend = UD->field_end(); it != itend; ++it) {
835 QualType QT = it->getType();
836 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
837 T = QT;
838 return;
839 }
840 }
841 }
842}
843
Chandler Carruthedc2c642011-07-02 00:01:44 +0000844static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000845 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
846 // ignore it as well
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000847 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000848 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +0000849 << Attr.getName() << ExpectedFunction;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000850 return;
851 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000852
Chandler Carruth743682b2010-11-16 08:35:43 +0000853 // In C++ the implicit 'this' function parameter also counts, and they are
854 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000855 bool HasImplicitThisParam = isInstanceMethod(D);
856 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000857
858 // The nonnull attribute only applies to pointers.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000859 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000860
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000861 for (AttributeList::arg_iterator I=Attr.arg_begin(),
862 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpd3bb5572009-07-24 19:02:52 +0000863
864
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000865 // The argument must be an integer constant expression.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +0000866 Expr *Ex = *I;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000867 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +0000868 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
869 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +0000870 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
871 << "nonnull" << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000872 return;
873 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000874
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000875 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000876
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000877 if (x < 1 || x > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +0000878 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner91aea712008-11-19 07:22:31 +0000879 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000880 return;
881 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000882
Ted Kremenek5224e6a2008-07-21 22:09:15 +0000883 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +0000884 if (HasImplicitThisParam) {
885 if (x == 0) {
886 S.Diag(Attr.getLoc(),
887 diag::err_attribute_invalid_implicit_this_argument)
888 << "nonnull" << Ex->getSourceRange();
889 return;
890 }
891 --x;
892 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000893
894 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000895 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000896 possibleTransparentUnionPointerType(T);
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +0000897
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000898 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000899 // FIXME: Should also highlight argument in decl.
Douglas Gregor62157e52010-08-12 18:48:43 +0000900 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattner3b054132008-11-19 05:08:23 +0000901 << "nonnull" << Ex->getSourceRange();
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000902 continue;
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000903 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000904
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000905 NonNullArgs.push_back(x);
906 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000907
908 // If no arguments were specified to __attribute__((nonnull)) then all pointer
909 // arguments have a nonnull attribute.
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000910 if (NonNullArgs.empty()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000911 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
912 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000913 possibleTransparentUnionPointerType(T);
Ted Kremenekd4adebb2009-07-15 23:23:54 +0000914 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000915 NonNullArgs.push_back(I);
Ted Kremenek5fa50522008-11-18 06:52:58 +0000916 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000917
Ted Kremenek22813f42010-10-21 18:49:36 +0000918 // No pointer arguments?
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +0000919 if (NonNullArgs.empty()) {
920 // Warn the trivial case only if attribute is not coming from a
921 // macro instantiation.
922 if (Attr.getLoc().isFileID())
923 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000924 return;
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +0000925 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000926 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +0000927
928 unsigned* start = &NonNullArgs[0];
929 unsigned size = NonNullArgs.size();
Ted Kremenekd21139a2010-07-31 01:52:11 +0000930 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000931 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000932 size));
Ted Kremenek2d63bc12008-07-21 21:53:04 +0000933}
934
Chandler Carruthedc2c642011-07-02 00:01:44 +0000935static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekd21139a2010-07-31 01:52:11 +0000936 // This attribute must be applied to a function declaration.
937 // The first argument to the attribute must be a string,
938 // the name of the resource, for example "malloc".
939 // The following arguments must be argument indexes, the arguments must be
940 // of integer type for Returns, otherwise of pointer type.
941 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000942 // after being held. free() should be __attribute((ownership_takes)), whereas
943 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekd21139a2010-07-31 01:52:11 +0000944
945 if (!AL.getParameterName()) {
946 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
947 << AL.getName()->getName() << 1;
948 return;
949 }
950 // Figure out our Kind, and check arguments while we're at it.
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000951 OwnershipAttr::OwnershipKind K;
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000952 switch (AL.getKind()) {
953 case AttributeList::AT_ownership_takes:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000954 K = OwnershipAttr::Takes;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000955 if (AL.getNumArgs() < 1) {
956 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
957 return;
958 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000959 break;
960 case AttributeList::AT_ownership_holds:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000961 K = OwnershipAttr::Holds;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000962 if (AL.getNumArgs() < 1) {
963 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
964 return;
965 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000966 break;
967 case AttributeList::AT_ownership_returns:
Alexis Huntdcfba7b2010-08-18 23:23:40 +0000968 K = OwnershipAttr::Returns;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000969 if (AL.getNumArgs() > 1) {
970 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
971 << AL.getNumArgs() + 1;
972 return;
973 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000974 break;
975 default:
976 // This should never happen given how we are called.
977 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekd21139a2010-07-31 01:52:11 +0000978 }
979
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000980 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall5fca7ea2011-03-02 12:29:23 +0000981 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
982 << AL.getName() << ExpectedFunction;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000983 return;
984 }
985
Chandler Carruth743682b2010-11-16 08:35:43 +0000986 // In C++ the implicit 'this' function parameter also counts, and they are
987 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000988 bool HasImplicitThisParam = isInstanceMethod(D);
989 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000990
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000991 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekd21139a2010-07-31 01:52:11 +0000992
993 // Normalize the argument, __foo__ becomes foo.
994 if (Module.startswith("__") && Module.endswith("__"))
995 Module = Module.substr(2, Module.size() - 4);
996
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000997 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekd21139a2010-07-31 01:52:11 +0000998
Jordy Rose5af0e3c2010-08-12 08:54:03 +0000999 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1000 ++I) {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001001
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001002 Expr *IdxExpr = *I;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001003 llvm::APSInt ArgNum(32);
1004 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1005 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1006 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1007 << AL.getName()->getName() << IdxExpr->getSourceRange();
1008 continue;
1009 }
1010
1011 unsigned x = (unsigned) ArgNum.getZExtValue();
1012
1013 if (x > NumArgs || x < 1) {
1014 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1015 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1016 continue;
1017 }
1018 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +00001019 if (HasImplicitThisParam) {
1020 if (x == 0) {
1021 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1022 << "ownership" << IdxExpr->getSourceRange();
1023 return;
1024 }
1025 --x;
1026 }
1027
Ted Kremenekd21139a2010-07-31 01:52:11 +00001028 switch (K) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001029 case OwnershipAttr::Takes:
1030 case OwnershipAttr::Holds: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001031 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001032 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001033 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1034 // FIXME: Should also highlight argument in decl.
1035 S.Diag(AL.getLoc(), diag::err_ownership_type)
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001036 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekd21139a2010-07-31 01:52:11 +00001037 << "pointer"
1038 << IdxExpr->getSourceRange();
1039 continue;
1040 }
1041 break;
1042 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001043 case OwnershipAttr::Returns: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001044 if (AL.getNumArgs() > 1) {
1045 // Is the function argument an integer type?
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001046 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001047 llvm::APSInt ArgNum(32);
1048 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1049 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1050 S.Diag(AL.getLoc(), diag::err_ownership_type)
1051 << "ownership_returns" << "integer"
1052 << IdxExpr->getSourceRange();
1053 return;
1054 }
1055 }
1056 break;
1057 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001058 default:
1059 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekd21139a2010-07-31 01:52:11 +00001060 } // switch
1061
1062 // Check we don't have a conflict with another ownership attribute.
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001063 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001064 i = D->specific_attr_begin<OwnershipAttr>(),
1065 e = D->specific_attr_end<OwnershipAttr>();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001066 i != e; ++i) {
1067 if ((*i)->getOwnKind() != K) {
1068 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1069 I!=E; ++I) {
1070 if (x == *I) {
1071 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1072 << AL.getName()->getName() << "ownership_*";
Ted Kremenekd21139a2010-07-31 01:52:11 +00001073 }
1074 }
1075 }
1076 }
1077 OwnershipArgs.push_back(x);
1078 }
1079
1080 unsigned* start = OwnershipArgs.data();
1081 unsigned size = OwnershipArgs.size();
1082 llvm::array_pod_sort(start, start + size);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001083
1084 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1085 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1086 return;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001087 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001088
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001089 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001090 start, size));
Ted Kremenekd21139a2010-07-31 01:52:11 +00001091}
1092
John McCall7a198ce2011-02-08 22:35:49 +00001093/// Whether this declaration has internal linkage for the purposes of
1094/// things that want to complain about things not have internal linkage.
1095static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1096 switch (D->getLinkage()) {
1097 case NoLinkage:
1098 case InternalLinkage:
1099 return true;
1100
1101 // Template instantiations that go from external to unique-external
1102 // shouldn't get diagnosed.
1103 case UniqueExternalLinkage:
1104 return true;
1105
1106 case ExternalLinkage:
1107 return false;
1108 }
1109 llvm_unreachable("unknown linkage kind!");
Rafael Espindolac18086a2010-02-23 22:00:30 +00001110 return false;
1111}
1112
Chandler Carruthedc2c642011-07-02 00:01:44 +00001113static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001114 // Check the attribute arguments.
1115 if (Attr.getNumArgs() > 1) {
1116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1117 return;
1118 }
1119
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001120 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall7a198ce2011-02-08 22:35:49 +00001121 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001122 << Attr.getName() << ExpectedVariableOrFunction;
John McCall7a198ce2011-02-08 22:35:49 +00001123 return;
1124 }
1125
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001126 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001127
Rafael Espindolac18086a2010-02-23 22:00:30 +00001128 // gcc rejects
1129 // class c {
1130 // static int a __attribute__((weakref ("v2")));
1131 // static int b() __attribute__((weakref ("f3")));
1132 // };
1133 // and ignores the attributes of
1134 // void f(void) {
1135 // static int a __attribute__((weakref ("v2")));
1136 // }
1137 // we reject them
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001138 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl50c68252010-08-31 00:36:30 +00001139 if (!Ctx->isFileContext()) {
1140 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall7a198ce2011-02-08 22:35:49 +00001141 nd->getNameAsString();
Sebastian Redl50c68252010-08-31 00:36:30 +00001142 return;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001143 }
1144
1145 // The GCC manual says
1146 //
1147 // At present, a declaration to which `weakref' is attached can only
1148 // be `static'.
1149 //
1150 // It also says
1151 //
1152 // Without a TARGET,
1153 // given as an argument to `weakref' or to `alias', `weakref' is
1154 // equivalent to `weak'.
1155 //
1156 // gcc 4.4.1 will accept
1157 // int a7 __attribute__((weakref));
1158 // as
1159 // int a7 __attribute__((weak));
1160 // This looks like a bug in gcc. We reject that for now. We should revisit
1161 // it if this behaviour is actually used.
1162
John McCall7a198ce2011-02-08 22:35:49 +00001163 if (!hasEffectivelyInternalLinkage(nd)) {
1164 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001165 return;
1166 }
1167
1168 // GCC rejects
1169 // static ((alias ("y"), weakref)).
1170 // Should we? How to check that weakref is before or after alias?
1171
1172 if (Attr.getNumArgs() == 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001173 Expr *Arg = Attr.getArg(0);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001174 Arg = Arg->IgnoreParenCasts();
1175 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1176
Douglas Gregorfb65e592011-07-27 05:40:30 +00001177 if (!Str || !Str->isAscii()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001178 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1179 << "weakref" << 1;
1180 return;
1181 }
1182 // GCC will accept anything as the argument of weakref. Should we
1183 // check for an existing decl?
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001184 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001185 Str->getString()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001186 }
1187
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001188 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001189}
1190
Chandler Carruthedc2c642011-07-02 00:01:44 +00001191static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001192 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001193 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001194 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001195 return;
1196 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001197
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001198 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001199 Arg = Arg->IgnoreParenCasts();
1200 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001201
Douglas Gregorfb65e592011-07-27 05:40:30 +00001202 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001203 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001204 << "alias" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001205 return;
1206 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001207
Douglas Gregore8bbc122011-09-02 00:18:52 +00001208 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001209 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1210 return;
1211 }
1212
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001213 // FIXME: check if target symbol exists in current file
Mike Stumpd3bb5572009-07-24 19:02:52 +00001214
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001215 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001216 Str->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001217}
1218
Chandler Carruthedc2c642011-07-02 00:01:44 +00001219static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001220 // Check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001221 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar03a38442008-10-28 00:17:57 +00001222 return;
Anders Carlsson88097122009-02-19 19:16:48 +00001223
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001224 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00001225 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001226 << Attr.getName() << ExpectedFunction;
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001227 return;
1228 }
1229
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001230 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001231}
1232
Chandler Carruthedc2c642011-07-02 00:01:44 +00001233static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1234 const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001235 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001236 if (Attr.hasParameterOrArguments()) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001237 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1238 return;
1239 }
1240
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001241 if (!isa<FunctionDecl>(D)) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001242 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001243 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00001244 return;
1245 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001246
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001247 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbar03a38442008-10-28 00:17:57 +00001248}
1249
Chandler Carruthedc2c642011-07-02 00:01:44 +00001250static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001251 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001252 if (Attr.hasParameterOrArguments()) {
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001253 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1254 return;
1255 }
Mike Stump11289f42009-09-09 15:08:12 +00001256
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001257 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001258 QualType RetTy = FD->getResultType();
Ted Kremenek08479ae2009-08-15 00:51:46 +00001259 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001260 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek08479ae2009-08-15 00:51:46 +00001261 return;
1262 }
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001263 }
1264
Ted Kremenek08479ae2009-08-15 00:51:46 +00001265 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001266}
1267
Chandler Carruthedc2c642011-07-02 00:01:44 +00001268static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001269 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001270 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001271 return;
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001272
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001273 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001274}
1275
Chandler Carruthedc2c642011-07-02 00:01:44 +00001276static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001277 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001278 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001279 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001280 else
1281 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001282 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001283}
1284
Chandler Carruthedc2c642011-07-02 00:01:44 +00001285static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001286 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001287 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001288 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001289 else
1290 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001291 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001292}
1293
Chandler Carruthedc2c642011-07-02 00:01:44 +00001294static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001295 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00001296
1297 if (S.CheckNoReturnAttr(attr)) return;
1298
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001299 if (!isa<ObjCMethodDecl>(D)) {
John McCall3882ace2011-01-05 12:14:39 +00001300 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001301 << attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00001302 return;
1303 }
1304
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001305 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall3882ace2011-01-05 12:14:39 +00001306}
1307
1308bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek1551d552011-04-15 05:49:29 +00001309 if (attr.hasParameterOrArguments()) {
John McCall3882ace2011-01-05 12:14:39 +00001310 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1311 attr.setInvalid();
1312 return true;
1313 }
1314
1315 return false;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00001316}
1317
Chandler Carruthedc2c642011-07-02 00:01:44 +00001318static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1319 const AttributeList &Attr) {
Ted Kremenek5295ce82010-08-19 00:51:58 +00001320
1321 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1322 // because 'analyzer_noreturn' does not impact the type.
1323
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001324 if(!checkAttributeNumArgs(S, Attr, 0))
1325 return;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001326
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001327 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1328 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenek5295ce82010-08-19 00:51:58 +00001329 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1330 && !VD->getType()->isFunctionPointerType())) {
1331 S.Diag(Attr.getLoc(),
1332 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1333 : diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001334 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001335 return;
1336 }
1337 }
1338
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001339 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001340}
1341
John Thompsoncdb847ba2010-08-09 21:53:52 +00001342// PS3 PPU-specific.
Chandler Carruthedc2c642011-07-02 00:01:44 +00001343static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001344/*
1345 Returning a Vector Class in Registers
1346
Eric Christopherbc638a82010-12-01 22:13:54 +00001347 According to the PPU ABI specifications, a class with a single member of
1348 vector type is returned in memory when used as the return value of a function.
1349 This results in inefficient code when implementing vector classes. To return
1350 the value in a single vector register, add the vecreturn attribute to the
1351 class definition. This attribute is also applicable to struct types.
John Thompsoncdb847ba2010-08-09 21:53:52 +00001352
1353 Example:
1354
1355 struct Vector
1356 {
1357 __vector float xyzw;
1358 } __attribute__((vecreturn));
1359
1360 Vector Add(Vector lhs, Vector rhs)
1361 {
1362 Vector result;
1363 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1364 return result; // This will be returned in a register
1365 }
1366*/
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001367 if (!isa<RecordDecl>(D)) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001368 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001369 << Attr.getName() << ExpectedClass;
John Thompsoncdb847ba2010-08-09 21:53:52 +00001370 return;
1371 }
1372
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001373 if (D->getAttr<VecReturnAttr>()) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001374 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1375 return;
1376 }
1377
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001378 RecordDecl *record = cast<RecordDecl>(D);
John Thompson9a587aaa2010-09-18 01:12:07 +00001379 int count = 0;
1380
1381 if (!isa<CXXRecordDecl>(record)) {
1382 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1383 return;
1384 }
1385
1386 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1387 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1388 return;
1389 }
1390
Eric Christopherbc638a82010-12-01 22:13:54 +00001391 for (RecordDecl::field_iterator iter = record->field_begin();
1392 iter != record->field_end(); iter++) {
John Thompson9a587aaa2010-09-18 01:12:07 +00001393 if ((count == 1) || !iter->getType()->isVectorType()) {
1394 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1395 return;
1396 }
1397 count++;
1398 }
1399
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001400 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompsoncdb847ba2010-08-09 21:53:52 +00001401}
1402
Chandler Carruthedc2c642011-07-02 00:01:44 +00001403static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001404 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001405 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001406 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Alexis Hunt96d5c762009-11-21 08:43:09 +00001407 return;
1408 }
1409 // FIXME: Actually store the attribute on the declaration
1410}
1411
Chandler Carruthedc2c642011-07-02 00:01:44 +00001412static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek39c59a82008-07-25 04:39:19 +00001413 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001414 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001415 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001416 return;
1417 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001418
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001419 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1420 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001421 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001422 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001423 return;
1424 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001425
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001426 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek39c59a82008-07-25 04:39:19 +00001427}
1428
Rafael Espindola70107f92011-10-03 14:59:42 +00001429static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1430 const AttributeList &Attr) {
1431 // check the attribute arguments.
1432 if (Attr.hasParameterOrArguments()) {
1433 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1434 return;
1435 }
1436
1437 if (!isa<FunctionDecl>(D)) {
1438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1439 << Attr.getName() << ExpectedFunction;
1440 return;
1441 }
1442
1443 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1444}
1445
Chandler Carruthedc2c642011-07-02 00:01:44 +00001446static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001447 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001448 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001449 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1450 return;
1451 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001452
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001453 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar311bf292009-02-13 22:48:56 +00001454 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001455 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1456 return;
1457 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001458 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001459 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001460 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001461 return;
1462 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001463
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001464 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001465}
1466
Chandler Carruthedc2c642011-07-02 00:01:44 +00001467static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001468 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001469 if (Attr.getNumArgs() > 1) {
1470 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001471 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001472 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001473
1474 int priority = 65535; // FIXME: Do not hardcode such constants.
1475 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001476 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001477 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001478 if (E->isTypeDependent() || E->isValueDependent() ||
1479 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001480 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001481 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001482 return;
1483 }
1484 priority = Idx.getZExtValue();
1485 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001486
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001487 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001488 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001489 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001490 return;
1491 }
1492
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001493 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001494 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001495}
1496
Chandler Carruthedc2c642011-07-02 00:01:44 +00001497static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001498 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001499 if (Attr.getNumArgs() > 1) {
1500 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001501 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001502 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001503
1504 int priority = 65535; // FIXME: Do not hardcode such constants.
1505 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001506 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001507 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001508 if (E->isTypeDependent() || E->isValueDependent() ||
1509 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001510 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001511 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001512 return;
1513 }
1514 priority = Idx.getZExtValue();
1515 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001516
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001517 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001518 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001519 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001520 return;
1521 }
1522
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001523 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001524 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001525}
1526
Chandler Carruthedc2c642011-07-02 00:01:44 +00001527static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner190aa102011-02-24 05:42:24 +00001528 unsigned NumArgs = Attr.getNumArgs();
1529 if (NumArgs > 1) {
John McCall80ee5962011-03-02 12:15:05 +00001530 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001531 return;
1532 }
Chris Lattner190aa102011-02-24 05:42:24 +00001533
Fariborz Jahanian551063102010-10-06 21:18:44 +00001534 // Handle the case where deprecated attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001535 StringRef Str;
Chris Lattner190aa102011-02-24 05:42:24 +00001536 if (NumArgs == 1) {
1537 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanian551063102010-10-06 21:18:44 +00001538 if (!SE) {
Chris Lattner190aa102011-02-24 05:42:24 +00001539 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1540 << "deprecated";
Fariborz Jahanian551063102010-10-06 21:18:44 +00001541 return;
1542 }
Chris Lattner190aa102011-02-24 05:42:24 +00001543 Str = SE->getString();
Fariborz Jahanian551063102010-10-06 21:18:44 +00001544 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001545
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001546 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001547}
1548
Chandler Carruthedc2c642011-07-02 00:01:44 +00001549static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner190aa102011-02-24 05:42:24 +00001550 unsigned NumArgs = Attr.getNumArgs();
1551 if (NumArgs > 1) {
John McCall80ee5962011-03-02 12:15:05 +00001552 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanian1470e932008-12-17 01:07:27 +00001553 return;
1554 }
Chris Lattner190aa102011-02-24 05:42:24 +00001555
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001556 // Handle the case where unavailable attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001557 StringRef Str;
Chris Lattner190aa102011-02-24 05:42:24 +00001558 if (NumArgs == 1) {
1559 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001560 if (!SE) {
Chris Lattner190aa102011-02-24 05:42:24 +00001561 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001562 diag::err_attribute_not_string) << "unavailable";
1563 return;
1564 }
Chris Lattner190aa102011-02-24 05:42:24 +00001565 Str = SE->getString();
Fariborz Jahanianc74073c2010-10-06 23:12:32 +00001566 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001567 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanian1470e932008-12-17 01:07:27 +00001568}
1569
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001570static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1571 const AttributeList &Attr) {
1572 unsigned NumArgs = Attr.getNumArgs();
1573 if (NumArgs > 0) {
1574 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1575 return;
1576 }
1577
1578 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001579 Attr.getRange(), S.Context));
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001580}
1581
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001582static void handleObjCSuppressAutosynthesisAttr(Sema &S, Decl *D,
1583 const AttributeList &Attr) {
1584 unsigned NumArgs = Attr.getNumArgs();
1585 if (NumArgs > 0) {
1586 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1587 return;
1588 }
1589
1590 D->addAttr(::new (S.Context) ObjCSuppressAutosynthesisAttr(
1591 Attr.getRange(), S.Context));
1592}
1593
Chandler Carruthedc2c642011-07-02 00:01:44 +00001594static void handleAvailabilityAttr(Sema &S, Decl *D,
1595 const AttributeList &Attr) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001596 IdentifierInfo *Platform = Attr.getParameterName();
1597 SourceLocation PlatformLoc = Attr.getParameterLoc();
1598
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001599 StringRef PlatformName
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001600 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1601 if (PlatformName.empty()) {
1602 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1603 << Platform;
1604
1605 PlatformName = Platform->getName();
1606 }
1607
1608 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1609 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1610 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregor7ab142b2011-03-26 03:35:55 +00001611 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001612
Douglas Gregor05a51ae2011-08-10 16:09:55 +00001613 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001614 // of these steps are needed).
1615 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001616 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001617 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1618 << 1 << PlatformName << Deprecated.Version.getAsString()
1619 << 0 << Introduced.Version.getAsString();
1620 return;
1621 }
1622
1623 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001624 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001625 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1626 << 2 << PlatformName << Obsoleted.Version.getAsString()
1627 << 0 << Introduced.Version.getAsString();
1628 return;
1629 }
1630
1631 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor6f47e5c2011-08-10 15:31:35 +00001632 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001633 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1634 << 2 << PlatformName << Obsoleted.Version.getAsString()
1635 << 1 << Deprecated.Version.getAsString();
1636 return;
1637 }
1638
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00001639 StringRef Str;
1640 const StringLiteral *SE =
1641 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1642 if (SE)
1643 Str = SE->getString();
1644
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001645 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001646 Platform,
1647 Introduced.Version,
1648 Deprecated.Version,
Douglas Gregor7ab142b2011-03-26 03:35:55 +00001649 Obsoleted.Version,
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00001650 IsUnavailable,
1651 Str));
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001652}
1653
Chandler Carruthedc2c642011-07-02 00:01:44 +00001654static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001655 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001656 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001657 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001658
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001659 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001660 Arg = Arg->IgnoreParenCasts();
1661 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001662
Douglas Gregorfb65e592011-07-27 05:40:30 +00001663 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001664 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001665 << "visibility" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001666 return;
1667 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001668
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001669 StringRef TypeStr = Str->getString();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001670 VisibilityAttr::VisibilityType type;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001671
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001672 if (TypeStr == "default")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001673 type = VisibilityAttr::Default;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001674 else if (TypeStr == "hidden")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001675 type = VisibilityAttr::Hidden;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001676 else if (TypeStr == "internal")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001677 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001678 else if (TypeStr == "protected")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001679 type = VisibilityAttr::Protected;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001680 else {
Chris Lattnere3d20d92008-11-23 21:45:46 +00001681 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001682 return;
1683 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001684
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001685 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001686}
1687
Chandler Carruthedc2c642011-07-02 00:01:44 +00001688static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1689 const AttributeList &Attr) {
John McCall86bc21f2011-03-02 11:33:24 +00001690 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1691 if (!method) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001692 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001693 << ExpectedMethod;
John McCall86bc21f2011-03-02 11:33:24 +00001694 return;
1695 }
1696
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001697 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1698 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1699 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCall86bc21f2011-03-02 11:33:24 +00001700 << "objc_method_family" << 1;
1701 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001702 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCall86bc21f2011-03-02 11:33:24 +00001703 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001704 Attr.setInvalid();
John McCall86bc21f2011-03-02 11:33:24 +00001705 return;
1706 }
1707
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001708 StringRef param = Attr.getParameterName()->getName();
John McCall86bc21f2011-03-02 11:33:24 +00001709 ObjCMethodFamilyAttr::FamilyKind family;
1710 if (param == "none")
1711 family = ObjCMethodFamilyAttr::OMF_None;
1712 else if (param == "alloc")
1713 family = ObjCMethodFamilyAttr::OMF_alloc;
1714 else if (param == "copy")
1715 family = ObjCMethodFamilyAttr::OMF_copy;
1716 else if (param == "init")
1717 family = ObjCMethodFamilyAttr::OMF_init;
1718 else if (param == "mutableCopy")
1719 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1720 else if (param == "new")
1721 family = ObjCMethodFamilyAttr::OMF_new;
1722 else {
1723 // Just warn and ignore it. This is future-proof against new
1724 // families being used in system headers.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001725 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCall86bc21f2011-03-02 11:33:24 +00001726 return;
1727 }
1728
John McCall31168b02011-06-15 23:02:42 +00001729 if (family == ObjCMethodFamilyAttr::OMF_init &&
1730 !method->getResultType()->isObjCObjectPointerType()) {
1731 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1732 << method->getResultType();
1733 // Ignore the attribute.
1734 return;
1735 }
1736
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001737 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCall31168b02011-06-15 23:02:42 +00001738 S.Context, family));
John McCall86bc21f2011-03-02 11:33:24 +00001739}
1740
Chandler Carruthedc2c642011-07-02 00:01:44 +00001741static void handleObjCExceptionAttr(Sema &S, Decl *D,
1742 const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001743 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner677a3582009-02-14 08:09:34 +00001744 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001745
Chris Lattner677a3582009-02-14 08:09:34 +00001746 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1747 if (OCI == 0) {
1748 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1749 return;
1750 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001751
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001752 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner677a3582009-02-14 08:09:34 +00001753}
1754
Chandler Carruthedc2c642011-07-02 00:01:44 +00001755static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001756 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00001757 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001758 return;
1759 }
Richard Smithdda56e42011-04-15 14:24:37 +00001760 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001761 QualType T = TD->getUnderlyingType();
1762 if (!T->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001763 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001764 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1765 return;
1766 }
1767 }
Fariborz Jahanian21c24842011-12-16 15:54:29 +00001768 else
Fariborz Jahaniana45495a2011-11-29 01:48:40 +00001769 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001770 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanian255c0952009-01-13 23:34:40 +00001771}
1772
Mike Stumpd3bb5572009-07-24 19:02:52 +00001773static void
Chandler Carruthedc2c642011-07-02 00:01:44 +00001774handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001775 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00001776 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001777 return;
1778 }
1779
1780 if (!isa<FunctionDecl>(D)) {
1781 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1782 return;
1783 }
1784
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001785 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001786}
1787
Chandler Carruthedc2c642011-07-02 00:01:44 +00001788static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001789 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001790 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001791 << "blocks" << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00001792 return;
1793 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001794
Steve Naroff3405a732008-09-18 16:44:58 +00001795 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001796 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00001797 return;
1798 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001799
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001800 BlocksAttr::BlockType type;
Chris Lattner68e48682008-11-20 04:42:34 +00001801 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff3405a732008-09-18 16:44:58 +00001802 type = BlocksAttr::ByRef;
1803 else {
Chris Lattner3b054132008-11-19 05:08:23 +00001804 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001805 << "blocks" << Attr.getParameterName();
Steve Naroff3405a732008-09-18 16:44:58 +00001806 return;
1807 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001808
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001809 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff3405a732008-09-18 16:44:58 +00001810}
1811
Chandler Carruthedc2c642011-07-02 00:01:44 +00001812static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001813 // check the attribute arguments.
1814 if (Attr.getNumArgs() > 2) {
John McCall80ee5962011-03-02 12:15:05 +00001815 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlssonc181b012008-10-05 18:05:59 +00001816 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001817 }
1818
John McCallb46f2872011-09-09 07:56:05 +00001819 unsigned sentinel = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001820 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001821 Expr *E = Attr.getArg(0);
Anders Carlssonc181b012008-10-05 18:05:59 +00001822 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001823 if (E->isTypeDependent() || E->isValueDependent() ||
1824 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001825 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001826 << "sentinel" << 1 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001827 return;
1828 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001829
John McCallb46f2872011-09-09 07:56:05 +00001830 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001831 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1832 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001833 return;
1834 }
John McCallb46f2872011-09-09 07:56:05 +00001835
1836 sentinel = Idx.getZExtValue();
Anders Carlssonc181b012008-10-05 18:05:59 +00001837 }
1838
John McCallb46f2872011-09-09 07:56:05 +00001839 unsigned nullPos = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001840 if (Attr.getNumArgs() > 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001841 Expr *E = Attr.getArg(1);
Anders Carlssonc181b012008-10-05 18:05:59 +00001842 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001843 if (E->isTypeDependent() || E->isValueDependent() ||
1844 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001845 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001846 << "sentinel" << 2 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001847 return;
1848 }
1849 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00001850
John McCallb46f2872011-09-09 07:56:05 +00001851 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001852 // FIXME: This error message could be improved, it would be nice
1853 // to say what the bounds actually are.
Chris Lattner3b054132008-11-19 05:08:23 +00001854 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1855 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00001856 return;
1857 }
1858 }
1859
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001860 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +00001861 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +00001862 if (isa<FunctionNoProtoType>(FT)) {
1863 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1864 return;
1865 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001866
Chris Lattner9363e312009-03-17 23:03:47 +00001867 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001868 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001869 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001870 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001871 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlssonc181b012008-10-05 18:05:59 +00001872 if (!MD->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001873 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00001874 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001875 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001876 } else if (isa<BlockDecl>(D)) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001877 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1878 // caller.
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001879 ;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001880 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001881 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00001882 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001883 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherbc638a82010-12-01 22:13:54 +00001884 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001885 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00001886 int m = Ty->isFunctionPointerType() ? 0 : 1;
1887 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001888 return;
1889 }
Mike Stump12b8ce12009-08-04 21:02:39 +00001890 } else {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001891 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001892 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00001893 return;
1894 }
Anders Carlssonc181b012008-10-05 18:05:59 +00001895 } else {
Chris Lattner3b054132008-11-19 05:08:23 +00001896 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001897 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlssonc181b012008-10-05 18:05:59 +00001898 return;
1899 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001900 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherbc638a82010-12-01 22:13:54 +00001901 nullPos));
Anders Carlssonc181b012008-10-05 18:05:59 +00001902}
1903
Chandler Carruthedc2c642011-07-02 00:01:44 +00001904static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner237f2752009-02-14 07:37:35 +00001905 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001906 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner237f2752009-02-14 07:37:35 +00001907 return;
Chris Lattner237f2752009-02-14 07:37:35 +00001908
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001909 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner237f2752009-02-14 07:37:35 +00001910 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001911 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner237f2752009-02-14 07:37:35 +00001912 return;
1913 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001914
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001915 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1916 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1917 << Attr.getName() << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +00001918 return;
1919 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00001920 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1921 if (MD->getResultType()->isVoidType()) {
1922 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1923 << Attr.getName() << 1;
1924 return;
1925 }
1926
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001927 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner237f2752009-02-14 07:37:35 +00001928}
1929
Chandler Carruthedc2c642011-07-02 00:01:44 +00001930static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001931 // check the attribute arguments.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001932 if (Attr.hasParameterOrArguments()) {
1933 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001934 return;
1935 }
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001936
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001937 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian47f9a732011-10-21 22:27:12 +00001938 if (isa<CXXRecordDecl>(D)) {
1939 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1940 return;
1941 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001942 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1943 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanian41136ee2009-07-16 01:12:24 +00001944 return;
1945 }
1946
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001947 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001948
1949 // 'weak' only applies to declarations with external linkage.
1950 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001951 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001952 return;
1953 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001954
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001955 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001956}
1957
Chandler Carruthedc2c642011-07-02 00:01:44 +00001958static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001959 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001960 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001961 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001962
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001963
1964 // weak_import only applies to variable & function declarations.
1965 bool isDef = false;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001966 if (!D->canBeWeakImported(isDef)) {
1967 if (isDef)
1968 S.Diag(Attr.getLoc(),
1969 diag::warn_attribute_weak_import_invalid_on_definition)
1970 << "weak_import" << 2 /*variable and function*/;
Douglas Gregord71149a2011-03-23 13:27:51 +00001971 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregore8bbc122011-09-02 00:18:52 +00001972 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian3249a1e2011-10-26 23:59:12 +00001973 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregord71149a2011-03-23 13:27:51 +00001974 // Nothing to warn about here.
1975 } else
Fariborz Jahanianea70a172010-04-13 20:22:35 +00001976 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001977 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001978
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001979 return;
1980 }
1981
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001982 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00001983}
1984
Chandler Carruthedc2c642011-07-02 00:01:44 +00001985static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1986 const AttributeList &Attr) {
Nate Begemanf2758702009-06-26 06:32:41 +00001987 // Attribute has 3 arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001988 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begemanf2758702009-06-26 06:32:41 +00001989 return;
Nate Begemanf2758702009-06-26 06:32:41 +00001990
1991 unsigned WGSize[3];
1992 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001993 Expr *E = Attr.getArg(i);
Nate Begemanf2758702009-06-26 06:32:41 +00001994 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001995 if (E->isTypeDependent() || E->isValueDependent() ||
1996 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begemanf2758702009-06-26 06:32:41 +00001997 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1998 << "reqd_work_group_size" << E->getSourceRange();
1999 return;
2000 }
2001 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2002 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002003 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002004 WGSize[0], WGSize[1],
Nate Begemanf2758702009-06-26 06:32:41 +00002005 WGSize[2]));
2006}
2007
Chandler Carruthedc2c642011-07-02 00:01:44 +00002008static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar648bf782009-02-12 17:28:23 +00002009 // Attribute has no arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002010 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar648bf782009-02-12 17:28:23 +00002011 return;
Daniel Dunbar648bf782009-02-12 17:28:23 +00002012
2013 // Make sure that there is a string literal as the sections's single
2014 // argument.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002015 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002016 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00002017 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002018 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar648bf782009-02-12 17:28:23 +00002019 return;
2020 }
Mike Stump11289f42009-09-09 15:08:12 +00002021
Chris Lattner30ba6742009-08-10 19:03:04 +00002022 // If the target wants to validate the section specifier, make it happen.
Douglas Gregore8bbc122011-09-02 00:18:52 +00002023 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattner20aee9b2010-01-12 20:58:53 +00002024 if (!Error.empty()) {
2025 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2026 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +00002027 return;
2028 }
Mike Stump11289f42009-09-09 15:08:12 +00002029
Chris Lattner20aee9b2010-01-12 20:58:53 +00002030 // This attribute cannot be applied to local variables.
2031 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2032 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2033 return;
2034 }
2035
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002036 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002037 SE->getString()));
Daniel Dunbar648bf782009-02-12 17:28:23 +00002038}
2039
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002040
Chandler Carruthedc2c642011-07-02 00:01:44 +00002041static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002042 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002043 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002044 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002045 return;
2046 }
Douglas Gregor88336832011-06-15 05:45:11 +00002047
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002048 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002049 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002050 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002051 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002052 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002053 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002054}
2055
Chandler Carruthedc2c642011-07-02 00:01:44 +00002056static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002057 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002058 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002059 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlssonb8316282008-10-05 23:32:53 +00002060 return;
2061 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002062
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002063 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002064 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002065 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002066 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002067 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002068 }
Anders Carlssonb8316282008-10-05 23:32:53 +00002069}
2070
Chandler Carruthedc2c642011-07-02 00:01:44 +00002071static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002072 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002073 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssonb8316282008-10-05 23:32:53 +00002074 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002075
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002076 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlssonb8316282008-10-05 23:32:53 +00002077}
2078
Chandler Carruthedc2c642011-07-02 00:01:44 +00002079static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002080 if (!Attr.getParameterName()) {
Anders Carlssond277d792009-01-31 01:16:18 +00002081 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2082 return;
2083 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002084
Anders Carlssond277d792009-01-31 01:16:18 +00002085 if (Attr.getNumArgs() != 0) {
2086 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2087 return;
2088 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002089
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002090 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002091
Anders Carlssond277d792009-01-31 01:16:18 +00002092 if (!VD || !VD->hasLocalStorage()) {
2093 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2094 return;
2095 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002096
Anders Carlssond277d792009-01-31 01:16:18 +00002097 // Look up the function
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002098 // FIXME: Lookup probably isn't looking in the right place
John McCall9f3059a2009-10-09 21:13:30 +00002099 NamedDecl *CleanupDecl
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002100 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2101 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssond277d792009-01-31 01:16:18 +00002102 if (!CleanupDecl) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002103 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssond277d792009-01-31 01:16:18 +00002104 Attr.getParameterName();
2105 return;
2106 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002107
Anders Carlssond277d792009-01-31 01:16:18 +00002108 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2109 if (!FD) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002110 S.Diag(Attr.getParameterLoc(),
2111 diag::err_attribute_cleanup_arg_not_function)
2112 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002113 return;
2114 }
2115
Anders Carlssond277d792009-01-31 01:16:18 +00002116 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002117 S.Diag(Attr.getParameterLoc(),
2118 diag::err_attribute_cleanup_func_must_take_one_arg)
2119 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002120 return;
2121 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002122
Anders Carlsson723f55d2009-02-07 23:16:50 +00002123 // We're currently more strict than GCC about what function types we accept.
2124 // If this ever proves to be a problem it should be easy to fix.
2125 QualType Ty = S.Context.getPointerType(VD->getType());
2126 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorc03a1082011-01-28 02:26:04 +00002127 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2128 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002129 S.Diag(Attr.getParameterLoc(),
Anders Carlsson723f55d2009-02-07 23:16:50 +00002130 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2131 Attr.getParameterName() << ParamTy << Ty;
2132 return;
2133 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002134
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002135 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidise88168a2010-12-06 17:51:53 +00002136 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssond277d792009-01-31 01:16:18 +00002137}
2138
Mike Stumpd3bb5572009-07-24 19:02:52 +00002139/// Handle __attribute__((format_arg((idx)))) attribute based on
2140/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002141static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002142 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002143 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002144
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002145 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002146 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002147 << Attr.getName() << ExpectedFunction;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002148 return;
2149 }
Chandler Carruth743682b2010-11-16 08:35:43 +00002150
2151 // In C++ the implicit 'this' function parameter also counts, and they are
2152 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002153 bool HasImplicitThisParam = isInstanceMethod(D);
2154 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002155 unsigned FirstIdx = 1;
Chandler Carruth743682b2010-11-16 08:35:43 +00002156
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002157 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002158 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002159 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002160 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2161 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002162 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2163 << "format" << 2 << IdxExpr->getSourceRange();
2164 return;
2165 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002166
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002167 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2168 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2169 << "format" << 2 << IdxExpr->getSourceRange();
2170 return;
2171 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002172
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002173 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002174
Chandler Carruth743682b2010-11-16 08:35:43 +00002175 if (HasImplicitThisParam) {
2176 if (ArgIdx == 0) {
2177 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2178 << "format_arg" << IdxExpr->getSourceRange();
2179 return;
2180 }
2181 ArgIdx--;
2182 }
2183
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002184 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002185 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002186
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002187 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2188 if (not_nsstring_type &&
2189 !isCFStringType(Ty, S.Context) &&
2190 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002191 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002192 // FIXME: Should highlight the actual expression that has the wrong type.
2193 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002194 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002195 << IdxExpr->getSourceRange();
2196 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002197 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002198 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002199 if (!isNSStringType(Ty, S.Context) &&
2200 !isCFStringType(Ty, S.Context) &&
2201 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002202 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002203 // FIXME: Should highlight the actual expression that has the wrong type.
2204 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002205 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002206 << IdxExpr->getSourceRange();
2207 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002208 }
2209
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002210 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth743682b2010-11-16 08:35:43 +00002211 Idx.getZExtValue()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002212}
2213
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002214enum FormatAttrKind {
2215 CFStringFormat,
2216 NSStringFormat,
2217 StrftimeFormat,
2218 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00002219 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002220 InvalidFormat
2221};
2222
2223/// getFormatAttrKind - Map from format attribute names to supported format
2224/// types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002225static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002226 // Check for formats that get handled specially.
2227 if (Format == "NSString")
2228 return NSStringFormat;
2229 if (Format == "CFString")
2230 return CFStringFormat;
2231 if (Format == "strftime")
2232 return StrftimeFormat;
2233
2234 // Otherwise, check for supported formats.
2235 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2236 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2237 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattner0ddd0ae2011-02-18 17:05:55 +00002238 Format == "zcmn_err" ||
2239 Format == "kprintf") // OpenBSD.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002240 return SupportedFormat;
2241
Duncan Sandsde4fe352010-03-23 14:44:19 +00002242 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2243 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner12161d32010-03-22 21:08:50 +00002244 return IgnoredFormat;
2245
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002246 return InvalidFormat;
2247}
2248
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002249/// Handle __attribute__((init_priority(priority))) attributes based on
2250/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002251static void handleInitPriorityAttr(Sema &S, Decl *D,
2252 const AttributeList &Attr) {
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002253 if (!S.getLangOptions().CPlusPlus) {
2254 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2255 return;
2256 }
2257
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002258 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002259 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2260 Attr.setInvalid();
2261 return;
2262 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002263 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002264 if (S.Context.getAsArrayType(T))
2265 T = S.Context.getBaseElementType(T);
2266 if (!T->getAs<RecordType>()) {
2267 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2268 Attr.setInvalid();
2269 return;
2270 }
2271
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002272 if (Attr.getNumArgs() != 1) {
2273 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2274 Attr.setInvalid();
2275 return;
2276 }
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002277 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002278
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002279 llvm::APSInt priority(32);
2280 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2281 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2282 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2283 << "init_priority" << priorityExpr->getSourceRange();
2284 Attr.setInvalid();
2285 return;
2286 }
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +00002287 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002288 if (prioritynum < 101 || prioritynum > 65535) {
2289 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2290 << priorityExpr->getSourceRange();
2291 Attr.setInvalid();
2292 return;
2293 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002294 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002295 prioritynum));
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002296}
2297
Mike Stumpd3bb5572009-07-24 19:02:52 +00002298/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2299/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002300static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002301
Chris Lattner4a927cb2008-06-28 23:36:30 +00002302 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002303 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002304 << "format" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002305 return;
2306 }
2307
Chris Lattner4a927cb2008-06-28 23:36:30 +00002308 if (Attr.getNumArgs() != 2) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002309 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002310 return;
2311 }
2312
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002313 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002314 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002315 << Attr.getName() << ExpectedFunction;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002316 return;
2317 }
2318
Chandler Carruth743682b2010-11-16 08:35:43 +00002319 // In C++ the implicit 'this' function parameter also counts, and they are
2320 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002321 bool HasImplicitThisParam = isInstanceMethod(D);
2322 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002323 unsigned FirstIdx = 1;
2324
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002325 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002326
2327 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002328 if (Format.startswith("__") && Format.endswith("__"))
2329 Format = Format.substr(2, Format.size() - 4);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002330
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002331 // Check for supported formats.
2332 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner12161d32010-03-22 21:08:50 +00002333
2334 if (Kind == IgnoredFormat)
2335 return;
2336
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002337 if (Kind == InvalidFormat) {
Chris Lattner3b054132008-11-19 05:08:23 +00002338 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar07d07852009-10-18 21:17:35 +00002339 << "format" << Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002340 return;
2341 }
2342
2343 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002344 Expr *IdxExpr = Attr.getArg(0);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002345 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002346 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2347 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002348 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002349 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002350 return;
2351 }
2352
2353 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002354 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002355 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002356 return;
2357 }
2358
2359 // FIXME: Do we need to bounds check?
2360 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002361
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002362 if (HasImplicitThisParam) {
2363 if (ArgIdx == 0) {
Chandler Carruth743682b2010-11-16 08:35:43 +00002364 S.Diag(Attr.getLoc(),
2365 diag::err_format_attribute_implicit_this_format_string)
2366 << IdxExpr->getSourceRange();
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002367 return;
2368 }
2369 ArgIdx--;
2370 }
Mike Stump11289f42009-09-09 15:08:12 +00002371
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002372 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002373 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002374
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002375 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00002376 if (!isCFStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002377 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2378 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar980c6692008-09-26 03:32:58 +00002379 return;
2380 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002381 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002382 // FIXME: do we need to check if the type is NSString*? What are the
2383 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002384 if (!isNSStringType(Ty, S.Context)) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002385 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002386 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2387 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002388 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002389 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002390 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002391 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002392 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002393 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2394 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002395 return;
2396 }
2397
2398 // check the 3rd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002399 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002400 llvm::APSInt FirstArg(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002401 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2402 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002403 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002404 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002405 return;
2406 }
2407
2408 // check if the function is variadic if the 3rd argument non-zero
2409 if (FirstArg != 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002410 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002411 ++NumArgs; // +1 for ...
2412 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002413 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002414 return;
2415 }
2416 }
2417
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002418 // strftime requires FirstArg to be 0 because it doesn't read from any
2419 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002420 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002421 if (FirstArg != 0) {
Chris Lattner3b054132008-11-19 05:08:23 +00002422 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2423 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002424 return;
2425 }
2426 // if 0 it disables parameter checking (to use with e.g. va_list)
2427 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002428 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002429 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002430 return;
2431 }
2432
Douglas Gregor88336832011-06-15 05:45:11 +00002433 // Check whether we already have an equivalent format attribute.
2434 for (specific_attr_iterator<FormatAttr>
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002435 i = D->specific_attr_begin<FormatAttr>(),
2436 e = D->specific_attr_end<FormatAttr>();
Douglas Gregor88336832011-06-15 05:45:11 +00002437 i != e ; ++i) {
2438 FormatAttr *f = *i;
2439 if (f->getType() == Format &&
2440 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2441 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2442 // If we don't have a valid location for this attribute, adopt the
2443 // location.
2444 if (f->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002445 f->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002446 return;
2447 }
2448 }
2449
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002450 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002451 Idx.getZExtValue(),
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002452 FirstArg.getZExtValue()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002453}
2454
Chandler Carruthedc2c642011-07-02 00:01:44 +00002455static void handleTransparentUnionAttr(Sema &S, Decl *D,
2456 const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002457 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002458 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002459 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002460
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002461
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002462 // Try to find the underlying union declaration.
2463 RecordDecl *RD = 0;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002464 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002465 if (TD && TD->getUnderlyingType()->isUnionType())
2466 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2467 else
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002468 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002469
2470 if (!RD || !RD->isUnion()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002471 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002472 << Attr.getName() << ExpectedUnion;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002473 return;
2474 }
2475
John McCallf937c022011-10-07 06:10:15 +00002476 if (!RD->isCompleteDefinition()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002477 S.Diag(Attr.getLoc(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002478 diag::warn_transparent_union_attribute_not_definition);
2479 return;
2480 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002481
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002482 RecordDecl::field_iterator Field = RD->field_begin(),
2483 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002484 if (Field == FieldEnd) {
2485 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2486 return;
2487 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002488
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002489 FieldDecl *FirstField = *Field;
2490 QualType FirstType = FirstField->getType();
Douglas Gregor21872662010-06-30 17:24:13 +00002491 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002492 S.Diag(FirstField->getLocation(),
Douglas Gregor21872662010-06-30 17:24:13 +00002493 diag::warn_transparent_union_attribute_floating)
2494 << FirstType->isVectorType() << FirstType;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002495 return;
2496 }
2497
2498 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2499 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2500 for (; Field != FieldEnd; ++Field) {
2501 QualType FieldType = Field->getType();
2502 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2503 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2504 // Warn if we drop the attribute.
2505 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002506 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002507 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002508 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002509 diag::warn_transparent_union_attribute_field_size_align)
2510 << isSize << Field->getDeclName() << FieldBits;
2511 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002512 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002513 diag::note_transparent_union_first_field_size_align)
2514 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002515 return;
2516 }
2517 }
2518
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002519 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002520}
2521
Chandler Carruthedc2c642011-07-02 00:01:44 +00002522static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002523 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002524 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002525 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002526
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002527 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002528 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002529
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002530 // Make sure that there is a string literal as the annotation's single
2531 // argument.
2532 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002533 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002534 return;
2535 }
Julien Lerouge5a6b6982011-09-09 22:41:49 +00002536
2537 // Don't duplicate annotations that are already set.
2538 for (specific_attr_iterator<AnnotateAttr>
2539 i = D->specific_attr_begin<AnnotateAttr>(),
2540 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2541 if ((*i)->getAnnotation() == SE->getString())
2542 return;
2543 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002544 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002545 SE->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002546}
2547
Chandler Carruthedc2c642011-07-02 00:01:44 +00002548static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002549 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00002550 if (Attr.getNumArgs() > 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002551 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002552 return;
2553 }
Alexis Hunt96d5c762009-11-21 08:43:09 +00002554
2555 //FIXME: The C++0x version of this attribute has more limited applicabilty
2556 // than GNU's, and should error out when it is used to specify a
2557 // weaker alignment, rather than being silently ignored.
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002558
Chris Lattner4a927cb2008-06-28 23:36:30 +00002559 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002560 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002561 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002562 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002563
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002564 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002565}
2566
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002567void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002568 // FIXME: Handle pack-expansions here.
2569 if (DiagnoseUnexpandedParameterPack(E))
2570 return;
2571
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002572 if (E->isTypeDependent() || E->isValueDependent()) {
2573 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002574 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002575 return;
2576 }
2577
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002578 SourceLocation AttrLoc = AttrRange.getBegin();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002579 // FIXME: Cache the number on the Attr object?
Chris Lattner4627b742008-06-28 23:50:44 +00002580 llvm::APSInt Alignment(32);
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002581 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2582 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2583 << "aligned" << E->getSourceRange();
Chris Lattner4627b742008-06-28 23:50:44 +00002584 return;
2585 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002586 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002587 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2588 << E->getSourceRange();
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002589 return;
2590 }
2591
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002592 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002593}
2594
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002595void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002596 // FIXME: Cache the number on the Attr object if non-dependent?
2597 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002598 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002599 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002600}
Chris Lattneracbc2d22008-06-27 22:18:37 +00002601
Chandler Carruth3ed22c32011-07-01 23:49:16 +00002602/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpd3bb5572009-07-24 19:02:52 +00002603/// type.
Chris Lattneracbc2d22008-06-27 22:18:37 +00002604///
Mike Stumpd3bb5572009-07-24 19:02:52 +00002605/// Despite what would be logical, the mode attribute is a decl attribute, not a
2606/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2607/// HImode, not an intermediate pointer.
Chandler Carruthedc2c642011-07-02 00:01:44 +00002608static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002609 // This attribute isn't documented, but glibc uses it. It changes
2610 // the width of an int or unsigned int to the specified size.
2611
2612 // Check that there aren't any arguments
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002613 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattneracbc2d22008-06-27 22:18:37 +00002614 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002615
Chris Lattneracbc2d22008-06-27 22:18:37 +00002616
2617 IdentifierInfo *Name = Attr.getParameterName();
2618 if (!Name) {
Chris Lattnera663a0a2008-06-29 00:28:59 +00002619 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002620 return;
2621 }
Daniel Dunbarafff4342009-10-18 02:09:24 +00002622
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002623 StringRef Str = Attr.getParameterName()->getName();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002624
2625 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbarafff4342009-10-18 02:09:24 +00002626 if (Str.startswith("__") && Str.endswith("__"))
2627 Str = Str.substr(2, Str.size() - 4);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002628
2629 unsigned DestWidth = 0;
2630 bool IntegerMode = true;
Eli Friedman4735374e2009-03-03 06:41:03 +00002631 bool ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00002632 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002633 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00002634 switch (Str[0]) {
2635 case 'Q': DestWidth = 8; break;
2636 case 'H': DestWidth = 16; break;
2637 case 'S': DestWidth = 32; break;
2638 case 'D': DestWidth = 64; break;
2639 case 'X': DestWidth = 96; break;
2640 case 'T': DestWidth = 128; break;
2641 }
2642 if (Str[1] == 'F') {
2643 IntegerMode = false;
2644 } else if (Str[1] == 'C') {
2645 IntegerMode = false;
2646 ComplexMode = true;
2647 } else if (Str[1] != 'I') {
2648 DestWidth = 0;
2649 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002650 break;
2651 case 4:
2652 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2653 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00002654 if (Str == "word")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002655 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbarafff4342009-10-18 02:09:24 +00002656 else if (Str == "byte")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002657 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002658 break;
2659 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00002660 if (Str == "pointer")
Douglas Gregore8bbc122011-09-02 00:18:52 +00002661 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002662 break;
2663 }
2664
2665 QualType OldTy;
Richard Smithdda56e42011-04-15 14:24:37 +00002666 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattneracbc2d22008-06-27 22:18:37 +00002667 OldTy = TD->getUnderlyingType();
2668 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2669 OldTy = VD->getType();
2670 else {
Chris Lattner3b054132008-11-19 05:08:23 +00002671 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002672 << "mode" << Attr.getRange();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002673 return;
2674 }
Eli Friedman4735374e2009-03-03 06:41:03 +00002675
John McCall9dd450b2009-09-21 23:43:11 +00002676 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman4735374e2009-03-03 06:41:03 +00002677 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2678 else if (IntegerMode) {
Douglas Gregorb90df602010-06-16 00:17:44 +00002679 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman4735374e2009-03-03 06:41:03 +00002680 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2681 } else if (ComplexMode) {
2682 if (!OldTy->isComplexType())
2683 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2684 } else {
2685 if (!OldTy->isFloatingType())
2686 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2687 }
2688
Mike Stump87c57ac2009-05-16 07:39:55 +00002689 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2690 // and friends, at least with glibc.
2691 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2692 // width on unusual platforms.
Eli Friedman1efaaea2009-02-13 02:31:07 +00002693 // FIXME: Make sure floating-point mappings are accurate
2694 // FIXME: Support XF and TF types
Chris Lattneracbc2d22008-06-27 22:18:37 +00002695 QualType NewTy;
2696 switch (DestWidth) {
2697 case 0:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002698 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002699 return;
2700 default:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002701 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002702 return;
2703 case 8:
Eli Friedman4735374e2009-03-03 06:41:03 +00002704 if (!IntegerMode) {
2705 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2706 return;
2707 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002708 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002709 NewTy = S.Context.SignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002710 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002711 NewTy = S.Context.UnsignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002712 break;
2713 case 16:
Eli Friedman4735374e2009-03-03 06:41:03 +00002714 if (!IntegerMode) {
2715 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2716 return;
2717 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00002718 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002719 NewTy = S.Context.ShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002720 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002721 NewTy = S.Context.UnsignedShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002722 break;
2723 case 32:
2724 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00002725 NewTy = S.Context.FloatTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002726 else if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00002727 NewTy = S.Context.IntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002728 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00002729 NewTy = S.Context.UnsignedIntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002730 break;
2731 case 64:
2732 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00002733 NewTy = S.Context.DoubleTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002734 else if (OldTy->isSignedIntegerType())
Douglas Gregore8bbc122011-09-02 00:18:52 +00002735 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00002736 NewTy = S.Context.LongTy;
2737 else
2738 NewTy = S.Context.LongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002739 else
Douglas Gregore8bbc122011-09-02 00:18:52 +00002740 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00002741 NewTy = S.Context.UnsignedLongTy;
2742 else
2743 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002744 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00002745 case 96:
2746 NewTy = S.Context.LongDoubleTy;
2747 break;
Eli Friedman1efaaea2009-02-13 02:31:07 +00002748 case 128:
2749 if (!IntegerMode) {
2750 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2751 return;
2752 }
Anders Carlsson88ea2452009-12-29 07:07:36 +00002753 if (OldTy->isSignedIntegerType())
2754 NewTy = S.Context.Int128Ty;
2755 else
2756 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman4735374e2009-03-03 06:41:03 +00002757 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00002758 }
2759
Eli Friedman4735374e2009-03-03 06:41:03 +00002760 if (ComplexMode) {
2761 NewTy = S.Context.getComplexType(NewTy);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002762 }
2763
2764 // Install the new type.
Richard Smithdda56e42011-04-15 14:24:37 +00002765 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCall703a3f82009-10-24 08:00:42 +00002766 // FIXME: preserve existing source info.
John McCallbcd03502009-12-07 02:54:59 +00002767 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCall703a3f82009-10-24 08:00:42 +00002768 } else
Chris Lattneracbc2d22008-06-27 22:18:37 +00002769 cast<ValueDecl>(D)->setType(NewTy);
2770}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00002771
Chandler Carruthedc2c642011-07-02 00:01:44 +00002772static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson76187b42009-02-13 06:46:13 +00002773 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002774 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson76187b42009-02-13 06:46:13 +00002775 return;
Anders Carlsson63784f42009-02-13 08:11:52 +00002776
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002777 if (!isFunctionOrMethod(D)) {
Anders Carlsson76187b42009-02-13 06:46:13 +00002778 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002779 << Attr.getName() << ExpectedFunction;
Anders Carlsson76187b42009-02-13 06:46:13 +00002780 return;
2781 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002782
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002783 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlsson76187b42009-02-13 06:46:13 +00002784}
2785
Chandler Carruthedc2c642011-07-02 00:01:44 +00002786static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson88097122009-02-19 19:16:48 +00002787 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002788 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson88097122009-02-19 19:16:48 +00002789 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002790
Mike Stumpd3bb5572009-07-24 19:02:52 +00002791
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002792 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00002793 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002794 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00002795 return;
2796 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002797
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002798 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson88097122009-02-19 19:16:48 +00002799}
2800
Chandler Carruthedc2c642011-07-02 00:01:44 +00002801static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2802 const AttributeList &Attr) {
Chris Lattner3c77a352010-06-22 00:03:40 +00002803 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002804 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner3c77a352010-06-22 00:03:40 +00002805 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002806
Chris Lattner3c77a352010-06-22 00:03:40 +00002807
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002808 if (!isa<FunctionDecl>(D)) {
Chris Lattner3c77a352010-06-22 00:03:40 +00002809 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002810 << Attr.getName() << ExpectedFunction;
Chris Lattner3c77a352010-06-22 00:03:40 +00002811 return;
2812 }
2813
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002814 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00002815 S.Context));
Chris Lattner3c77a352010-06-22 00:03:40 +00002816}
2817
Chandler Carruthedc2c642011-07-02 00:01:44 +00002818static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002819 if (S.LangOpts.CUDA) {
2820 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002821 if (Attr.hasParameterOrArguments()) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002822 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2823 return;
2824 }
2825
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002826 if (!isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002827 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002828 << Attr.getName() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002829 return;
2830 }
2831
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002832 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002833 } else {
2834 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2835 }
2836}
2837
Chandler Carruthedc2c642011-07-02 00:01:44 +00002838static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002839 if (S.LangOpts.CUDA) {
2840 // check the attribute arguments.
2841 if (Attr.getNumArgs() != 0) {
2842 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2843 return;
2844 }
2845
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002846 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002847 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002848 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002849 return;
2850 }
2851
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002852 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002853 } else {
2854 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2855 }
2856}
2857
Chandler Carruthedc2c642011-07-02 00:01:44 +00002858static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002859 if (S.LangOpts.CUDA) {
2860 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002861 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002862 return;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002863
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002864 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002866 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002867 return;
2868 }
2869
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002870 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00002871 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara6d810632010-12-14 22:11:44 +00002872 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00002873 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2874 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2875 << FD->getType()
2876 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2877 "void");
2878 } else {
2879 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2880 << FD->getType();
2881 }
2882 return;
2883 }
2884
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002885 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002886 } else {
2887 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2888 }
2889}
2890
Chandler Carruthedc2c642011-07-02 00:01:44 +00002891static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002892 if (S.LangOpts.CUDA) {
2893 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002894 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002895 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002896
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002897
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002898 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002899 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002900 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002901 return;
2902 }
2903
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002904 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002905 } else {
2906 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2907 }
2908}
2909
Chandler Carruthedc2c642011-07-02 00:01:44 +00002910static void handleSharedAttr(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<VarDecl>(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() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002920 return;
2921 }
2922
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002923 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00002924 } else {
2925 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2926 }
2927}
2928
Chandler Carruthedc2c642011-07-02 00:01:44 +00002929static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00002930 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002931 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnereaad6b72009-04-14 16:30:50 +00002932 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002933
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002934 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattner4225e232009-04-14 17:02:11 +00002935 if (Fn == 0) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00002936 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002937 << Attr.getName() << ExpectedFunction;
Chris Lattnereaad6b72009-04-14 16:30:50 +00002938 return;
2939 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002940
Douglas Gregor35b57532009-10-27 21:01:01 +00002941 if (!Fn->isInlineSpecified()) {
Chris Lattnerddf6ca02009-04-20 19:12:28 +00002942 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00002943 return;
2944 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002945
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002946 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattnereaad6b72009-04-14 16:30:50 +00002947}
2948
Chandler Carruthedc2c642011-07-02 00:01:44 +00002949static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002950 if (hasDeclarator(D)) return;
Abramo Bagnara50099372010-04-30 13:10:51 +00002951
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002952 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall3882ace2011-01-05 12:14:39 +00002953 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2954 CallingConv CC;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002955 if (S.CheckCallingConvAttr(Attr, CC))
John McCall3882ace2011-01-05 12:14:39 +00002956 return;
2957
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002958 if (!isa<ObjCMethodDecl>(D)) {
2959 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2960 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00002961 return;
2962 }
2963
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002964 switch (Attr.getKind()) {
Abramo Bagnara50099372010-04-30 13:10:51 +00002965 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002966 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002967 return;
2968 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002969 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002970 return;
Douglas Gregora941dca2010-05-18 16:57:00 +00002971 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002972 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor4d13d102010-08-30 23:30:49 +00002973 return;
Abramo Bagnara50099372010-04-30 13:10:51 +00002974 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002975 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00002976 return;
Dawn Perchik335e16b2010-09-03 01:29:35 +00002977 case AttributeList::AT_pascal:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002978 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik335e16b2010-09-03 01:29:35 +00002979 return;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002980 case AttributeList::AT_pcs: {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002981 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002982 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00002983 if (!Str || !Str->isAscii()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002984 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002985 << "pcs" << 1;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002986 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002987 return;
2988 }
2989
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002990 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002991 PcsAttr::PCSType PCS;
2992 if (StrRef == "aapcs")
2993 PCS = PcsAttr::AAPCS;
2994 else if (StrRef == "aapcs-vfp")
2995 PCS = PcsAttr::AAPCS_VFP;
2996 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002997 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2998 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00002999 return;
3000 }
3001
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003002 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003003 }
Abramo Bagnara50099372010-04-30 13:10:51 +00003004 default:
3005 llvm_unreachable("unexpected attribute kind");
3006 return;
3007 }
3008}
3009
Chandler Carruthedc2c642011-07-02 00:01:44 +00003010static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth9312c642011-07-11 23:33:05 +00003011 assert(!Attr.isInvalid());
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003012 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003013}
3014
John McCall3882ace2011-01-05 12:14:39 +00003015bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3016 if (attr.isInvalid())
3017 return true;
3018
Ted Kremenek1551d552011-04-15 05:49:29 +00003019 if ((attr.getNumArgs() != 0 &&
3020 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3021 attr.getParameterName()) {
John McCall3882ace2011-01-05 12:14:39 +00003022 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3023 attr.setInvalid();
3024 return true;
3025 }
3026
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003027 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3028 // move to TargetAttributesSema one day.
John McCall3882ace2011-01-05 12:14:39 +00003029 switch (attr.getKind()) {
3030 case AttributeList::AT_cdecl: CC = CC_C; break;
3031 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3032 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3033 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3034 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003035 case AttributeList::AT_pcs: {
3036 Expr *Arg = attr.getArg(0);
3037 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003038 if (!Str || !Str->isAscii()) {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003039 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3040 << "pcs" << 1;
3041 attr.setInvalid();
3042 return true;
3043 }
3044
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003045 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003046 if (StrRef == "aapcs") {
3047 CC = CC_AAPCS;
3048 break;
3049 } else if (StrRef == "aapcs-vfp") {
3050 CC = CC_AAPCS_VFP;
3051 break;
3052 }
3053 // FALLS THROUGH
3054 }
John McCall3882ace2011-01-05 12:14:39 +00003055 default: llvm_unreachable("unexpected attribute kind"); return true;
3056 }
3057
3058 return false;
3059}
3060
Chandler Carruthedc2c642011-07-02 00:01:44 +00003061static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003062 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00003063
3064 unsigned numParams;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003065 if (S.CheckRegparmAttr(Attr, numParams))
John McCall3882ace2011-01-05 12:14:39 +00003066 return;
3067
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003068 if (!isa<ObjCMethodDecl>(D)) {
3069 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3070 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003071 return;
3072 }
Eli Friedman7044b762009-03-27 21:06:47 +00003073
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003074 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall3882ace2011-01-05 12:14:39 +00003075}
3076
3077/// Checks a regparm attribute, returning true if it is ill-formed and
3078/// otherwise setting numParams to the appropriate value.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003079bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3080 if (Attr.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00003081 return true;
3082
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003083 if (Attr.getNumArgs() != 1) {
3084 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3085 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003086 return true;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003087 }
Eli Friedman7044b762009-03-27 21:06:47 +00003088
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003089 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman7044b762009-03-27 21:06:47 +00003090 llvm::APSInt NumParams(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00003091 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall3882ace2011-01-05 12:14:39 +00003092 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003093 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman7044b762009-03-27 21:06:47 +00003094 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003095 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003096 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003097 }
3098
Douglas Gregore8bbc122011-09-02 00:18:52 +00003099 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003100 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00003101 << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003102 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003103 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003104 }
3105
John McCall3882ace2011-01-05 12:14:39 +00003106 numParams = NumParams.getZExtValue();
Douglas Gregore8bbc122011-09-02 00:18:52 +00003107 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003108 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregore8bbc122011-09-02 00:18:52 +00003109 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003110 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003111 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003112 }
3113
John McCall3882ace2011-01-05 12:14:39 +00003114 return false;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003115}
3116
Chandler Carruthedc2c642011-07-02 00:01:44 +00003117static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne827301e2010-12-12 23:03:07 +00003118 if (S.LangOpts.CUDA) {
3119 // check the attribute arguments.
3120 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCall80ee5962011-03-02 12:15:05 +00003121 // FIXME: 0 is not okay.
3122 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003123 return;
3124 }
3125
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003126 if (!isFunctionOrMethod(D)) {
Peter Collingbourne827301e2010-12-12 23:03:07 +00003127 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003128 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003129 return;
3130 }
3131
3132 Expr *MaxThreadsExpr = Attr.getArg(0);
3133 llvm::APSInt MaxThreads(32);
3134 if (MaxThreadsExpr->isTypeDependent() ||
3135 MaxThreadsExpr->isValueDependent() ||
3136 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3137 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3138 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3139 return;
3140 }
3141
3142 llvm::APSInt MinBlocks(32);
3143 if (Attr.getNumArgs() > 1) {
3144 Expr *MinBlocksExpr = Attr.getArg(1);
3145 if (MinBlocksExpr->isTypeDependent() ||
3146 MinBlocksExpr->isValueDependent() ||
3147 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3148 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3149 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3150 return;
3151 }
3152 }
3153
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003154 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne827301e2010-12-12 23:03:07 +00003155 MaxThreads.getZExtValue(),
3156 MinBlocks.getZExtValue()));
3157 } else {
3158 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3159 }
3160}
3161
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003162//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003163// Checker-specific attribute handlers.
3164//===----------------------------------------------------------------------===//
3165
John McCalled433932011-01-25 03:31:58 +00003166static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003167 return type->isDependentType() ||
3168 type->isObjCObjectPointerType() ||
3169 S.Context.isObjCNSObjectType(type);
John McCalled433932011-01-25 03:31:58 +00003170}
3171static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003172 return type->isDependentType() ||
3173 type->isPointerType() ||
3174 isValidSubjectOfNSAttribute(S, type);
John McCalled433932011-01-25 03:31:58 +00003175}
3176
Chandler Carruthedc2c642011-07-02 00:01:44 +00003177static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003178 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCalled433932011-01-25 03:31:58 +00003179 if (!param) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003180 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003181 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCalled433932011-01-25 03:31:58 +00003182 return;
3183 }
3184
3185 bool typeOK, cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003186 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCalled433932011-01-25 03:31:58 +00003187 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3188 cf = false;
3189 } else {
3190 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3191 cf = true;
3192 }
3193
3194 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003195 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003196 << Attr.getRange() << Attr.getName() << cf;
John McCalled433932011-01-25 03:31:58 +00003197 return;
3198 }
3199
3200 if (cf)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003201 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003202 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003203 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003204}
3205
Chandler Carruthedc2c642011-07-02 00:01:44 +00003206static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3207 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003208 if (!isa<ObjCMethodDecl>(D)) {
3209 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003210 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCalled433932011-01-25 03:31:58 +00003211 return;
3212 }
3213
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003214 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003215}
3216
Chandler Carruthedc2c642011-07-02 00:01:44 +00003217static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3218 const AttributeList &Attr) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003219
John McCalled433932011-01-25 03:31:58 +00003220 QualType returnType;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003221
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003222 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003223 returnType = MD->getResultType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003224 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00003225 returnType = PD->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003226 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3227 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCall31168b02011-06-15 23:02:42 +00003228 return; // ignore: was handled as a type attribute
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003229 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003230 returnType = FD->getResultType();
Ted Kremenek3b204e42009-05-13 21:07:32 +00003231 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003232 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003233 << Attr.getRange() << Attr.getName()
John McCall5fca7ea2011-03-02 12:29:23 +00003234 << ExpectedFunctionOrMethod;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003235 return;
3236 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003237
John McCalled433932011-01-25 03:31:58 +00003238 bool typeOK;
3239 bool cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003240 switch (Attr.getKind()) {
John McCalled433932011-01-25 03:31:58 +00003241 default: llvm_unreachable("invalid ownership attribute"); return;
3242 case AttributeList::AT_ns_returns_autoreleased:
3243 case AttributeList::AT_ns_returns_retained:
3244 case AttributeList::AT_ns_returns_not_retained:
3245 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3246 cf = false;
3247 break;
3248
3249 case AttributeList::AT_cf_returns_retained:
3250 case AttributeList::AT_cf_returns_not_retained:
3251 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3252 cf = true;
3253 break;
3254 }
3255
3256 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003257 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003258 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003259 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00003260 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003261
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003262 switch (Attr.getKind()) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003263 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003264 llvm_unreachable("invalid ownership attribute");
John McCalled433932011-01-25 03:31:58 +00003265 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003266 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCalled433932011-01-25 03:31:58 +00003267 S.Context));
3268 return;
Ted Kremenekd9c66632010-02-18 00:05:45 +00003269 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003270 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003271 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003272 return;
3273 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003274 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003275 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003276 return;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003277 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003278 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003279 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003280 return;
3281 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003282 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003283 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003284 return;
3285 };
3286}
3287
John McCallcf166702011-07-22 08:53:00 +00003288static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3289 const AttributeList &attr) {
3290 SourceLocation loc = attr.getLoc();
3291
3292 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3293
3294 if (!isa<ObjCMethodDecl>(method)) {
3295 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3296 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3297 return;
3298 }
3299
3300 // Check that the method returns a normal pointer.
3301 QualType resultType = method->getResultType();
Fariborz Jahanian044a5be2011-09-30 20:50:23 +00003302
3303 if (!resultType->isReferenceType() &&
3304 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCallcf166702011-07-22 08:53:00 +00003305 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3306 << SourceRange(loc)
3307 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3308
3309 // Drop the attribute.
3310 return;
3311 }
3312
3313 method->addAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003314 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCallcf166702011-07-22 08:53:00 +00003315}
3316
John McCall32f5fe12011-09-30 05:12:12 +00003317/// Handle cf_audited_transfer and cf_unknown_transfer.
3318static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3319 if (!isa<FunctionDecl>(D)) {
3320 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3321 << A.getRange() << A.getName() << 0 /*function*/;
3322 return;
3323 }
3324
3325 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3326
3327 // Check whether there's a conflicting attribute already present.
3328 Attr *Existing;
3329 if (IsAudited) {
3330 Existing = D->getAttr<CFUnknownTransferAttr>();
3331 } else {
3332 Existing = D->getAttr<CFAuditedTransferAttr>();
3333 }
3334 if (Existing) {
3335 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3336 << A.getName()
3337 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3338 << A.getRange() << Existing->getRange();
3339 return;
3340 }
3341
3342 // All clear; add the attribute.
3343 if (IsAudited) {
3344 D->addAttr(
3345 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3346 } else {
3347 D->addAttr(
3348 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3349 }
3350}
3351
John McCallf1e8b342011-09-29 07:17:38 +00003352static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3353 const AttributeList &Attr) {
3354 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3355 if (!RD || RD->isUnion()) {
3356 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3357 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3358 }
3359
3360 IdentifierInfo *ParmName = Attr.getParameterName();
3361
3362 // In Objective-C, verify that the type names an Objective-C type.
3363 // We don't want to check this outside of ObjC because people sometimes
3364 // do crazy C declarations of Objective-C types.
3365 if (ParmName && S.getLangOptions().ObjC1) {
3366 // Check for an existing type with this name.
3367 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3368 Sema::LookupOrdinaryName);
3369 if (S.LookupName(R, Sc)) {
3370 NamedDecl *Target = R.getFoundDecl();
3371 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3372 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3373 S.Diag(Target->getLocStart(), diag::note_declared_at);
3374 }
3375 }
3376 }
3377
3378 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3379 ParmName));
3380}
3381
Chandler Carruthedc2c642011-07-02 00:01:44 +00003382static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3383 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003384 if (hasDeclarator(D)) return;
John McCall31168b02011-06-15 23:02:42 +00003385
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003386 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003387 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCall31168b02011-06-15 23:02:42 +00003388}
3389
Chandler Carruthedc2c642011-07-02 00:01:44 +00003390static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3391 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003392 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003393 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003394 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCall31168b02011-06-15 23:02:42 +00003395 return;
3396 }
3397
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003398 ValueDecl *vd = cast<ValueDecl>(D);
John McCall31168b02011-06-15 23:02:42 +00003399 QualType type = vd->getType();
3400
3401 if (!type->isDependentType() &&
3402 !type->isObjCLifetimeType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003403 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCall31168b02011-06-15 23:02:42 +00003404 << type;
3405 return;
3406 }
3407
3408 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3409
3410 // If we have no lifetime yet, check the lifetime we're presumably
3411 // going to infer.
3412 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3413 lifetime = type->getObjCARCImplicitLifetime();
3414
3415 switch (lifetime) {
3416 case Qualifiers::OCL_None:
3417 assert(type->isDependentType() &&
3418 "didn't infer lifetime for non-dependent type?");
3419 break;
3420
3421 case Qualifiers::OCL_Weak: // meaningful
3422 case Qualifiers::OCL_Strong: // meaningful
3423 break;
3424
3425 case Qualifiers::OCL_ExplicitNone:
3426 case Qualifiers::OCL_Autoreleasing:
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003427 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCall31168b02011-06-15 23:02:42 +00003428 << (lifetime == Qualifiers::OCL_Autoreleasing);
3429 break;
3430 }
3431
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003432 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003433 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCall31168b02011-06-15 23:02:42 +00003434}
3435
Charles Davis163855f2010-02-16 18:27:26 +00003436static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3437 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Picheta83957a2010-12-19 06:50:37 +00003438 Attr.getKind() == AttributeList::AT_dllexport ||
3439 Attr.getKind() == AttributeList::AT_uuid;
3440}
3441
3442//===----------------------------------------------------------------------===//
3443// Microsoft specific attribute handlers.
3444//===----------------------------------------------------------------------===//
3445
Chandler Carruthedc2c642011-07-02 00:01:44 +00003446static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet0706d202011-09-17 17:15:52 +00003447 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Picheta83957a2010-12-19 06:50:37 +00003448 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003449 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Picheta83957a2010-12-19 06:50:37 +00003450 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003451
Francois Picheta83957a2010-12-19 06:50:37 +00003452 Expr *Arg = Attr.getArg(0);
3453 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003454 if (!Str || !Str->isAscii()) {
Francois Pichet7da11662010-12-20 01:41:49 +00003455 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3456 << "uuid" << 1;
3457 return;
3458 }
3459
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003460 StringRef StrRef = Str->getString();
Francois Pichet7da11662010-12-20 01:41:49 +00003461
3462 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3463 StrRef.back() == '}';
3464
3465 // Validate GUID length.
3466 if (IsCurly && StrRef.size() != 38) {
3467 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3468 return;
3469 }
3470 if (!IsCurly && StrRef.size() != 36) {
3471 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3472 return;
3473 }
3474
3475 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3476 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003477 StringRef::iterator I = StrRef.begin();
Anders Carlsson19588aa2011-01-23 21:07:30 +00003478 if (IsCurly) // Skip the optional '{'
3479 ++I;
3480
3481 for (int i = 0; i < 36; ++i) {
Francois Pichet7da11662010-12-20 01:41:49 +00003482 if (i == 8 || i == 13 || i == 18 || i == 23) {
3483 if (*I != '-') {
3484 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3485 return;
3486 }
3487 } else if (!isxdigit(*I)) {
3488 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3489 return;
3490 }
3491 I++;
3492 }
Francois Picheta83957a2010-12-19 06:50:37 +00003493
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003494 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Picheta83957a2010-12-19 06:50:37 +00003495 Str->getString()));
Francois Pichet7da11662010-12-20 01:41:49 +00003496 } else
Francois Picheta83957a2010-12-19 06:50:37 +00003497 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davis163855f2010-02-16 18:27:26 +00003498}
3499
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003500//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003501// Top Level Sema Entry Points
3502//===----------------------------------------------------------------------===//
3503
Chandler Carruthedc2c642011-07-02 00:01:44 +00003504static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3505 const AttributeList &Attr) {
Peter Collingbourneb331b262011-01-21 02:08:45 +00003506 switch (Attr.getKind()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003507 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3508 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3509 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourneb331b262011-01-21 02:08:45 +00003510 default:
3511 break;
3512 }
3513}
Abramo Bagnara50099372010-04-30 13:10:51 +00003514
Chandler Carruthedc2c642011-07-02 00:01:44 +00003515static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3516 const AttributeList &Attr) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003517 switch (Attr.getKind()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003518 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3519 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek26bde772010-05-19 17:38:06 +00003520 case AttributeList::AT_IBOutletCollection:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003521 handleIBOutletCollection(S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003522 case AttributeList::AT_address_space:
Peter Collingbourne599cb8e2011-03-18 22:38:29 +00003523 case AttributeList::AT_opencl_image_access:
Fariborz Jahanian257eac62009-02-18 17:52:36 +00003524 case AttributeList::AT_objc_gc:
John Thompson47981222009-12-04 21:51:28 +00003525 case AttributeList::AT_vector_size:
Bob Wilson118baf72010-11-16 00:32:24 +00003526 case AttributeList::AT_neon_vector_type:
3527 case AttributeList::AT_neon_polyvector_type:
Mike Stumpd3bb5572009-07-24 19:02:52 +00003528 // Ignore these, these are type attributes, handled by
3529 // ProcessTypeAttributes.
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003530 break;
Peter Collingbourneb331b262011-01-21 02:08:45 +00003531 case AttributeList::AT_device:
3532 case AttributeList::AT_host:
3533 case AttributeList::AT_overloadable:
3534 // Ignore, this is a non-inheritable attribute, handled
3535 // by ProcessNonInheritableDeclAttr.
3536 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003537 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3538 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003539 case AttributeList::AT_always_inline:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003540 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00003541 case AttributeList::AT_analyzer_noreturn:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003542 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3543 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3544 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Alexis Hunt96d5c762009-11-21 08:43:09 +00003545 case AttributeList::AT_carries_dependency:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003546 handleDependencyAttr (S, D, Attr); break;
3547 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3548 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3549 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3550 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3551 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003552 case AttributeList::AT_ext_vector_type:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003553 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003554 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003555 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3556 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3557 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3558 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003559 case AttributeList::AT_launch_bounds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003560 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne827301e2010-12-12 23:03:07 +00003561 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003562 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3563 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3564 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3565 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3566 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00003567 case AttributeList::AT_ownership_returns:
3568 case AttributeList::AT_ownership_takes:
3569 case AttributeList::AT_ownership_holds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003570 handleOwnershipAttr (S, D, Attr); break;
3571 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3572 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3573 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3574 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3575 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003576
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +00003577 case AttributeList::AT_objc_ownership:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003578 handleObjCOwnershipAttr(S, D, Attr); break;
John McCall31168b02011-06-15 23:02:42 +00003579 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003580 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCall31168b02011-06-15 23:02:42 +00003581
John McCallcf166702011-07-22 08:53:00 +00003582 case AttributeList::AT_objc_returns_inner_pointer:
3583 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3584
John McCallf1e8b342011-09-29 07:17:38 +00003585 case AttributeList::AT_ns_bridged:
3586 handleNSBridgedAttr(S, scope, D, Attr); break;
3587
John McCall32f5fe12011-09-30 05:12:12 +00003588 case AttributeList::AT_cf_audited_transfer:
3589 case AttributeList::AT_cf_unknown_transfer:
3590 handleCFTransferAttr(S, D, Attr); break;
3591
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003592 // Checker-specific.
John McCalled433932011-01-25 03:31:58 +00003593 case AttributeList::AT_cf_consumed:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003594 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCalled433932011-01-25 03:31:58 +00003595 case AttributeList::AT_ns_consumes_self:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003596 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCalled433932011-01-25 03:31:58 +00003597
3598 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenekd9c66632010-02-18 00:05:45 +00003599 case AttributeList::AT_ns_returns_not_retained:
3600 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003601 case AttributeList::AT_ns_returns_retained:
3602 case AttributeList::AT_cf_returns_retained:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003603 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003604
Nate Begemanf2758702009-06-26 06:32:41 +00003605 case AttributeList::AT_reqd_wg_size:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003606 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begemanf2758702009-06-26 06:32:41 +00003607
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003608 case AttributeList::AT_init_priority:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003609 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00003610
Chandler Carruthedc2c642011-07-02 00:01:44 +00003611 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3612 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3613 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3614 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00003615 case AttributeList::AT_arc_weakref_unavailable:
3616 handleArcWeakrefUnavailableAttr (S, D, Attr);
3617 break;
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00003618 case AttributeList::AT_objc_suppress_autosynthesis:
3619 handleObjCSuppressAutosynthesisAttr (S, D, Attr);
3620 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003621 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindola70107f92011-10-03 14:59:42 +00003622 case AttributeList::AT_returns_twice:
3623 handleReturnsTwiceAttr(S, D, Attr);
3624 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003625 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3626 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3627 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner237f2752009-02-14 07:37:35 +00003628 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003629 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3630 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3631 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003632 case AttributeList::AT_transparent_union:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003633 handleTransparentUnionAttr(S, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003634 break;
Chris Lattner677a3582009-02-14 08:09:34 +00003635 case AttributeList::AT_objc_exception:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003636 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner677a3582009-02-14 08:09:34 +00003637 break;
John McCall86bc21f2011-03-02 11:33:24 +00003638 case AttributeList::AT_objc_method_family:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003639 handleObjCMethodFamilyAttr(S, D, Attr);
John McCall86bc21f2011-03-02 11:33:24 +00003640 break;
Chandler Carruthedc2c642011-07-02 00:01:44 +00003641 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3642 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3643 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3644 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3645 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3646 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3647 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3648 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3649 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003650 case AttributeList::IgnoredAttribute:
Anders Carlssonb4f31342009-02-13 08:16:43 +00003651 // Just ignore
3652 break;
Chris Lattner3c77a352010-06-22 00:03:40 +00003653 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruthedc2c642011-07-02 00:01:44 +00003654 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner3c77a352010-06-22 00:03:40 +00003655 break;
John McCallab26cfa2010-02-05 21:31:56 +00003656 case AttributeList::AT_stdcall:
3657 case AttributeList::AT_cdecl:
3658 case AttributeList::AT_fastcall:
Douglas Gregora941dca2010-05-18 16:57:00 +00003659 case AttributeList::AT_thiscall:
Dawn Perchik335e16b2010-09-03 01:29:35 +00003660 case AttributeList::AT_pascal:
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003661 case AttributeList::AT_pcs:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003662 handleCallConvAttr(S, D, Attr);
John McCallab26cfa2010-02-05 21:31:56 +00003663 break;
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003664 case AttributeList::AT_opencl_kernel_function:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003665 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003666 break;
Francois Picheta83957a2010-12-19 06:50:37 +00003667 case AttributeList::AT_uuid:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003668 handleUuidAttr(S, D, Attr);
Francois Picheta83957a2010-12-19 06:50:37 +00003669 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00003670
3671 // Thread safety attributes:
3672 case AttributeList::AT_guarded_var:
3673 handleGuardedVarAttr(S, D, Attr);
3674 break;
3675 case AttributeList::AT_pt_guarded_var:
3676 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3677 break;
3678 case AttributeList::AT_scoped_lockable:
3679 handleLockableAttr(S, D, Attr, /*scoped = */true);
3680 break;
3681 case AttributeList::AT_no_thread_safety_analysis:
3682 handleNoThreadSafetyAttr(S, D, Attr);
3683 break;
3684 case AttributeList::AT_lockable:
3685 handleLockableAttr(S, D, Attr);
3686 break;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00003687 case AttributeList::AT_guarded_by:
3688 handleGuardedByAttr(S, D, Attr);
3689 break;
3690 case AttributeList::AT_pt_guarded_by:
3691 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3692 break;
3693 case AttributeList::AT_exclusive_lock_function:
3694 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3695 break;
3696 case AttributeList::AT_exclusive_locks_required:
3697 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3698 break;
3699 case AttributeList::AT_exclusive_trylock_function:
3700 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3701 break;
3702 case AttributeList::AT_lock_returned:
3703 handleLockReturnedAttr(S, D, Attr);
3704 break;
3705 case AttributeList::AT_locks_excluded:
3706 handleLocksExcludedAttr(S, D, Attr);
3707 break;
3708 case AttributeList::AT_shared_lock_function:
3709 handleLockFunAttr(S, D, Attr);
3710 break;
3711 case AttributeList::AT_shared_locks_required:
3712 handleLocksRequiredAttr(S, D, Attr);
3713 break;
3714 case AttributeList::AT_shared_trylock_function:
3715 handleTrylockFunAttr(S, D, Attr);
3716 break;
3717 case AttributeList::AT_unlock_function:
3718 handleUnlockFunAttr(S, D, Attr);
3719 break;
3720 case AttributeList::AT_acquired_before:
3721 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3722 break;
3723 case AttributeList::AT_acquired_after:
3724 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3725 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00003726
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003727 default:
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00003728 // Ask target about the attribute.
3729 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3730 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruthdd1bc0f2010-07-08 09:42:26 +00003731 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3732 << Attr.getName();
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003733 break;
3734 }
3735}
3736
Peter Collingbourneb331b262011-01-21 02:08:45 +00003737/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3738/// the attribute applies to decls. If the attribute is a type attribute, just
3739/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3740/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruthedc2c642011-07-02 00:01:44 +00003741static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3742 const AttributeList &Attr,
Peter Collingbourneb331b262011-01-21 02:08:45 +00003743 bool NonInheritable, bool Inheritable) {
3744 if (Attr.isInvalid())
3745 return;
3746
3747 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3748 // FIXME: Try to deal with other __declspec attributes!
3749 return;
3750
3751 if (NonInheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00003752 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00003753
3754 if (Inheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00003755 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00003756}
3757
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003758/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3759/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherbc638a82010-12-01 22:13:54 +00003760void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourneb331b262011-01-21 02:08:45 +00003761 const AttributeList *AttrList,
3762 bool NonInheritable, bool Inheritable) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00003763 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruthedc2c642011-07-02 00:01:44 +00003764 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindolac18086a2010-02-23 22:00:30 +00003765 }
3766
3767 // GCC accepts
3768 // static int a9 __attribute__((weakref));
3769 // but that looks really pointless. We reject it.
Peter Collingbourneb331b262011-01-21 02:08:45 +00003770 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00003771 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekd21139a2010-07-31 01:52:11 +00003772 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindolac18086a2010-02-23 22:00:30 +00003773 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003774 }
3775}
3776
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00003777// Annotation attributes are the only attributes allowed after an access
3778// specifier.
3779bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3780 const AttributeList *AttrList) {
3781 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3782 if (l->getKind() == AttributeList::AT_annotate) {
3783 handleAnnotateAttr(*this, ASDecl, *l);
3784 } else {
3785 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3786 return true;
3787 }
3788 }
3789
3790 return false;
3791}
3792
John McCall42856de2011-10-01 05:17:03 +00003793/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3794/// contains any decl attributes that we should warn about.
3795static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3796 for ( ; A; A = A->getNext()) {
3797 // Only warn if the attribute is an unignored, non-type attribute.
3798 if (A->isUsedAsTypeAttr()) continue;
3799 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3800
3801 if (A->getKind() == AttributeList::UnknownAttribute) {
3802 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3803 << A->getName() << A->getRange();
3804 } else {
3805 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3806 << A->getName() << A->getRange();
3807 }
3808 }
3809}
3810
3811/// checkUnusedDeclAttributes - Given a declarator which is not being
3812/// used to build a declaration, complain about any decl attributes
3813/// which might be lying around on it.
3814void Sema::checkUnusedDeclAttributes(Declarator &D) {
3815 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3816 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3817 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3818 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3819}
3820
Ryan Flynn7d470f32009-07-30 03:15:39 +00003821/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3822/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedmance3e2c82011-09-07 04:05:06 +00003823NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3824 SourceLocation Loc) {
Ryan Flynnd963a492009-07-31 02:52:19 +00003825 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynn7d470f32009-07-30 03:15:39 +00003826 NamedDecl *NewD = 0;
3827 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedmance3e2c82011-09-07 04:05:06 +00003828 FunctionDecl *NewFD;
3829 // FIXME: Missing call to CheckFunctionDeclaration().
3830 // FIXME: Mangling?
3831 // FIXME: Is the qualifier info correct?
3832 // FIXME: Is the DeclContext correct?
3833 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3834 Loc, Loc, DeclarationName(II),
3835 FD->getType(), FD->getTypeSourceInfo(),
3836 SC_None, SC_None,
3837 false/*isInlineSpecified*/,
3838 FD->hasPrototype(),
3839 false/*isConstexprSpecified*/);
3840 NewD = NewFD;
3841
3842 if (FD->getQualifier())
Douglas Gregor14454802011-02-25 02:25:35 +00003843 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedmance3e2c82011-09-07 04:05:06 +00003844
3845 // Fake up parameter variables; they are declared as if this were
3846 // a typedef.
3847 QualType FDTy = FD->getType();
3848 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3849 SmallVector<ParmVarDecl*, 16> Params;
3850 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3851 AE = FT->arg_type_end(); AI != AE; ++AI) {
3852 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3853 Param->setScopeInfo(0, Params.size());
3854 Params.push_back(Param);
3855 }
David Blaikie9c70e042011-09-21 18:16:56 +00003856 NewFD->setParams(Params);
John McCall3e11ebe2010-03-15 10:12:16 +00003857 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003858 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3859 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00003860 VD->getInnerLocStart(), VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00003861 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00003862 VD->getStorageClass(),
3863 VD->getStorageClassAsWritten());
John McCall3e11ebe2010-03-15 10:12:16 +00003864 if (VD->getQualifier()) {
3865 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregor14454802011-02-25 02:25:35 +00003866 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCall3e11ebe2010-03-15 10:12:16 +00003867 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003868 }
3869 return NewD;
3870}
3871
3872/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3873/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00003874void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00003875 if (W.getUsed()) return; // only do this once
3876 W.setUsed(true);
3877 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3878 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedmance3e2c82011-09-07 04:05:06 +00003879 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003880 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3881 NDId->getName()));
3882 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnere6eab982009-09-08 18:10:11 +00003883 WeakTopLevelDecl.push_back(NewD);
3884 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3885 // to insert Decl at TU scope, sorry.
3886 DeclContext *SavedContext = CurContext;
3887 CurContext = Context.getTranslationUnitDecl();
3888 PushOnScopeChains(NewD, S);
3889 CurContext = SavedContext;
3890 } else { // just add weak to existing
Alexis Huntdcfba7b2010-08-18 23:23:40 +00003891 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynn7d470f32009-07-30 03:15:39 +00003892 }
3893}
3894
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003895/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3896/// it, apply them to D. This is a bit tricky because PD can have attributes
3897/// specified in many different places, and we need to find and apply them all.
Peter Collingbourneb331b262011-01-21 02:08:45 +00003898void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3899 bool NonInheritable, bool Inheritable) {
John McCall6fe02402010-10-27 00:59:00 +00003900 // It's valid to "forward-declare" #pragma weak, in which case we
3901 // have to do this.
Douglas Gregor1c4bfe52011-07-28 18:09:57 +00003902 if (Inheritable) {
3903 LoadExternalWeakUndeclaredIdentifiers();
3904 if (!WeakUndeclaredIdentifiers.empty()) {
3905 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3906 if (IdentifierInfo *Id = ND->getIdentifier()) {
3907 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3908 = WeakUndeclaredIdentifiers.find(Id);
3909 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3910 WeakInfo W = I->second;
3911 DeclApplyPragmaWeak(S, ND, W);
3912 WeakUndeclaredIdentifiers[Id] = W;
3913 }
John McCall6fe02402010-10-27 00:59:00 +00003914 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00003915 }
3916 }
3917 }
3918
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003919 // Apply decl attributes from the DeclSpec if present.
John McCall53fa7142010-12-24 02:08:15 +00003920 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003921 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003922
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003923 // Walk the declarator structure, applying decl attributes that were in a type
3924 // position to the decl itself. This handles cases like:
3925 // int *__attr__(x)** D;
3926 // when X is a decl attribute.
3927 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3928 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003929 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00003930
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003931 // Finally, apply any attributes on the decl itself.
3932 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourneb331b262011-01-21 02:08:45 +00003933 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003934}
John McCall28a6aea2009-11-04 02:18:39 +00003935
John McCall31168b02011-06-15 23:02:42 +00003936/// Is the given declaration allowed to use a forbidden type?
3937static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3938 // Private ivars are always okay. Unfortunately, people don't
3939 // always properly make their ivars private, even in system headers.
3940 // Plus we need to make fields okay, too.
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00003941 // Function declarations in sys headers will be marked unavailable.
3942 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3943 !isa<FunctionDecl>(decl))
John McCall31168b02011-06-15 23:02:42 +00003944 return false;
3945
3946 // Require it to be declared in a system header.
3947 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3948}
3949
3950/// Handle a delayed forbidden-type diagnostic.
3951static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3952 Decl *decl) {
3953 if (decl && isForbiddenTypeAllowed(S, decl)) {
3954 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3955 "this system declaration uses an unsupported type"));
3956 return;
3957 }
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00003958 if (S.getLangOptions().ObjCAutoRefCount)
3959 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
3960 // FIXME. we may want to supress diagnostics for all
3961 // kind of forbidden type messages on unavailable functions.
3962 if (FD->hasAttr<UnavailableAttr>() &&
3963 diag.getForbiddenTypeDiagnostic() ==
3964 diag::err_arc_array_param_no_ownership) {
3965 diag.Triggered = true;
3966 return;
3967 }
3968 }
John McCall31168b02011-06-15 23:02:42 +00003969
3970 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3971 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3972 diag.Triggered = true;
3973}
3974
John McCallc1465822011-02-14 07:13:47 +00003975// This duplicates a vector push_back but hides the need to know the
3976// size of the type.
3977void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3978 assert(StackSize <= StackCapacity);
3979
3980 // Grow the stack if necessary.
3981 if (StackSize == StackCapacity) {
3982 unsigned newCapacity = 2 * StackCapacity + 2;
3983 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3984 const char *oldBuffer = (const char*) Stack;
3985
3986 if (StackCapacity)
3987 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3988
3989 delete[] oldBuffer;
3990 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3991 StackCapacity = newCapacity;
3992 }
3993
3994 assert(StackSize < StackCapacity);
3995 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall86121512010-01-27 03:50:35 +00003996}
3997
John McCallc1465822011-02-14 07:13:47 +00003998void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3999 Decl *decl) {
4000 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall86121512010-01-27 03:50:35 +00004001
John McCallc1465822011-02-14 07:13:47 +00004002 // Check the invariants.
4003 assert(DD.StackSize >= state.SavedStackSize);
4004 assert(state.SavedStackSize >= DD.ActiveStackBase);
4005 assert(DD.ParsingDepth > 0);
4006
4007 // Drop the parsing depth.
4008 DD.ParsingDepth--;
4009
4010 // If there are no active diagnostics, we're done.
4011 if (DD.StackSize == DD.ActiveStackBase)
John McCall86121512010-01-27 03:50:35 +00004012 return;
4013
John McCall86121512010-01-27 03:50:35 +00004014 // We only want to actually emit delayed diagnostics when we
4015 // successfully parsed a decl.
Argyrios Kyrtzidisd8a27712011-06-24 19:59:27 +00004016 if (decl && !decl->isInvalidDecl()) {
John McCallc1465822011-02-14 07:13:47 +00004017 // We emit all the active diagnostics, not just those starting
4018 // from the saved state. The idea is this: we get one push for a
John McCall86121512010-01-27 03:50:35 +00004019 // decl spec and another for each declarator; in a decl group like:
4020 // deprecated_typedef foo, *bar, baz();
4021 // only the declarator pops will be passed decls. This is correct;
4022 // we really do need to consider delayed diagnostics from the decl spec
4023 // for each of the different declarations.
John McCallc1465822011-02-14 07:13:47 +00004024 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4025 DelayedDiagnostic &diag = DD.Stack[i];
4026 if (diag.Triggered)
John McCall86121512010-01-27 03:50:35 +00004027 continue;
4028
John McCallc1465822011-02-14 07:13:47 +00004029 switch (diag.Kind) {
John McCall86121512010-01-27 03:50:35 +00004030 case DelayedDiagnostic::Deprecation:
John McCallc1465822011-02-14 07:13:47 +00004031 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004032 break;
4033
4034 case DelayedDiagnostic::Access:
John McCallc1465822011-02-14 07:13:47 +00004035 S.HandleDelayedAccessCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004036 break;
John McCall31168b02011-06-15 23:02:42 +00004037
4038 case DelayedDiagnostic::ForbiddenType:
4039 handleDelayedForbiddenType(S, diag, decl);
4040 break;
John McCall86121512010-01-27 03:50:35 +00004041 }
4042 }
4043 }
4044
John McCall1064d7e2010-03-16 05:22:47 +00004045 // Destroy all the delayed diagnostics we're about to pop off.
John McCallc1465822011-02-14 07:13:47 +00004046 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor899b68f2011-03-23 15:13:44 +00004047 DD.Stack[i].Destroy();
John McCall1064d7e2010-03-16 05:22:47 +00004048
John McCallc1465822011-02-14 07:13:47 +00004049 DD.StackSize = state.SavedStackSize;
John McCall28a6aea2009-11-04 02:18:39 +00004050}
4051
4052static bool isDeclDeprecated(Decl *D) {
4053 do {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00004054 if (D->isDeprecated())
John McCall28a6aea2009-11-04 02:18:39 +00004055 return true;
Argyrios Kyrtzidisc281c962011-10-06 23:23:27 +00004056 // A category implicitly has the availability of the interface.
4057 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4058 return CatD->getClassInterface()->isDeprecated();
John McCall28a6aea2009-11-04 02:18:39 +00004059 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4060 return false;
4061}
4062
John McCallb45a1e72010-08-26 02:13:20 +00004063void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall86121512010-01-27 03:50:35 +00004064 Decl *Ctx) {
4065 if (isDeclDeprecated(Ctx))
John McCall28a6aea2009-11-04 02:18:39 +00004066 return;
4067
John McCall86121512010-01-27 03:50:35 +00004068 DD.Triggered = true;
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004069 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanian551063102010-10-06 21:18:44 +00004070 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004071 << DD.getDeprecationDecl()->getDeclName()
4072 << DD.getDeprecationMessage();
Fariborz Jahanian551063102010-10-06 21:18:44 +00004073 else
4074 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004075 << DD.getDeprecationDecl()->getDeclName();
John McCall28a6aea2009-11-04 02:18:39 +00004076}
4077
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004078void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004079 SourceLocation Loc,
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004080 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall28a6aea2009-11-04 02:18:39 +00004081 // Delay if we're currently parsing a declaration.
John McCallc1465822011-02-14 07:13:47 +00004082 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
4083 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall28a6aea2009-11-04 02:18:39 +00004084 return;
4085 }
4086
4087 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis9321ad32011-10-06 23:23:20 +00004088 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall28a6aea2009-11-04 02:18:39 +00004089 return;
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004090 if (!Message.empty())
Fariborz Jahanian551063102010-10-06 21:18:44 +00004091 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4092 << Message;
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004093 else {
Peter Collingbourneed12ffb2011-01-02 19:53:12 +00004094 if (!UnknownObjCClass)
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004095 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004096 else {
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004097 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004098 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4099 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004100 }
John McCall28a6aea2009-11-04 02:18:39 +00004101}