blob: 9e9f495e0c0fbb50f9f834746bda4b8554d88bfe [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"
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +000017#include "clang/AST/CXXInheritance.h"
John McCall28a0cf72010-08-25 07:42:41 +000018#include "clang/AST/DeclCXX.h"
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbar56fdb6a2008-08-11 06:23:49 +000020#include "clang/AST/DeclObjC.h"
21#include "clang/AST/Expr.h"
John McCall31168b02011-06-15 23:02:42 +000022#include "clang/Basic/SourceManager.h"
Chris Lattneracbc2d22008-06-27 22:18:37 +000023#include "clang/Basic/TargetInfo.h"
John McCall8b0666c2010-08-20 18:27:03 +000024#include "clang/Sema/DeclSpec.h"
John McCallb45a1e72010-08-26 02:13:20 +000025#include "clang/Sema/DelayedDiagnostic.h"
John McCallf1e8b342011-09-29 07:17:38 +000026#include "clang/Sema/Lookup.h"
Chris Lattner30ba6742009-08-10 19:03:04 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000028using namespace clang;
John McCallb45a1e72010-08-26 02:13:20 +000029using namespace sema;
Chris Lattner2c6fcf52008-06-26 18:38:35 +000030
John McCall5fca7ea2011-03-02 12:29:23 +000031/// These constants match the enumerated choices of
32/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +000033enum AttributeDeclKind {
John McCall5fca7ea2011-03-02 12:29:23 +000034 ExpectedFunction,
35 ExpectedUnion,
36 ExpectedVariableOrFunction,
37 ExpectedFunctionOrMethod,
38 ExpectedParameter,
John McCall5fca7ea2011-03-02 12:29:23 +000039 ExpectedFunctionMethodOrBlock,
John McCall5fca7ea2011-03-02 12:29:23 +000040 ExpectedFunctionMethodOrParameter,
41 ExpectedClass,
John McCall5fca7ea2011-03-02 12:29:23 +000042 ExpectedVariable,
43 ExpectedMethod,
Caitlin Sadowski63fa6672011-07-28 20:12:35 +000044 ExpectedVariableFunctionOrLabel,
Douglas Gregor5c3cc422012-03-14 16:55:17 +000045 ExpectedFieldOrGlobalVar,
46 ExpectedStruct
John McCall5fca7ea2011-03-02 12:29:23 +000047};
48
Chris Lattner58418ff2008-06-29 00:16:31 +000049//===----------------------------------------------------------------------===//
50// Helper functions
51//===----------------------------------------------------------------------===//
52
Chandler Carruthff4c4f02011-07-01 23:49:12 +000053static const FunctionType *getFunctionType(const Decl *D,
Ted Kremenek527042b2009-08-14 20:49:40 +000054 bool blocksToo = true) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +000055 QualType Ty;
Chandler Carruthff4c4f02011-07-01 23:49:12 +000056 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000057 Ty = decl->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000058 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000059 Ty = decl->getType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +000060 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner2c6fcf52008-06-26 18:38:35 +000061 Ty = decl->getUnderlyingType();
62 else
63 return 0;
Mike Stumpd3bb5572009-07-24 19:02:52 +000064
Chris Lattner2c6fcf52008-06-26 18:38:35 +000065 if (Ty->isFunctionPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000066 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian28c433d2009-05-18 17:39:25 +000067 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +000068 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000069
John McCall9dd450b2009-09-21 23:43:11 +000070 return Ty->getAs<FunctionType>();
Chris Lattner2c6fcf52008-06-26 18:38:35 +000071}
72
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000073// FIXME: We should provide an abstraction around a method or function
74// to provide the following bits of information.
75
Nuno Lopes518e3702009-12-20 23:11:08 +000076/// isFunction - Return true if the given decl has function
Ted Kremenek527042b2009-08-14 20:49:40 +000077/// type (function or function-typed variable).
Chandler Carruthff4c4f02011-07-01 23:49:12 +000078static bool isFunction(const Decl *D) {
79 return getFunctionType(D, false) != NULL;
Ted Kremenek527042b2009-08-14 20:49:40 +000080}
81
82/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbar70e3eba2008-10-19 02:04:16 +000083/// type (function or function-typed variable) or an Objective-C
84/// method.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000085static bool isFunctionOrMethod(const Decl *D) {
86 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +000087}
88
Fariborz Jahanian4447e172009-05-15 23:15:03 +000089/// isFunctionOrMethodOrBlock - Return true if the given decl has function
90/// type (function or function-typed variable) or an Objective-C
91/// method or a block.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000092static bool isFunctionOrMethodOrBlock(const Decl *D) {
93 if (isFunctionOrMethod(D))
Fariborz Jahanian4447e172009-05-15 23:15:03 +000094 return true;
95 // check for block is more involved.
Chandler Carruthff4c4f02011-07-01 23:49:12 +000096 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian4447e172009-05-15 23:15:03 +000097 QualType Ty = V->getType();
98 return Ty->isBlockPointerType();
99 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000100 return isa<BlockDecl>(D);
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000101}
102
John McCall3882ace2011-01-05 12:14:39 +0000103/// Return true if the given decl has a declarator that should have
104/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000105static bool hasDeclarator(const Decl *D) {
John McCall31168b02011-06-15 23:02:42 +0000106 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000107 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
108 isa<ObjCPropertyDecl>(D);
John McCall3882ace2011-01-05 12:14:39 +0000109}
110
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000111/// hasFunctionProto - Return true if the given decl has a argument
112/// information. This decl should have already passed
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000113/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000114static bool hasFunctionProto(const Decl *D) {
115 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000116 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian4447e172009-05-15 23:15:03 +0000117 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000118 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbar70e3eba2008-10-19 02:04:16 +0000119 return true;
120 }
121}
122
123/// getFunctionOrMethodNumArgs - Return number of function or method
124/// arguments. It is an error to call this on a K&R function (use
125/// hasFunctionProto first).
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000126static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
127 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000128 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000129 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000130 return BD->getNumParams();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000131 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000132}
133
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000134static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
135 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000136 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000137 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000138 return BD->getParamDecl(Idx)->getType();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000139
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000140 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000141}
142
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000143static QualType getFunctionOrMethodResultType(const Decl *D) {
144 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000145 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000146 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanianf1c25022009-05-20 17:41:43 +0000147}
148
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000149static bool isFunctionOrMethodVariadic(const Decl *D) {
150 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregordeaad8c2009-02-26 23:50:07 +0000151 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000152 return proto->isVariadic();
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000153 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenek8af4f402010-04-29 16:48:58 +0000154 return BD->isVariadic();
Fariborz Jahanian960910a2009-05-19 17:08:59 +0000155 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000156 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbarc136e0c2008-09-26 04:12:28 +0000157 }
158}
159
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000160static bool isInstanceMethod(const Decl *D) {
161 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth743682b2010-11-16 08:35:43 +0000162 return MethodDecl->isInstance();
163 return false;
164}
165
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000166static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall9dd450b2009-09-21 23:43:11 +0000167 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattner574dee62008-07-26 22:17:49 +0000168 if (!PT)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000169 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000170
John McCall96fa4842010-05-17 21:00:27 +0000171 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
172 if (!Cls)
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000173 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000174
John McCall96fa4842010-05-17 21:00:27 +0000175 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpd3bb5572009-07-24 19:02:52 +0000176
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000177 // FIXME: Should we walk the chain of classes?
178 return ClsName == &Ctx.Idents.get("NSString") ||
179 ClsName == &Ctx.Idents.get("NSMutableString");
180}
181
Daniel Dunbar980c6692008-09-26 03:32:58 +0000182static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000183 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000184 if (!PT)
185 return false;
186
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000187 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar980c6692008-09-26 03:32:58 +0000188 if (!RT)
189 return false;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000190
Daniel Dunbar980c6692008-09-26 03:32:58 +0000191 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara6150c882010-05-11 21:36:43 +0000192 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar980c6692008-09-26 03:32:58 +0000193 return false;
194
195 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
196}
197
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000198/// \brief Check if the attribute has exactly as many args as Num. May
199/// output an error.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000200static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
201 unsigned int Num) {
202 if (Attr.getNumArgs() != Num) {
203 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
204 return false;
205 }
206
207 return true;
208}
209
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000210
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000211/// \brief Check if the attribute has at least as many args as Num. May
212/// output an error.
213static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
214 unsigned int Num) {
215 if (Attr.getNumArgs() < Num) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000216 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
217 return false;
218 }
219
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000220 return true;
221}
222
223///
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000224/// \brief Check if passed in Decl is a field or potentially shared global var
225/// \return true if the Decl is a field or potentially shared global variable
226///
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000227static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000228 if (isa<FieldDecl>(D))
229 return true;
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000230 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000231 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
232
233 return false;
234}
235
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000236/// \brief Check if the passed-in expression is of type int or bool.
237static bool isIntOrBool(Expr *Exp) {
238 QualType QT = Exp->getType();
239 return QT->isBooleanType() || QT->isIntegerType();
240}
241
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000242
243// Check to see if the type is a smart pointer of some kind. We assume
244// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000245static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
246 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
247 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
248 if (Res1.first == Res1.second)
249 return false;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000250
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000251 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
252 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
253 if (Res2.first == Res2.second)
254 return false;
255
256 return true;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000257}
258
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000259/// \brief Check if passed in Decl is a pointer type.
260/// Note that this function may produce an error message.
261/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000262static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
263 const AttributeList &Attr) {
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000264 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000265 QualType QT = vd->getType();
Benjamin Kramer3c05b7c2011-08-02 04:50:49 +0000266 if (QT->isAnyPointerType())
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000267 return true;
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000268
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000269 if (const RecordType *RT = QT->getAs<RecordType>()) {
270 // If it's an incomplete type, it could be a smart pointer; skip it.
271 // (We don't want to force template instantiation if we can avoid it,
272 // since that would alter the order in which templates are instantiated.)
273 if (RT->isIncompleteType())
274 return true;
275
276 if (threadSafetyCheckIsSmartPointer(S, RT))
277 return true;
278 }
DeLesley Hutchinse09be232012-04-23 18:39:55 +0000279
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000280 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000281 << Attr.getName()->getName() << QT;
282 } else {
283 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
284 << Attr.getName();
285 }
286 return false;
287}
288
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000289/// \brief Checks that the passed in QualType either is of RecordType or points
290/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000291static const RecordType *getRecordType(QualType QT) {
292 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000293 return RT;
Benjamin Kramer56b675f2011-08-19 04:18:11 +0000294
295 // Now check if we point to record type.
296 if (const PointerType *PT = QT->getAs<PointerType>())
297 return PT->getPointeeType()->getAs<RecordType>();
298
299 return 0;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000300}
301
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000302
Jordy Rose740b0c22012-05-08 03:27:22 +0000303static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
304 CXXBasePath &Path, void *Unused) {
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000305 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
306 if (RT->getDecl()->getAttr<LockableAttr>())
307 return true;
308 return false;
309}
310
311
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000312/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000313/// resolves to a lockable object.
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000314static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
315 QualType Ty) {
316 const RecordType *RT = getRecordType(Ty);
317
318 // Warn if could not get record type for this argument.
Benjamin Kramer2667afa2011-09-03 03:30:59 +0000319 if (!RT) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000320 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000321 << Attr.getName() << Ty.getAsString();
322 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000323 }
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000324
DeLesley Hutchins3509f292012-02-16 17:15:51 +0000325 // Don't check for lockable if the class hasn't been defined yet.
326 if (RT->isIncompleteType())
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000327 return;
DeLesley Hutchins90ff4682012-05-02 22:18:42 +0000328
329 // Allow smart pointers to be used as lockable objects.
330 // FIXME -- Check the type that the smart pointer points to.
331 if (threadSafetyCheckIsSmartPointer(S, RT))
332 return;
333
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000334 // Check if the type is lockable.
335 RecordDecl *RD = RT->getDecl();
336 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000337 return;
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000338
339 // Else check if any base classes are lockable.
340 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
341 CXXBasePaths BPaths(false, false);
342 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
343 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000344 }
DeLesley Hutchins5ff430c2012-05-04 16:28:38 +0000345
346 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
347 << Attr.getName() << Ty.getAsString();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000348}
349
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000350/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000351/// from Sidx, resolve to a lockable object.
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000352/// \param Sidx The attribute argument index to start checking with.
353/// \param ParamIdxOk Whether an argument can be indexing into a function
354/// parameter list.
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000355static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000356 const AttributeList &Attr,
357 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000358 int Sidx = 0,
359 bool ParamIdxOk = false) {
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000360 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000361 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000362
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000363 if (ArgExp->isTypeDependent()) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000364 // FIXME -- need to check this again on template instantiation
Caitlin Sadowski990d5712011-09-08 17:42:31 +0000365 Args.push_back(ArgExp);
366 continue;
367 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000368
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000369 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
370 // Ignore empty strings without warnings
371 if (StrLit->getLength() == 0)
372 continue;
373
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000374 // We allow constant strings to be used as a placeholder for expressions
375 // that are not valid C++ syntax, but warn that they are ignored.
376 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
377 Attr.getName();
378 continue;
379 }
380
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000381 QualType ArgTy = ArgExp->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000382
DeLesley Hutchins70b5e8e2012-04-23 16:45:01 +0000383 // A pointer to member expression of the form &MyClass::mu is treated
384 // specially -- we need to look at the type of the member.
385 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
386 if (UOp->getOpcode() == UO_AddrOf)
387 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
388 if (DRE->getDecl()->isCXXInstanceMember())
389 ArgTy = DRE->getDecl()->getType();
390
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000391 // First see if we can just cast to record type, or point to record type.
392 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000393
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000394 // Now check if we index into a record type function param.
395 if(!RT && ParamIdxOk) {
396 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000397 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
398 if(FD && IL) {
399 unsigned int NumParams = FD->getNumParams();
400 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000401 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
402 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
403 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000404 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
405 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000406 continue;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000407 }
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000408 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000409 }
410 }
411
DeLesley Hutchins481d5ab2012-04-06 20:02:30 +0000412 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000413
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000414 Args.push_back(ArgExp);
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000415 }
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000416}
417
Chris Lattner58418ff2008-06-29 00:16:31 +0000418//===----------------------------------------------------------------------===//
Chris Lattner58418ff2008-06-29 00:16:31 +0000419// Attribute Implementations
420//===----------------------------------------------------------------------===//
421
Daniel Dunbar032db472008-07-31 22:40:48 +0000422// FIXME: All this manual attribute parsing code is gross. At the
423// least add some helper functions to check most argument patterns (#
424// and types of args).
425
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000426enum ThreadAttributeDeclKind {
427 ThreadExpectedFieldOrGlobalVar,
428 ThreadExpectedFunctionOrMethod,
429 ThreadExpectedClassOrStruct
430};
431
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000432static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
433 bool pointer = false) {
434 assert(!Attr.isInvalid());
435
436 if (!checkAttributeNumArgs(S, Attr, 0))
437 return;
438
439 // D must be either a member field or global (potentially shared) variable.
440 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000441 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
442 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000443 return;
444 }
445
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000446 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000447 return;
448
449 if (pointer)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000450 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000451 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000452 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000453}
454
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000455static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000456 bool pointer = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000457 assert(!Attr.isInvalid());
458
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000459 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000460 return;
461
462 // D must be either a member field or global (potentially shared) variable.
463 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000464 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
465 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000466 return;
467 }
468
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000469 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000470 return;
471
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000472 SmallVector<Expr*, 1> Args;
473 // check that all arguments are lockable objects
474 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
475 unsigned Size = Args.size();
476 if (Size != 1)
477 return;
478 Expr *Arg = Args[0];
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000479
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000480 if (pointer)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000481 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000482 S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000483 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000484 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000485}
486
487
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000488static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
489 bool scoped = false) {
490 assert(!Attr.isInvalid());
491
492 if (!checkAttributeNumArgs(S, Attr, 0))
493 return;
494
Caitlin Sadowski086fb952011-09-16 00:35:54 +0000495 // FIXME: Lockable structs for C code.
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000496 if (!isa<CXXRecordDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000497 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
498 << Attr.getName() << ThreadExpectedClassOrStruct;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000499 return;
500 }
501
502 if (scoped)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000503 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000504 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000505 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000506}
507
508static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
509 const AttributeList &Attr) {
510 assert(!Attr.isInvalid());
511
512 if (!checkAttributeNumArgs(S, Attr, 0))
513 return;
514
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000515 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000516 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
517 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000518 return;
519 }
520
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000521 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +0000522 S.Context));
523}
524
Kostya Serebryany588d6ab2012-01-24 19:25:38 +0000525static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000526 const AttributeList &Attr) {
Kostya Serebryany588d6ab2012-01-24 19:25:38 +0000527 assert(!Attr.isInvalid());
528
529 if (!checkAttributeNumArgs(S, Attr, 0))
530 return;
531
532 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
533 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
534 << Attr.getName() << ExpectedFunctionOrMethod;
535 return;
536 }
537
538 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
539 S.Context));
540}
541
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000542static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
543 bool before) {
544 assert(!Attr.isInvalid());
545
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000546 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000547 return;
548
549 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000550 ValueDecl *VD = dyn_cast<ValueDecl>(D);
551 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000552 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
553 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000554 return;
555 }
556
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000557 // Check that this attribute only applies to lockable types.
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000558 QualType QT = VD->getType();
559 if (!QT->isDependentType()) {
560 const RecordType *RT = getRecordType(QT);
561 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000562 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000563 << Attr.getName();
564 return;
565 }
566 }
567
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000568 SmallVector<Expr*, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000569 // Check that all arguments are lockable objects.
570 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000571 unsigned Size = Args.size();
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000572 if (Size == 0)
573 return;
574 Expr **StartArg = &Args[0];
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000575
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000576 if (before)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000577 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000578 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000579 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000580 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000581 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000582}
583
584static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000585 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000586 assert(!Attr.isInvalid());
587
588 // zero or more arguments ok
589
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000590 // check that the attribute is applied to a function
591 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000592 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
593 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000594 return;
595 }
596
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000597 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000598 SmallVector<Expr*, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000599 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000600 unsigned Size = Args.size();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000601 Expr **StartArg = Size == 0 ? 0 : &Args[0];
602
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000603 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000604 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000605 S.Context, StartArg,
606 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000607 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000608 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000609 S.Context, StartArg,
610 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000611}
612
613static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000614 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000615 assert(!Attr.isInvalid());
616
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000617 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000618 return;
619
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000620 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000621 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
622 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000623 return;
624 }
625
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000626 if (!isIntOrBool(Attr.getArg(0))) {
627 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
628 << Attr.getName();
629 return;
630 }
631
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000632 SmallVector<Expr*, 2> Args;
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000633 // check that all arguments are lockable objects
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000634 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000635 unsigned Size = Args.size();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000636 Expr **StartArg = Size == 0 ? 0 : &Args[0];
637
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000638 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000639 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000640 S.Context,
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000641 Attr.getArg(0),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000642 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000643 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000644 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowskibf06c722011-09-15 17:50:19 +0000645 S.Context,
646 Attr.getArg(0),
647 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000648}
649
650static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000651 bool exclusive = false) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000652 assert(!Attr.isInvalid());
653
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000654 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000655 return;
656
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000657 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000658 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
659 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000660 return;
661 }
662
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000663 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000664 SmallVector<Expr*, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000665 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000666 unsigned Size = Args.size();
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000667 if (Size == 0)
668 return;
669 Expr **StartArg = &Args[0];
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000670
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000671 if (exclusive)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000672 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000673 S.Context, StartArg,
674 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000675 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000676 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000677 S.Context, StartArg,
678 Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000679}
680
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000681static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000682 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000683 assert(!Attr.isInvalid());
684
685 // zero or more arguments ok
686
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000687 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000688 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
689 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000690 return;
691 }
692
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000693 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000694 SmallVector<Expr*, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000695 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000696 unsigned Size = Args.size();
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000697 Expr **StartArg = Size == 0 ? 0 : &Args[0];
698
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000699 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000700 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000701}
702
703static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000704 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000705 assert(!Attr.isInvalid());
706
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000707 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000708 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000709 Expr *Arg = Attr.getArg(0);
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000710
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000711 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000712 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
713 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000714 return;
715 }
716
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000717 if (Arg->isTypeDependent())
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000718 return;
719
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000720 // check that the argument is lockable object
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000721 SmallVector<Expr*, 1> Args;
722 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
723 unsigned Size = Args.size();
724 if (Size == 0)
725 return;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000726
DeLesley Hutchinsd96b46a2012-05-02 17:38:37 +0000727 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context,
728 Args[0]));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000729}
730
731static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000732 const AttributeList &Attr) {
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000733 assert(!Attr.isInvalid());
734
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000735 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000736 return;
737
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000738 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins312e7422012-06-19 23:25:19 +0000739 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
740 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000741 return;
742 }
743
Caitlin Sadowski4b1e8392011-08-09 17:59:31 +0000744 // check that all arguments are lockable objects
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000745 SmallVector<Expr*, 1> Args;
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000746 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000747 unsigned Size = Args.size();
DeLesley Hutchins8d11c792012-04-19 16:10:44 +0000748 if (Size == 0)
749 return;
750 Expr **StartArg = &Args[0];
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000751
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000752 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +0000753 StartArg, Size));
Caitlin Sadowski63fa6672011-07-28 20:12:35 +0000754}
755
756
Chandler Carruthedc2c642011-07-02 00:01:44 +0000757static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
758 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000759 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000760 if (tDecl == 0) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000761 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner4a927cb2008-06-28 23:36:30 +0000762 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000763 }
Mike Stumpd3bb5572009-07-24 19:02:52 +0000764
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000765 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor758a8692009-06-17 21:51:59 +0000766
767 Expr *sizeExpr;
768
769 // Special case where the argument is a template id.
770 if (Attr.getParameterName()) {
John McCalle66edc12009-11-24 19:00:30 +0000771 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +0000772 SourceLocation TemplateKWLoc;
John McCalle66edc12009-11-24 19:00:30 +0000773 UnqualifiedId id;
774 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor39c02722011-06-15 16:02:29 +0000775
Abramo Bagnara7945c982012-01-27 09:46:47 +0000776 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
777 false, false);
Douglas Gregor39c02722011-06-15 16:02:29 +0000778 if (Size.isInvalid())
779 return;
780
781 sizeExpr = Size.get();
Douglas Gregor758a8692009-06-17 21:51:59 +0000782 } else {
783 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000784 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor758a8692009-06-17 21:51:59 +0000785 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000786
Peter Collingbournee57e9ef2010-11-23 20:45:58 +0000787 sizeExpr = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000788 }
Douglas Gregor758a8692009-06-17 21:51:59 +0000789
790 // Instantiate/Install the vector type, and let Sema build the type for us.
791 // This will run the reguired checks.
John McCallb268a282010-08-23 23:25:46 +0000792 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor758a8692009-06-17 21:51:59 +0000793 if (!T.isNull()) {
John McCall703a3f82009-10-24 08:00:42 +0000794 // FIXME: preserve the old source info.
John McCallbcd03502009-12-07 02:54:59 +0000795 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpd3bb5572009-07-24 19:02:52 +0000796
Douglas Gregor758a8692009-06-17 21:51:59 +0000797 // Remember this typedef decl, we will need it later for diagnostics.
798 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000799 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000800}
801
Chandler Carruthedc2c642011-07-02 00:01:44 +0000802static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000803 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000804 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000805 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000806
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000807 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000808 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000809 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000810 // If the alignment is less than or equal to 8 bits, the packed attribute
811 // has no effect.
812 if (!FD->getType()->isIncompleteType() &&
Chris Lattnerb632a6e2008-06-29 00:43:07 +0000813 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattner3b054132008-11-19 05:08:23 +0000814 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattnere3d20d92008-11-23 21:45:46 +0000815 << Attr.getName() << FD->getType();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000816 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000817 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000818 } else
Chris Lattner4bd8dd82008-11-19 08:23:25 +0000819 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000820}
821
Chandler Carruthedc2c642011-07-02 00:01:44 +0000822static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000823 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000824 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanian6b4e26b2011-04-26 17:54:40 +0000825 else
826 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
827}
828
Chandler Carruthedc2c642011-07-02 00:01:44 +0000829static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000830 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000831 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000832 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +0000833
Ted Kremenek1f672822010-02-18 03:08:58 +0000834 // The IBAction attributes only apply to instance methods.
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000835 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek1f672822010-02-18 03:08:58 +0000836 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +0000837 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek1f672822010-02-18 03:08:58 +0000838 return;
839 }
840
Ted Kremenekd68ec812011-02-04 06:54:16 +0000841 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek1f672822010-02-18 03:08:58 +0000842}
843
Ted Kremenek7fd17232011-09-29 07:02:25 +0000844static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
845 // The IBOutlet/IBOutletCollection attributes only apply to instance
846 // variables or properties of Objective-C classes. The outlet must also
847 // have an object reference type.
848 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
849 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek5d6044e2011-11-01 18:08:35 +0000850 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000851 << Attr.getName() << VD->getType() << 0;
852 return false;
853 }
854 }
855 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
856 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregor5c3cc422012-03-14 16:55:17 +0000857 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek7fd17232011-09-29 07:02:25 +0000858 << Attr.getName() << PD->getType() << 1;
859 return false;
860 }
861 }
862 else {
863 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
864 return false;
865 }
Douglas Gregor5c3cc422012-03-14 16:55:17 +0000866
Ted Kremenek7fd17232011-09-29 07:02:25 +0000867 return true;
868}
869
Chandler Carruthedc2c642011-07-02 00:01:44 +0000870static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek1f672822010-02-18 03:08:58 +0000871 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +0000872 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek1f672822010-02-18 03:08:58 +0000873 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000874
875 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek1f672822010-02-18 03:08:58 +0000876 return;
Ted Kremenek1f672822010-02-18 03:08:58 +0000877
Ted Kremenek7fd17232011-09-29 07:02:25 +0000878 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek8e3704d2008-07-15 22:26:48 +0000879}
880
Chandler Carruthedc2c642011-07-02 00:01:44 +0000881static void handleIBOutletCollection(Sema &S, Decl *D,
882 const AttributeList &Attr) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000883
884 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000885 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek26bde772010-05-19 17:38:06 +0000886 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
887 return;
888 }
889
Ted Kremenek7fd17232011-09-29 07:02:25 +0000890 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek26bde772010-05-19 17:38:06 +0000891 return;
Ted Kremenek7fd17232011-09-29 07:02:25 +0000892
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000893 IdentifierInfo *II = Attr.getParameterName();
894 if (!II)
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000895 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian798f8322010-08-17 21:39:27 +0000896
John McCallba7bf592010-08-24 05:47:05 +0000897 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruthff4c4f02011-07-01 23:49:12 +0000898 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000899 if (!TypeRep) {
900 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
901 return;
902 }
John McCallba7bf592010-08-24 05:47:05 +0000903 QualType QT = TypeRep.get();
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000904 // Diagnose use of non-object type in iboutletcollection attribute.
905 // FIXME. Gnu attribute extension ignores use of builtin types in
906 // attributes. So, __attribute__((iboutletcollection(char))) will be
907 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanian2f31b332011-10-18 19:54:31 +0000908 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahanianb5d59b62010-08-17 20:23:12 +0000909 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
910 return;
911 }
Argyrios Kyrtzidis8db67df2011-09-13 18:41:59 +0000912 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
913 QT, Attr.getParameterLoc()));
Ted Kremenek26bde772010-05-19 17:38:06 +0000914}
915
Chandler Carruth3ed22c32011-07-01 23:49:16 +0000916static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +0000917 if (const RecordType *UT = T->getAsUnionType())
918 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
919 RecordDecl *UD = UT->getDecl();
920 for (RecordDecl::field_iterator it = UD->field_begin(),
921 itend = UD->field_end(); it != itend; ++it) {
922 QualType QT = it->getType();
923 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
924 T = QT;
925 return;
926 }
927 }
928 }
929}
930
Nuno Lopes5c7ad162012-05-24 00:22:00 +0000931static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopese881ce22012-06-18 16:39:04 +0000932 if (!isFunctionOrMethod(D)) {
933 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
934 << "alloc_size" << ExpectedFunctionOrMethod;
935 return;
936 }
937
Nuno Lopes5c7ad162012-05-24 00:22:00 +0000938 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
939 return;
940
941 // In C++ the implicit 'this' function parameter also counts, and they are
942 // counted from one.
943 bool HasImplicitThisParam = isInstanceMethod(D);
944 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
945
946 SmallVector<unsigned, 8> SizeArgs;
947
948 for (AttributeList::arg_iterator I = Attr.arg_begin(),
949 E = Attr.arg_end(); I!=E; ++I) {
950 // The argument must be an integer constant expression.
951 Expr *Ex = *I;
952 llvm::APSInt ArgNum;
953 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
954 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
955 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
956 << "alloc_size" << Ex->getSourceRange();
957 return;
958 }
959
960 uint64_t x = ArgNum.getZExtValue();
961
962 if (x < 1 || x > NumArgs) {
963 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
964 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
965 return;
966 }
967
968 --x;
969 if (HasImplicitThisParam) {
970 if (x == 0) {
971 S.Diag(Attr.getLoc(),
972 diag::err_attribute_invalid_implicit_this_argument)
973 << "alloc_size" << Ex->getSourceRange();
974 return;
975 }
976 --x;
977 }
978
979 // check if the function argument is of an integer type
980 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
981 if (!T->isIntegerType()) {
982 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
983 << "alloc_size" << Ex->getSourceRange();
984 return;
985 }
986
Nuno Lopes5c7ad162012-05-24 00:22:00 +0000987 SizeArgs.push_back(x);
988 }
989
990 // check if the function returns a pointer
991 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
992 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
993 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
994 }
995
Nuno Lopese44e93a2012-06-18 16:27:56 +0000996 D->addAttr(::new (S.Context) AllocSizeAttr(Attr.getRange(), S.Context,
997 SizeArgs.data(), SizeArgs.size()));
Nuno Lopes5c7ad162012-05-24 00:22:00 +0000998}
999
Chandler Carruthedc2c642011-07-02 00:01:44 +00001000static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001001 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1002 // ignore it as well
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001003 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001004 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001005 << Attr.getName() << ExpectedFunction;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001006 return;
1007 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001008
Chandler Carruth743682b2010-11-16 08:35:43 +00001009 // In C++ the implicit 'this' function parameter also counts, and they are
1010 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001011 bool HasImplicitThisParam = isInstanceMethod(D);
1012 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001013
1014 // The nonnull attribute only applies to pointers.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001015 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001016
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001017 for (AttributeList::arg_iterator I=Attr.arg_begin(),
1018 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00001019
1020
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001021 // The argument must be an integer constant expression.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001022 Expr *Ex = *I;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001023 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001024 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1025 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001026 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1027 << "nonnull" << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001028 return;
1029 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001030
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001031 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00001032
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001033 if (x < 1 || x > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00001034 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner91aea712008-11-19 07:22:31 +00001035 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001036 return;
1037 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001038
Ted Kremenek5224e6a2008-07-21 22:09:15 +00001039 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +00001040 if (HasImplicitThisParam) {
1041 if (x == 0) {
1042 S.Diag(Attr.getLoc(),
1043 diag::err_attribute_invalid_implicit_this_argument)
1044 << "nonnull" << Ex->getSourceRange();
1045 return;
1046 }
1047 --x;
1048 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001049
1050 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001051 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +00001052 possibleTransparentUnionPointerType(T);
Fariborz Jahanianf4aa2792011-06-27 21:12:03 +00001053
Ted Kremenekd4adebb2009-07-15 23:23:54 +00001054 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001055 // FIXME: Should also highlight argument in decl.
Douglas Gregor62157e52010-08-12 18:48:43 +00001056 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattner3b054132008-11-19 05:08:23 +00001057 << "nonnull" << Ex->getSourceRange();
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001058 continue;
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001059 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001060
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001061 NonNullArgs.push_back(x);
1062 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001063
1064 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1065 // arguments have a nonnull attribute.
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001066 if (NonNullArgs.empty()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001067 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
1068 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruth3ed22c32011-07-01 23:49:16 +00001069 possibleTransparentUnionPointerType(T);
Ted Kremenekd4adebb2009-07-15 23:23:54 +00001070 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbar70e3eba2008-10-19 02:04:16 +00001071 NonNullArgs.push_back(I);
Ted Kremenek5fa50522008-11-18 06:52:58 +00001072 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001073
Ted Kremenek22813f42010-10-21 18:49:36 +00001074 // No pointer arguments?
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +00001075 if (NonNullArgs.empty()) {
1076 // Warn the trivial case only if attribute is not coming from a
1077 // macro instantiation.
1078 if (Attr.getLoc().isFileID())
1079 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001080 return;
Fariborz Jahaniancb67d7b2010-09-27 19:05:51 +00001081 }
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001082 }
Ted Kremenekc4f6d902008-09-01 19:57:52 +00001083
1084 unsigned* start = &NonNullArgs[0];
1085 unsigned size = NonNullArgs.size();
Ted Kremenekd21139a2010-07-31 01:52:11 +00001086 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001087 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001088 size));
Ted Kremenek2d63bc12008-07-21 21:53:04 +00001089}
1090
Chandler Carruthedc2c642011-07-02 00:01:44 +00001091static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001092 // This attribute must be applied to a function declaration.
1093 // The first argument to the attribute must be a string,
1094 // the name of the resource, for example "malloc".
1095 // The following arguments must be argument indexes, the arguments must be
1096 // of integer type for Returns, otherwise of pointer type.
1097 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001098 // after being held. free() should be __attribute((ownership_takes)), whereas
1099 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekd21139a2010-07-31 01:52:11 +00001100
1101 if (!AL.getParameterName()) {
1102 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1103 << AL.getName()->getName() << 1;
1104 return;
1105 }
1106 // Figure out our Kind, and check arguments while we're at it.
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001107 OwnershipAttr::OwnershipKind K;
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001108 switch (AL.getKind()) {
1109 case AttributeList::AT_ownership_takes:
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001110 K = OwnershipAttr::Takes;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001111 if (AL.getNumArgs() < 1) {
1112 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1113 return;
1114 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001115 break;
1116 case AttributeList::AT_ownership_holds:
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001117 K = OwnershipAttr::Holds;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001118 if (AL.getNumArgs() < 1) {
1119 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1120 return;
1121 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001122 break;
1123 case AttributeList::AT_ownership_returns:
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001124 K = OwnershipAttr::Returns;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001125 if (AL.getNumArgs() > 1) {
1126 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1127 << AL.getNumArgs() + 1;
1128 return;
1129 }
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001130 break;
1131 default:
1132 // This should never happen given how we are called.
1133 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekd21139a2010-07-31 01:52:11 +00001134 }
1135
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001136 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall5fca7ea2011-03-02 12:29:23 +00001137 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1138 << AL.getName() << ExpectedFunction;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001139 return;
1140 }
1141
Chandler Carruth743682b2010-11-16 08:35:43 +00001142 // In C++ the implicit 'this' function parameter also counts, and they are
1143 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001144 bool HasImplicitThisParam = isInstanceMethod(D);
1145 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001146
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001147 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekd21139a2010-07-31 01:52:11 +00001148
1149 // Normalize the argument, __foo__ becomes foo.
1150 if (Module.startswith("__") && Module.endswith("__"))
1151 Module = Module.substr(2, Module.size() - 4);
1152
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001153 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001154
Jordy Rose5af0e3c2010-08-12 08:54:03 +00001155 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1156 ++I) {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001157
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001158 Expr *IdxExpr = *I;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001159 llvm::APSInt ArgNum(32);
1160 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1161 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1162 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1163 << AL.getName()->getName() << IdxExpr->getSourceRange();
1164 continue;
1165 }
1166
1167 unsigned x = (unsigned) ArgNum.getZExtValue();
1168
1169 if (x > NumArgs || x < 1) {
1170 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1171 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1172 continue;
1173 }
1174 --x;
Chandler Carruth743682b2010-11-16 08:35:43 +00001175 if (HasImplicitThisParam) {
1176 if (x == 0) {
1177 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1178 << "ownership" << IdxExpr->getSourceRange();
1179 return;
1180 }
1181 --x;
1182 }
1183
Ted Kremenekd21139a2010-07-31 01:52:11 +00001184 switch (K) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001185 case OwnershipAttr::Takes:
1186 case OwnershipAttr::Holds: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001187 // Is the function argument a pointer type?
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001188 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001189 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1190 // FIXME: Should also highlight argument in decl.
1191 S.Diag(AL.getLoc(), diag::err_ownership_type)
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001192 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekd21139a2010-07-31 01:52:11 +00001193 << "pointer"
1194 << IdxExpr->getSourceRange();
1195 continue;
1196 }
1197 break;
1198 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001199 case OwnershipAttr::Returns: {
Ted Kremenekd21139a2010-07-31 01:52:11 +00001200 if (AL.getNumArgs() > 1) {
1201 // Is the function argument an integer type?
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001202 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekd21139a2010-07-31 01:52:11 +00001203 llvm::APSInt ArgNum(32);
1204 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1205 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1206 S.Diag(AL.getLoc(), diag::err_ownership_type)
1207 << "ownership_returns" << "integer"
1208 << IdxExpr->getSourceRange();
1209 return;
1210 }
1211 }
1212 break;
1213 }
Ted Kremenekd21139a2010-07-31 01:52:11 +00001214 } // switch
1215
1216 // Check we don't have a conflict with another ownership attribute.
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001217 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001218 i = D->specific_attr_begin<OwnershipAttr>(),
1219 e = D->specific_attr_end<OwnershipAttr>();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001220 i != e; ++i) {
1221 if ((*i)->getOwnKind() != K) {
1222 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1223 I!=E; ++I) {
1224 if (x == *I) {
1225 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1226 << AL.getName()->getName() << "ownership_*";
Ted Kremenekd21139a2010-07-31 01:52:11 +00001227 }
1228 }
1229 }
1230 }
1231 OwnershipArgs.push_back(x);
1232 }
1233
1234 unsigned* start = OwnershipArgs.data();
1235 unsigned size = OwnershipArgs.size();
1236 llvm::array_pod_sort(start, start + size);
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001237
1238 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1239 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1240 return;
Ted Kremenekd21139a2010-07-31 01:52:11 +00001241 }
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001242
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001243 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001244 start, size));
Ted Kremenekd21139a2010-07-31 01:52:11 +00001245}
1246
John McCall7a198ce2011-02-08 22:35:49 +00001247/// Whether this declaration has internal linkage for the purposes of
1248/// things that want to complain about things not have internal linkage.
1249static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1250 switch (D->getLinkage()) {
1251 case NoLinkage:
1252 case InternalLinkage:
1253 return true;
1254
1255 // Template instantiations that go from external to unique-external
1256 // shouldn't get diagnosed.
1257 case UniqueExternalLinkage:
1258 return true;
1259
1260 case ExternalLinkage:
1261 return false;
1262 }
1263 llvm_unreachable("unknown linkage kind!");
Rafael Espindolac18086a2010-02-23 22:00:30 +00001264}
1265
Chandler Carruthedc2c642011-07-02 00:01:44 +00001266static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001267 // Check the attribute arguments.
1268 if (Attr.getNumArgs() > 1) {
1269 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1270 return;
1271 }
1272
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001273 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall7a198ce2011-02-08 22:35:49 +00001274 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001275 << Attr.getName() << ExpectedVariableOrFunction;
John McCall7a198ce2011-02-08 22:35:49 +00001276 return;
1277 }
1278
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001279 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00001280
Rafael Espindolac18086a2010-02-23 22:00:30 +00001281 // gcc rejects
1282 // class c {
1283 // static int a __attribute__((weakref ("v2")));
1284 // static int b() __attribute__((weakref ("f3")));
1285 // };
1286 // and ignores the attributes of
1287 // void f(void) {
1288 // static int a __attribute__((weakref ("v2")));
1289 // }
1290 // we reject them
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001291 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl50c68252010-08-31 00:36:30 +00001292 if (!Ctx->isFileContext()) {
1293 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall7a198ce2011-02-08 22:35:49 +00001294 nd->getNameAsString();
Sebastian Redl50c68252010-08-31 00:36:30 +00001295 return;
Rafael Espindolac18086a2010-02-23 22:00:30 +00001296 }
1297
1298 // The GCC manual says
1299 //
1300 // At present, a declaration to which `weakref' is attached can only
1301 // be `static'.
1302 //
1303 // It also says
1304 //
1305 // Without a TARGET,
1306 // given as an argument to `weakref' or to `alias', `weakref' is
1307 // equivalent to `weak'.
1308 //
1309 // gcc 4.4.1 will accept
1310 // int a7 __attribute__((weakref));
1311 // as
1312 // int a7 __attribute__((weak));
1313 // This looks like a bug in gcc. We reject that for now. We should revisit
1314 // it if this behaviour is actually used.
1315
John McCall7a198ce2011-02-08 22:35:49 +00001316 if (!hasEffectivelyInternalLinkage(nd)) {
1317 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001318 return;
1319 }
1320
1321 // GCC rejects
1322 // static ((alias ("y"), weakref)).
1323 // Should we? How to check that weakref is before or after alias?
1324
1325 if (Attr.getNumArgs() == 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001326 Expr *Arg = Attr.getArg(0);
Rafael Espindolac18086a2010-02-23 22:00:30 +00001327 Arg = Arg->IgnoreParenCasts();
1328 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1329
Douglas Gregorfb65e592011-07-27 05:40:30 +00001330 if (!Str || !Str->isAscii()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00001331 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1332 << "weakref" << 1;
1333 return;
1334 }
1335 // GCC will accept anything as the argument of weakref. Should we
1336 // check for an existing decl?
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001337 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001338 Str->getString()));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001339 }
1340
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001341 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindolac18086a2010-02-23 22:00:30 +00001342}
1343
Chandler Carruthedc2c642011-07-02 00:01:44 +00001344static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001345 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00001346 if (Attr.getNumArgs() != 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001347 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001348 return;
1349 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001350
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001351 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001352 Arg = Arg->IgnoreParenCasts();
1353 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001354
Douglas Gregorfb65e592011-07-27 05:40:30 +00001355 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001356 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001357 << "alias" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001358 return;
1359 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001360
Douglas Gregore8bbc122011-09-02 00:18:52 +00001361 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindola0017c5f2010-12-07 15:23:23 +00001362 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1363 return;
1364 }
1365
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001366 // FIXME: check if target symbol exists in current file
Mike Stumpd3bb5572009-07-24 19:02:52 +00001367
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001368 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001369 Str->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001370}
1371
Benjamin Kramer29c2b432012-05-12 21:10:52 +00001372static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1373 // Check the attribute arguments.
1374 if (!checkAttributeNumArgs(S, Attr, 0))
1375 return;
1376
1377 if (!isa<FunctionDecl>(D)) {
1378 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1379 << Attr.getName() << ExpectedFunction;
1380 return;
1381 }
1382
1383 if (D->hasAttr<HotAttr>()) {
1384 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1385 << Attr.getName() << "hot";
1386 return;
1387 }
1388
1389 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context));
1390}
1391
1392static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1393 // Check the attribute arguments.
1394 if (!checkAttributeNumArgs(S, Attr, 0))
1395 return;
1396
1397 if (!isa<FunctionDecl>(D)) {
1398 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1399 << Attr.getName() << ExpectedFunction;
1400 return;
1401 }
1402
1403 if (D->hasAttr<ColdAttr>()) {
1404 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1405 << Attr.getName() << "cold";
1406 return;
1407 }
1408
1409 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context));
1410}
1411
Chandler Carruthedc2c642011-07-02 00:01:44 +00001412static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001413 // Check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001414 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar03a38442008-10-28 00:17:57 +00001415 return;
Anders Carlsson88097122009-02-19 19:16:48 +00001416
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001417 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00001418 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001419 << Attr.getName() << ExpectedFunction;
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001420 return;
1421 }
1422
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001423 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001424}
1425
Chandler Carruthedc2c642011-07-02 00:01:44 +00001426static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1427 const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001428 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001429 if (Attr.hasParameterOrArguments()) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001430 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1431 return;
1432 }
1433
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001434 if (!isa<FunctionDecl>(D)) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001436 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00001437 return;
1438 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001439
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001440 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbar03a38442008-10-28 00:17:57 +00001441}
1442
Chandler Carruthedc2c642011-07-02 00:01:44 +00001443static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar8caf6412010-09-29 18:20:25 +00001444 // Check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001445 if (Attr.hasParameterOrArguments()) {
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001446 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1447 return;
1448 }
Mike Stump11289f42009-09-09 15:08:12 +00001449
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001450 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001451 QualType RetTy = FD->getResultType();
Ted Kremenek08479ae2009-08-15 00:51:46 +00001452 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001453 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek08479ae2009-08-15 00:51:46 +00001454 return;
1455 }
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001456 }
1457
Ted Kremenek08479ae2009-08-15 00:51:46 +00001458 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn1f1fdc02009-08-09 20:07:29 +00001459}
1460
Chandler Carruthedc2c642011-07-02 00:01:44 +00001461static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001462 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001463 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001464 return;
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001465
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001466 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohmanbbb7d622010-11-17 00:03:07 +00001467}
1468
Chandler Carruthedc2c642011-07-02 00:01:44 +00001469static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001470 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001471 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001472 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001473 else
1474 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001475 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001476}
1477
Chandler Carruthedc2c642011-07-02 00:01:44 +00001478static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth9312c642011-07-11 23:33:05 +00001479 assert(!Attr.isInvalid());
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001480 if (isa<VarDecl>(D))
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001481 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher515d87f2010-12-03 06:58:14 +00001482 else
1483 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001484 << Attr.getName() << ExpectedVariable;
Eric Christopher8a2ee392010-12-02 02:45:55 +00001485}
1486
Chandler Carruthedc2c642011-07-02 00:01:44 +00001487static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001488 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00001489
1490 if (S.CheckNoReturnAttr(attr)) return;
1491
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001492 if (!isa<ObjCMethodDecl>(D)) {
John McCall3882ace2011-01-05 12:14:39 +00001493 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001494 << attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00001495 return;
1496 }
1497
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001498 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall3882ace2011-01-05 12:14:39 +00001499}
1500
1501bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek1551d552011-04-15 05:49:29 +00001502 if (attr.hasParameterOrArguments()) {
John McCall3882ace2011-01-05 12:14:39 +00001503 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1504 attr.setInvalid();
1505 return true;
1506 }
1507
1508 return false;
Ted Kremenek40f4ee72009-04-10 00:01:14 +00001509}
1510
Chandler Carruthedc2c642011-07-02 00:01:44 +00001511static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1512 const AttributeList &Attr) {
Ted Kremenek5295ce82010-08-19 00:51:58 +00001513
1514 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1515 // because 'analyzer_noreturn' does not impact the type.
1516
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001517 if(!checkAttributeNumArgs(S, Attr, 0))
1518 return;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001519
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001520 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1521 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenek5295ce82010-08-19 00:51:58 +00001522 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1523 && !VD->getType()->isFunctionPointerType())) {
1524 S.Diag(Attr.getLoc(),
1525 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1526 : diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001527 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenek5295ce82010-08-19 00:51:58 +00001528 return;
1529 }
1530 }
1531
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001532 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001533}
1534
John Thompsoncdb847ba2010-08-09 21:53:52 +00001535// PS3 PPU-specific.
Chandler Carruthedc2c642011-07-02 00:01:44 +00001536static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001537/*
1538 Returning a Vector Class in Registers
1539
Eric Christopherbc638a82010-12-01 22:13:54 +00001540 According to the PPU ABI specifications, a class with a single member of
1541 vector type is returned in memory when used as the return value of a function.
1542 This results in inefficient code when implementing vector classes. To return
1543 the value in a single vector register, add the vecreturn attribute to the
1544 class definition. This attribute is also applicable to struct types.
John Thompsoncdb847ba2010-08-09 21:53:52 +00001545
1546 Example:
1547
1548 struct Vector
1549 {
1550 __vector float xyzw;
1551 } __attribute__((vecreturn));
1552
1553 Vector Add(Vector lhs, Vector rhs)
1554 {
1555 Vector result;
1556 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1557 return result; // This will be returned in a register
1558 }
1559*/
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001560 if (!isa<RecordDecl>(D)) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001561 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001562 << Attr.getName() << ExpectedClass;
John Thompsoncdb847ba2010-08-09 21:53:52 +00001563 return;
1564 }
1565
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001566 if (D->getAttr<VecReturnAttr>()) {
John Thompsoncdb847ba2010-08-09 21:53:52 +00001567 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1568 return;
1569 }
1570
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001571 RecordDecl *record = cast<RecordDecl>(D);
John Thompson9a587aaa2010-09-18 01:12:07 +00001572 int count = 0;
1573
1574 if (!isa<CXXRecordDecl>(record)) {
1575 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1576 return;
1577 }
1578
1579 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1580 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1581 return;
1582 }
1583
Eric Christopherbc638a82010-12-01 22:13:54 +00001584 for (RecordDecl::field_iterator iter = record->field_begin();
1585 iter != record->field_end(); iter++) {
John Thompson9a587aaa2010-09-18 01:12:07 +00001586 if ((count == 1) || !iter->getType()->isVectorType()) {
1587 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1588 return;
1589 }
1590 count++;
1591 }
1592
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001593 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompsoncdb847ba2010-08-09 21:53:52 +00001594}
1595
Chandler Carruthedc2c642011-07-02 00:01:44 +00001596static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001597 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Alexis Hunt96d5c762009-11-21 08:43:09 +00001598 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001599 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Alexis Hunt96d5c762009-11-21 08:43:09 +00001600 return;
1601 }
1602 // FIXME: Actually store the attribute on the declaration
1603}
1604
Chandler Carruthedc2c642011-07-02 00:01:44 +00001605static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek39c59a82008-07-25 04:39:19 +00001606 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001607 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001608 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001609 return;
1610 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001611
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001612 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper429c1342012-06-13 18:31:09 +00001613 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001614 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001615 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek39c59a82008-07-25 04:39:19 +00001616 return;
1617 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001618
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001619 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek39c59a82008-07-25 04:39:19 +00001620}
1621
Rafael Espindola70107f92011-10-03 14:59:42 +00001622static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1623 const AttributeList &Attr) {
1624 // check the attribute arguments.
1625 if (Attr.hasParameterOrArguments()) {
1626 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1627 return;
1628 }
1629
1630 if (!isa<FunctionDecl>(D)) {
1631 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1632 << Attr.getName() << ExpectedFunction;
1633 return;
1634 }
1635
1636 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1637}
1638
Chandler Carruthedc2c642011-07-02 00:01:44 +00001639static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001640 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00001641 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001642 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1643 return;
1644 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001645
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001646 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar311bf292009-02-13 22:48:56 +00001647 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001648 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1649 return;
1650 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001651 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001652 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001653 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001654 return;
1655 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001656
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001657 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarfee07a02009-02-13 19:23:53 +00001658}
1659
Chandler Carruthedc2c642011-07-02 00:01:44 +00001660static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001661 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001662 if (Attr.getNumArgs() > 1) {
1663 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001664 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001665 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001666
1667 int priority = 65535; // FIXME: Do not hardcode such constants.
1668 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001669 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001670 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001671 if (E->isTypeDependent() || E->isValueDependent() ||
1672 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001673 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001674 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001675 return;
1676 }
1677 priority = Idx.getZExtValue();
1678 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001679
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001680 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001681 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001682 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001683 return;
1684 }
1685
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001686 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001687 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001688}
1689
Chandler Carruthedc2c642011-07-02 00:01:44 +00001690static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar032db472008-07-31 22:40:48 +00001691 // check the attribute arguments.
John McCall80ee5962011-03-02 12:15:05 +00001692 if (Attr.getNumArgs() > 1) {
1693 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar032db472008-07-31 22:40:48 +00001694 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001695 }
Daniel Dunbar032db472008-07-31 22:40:48 +00001696
1697 int priority = 65535; // FIXME: Do not hardcode such constants.
1698 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001699 Expr *E = Attr.getArg(0);
Daniel Dunbar032db472008-07-31 22:40:48 +00001700 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00001701 if (E->isTypeDependent() || E->isValueDependent() ||
1702 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001703 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001704 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar032db472008-07-31 22:40:48 +00001705 return;
1706 }
1707 priority = Idx.getZExtValue();
1708 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001709
Chandler Carruthff4c4f02011-07-01 23:49:12 +00001710 if (!isa<FunctionDecl>(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001711 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00001712 << Attr.getName() << ExpectedFunction;
Daniel Dunbar032db472008-07-31 22:40:48 +00001713 return;
1714 }
1715
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001716 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00001717 priority));
Daniel Dunbar032db472008-07-31 22:40:48 +00001718}
1719
Benjamin Kramerf435ab42012-05-16 12:19:08 +00001720template <typename AttrTy>
1721static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1722 const char *Name) {
Chris Lattner190aa102011-02-24 05:42:24 +00001723 unsigned NumArgs = Attr.getNumArgs();
1724 if (NumArgs > 1) {
John McCall80ee5962011-03-02 12:15:05 +00001725 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001726 return;
1727 }
Benjamin Kramerf435ab42012-05-16 12:19:08 +00001728
1729 // Handle the case where the attribute has a text message.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001730 StringRef Str;
Chris Lattner190aa102011-02-24 05:42:24 +00001731 if (NumArgs == 1) {
1732 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanian551063102010-10-06 21:18:44 +00001733 if (!SE) {
Chris Lattner190aa102011-02-24 05:42:24 +00001734 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerf435ab42012-05-16 12:19:08 +00001735 << Name;
Fariborz Jahanian551063102010-10-06 21:18:44 +00001736 return;
1737 }
Chris Lattner190aa102011-02-24 05:42:24 +00001738 Str = SE->getString();
Fariborz Jahanian551063102010-10-06 21:18:44 +00001739 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001740
Benjamin Kramerf435ab42012-05-16 12:19:08 +00001741 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str));
Fariborz Jahanian1470e932008-12-17 01:07:27 +00001742}
1743
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001744static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1745 const AttributeList &Attr) {
1746 unsigned NumArgs = Attr.getNumArgs();
1747 if (NumArgs > 0) {
1748 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1749 return;
1750 }
1751
1752 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00001753 Attr.getRange(), S.Context));
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00001754}
1755
Patrick Beardacfbe9e2012-04-06 18:12:22 +00001756static void handleObjCRootClassAttr(Sema &S, Decl *D,
1757 const AttributeList &Attr) {
1758 if (!isa<ObjCInterfaceDecl>(D)) {
1759 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1760 return;
1761 }
1762
1763 unsigned NumArgs = Attr.getNumArgs();
1764 if (NumArgs > 0) {
1765 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1766 return;
1767 }
1768
1769 D->addAttr(::new (S.Context) ObjCRootClassAttr(Attr.getRange(), S.Context));
1770}
1771
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00001772static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001773 const AttributeList &Attr) {
Fariborz Jahanian7249e362012-01-03 22:52:32 +00001774 if (!isa<ObjCInterfaceDecl>(D)) {
1775 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1776 return;
1777 }
1778
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001779 unsigned NumArgs = Attr.getNumArgs();
1780 if (NumArgs > 0) {
1781 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1782 return;
1783 }
1784
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00001785 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00001786 Attr.getRange(), S.Context));
1787}
1788
Jordy Rose740b0c22012-05-08 03:27:22 +00001789static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
1790 IdentifierInfo *Platform,
1791 VersionTuple Introduced,
1792 VersionTuple Deprecated,
1793 VersionTuple Obsoleted) {
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001794 StringRef PlatformName
1795 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1796 if (PlatformName.empty())
1797 PlatformName = Platform->getName();
1798
1799 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
1800 // of these steps are needed).
1801 if (!Introduced.empty() && !Deprecated.empty() &&
1802 !(Introduced <= Deprecated)) {
1803 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1804 << 1 << PlatformName << Deprecated.getAsString()
1805 << 0 << Introduced.getAsString();
1806 return true;
1807 }
1808
1809 if (!Introduced.empty() && !Obsoleted.empty() &&
1810 !(Introduced <= Obsoleted)) {
1811 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1812 << 2 << PlatformName << Obsoleted.getAsString()
1813 << 0 << Introduced.getAsString();
1814 return true;
1815 }
1816
1817 if (!Deprecated.empty() && !Obsoleted.empty() &&
1818 !(Deprecated <= Obsoleted)) {
1819 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1820 << 2 << PlatformName << Obsoleted.getAsString()
1821 << 1 << Deprecated.getAsString();
1822 return true;
1823 }
1824
1825 return false;
1826}
1827
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001828AvailabilityAttr *Sema::mergeAvailabilityAttr(Decl *D, SourceRange Range,
1829 IdentifierInfo *Platform,
1830 VersionTuple Introduced,
1831 VersionTuple Deprecated,
1832 VersionTuple Obsoleted,
1833 bool IsUnavailable,
1834 StringRef Message) {
Rafael Espindolac67f2232012-05-10 02:50:16 +00001835 VersionTuple MergedIntroduced = Introduced;
1836 VersionTuple MergedDeprecated = Deprecated;
1837 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001838 bool FoundAny = false;
1839
Rafael Espindolac67f2232012-05-10 02:50:16 +00001840 if (D->hasAttrs()) {
1841 AttrVec &Attrs = D->getAttrs();
1842 for (unsigned i = 0, e = Attrs.size(); i != e;) {
1843 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
1844 if (!OldAA) {
1845 ++i;
1846 continue;
1847 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001848
Rafael Espindolac67f2232012-05-10 02:50:16 +00001849 IdentifierInfo *OldPlatform = OldAA->getPlatform();
1850 if (OldPlatform != Platform) {
1851 ++i;
1852 continue;
1853 }
1854
1855 FoundAny = true;
1856 VersionTuple OldIntroduced = OldAA->getIntroduced();
1857 VersionTuple OldDeprecated = OldAA->getDeprecated();
1858 VersionTuple OldObsoleted = OldAA->getObsoleted();
1859 bool OldIsUnavailable = OldAA->getUnavailable();
1860 StringRef OldMessage = OldAA->getMessage();
1861
1862 if ((!OldIntroduced.empty() && !Introduced.empty() &&
1863 OldIntroduced != Introduced) ||
1864 (!OldDeprecated.empty() && !Deprecated.empty() &&
1865 OldDeprecated != Deprecated) ||
1866 (!OldObsoleted.empty() && !Obsoleted.empty() &&
1867 OldObsoleted != Obsoleted) ||
1868 (OldIsUnavailable != IsUnavailable) ||
1869 (OldMessage != Message)) {
1870 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
1871 Diag(Range.getBegin(), diag::note_previous_attribute);
1872 Attrs.erase(Attrs.begin() + i);
1873 --e;
1874 continue;
1875 }
1876
1877 VersionTuple MergedIntroduced2 = MergedIntroduced;
1878 VersionTuple MergedDeprecated2 = MergedDeprecated;
1879 VersionTuple MergedObsoleted2 = MergedObsoleted;
1880
1881 if (MergedIntroduced2.empty())
1882 MergedIntroduced2 = OldIntroduced;
1883 if (MergedDeprecated2.empty())
1884 MergedDeprecated2 = OldDeprecated;
1885 if (MergedObsoleted2.empty())
1886 MergedObsoleted2 = OldObsoleted;
1887
1888 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
1889 MergedIntroduced2, MergedDeprecated2,
1890 MergedObsoleted2)) {
1891 Attrs.erase(Attrs.begin() + i);
1892 --e;
1893 continue;
1894 }
1895
1896 MergedIntroduced = MergedIntroduced2;
1897 MergedDeprecated = MergedDeprecated2;
1898 MergedObsoleted = MergedObsoleted2;
1899 ++i;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001900 }
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001901 }
1902
1903 if (FoundAny &&
1904 MergedIntroduced == Introduced &&
1905 MergedDeprecated == Deprecated &&
1906 MergedObsoleted == Obsoleted)
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001907 return NULL;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001908
Rafael Espindolac67f2232012-05-10 02:50:16 +00001909 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001910 MergedDeprecated, MergedObsoleted)) {
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001911 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
1912 Introduced, Deprecated,
1913 Obsoleted, IsUnavailable, Message);
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001914 }
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001915 return NULL;
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001916}
1917
Chandler Carruthedc2c642011-07-02 00:01:44 +00001918static void handleAvailabilityAttr(Sema &S, Decl *D,
1919 const AttributeList &Attr) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001920 IdentifierInfo *Platform = Attr.getParameterName();
1921 SourceLocation PlatformLoc = Attr.getParameterLoc();
1922
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001923 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001924 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1925 << Platform;
1926
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001927 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1928 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1929 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregor7ab142b2011-03-26 03:35:55 +00001930 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian88d510d2011-12-10 00:28:41 +00001931 StringRef Str;
1932 const StringLiteral *SE =
1933 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1934 if (SE)
1935 Str = SE->getString();
Rafael Espindola2d243bf2012-05-06 19:56:25 +00001936
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001937 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(D, Attr.getRange(),
1938 Platform,
1939 Introduced.Version,
1940 Deprecated.Version,
1941 Obsoleted.Version,
1942 IsUnavailable, Str);
1943 if (NewAttr)
1944 D->addAttr(NewAttr);
Rafael Espindolac67f2232012-05-10 02:50:16 +00001945}
1946
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001947VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
1948 VisibilityAttr::VisibilityType Vis) {
Rafael Espindolaa6b3cd42012-05-10 03:01:34 +00001949 if (isa<TypedefNameDecl>(D)) {
1950 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "visibility";
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001951 return NULL;
Rafael Espindolaa6b3cd42012-05-10 03:01:34 +00001952 }
Rafael Espindolac67f2232012-05-10 02:50:16 +00001953 VisibilityAttr *ExistingAttr = D->getAttr<VisibilityAttr>();
1954 if (ExistingAttr) {
1955 VisibilityAttr::VisibilityType ExistingVis = ExistingAttr->getVisibility();
1956 if (ExistingVis == Vis)
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001957 return NULL;
Rafael Espindolac67f2232012-05-10 02:50:16 +00001958 Diag(ExistingAttr->getLocation(), diag::err_mismatched_visibility);
1959 Diag(Range.getBegin(), diag::note_previous_attribute);
1960 D->dropAttr<VisibilityAttr>();
1961 }
Rafael Espindolae200f1c2012-05-13 03:25:18 +00001962 return ::new (Context) VisibilityAttr(Range, Context, Vis);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00001963}
1964
Chandler Carruthedc2c642011-07-02 00:01:44 +00001965static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001966 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00001967 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001968 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001969
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00001970 Expr *Arg = Attr.getArg(0);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001971 Arg = Arg->IgnoreParenCasts();
1972 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpd3bb5572009-07-24 19:02:52 +00001973
Douglas Gregorfb65e592011-07-27 05:40:30 +00001974 if (!Str || !Str->isAscii()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001975 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00001976 << "visibility" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00001977 return;
1978 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00001979
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001980 StringRef TypeStr = Str->getString();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001981 VisibilityAttr::VisibilityType type;
Mike Stumpd3bb5572009-07-24 19:02:52 +00001982
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001983 if (TypeStr == "default")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001984 type = VisibilityAttr::Default;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001985 else if (TypeStr == "hidden")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001986 type = VisibilityAttr::Hidden;
Benjamin Kramer12a6ce72010-01-23 18:16:35 +00001987 else if (TypeStr == "internal")
Alexis Huntdcfba7b2010-08-18 23:23:40 +00001988 type = VisibilityAttr::Hidden; // FIXME
John McCalleed64c72012-01-29 01:20:30 +00001989 else if (TypeStr == "protected") {
1990 // Complain about attempts to use protected visibility on targets
1991 // (like Darwin) that don't support it.
1992 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1993 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1994 type = VisibilityAttr::Default;
1995 } else {
1996 type = VisibilityAttr::Protected;
1997 }
1998 } else {
Chris Lattnere3d20d92008-11-23 21:45:46 +00001999 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002000 return;
2001 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002002
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002003 VisibilityAttr *NewAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type);
2004 if (NewAttr)
2005 D->addAttr(NewAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002006}
2007
Chandler Carruthedc2c642011-07-02 00:01:44 +00002008static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2009 const AttributeList &Attr) {
John McCall86bc21f2011-03-02 11:33:24 +00002010 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2011 if (!method) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002012 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002013 << ExpectedMethod;
John McCall86bc21f2011-03-02 11:33:24 +00002014 return;
2015 }
2016
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002017 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2018 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2019 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCall86bc21f2011-03-02 11:33:24 +00002020 << "objc_method_family" << 1;
2021 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002022 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCall86bc21f2011-03-02 11:33:24 +00002023 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002024 Attr.setInvalid();
John McCall86bc21f2011-03-02 11:33:24 +00002025 return;
2026 }
2027
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002028 StringRef param = Attr.getParameterName()->getName();
John McCall86bc21f2011-03-02 11:33:24 +00002029 ObjCMethodFamilyAttr::FamilyKind family;
2030 if (param == "none")
2031 family = ObjCMethodFamilyAttr::OMF_None;
2032 else if (param == "alloc")
2033 family = ObjCMethodFamilyAttr::OMF_alloc;
2034 else if (param == "copy")
2035 family = ObjCMethodFamilyAttr::OMF_copy;
2036 else if (param == "init")
2037 family = ObjCMethodFamilyAttr::OMF_init;
2038 else if (param == "mutableCopy")
2039 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2040 else if (param == "new")
2041 family = ObjCMethodFamilyAttr::OMF_new;
2042 else {
2043 // Just warn and ignore it. This is future-proof against new
2044 // families being used in system headers.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002045 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCall86bc21f2011-03-02 11:33:24 +00002046 return;
2047 }
2048
John McCall31168b02011-06-15 23:02:42 +00002049 if (family == ObjCMethodFamilyAttr::OMF_init &&
2050 !method->getResultType()->isObjCObjectPointerType()) {
2051 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2052 << method->getResultType();
2053 // Ignore the attribute.
2054 return;
2055 }
2056
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002057 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCall31168b02011-06-15 23:02:42 +00002058 S.Context, family));
John McCall86bc21f2011-03-02 11:33:24 +00002059}
2060
Chandler Carruthedc2c642011-07-02 00:01:44 +00002061static void handleObjCExceptionAttr(Sema &S, Decl *D,
2062 const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002063 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner677a3582009-02-14 08:09:34 +00002064 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002065
Chris Lattner677a3582009-02-14 08:09:34 +00002066 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2067 if (OCI == 0) {
2068 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2069 return;
2070 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002071
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002072 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner677a3582009-02-14 08:09:34 +00002073}
2074
Chandler Carruthedc2c642011-07-02 00:01:44 +00002075static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002076 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00002077 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002078 return;
2079 }
Richard Smithdda56e42011-04-15 14:24:37 +00002080 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002081 QualType T = TD->getUnderlyingType();
2082 if (!T->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002083 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002084 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2085 return;
2086 }
2087 }
Fariborz Jahanianbebd0ba2012-05-31 23:18:32 +00002088 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2089 QualType T = PD->getType();
2090 if (!T->isPointerType() ||
2091 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
2092 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2093 return;
2094 }
2095 }
2096 else {
Ted Kremenek05e916b2012-03-01 01:40:32 +00002097 // It is okay to include this attribute on properties, e.g.:
2098 //
2099 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2100 //
2101 // In this case it follows tradition and suppresses an error in the above
2102 // case.
Fariborz Jahaniana45495a2011-11-29 01:48:40 +00002103 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenek05e916b2012-03-01 01:40:32 +00002104 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002105 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanian255c0952009-01-13 23:34:40 +00002106}
2107
Mike Stumpd3bb5572009-07-24 19:02:52 +00002108static void
Chandler Carruthedc2c642011-07-02 00:01:44 +00002109handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00002110 if (Attr.getNumArgs() != 0) {
John McCall61d82582010-05-28 18:25:28 +00002111 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00002112 return;
2113 }
2114
2115 if (!isa<FunctionDecl>(D)) {
2116 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2117 return;
2118 }
2119
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002120 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00002121}
2122
Chandler Carruthedc2c642011-07-02 00:01:44 +00002123static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002124 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002125 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002126 << "blocks" << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00002127 return;
2128 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002129
Steve Naroff3405a732008-09-18 16:44:58 +00002130 if (Attr.getNumArgs() != 0) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002131 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff3405a732008-09-18 16:44:58 +00002132 return;
2133 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002134
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002135 BlocksAttr::BlockType type;
Chris Lattner68e48682008-11-20 04:42:34 +00002136 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff3405a732008-09-18 16:44:58 +00002137 type = BlocksAttr::ByRef;
2138 else {
Chris Lattner3b054132008-11-19 05:08:23 +00002139 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002140 << "blocks" << Attr.getParameterName();
Steve Naroff3405a732008-09-18 16:44:58 +00002141 return;
2142 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002143
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002144 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff3405a732008-09-18 16:44:58 +00002145}
2146
Chandler Carruthedc2c642011-07-02 00:01:44 +00002147static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002148 // check the attribute arguments.
2149 if (Attr.getNumArgs() > 2) {
John McCall80ee5962011-03-02 12:15:05 +00002150 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlssonc181b012008-10-05 18:05:59 +00002151 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002152 }
2153
John McCallb46f2872011-09-09 07:56:05 +00002154 unsigned sentinel = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002155 if (Attr.getNumArgs() > 0) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002156 Expr *E = Attr.getArg(0);
Anders Carlssonc181b012008-10-05 18:05:59 +00002157 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002158 if (E->isTypeDependent() || E->isValueDependent() ||
2159 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002160 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002161 << "sentinel" << 1 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002162 return;
2163 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002164
John McCallb46f2872011-09-09 07:56:05 +00002165 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002166 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2167 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002168 return;
2169 }
John McCallb46f2872011-09-09 07:56:05 +00002170
2171 sentinel = Idx.getZExtValue();
Anders Carlssonc181b012008-10-05 18:05:59 +00002172 }
2173
John McCallb46f2872011-09-09 07:56:05 +00002174 unsigned nullPos = 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002175 if (Attr.getNumArgs() > 1) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002176 Expr *E = Attr.getArg(1);
Anders Carlssonc181b012008-10-05 18:05:59 +00002177 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002178 if (E->isTypeDependent() || E->isValueDependent() ||
2179 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002180 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002181 << "sentinel" << 2 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002182 return;
2183 }
2184 nullPos = Idx.getZExtValue();
Mike Stumpd3bb5572009-07-24 19:02:52 +00002185
John McCallb46f2872011-09-09 07:56:05 +00002186 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002187 // FIXME: This error message could be improved, it would be nice
2188 // to say what the bounds actually are.
Chris Lattner3b054132008-11-19 05:08:23 +00002189 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2190 << E->getSourceRange();
Anders Carlssonc181b012008-10-05 18:05:59 +00002191 return;
2192 }
2193 }
2194
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002195 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +00002196 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner9363e312009-03-17 23:03:47 +00002197 if (isa<FunctionNoProtoType>(FT)) {
2198 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2199 return;
2200 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002201
Chris Lattner9363e312009-03-17 23:03:47 +00002202 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002203 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002204 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002205 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002206 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlssonc181b012008-10-05 18:05:59 +00002207 if (!MD->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002208 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlssonc181b012008-10-05 18:05:59 +00002209 return;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002210 }
Eli Friedman5c5e3b72012-01-06 01:23:10 +00002211 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2212 if (!BD->isVariadic()) {
2213 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2214 return;
2215 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002216 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002217 QualType Ty = V->getType();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00002218 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002219 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherbc638a82010-12-01 22:13:54 +00002220 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002221 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00002222 int m = Ty->isFunctionPointerType() ? 0 : 1;
2223 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002224 return;
2225 }
Mike Stump12b8ce12009-08-04 21:02:39 +00002226 } else {
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002227 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002228 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00002229 return;
2230 }
Anders Carlssonc181b012008-10-05 18:05:59 +00002231 } else {
Chris Lattner3b054132008-11-19 05:08:23 +00002232 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002233 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlssonc181b012008-10-05 18:05:59 +00002234 return;
2235 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002236 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherbc638a82010-12-01 22:13:54 +00002237 nullPos));
Anders Carlssonc181b012008-10-05 18:05:59 +00002238}
2239
Chandler Carruthedc2c642011-07-02 00:01:44 +00002240static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner237f2752009-02-14 07:37:35 +00002241 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002242 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner237f2752009-02-14 07:37:35 +00002243 return;
Chris Lattner237f2752009-02-14 07:37:35 +00002244
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002245 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner237f2752009-02-14 07:37:35 +00002246 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002247 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner237f2752009-02-14 07:37:35 +00002248 return;
2249 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002250
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002251 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2252 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2253 << Attr.getName() << 0;
Nuno Lopes56abcbd2009-12-22 23:59:52 +00002254 return;
2255 }
Fariborz Jahanian5cab26d2010-03-30 18:22:15 +00002256 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2257 if (MD->getResultType()->isVoidType()) {
2258 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2259 << Attr.getName() << 1;
2260 return;
2261 }
2262
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002263 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner237f2752009-02-14 07:37:35 +00002264}
2265
Chandler Carruthedc2c642011-07-02 00:01:44 +00002266static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002267 // check the attribute arguments.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002268 if (Attr.hasParameterOrArguments()) {
2269 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002270 return;
2271 }
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002272
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002273 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian47f9a732011-10-21 22:27:12 +00002274 if (isa<CXXRecordDecl>(D)) {
2275 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2276 return;
2277 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002278 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2279 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanian41136ee2009-07-16 01:12:24 +00002280 return;
2281 }
2282
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002283 NamedDecl *nd = cast<NamedDecl>(D);
John McCall7a198ce2011-02-08 22:35:49 +00002284
2285 // 'weak' only applies to declarations with external linkage.
2286 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002287 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002288 return;
2289 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002290
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002291 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002292}
2293
Chandler Carruthedc2c642011-07-02 00:01:44 +00002294static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002295 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002296 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002297 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002298
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002299
2300 // weak_import only applies to variable & function declarations.
2301 bool isDef = false;
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00002302 if (!D->canBeWeakImported(isDef)) {
2303 if (isDef)
2304 S.Diag(Attr.getLoc(),
2305 diag::warn_attribute_weak_import_invalid_on_definition)
2306 << "weak_import" << 2 /*variable and function*/;
Douglas Gregord71149a2011-03-23 13:27:51 +00002307 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregore8bbc122011-09-02 00:18:52 +00002308 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian3249a1e2011-10-26 23:59:12 +00002309 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregord71149a2011-03-23 13:27:51 +00002310 // Nothing to warn about here.
2311 } else
Fariborz Jahanianea70a172010-04-13 20:22:35 +00002312 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002313 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002314
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002315 return;
2316 }
2317
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002318 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar5cb85eb2009-03-06 06:39:57 +00002319}
2320
Chandler Carruthedc2c642011-07-02 00:01:44 +00002321static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2322 const AttributeList &Attr) {
Nate Begemanf2758702009-06-26 06:32:41 +00002323 // Attribute has 3 arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002324 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begemanf2758702009-06-26 06:32:41 +00002325 return;
Nate Begemanf2758702009-06-26 06:32:41 +00002326
2327 unsigned WGSize[3];
2328 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002329 Expr *E = Attr.getArg(i);
Nate Begemanf2758702009-06-26 06:32:41 +00002330 llvm::APSInt ArgNum(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002331 if (E->isTypeDependent() || E->isValueDependent() ||
2332 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begemanf2758702009-06-26 06:32:41 +00002333 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2334 << "reqd_work_group_size" << E->getSourceRange();
2335 return;
2336 }
2337 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2338 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002339 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002340 WGSize[0], WGSize[1],
Nate Begemanf2758702009-06-26 06:32:41 +00002341 WGSize[2]));
2342}
2343
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002344SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
2345 StringRef Name) {
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002346 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2347 if (ExistingAttr->getName() == Name)
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002348 return NULL;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002349 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2350 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002351 return NULL;
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002352 }
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002353 return ::new (Context) SectionAttr(Range, Context, Name);
Rafael Espindola9869c3a2012-05-13 02:42:42 +00002354}
2355
Chandler Carruthedc2c642011-07-02 00:01:44 +00002356static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar648bf782009-02-12 17:28:23 +00002357 // Attribute has no arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002358 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar648bf782009-02-12 17:28:23 +00002359 return;
Daniel Dunbar648bf782009-02-12 17:28:23 +00002360
2361 // Make sure that there is a string literal as the sections's single
2362 // argument.
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002363 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002364 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00002365 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002366 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar648bf782009-02-12 17:28:23 +00002367 return;
2368 }
Mike Stump11289f42009-09-09 15:08:12 +00002369
Chris Lattner30ba6742009-08-10 19:03:04 +00002370 // If the target wants to validate the section specifier, make it happen.
Douglas Gregore8bbc122011-09-02 00:18:52 +00002371 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattner20aee9b2010-01-12 20:58:53 +00002372 if (!Error.empty()) {
2373 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2374 << Error;
Chris Lattner30ba6742009-08-10 19:03:04 +00002375 return;
2376 }
Mike Stump11289f42009-09-09 15:08:12 +00002377
Chris Lattner20aee9b2010-01-12 20:58:53 +00002378 // This attribute cannot be applied to local variables.
2379 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2380 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2381 return;
2382 }
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002383 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
2384 SE->getString());
2385 if (NewAttr)
2386 D->addAttr(NewAttr);
Daniel Dunbar648bf782009-02-12 17:28:23 +00002387}
2388
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002389
Chandler Carruthedc2c642011-07-02 00:01:44 +00002390static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002391 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002392 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002393 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002394 return;
2395 }
Douglas Gregor88336832011-06-15 05:45:11 +00002396
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002397 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002398 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002399 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002400 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002401 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002402 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002403}
2404
Chandler Carruthedc2c642011-07-02 00:01:44 +00002405static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002406 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00002407 if (Attr.hasParameterOrArguments()) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002408 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlssonb8316282008-10-05 23:32:53 +00002409 return;
2410 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002411
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002412 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregor88336832011-06-15 05:45:11 +00002413 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidis635a9b42011-09-13 16:05:53 +00002414 Existing->setRange(Attr.getRange());
Douglas Gregor88336832011-06-15 05:45:11 +00002415 } else {
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002416 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregor88336832011-06-15 05:45:11 +00002417 }
Anders Carlssonb8316282008-10-05 23:32:53 +00002418}
2419
Chandler Carruthedc2c642011-07-02 00:01:44 +00002420static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssonb8316282008-10-05 23:32:53 +00002421 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002422 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssonb8316282008-10-05 23:32:53 +00002423 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002424
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002425 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlssonb8316282008-10-05 23:32:53 +00002426}
2427
Chandler Carruthedc2c642011-07-02 00:01:44 +00002428static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002429 if (!Attr.getParameterName()) {
Anders Carlssond277d792009-01-31 01:16:18 +00002430 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2431 return;
2432 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002433
Anders Carlssond277d792009-01-31 01:16:18 +00002434 if (Attr.getNumArgs() != 0) {
2435 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2436 return;
2437 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002438
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002439 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002440
Anders Carlssond277d792009-01-31 01:16:18 +00002441 if (!VD || !VD->hasLocalStorage()) {
2442 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2443 return;
2444 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002445
Anders Carlssond277d792009-01-31 01:16:18 +00002446 // Look up the function
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002447 // FIXME: Lookup probably isn't looking in the right place
John McCall9f3059a2009-10-09 21:13:30 +00002448 NamedDecl *CleanupDecl
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002449 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2450 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssond277d792009-01-31 01:16:18 +00002451 if (!CleanupDecl) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002452 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssond277d792009-01-31 01:16:18 +00002453 Attr.getParameterName();
2454 return;
2455 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002456
Anders Carlssond277d792009-01-31 01:16:18 +00002457 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2458 if (!FD) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002459 S.Diag(Attr.getParameterLoc(),
2460 diag::err_attribute_cleanup_arg_not_function)
2461 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002462 return;
2463 }
2464
Anders Carlssond277d792009-01-31 01:16:18 +00002465 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002466 S.Diag(Attr.getParameterLoc(),
2467 diag::err_attribute_cleanup_func_must_take_one_arg)
2468 << Attr.getParameterName();
Anders Carlssond277d792009-01-31 01:16:18 +00002469 return;
2470 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002471
Anders Carlsson723f55d2009-02-07 23:16:50 +00002472 // We're currently more strict than GCC about what function types we accept.
2473 // If this ever proves to be a problem it should be easy to fix.
2474 QualType Ty = S.Context.getPointerType(VD->getType());
2475 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorc03a1082011-01-28 02:26:04 +00002476 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2477 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidis7b608972010-12-06 17:51:50 +00002478 S.Diag(Attr.getParameterLoc(),
Anders Carlsson723f55d2009-02-07 23:16:50 +00002479 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2480 Attr.getParameterName() << ParamTy << Ty;
2481 return;
2482 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002483
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002484 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedmanfa0df832012-02-02 03:46:19 +00002485 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssond277d792009-01-31 01:16:18 +00002486}
2487
Mike Stumpd3bb5572009-07-24 19:02:52 +00002488/// Handle __attribute__((format_arg((idx)))) attribute based on
2489/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002490static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002491 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002492 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002493
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002494 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002495 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002496 << Attr.getName() << ExpectedFunction;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002497 return;
2498 }
Chandler Carruth743682b2010-11-16 08:35:43 +00002499
2500 // In C++ the implicit 'this' function parameter also counts, and they are
2501 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002502 bool HasImplicitThisParam = isInstanceMethod(D);
2503 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002504 unsigned FirstIdx = 1;
Chandler Carruth743682b2010-11-16 08:35:43 +00002505
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002506 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002507 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002508 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002509 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2510 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002511 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2512 << "format" << 2 << IdxExpr->getSourceRange();
2513 return;
2514 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002515
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002516 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2517 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2518 << "format" << 2 << IdxExpr->getSourceRange();
2519 return;
2520 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002521
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002522 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002523
Chandler Carruth743682b2010-11-16 08:35:43 +00002524 if (HasImplicitThisParam) {
2525 if (ArgIdx == 0) {
2526 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2527 << "format_arg" << IdxExpr->getSourceRange();
2528 return;
2529 }
2530 ArgIdx--;
2531 }
2532
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002533 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002534 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002535
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002536 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2537 if (not_nsstring_type &&
2538 !isCFStringType(Ty, S.Context) &&
2539 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002540 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002541 // FIXME: Should highlight the actual expression that has the wrong type.
2542 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002543 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002544 << IdxExpr->getSourceRange();
2545 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002546 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002547 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002548 if (!isNSStringType(Ty, S.Context) &&
2549 !isCFStringType(Ty, S.Context) &&
2550 (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002551 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002552 // FIXME: Should highlight the actual expression that has the wrong type.
2553 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpd3bb5572009-07-24 19:02:52 +00002554 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002555 << IdxExpr->getSourceRange();
2556 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002557 }
2558
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002559 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth743682b2010-11-16 08:35:43 +00002560 Idx.getZExtValue()));
Fariborz Jahanianf1c25022009-05-20 17:41:43 +00002561}
2562
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002563enum FormatAttrKind {
2564 CFStringFormat,
2565 NSStringFormat,
2566 StrftimeFormat,
2567 SupportedFormat,
Chris Lattner12161d32010-03-22 21:08:50 +00002568 IgnoredFormat,
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002569 InvalidFormat
2570};
2571
2572/// getFormatAttrKind - Map from format attribute names to supported format
2573/// types.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002574static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramer96a44b62012-05-16 12:44:25 +00002575 return llvm::StringSwitch<FormatAttrKind>(Format)
2576 // Check for formats that get handled specially.
2577 .Case("NSString", NSStringFormat)
2578 .Case("CFString", CFStringFormat)
2579 .Case("strftime", StrftimeFormat)
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002580
Benjamin Kramer96a44b62012-05-16 12:44:25 +00002581 // Otherwise, check for supported formats.
2582 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2583 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2584 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002585
Benjamin Kramer96a44b62012-05-16 12:44:25 +00002586 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2587 .Default(InvalidFormat);
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002588}
2589
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002590/// Handle __attribute__((init_priority(priority))) attributes based on
2591/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002592static void handleInitPriorityAttr(Sema &S, Decl *D,
2593 const AttributeList &Attr) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002594 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002595 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2596 return;
2597 }
2598
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002599 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002600 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2601 Attr.setInvalid();
2602 return;
2603 }
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002604 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002605 if (S.Context.getAsArrayType(T))
2606 T = S.Context.getBaseElementType(T);
2607 if (!T->getAs<RecordType>()) {
2608 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2609 Attr.setInvalid();
2610 return;
2611 }
2612
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002613 if (Attr.getNumArgs() != 1) {
2614 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2615 Attr.setInvalid();
2616 return;
2617 }
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002618 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanian0bf5ee72010-06-18 23:14:53 +00002619
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002620 llvm::APSInt priority(32);
2621 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2622 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2623 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2624 << "init_priority" << priorityExpr->getSourceRange();
2625 Attr.setInvalid();
2626 return;
2627 }
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +00002628 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002629 if (prioritynum < 101 || prioritynum > 65535) {
2630 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2631 << priorityExpr->getSourceRange();
2632 Attr.setInvalid();
2633 return;
2634 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002635 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002636 prioritynum));
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00002637}
2638
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002639FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
2640 int FormatIdx, int FirstArg) {
Rafael Espindola92d49452012-05-11 00:36:07 +00002641 // Check whether we already have an equivalent format attribute.
2642 for (specific_attr_iterator<FormatAttr>
2643 i = D->specific_attr_begin<FormatAttr>(),
2644 e = D->specific_attr_end<FormatAttr>();
2645 i != e ; ++i) {
2646 FormatAttr *f = *i;
2647 if (f->getType() == Format &&
2648 f->getFormatIdx() == FormatIdx &&
2649 f->getFirstArg() == FirstArg) {
2650 // If we don't have a valid location for this attribute, adopt the
2651 // location.
2652 if (f->getLocation().isInvalid())
2653 f->setRange(Range);
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002654 return NULL;
Rafael Espindola92d49452012-05-11 00:36:07 +00002655 }
2656 }
2657
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002658 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
2659 FirstArg);
Rafael Espindola92d49452012-05-11 00:36:07 +00002660}
2661
Mike Stumpd3bb5572009-07-24 19:02:52 +00002662/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2663/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruthedc2c642011-07-02 00:01:44 +00002664static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002665
Chris Lattner4a927cb2008-06-28 23:36:30 +00002666 if (!Attr.getParameterName()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002667 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002668 << "format" << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002669 return;
2670 }
2671
Chris Lattner4a927cb2008-06-28 23:36:30 +00002672 if (Attr.getNumArgs() != 2) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002673 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002674 return;
2675 }
2676
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002677 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002678 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002679 << Attr.getName() << ExpectedFunction;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002680 return;
2681 }
2682
Chandler Carruth743682b2010-11-16 08:35:43 +00002683 // In C++ the implicit 'this' function parameter also counts, and they are
2684 // counted from one.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002685 bool HasImplicitThisParam = isInstanceMethod(D);
2686 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002687 unsigned FirstIdx = 1;
2688
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002689 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002690
2691 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002692 if (Format.startswith("__") && Format.endswith("__"))
2693 Format = Format.substr(2, Format.size() - 4);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002694
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002695 // Check for supported formats.
2696 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner12161d32010-03-22 21:08:50 +00002697
2698 if (Kind == IgnoredFormat)
2699 return;
2700
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002701 if (Kind == InvalidFormat) {
Chris Lattner3b054132008-11-19 05:08:23 +00002702 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar07d07852009-10-18 21:17:35 +00002703 << "format" << Attr.getParameterName()->getName();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002704 return;
2705 }
2706
2707 // checks for the 2nd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002708 Expr *IdxExpr = Attr.getArg(0);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002709 llvm::APSInt Idx(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002710 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2711 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002712 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002713 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002714 return;
2715 }
2716
2717 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002718 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002719 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002720 return;
2721 }
2722
2723 // FIXME: Do we need to bounds check?
2724 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002725
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002726 if (HasImplicitThisParam) {
2727 if (ArgIdx == 0) {
Chandler Carruth743682b2010-11-16 08:35:43 +00002728 S.Diag(Attr.getLoc(),
2729 diag::err_format_attribute_implicit_this_format_string)
2730 << IdxExpr->getSourceRange();
Sebastian Redl6eedcc12009-11-17 18:02:24 +00002731 return;
2732 }
2733 ArgIdx--;
2734 }
Mike Stump11289f42009-09-09 15:08:12 +00002735
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002736 // make sure the format string is really a string
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002737 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002738
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002739 if (Kind == CFStringFormat) {
Daniel Dunbar980c6692008-09-26 03:32:58 +00002740 if (!isCFStringType(Ty, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002741 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2742 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar980c6692008-09-26 03:32:58 +00002743 return;
2744 }
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002745 } else if (Kind == NSStringFormat) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002746 // FIXME: do we need to check if the type is NSString*? What are the
2747 // semantics?
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002748 if (!isNSStringType(Ty, S.Context)) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002749 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002750 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2751 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002752 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002753 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002754 } else if (!Ty->isPointerType() ||
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002755 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump87c57ac2009-05-16 07:39:55 +00002756 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattner3b054132008-11-19 05:08:23 +00002757 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2758 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002759 return;
2760 }
2761
2762 // check the 3rd argument
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002763 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00002764 llvm::APSInt FirstArg(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00002765 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2766 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattner3b054132008-11-19 05:08:23 +00002767 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002768 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002769 return;
2770 }
2771
2772 // check if the function is variadic if the 3rd argument non-zero
2773 if (FirstArg != 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002774 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002775 ++NumArgs; // +1 for ...
2776 } else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002777 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002778 return;
2779 }
2780 }
2781
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002782 // strftime requires FirstArg to be 0 because it doesn't read from any
2783 // variable the input is just the current time + the format string.
Daniel Dunbarccbd9a42009-10-18 02:09:17 +00002784 if (Kind == StrftimeFormat) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002785 if (FirstArg != 0) {
Chris Lattner3b054132008-11-19 05:08:23 +00002786 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2787 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002788 return;
2789 }
2790 // if 0 it disables parameter checking (to use with e.g. va_list)
2791 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattner3b054132008-11-19 05:08:23 +00002792 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002793 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002794 return;
2795 }
2796
Rafael Espindolae200f1c2012-05-13 03:25:18 +00002797 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
2798 Idx.getZExtValue(),
2799 FirstArg.getZExtValue());
2800 if (NewAttr)
2801 D->addAttr(NewAttr);
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002802}
2803
Chandler Carruthedc2c642011-07-02 00:01:44 +00002804static void handleTransparentUnionAttr(Sema &S, Decl *D,
2805 const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002806 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002807 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002808 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002809
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002810
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002811 // Try to find the underlying union declaration.
2812 RecordDecl *RD = 0;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002813 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002814 if (TD && TD->getUnderlyingType()->isUnionType())
2815 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2816 else
Chandler Carruthff4c4f02011-07-01 23:49:12 +00002817 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002818
2819 if (!RD || !RD->isUnion()) {
Chris Lattner3b054132008-11-19 05:08:23 +00002820 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00002821 << Attr.getName() << ExpectedUnion;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002822 return;
2823 }
2824
John McCallf937c022011-10-07 06:10:15 +00002825 if (!RD->isCompleteDefinition()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002826 S.Diag(Attr.getLoc(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002827 diag::warn_transparent_union_attribute_not_definition);
2828 return;
2829 }
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002830
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002831 RecordDecl::field_iterator Field = RD->field_begin(),
2832 FieldEnd = RD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002833 if (Field == FieldEnd) {
2834 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2835 return;
2836 }
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002837
David Blaikie40ed2972012-06-06 20:45:41 +00002838 FieldDecl *FirstField = *Field;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002839 QualType FirstType = FirstField->getType();
Douglas Gregor21872662010-06-30 17:24:13 +00002840 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpd3bb5572009-07-24 19:02:52 +00002841 S.Diag(FirstField->getLocation(),
Douglas Gregor21872662010-06-30 17:24:13 +00002842 diag::warn_transparent_union_attribute_floating)
2843 << FirstType->isVectorType() << FirstType;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002844 return;
2845 }
2846
2847 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2848 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2849 for (; Field != FieldEnd; ++Field) {
2850 QualType FieldType = Field->getType();
2851 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2852 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2853 // Warn if we drop the attribute.
2854 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002855 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002856 : S.Context.getTypeAlign(FieldType);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002857 S.Diag(Field->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002858 diag::warn_transparent_union_attribute_field_size_align)
2859 << isSize << Field->getDeclName() << FieldBits;
2860 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpd3bb5572009-07-24 19:02:52 +00002861 S.Diag(FirstField->getLocation(),
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00002862 diag::note_transparent_union_first_field_size_align)
2863 << isSize << FirstBits;
Eli Friedman7c9ba6a2008-09-02 05:19:23 +00002864 return;
2865 }
2866 }
2867
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002868 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002869}
2870
Chandler Carruthedc2c642011-07-02 00:01:44 +00002871static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002872 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002873 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002874 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002875
Peter Collingbournee57e9ef2010-11-23 20:45:58 +00002876 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner30ba6742009-08-10 19:03:04 +00002877 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpd3bb5572009-07-24 19:02:52 +00002878
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002879 // Make sure that there is a string literal as the annotation's single
2880 // argument.
2881 if (!SE) {
Chris Lattner30ba6742009-08-10 19:03:04 +00002882 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002883 return;
2884 }
Julien Lerouge5a6b6982011-09-09 22:41:49 +00002885
2886 // Don't duplicate annotations that are already set.
2887 for (specific_attr_iterator<AnnotateAttr>
2888 i = D->specific_attr_begin<AnnotateAttr>(),
2889 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2890 if ((*i)->getAnnotation() == SE->getString())
2891 return;
2892 }
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002893 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherbc638a82010-12-01 22:13:54 +00002894 SE->getString()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002895}
2896
Chandler Carruthedc2c642011-07-02 00:01:44 +00002897static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002898 // check the attribute arguments.
Chris Lattner4a927cb2008-06-28 23:36:30 +00002899 if (Attr.getNumArgs() > 1) {
Chris Lattner4bd8dd82008-11-19 08:23:25 +00002900 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002901 return;
2902 }
Aaron Ballman478faed2012-06-19 22:09:27 +00002903
Alexis Hunt96d5c762009-11-21 08:43:09 +00002904 //FIXME: The C++0x version of this attribute has more limited applicabilty
2905 // than GNU's, and should error out when it is used to specify a
2906 // weaker alignment, rather than being silently ignored.
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002907
Chris Lattner4a927cb2008-06-28 23:36:30 +00002908 if (Attr.getNumArgs() == 0) {
Aaron Ballman478faed2012-06-19 22:09:27 +00002909 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
2910 true, 0, Attr.isDeclspecAttribute()));
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002911 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002912 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00002913
Aaron Ballman478faed2012-06-19 22:09:27 +00002914 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0),
2915 Attr.isDeclspecAttribute());
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002916}
2917
Aaron Ballman478faed2012-06-19 22:09:27 +00002918void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
2919 bool isDeclSpec) {
Peter Collingbourne7d33cd32011-10-23 20:07:52 +00002920 // FIXME: Handle pack-expansions here.
2921 if (DiagnoseUnexpandedParameterPack(E))
2922 return;
2923
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002924 if (E->isTypeDependent() || E->isValueDependent()) {
2925 // Save dependent expressions in the AST to be instantiated.
Aaron Ballman478faed2012-06-19 22:09:27 +00002926 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E,
2927 isDeclSpec));
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002928 return;
2929 }
Aaron Ballman478faed2012-06-19 22:09:27 +00002930
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00002931 SourceLocation AttrLoc = AttrRange.getBegin();
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002932 // FIXME: Cache the number on the Attr object?
Chris Lattner4627b742008-06-28 23:50:44 +00002933 llvm::APSInt Alignment(32);
Douglas Gregore2b37442012-05-04 22:38:52 +00002934 ExprResult ICE
2935 = VerifyIntegerConstantExpression(E, &Alignment,
2936 diag::err_aligned_attribute_argument_not_int,
2937 /*AllowFold*/ false);
Richard Smithf4c51d92012-02-04 09:53:13 +00002938 if (ICE.isInvalid())
Chris Lattner4627b742008-06-28 23:50:44 +00002939 return;
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002940 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +00002941 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2942 << E->getSourceRange();
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002943 return;
2944 }
Aaron Ballman478faed2012-06-19 22:09:27 +00002945 if (isDeclSpec) {
2946 // We've already verified it's a power of 2, now let's make sure it's
2947 // 8192 or less.
2948 if (Alignment.getZExtValue() > 8192) {
2949 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
2950 << E->getSourceRange();
2951 return;
2952 }
2953 }
Daniel Dunbar6e8c07d2009-02-16 23:37:57 +00002954
Aaron Ballman478faed2012-06-19 22:09:27 +00002955 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take(),
2956 isDeclSpec));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002957}
2958
Aaron Ballman478faed2012-06-19 22:09:27 +00002959void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
2960 bool isDeclSpec) {
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002961 // FIXME: Cache the number on the Attr object if non-dependent?
2962 // FIXME: Perform checking of type validity
Aaron Ballman478faed2012-06-19 22:09:27 +00002963 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS,
2964 isDeclSpec));
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002965 return;
Chris Lattner2c6fcf52008-06-26 18:38:35 +00002966}
Chris Lattneracbc2d22008-06-27 22:18:37 +00002967
Chandler Carruth3ed22c32011-07-01 23:49:16 +00002968/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpd3bb5572009-07-24 19:02:52 +00002969/// type.
Chris Lattneracbc2d22008-06-27 22:18:37 +00002970///
Mike Stumpd3bb5572009-07-24 19:02:52 +00002971/// Despite what would be logical, the mode attribute is a decl attribute, not a
2972/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2973/// HImode, not an intermediate pointer.
Chandler Carruthedc2c642011-07-02 00:01:44 +00002974static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002975 // This attribute isn't documented, but glibc uses it. It changes
2976 // the width of an int or unsigned int to the specified size.
2977
2978 // Check that there aren't any arguments
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002979 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattneracbc2d22008-06-27 22:18:37 +00002980 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00002981
Chris Lattneracbc2d22008-06-27 22:18:37 +00002982
2983 IdentifierInfo *Name = Attr.getParameterName();
2984 if (!Name) {
Chris Lattnera663a0a2008-06-29 00:28:59 +00002985 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002986 return;
2987 }
Daniel Dunbarafff4342009-10-18 02:09:24 +00002988
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002989 StringRef Str = Attr.getParameterName()->getName();
Chris Lattneracbc2d22008-06-27 22:18:37 +00002990
2991 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbarafff4342009-10-18 02:09:24 +00002992 if (Str.startswith("__") && Str.endswith("__"))
2993 Str = Str.substr(2, Str.size() - 4);
Chris Lattneracbc2d22008-06-27 22:18:37 +00002994
2995 unsigned DestWidth = 0;
2996 bool IntegerMode = true;
Eli Friedman4735374e2009-03-03 06:41:03 +00002997 bool ComplexMode = false;
Daniel Dunbarafff4342009-10-18 02:09:24 +00002998 switch (Str.size()) {
Chris Lattneracbc2d22008-06-27 22:18:37 +00002999 case 2:
Eli Friedman4735374e2009-03-03 06:41:03 +00003000 switch (Str[0]) {
3001 case 'Q': DestWidth = 8; break;
3002 case 'H': DestWidth = 16; break;
3003 case 'S': DestWidth = 32; break;
3004 case 'D': DestWidth = 64; break;
3005 case 'X': DestWidth = 96; break;
3006 case 'T': DestWidth = 128; break;
3007 }
3008 if (Str[1] == 'F') {
3009 IntegerMode = false;
3010 } else if (Str[1] == 'C') {
3011 IntegerMode = false;
3012 ComplexMode = true;
3013 } else if (Str[1] != 'I') {
3014 DestWidth = 0;
3015 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003016 break;
3017 case 4:
3018 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3019 // pointer on PIC16 and other embedded platforms.
Daniel Dunbarafff4342009-10-18 02:09:24 +00003020 if (Str == "word")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003021 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbarafff4342009-10-18 02:09:24 +00003022 else if (Str == "byte")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003023 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattneracbc2d22008-06-27 22:18:37 +00003024 break;
3025 case 7:
Daniel Dunbarafff4342009-10-18 02:09:24 +00003026 if (Str == "pointer")
Douglas Gregore8bbc122011-09-02 00:18:52 +00003027 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattneracbc2d22008-06-27 22:18:37 +00003028 break;
3029 }
3030
3031 QualType OldTy;
Richard Smithdda56e42011-04-15 14:24:37 +00003032 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattneracbc2d22008-06-27 22:18:37 +00003033 OldTy = TD->getUnderlyingType();
3034 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3035 OldTy = VD->getType();
3036 else {
Chris Lattner3b054132008-11-19 05:08:23 +00003037 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003038 << "mode" << Attr.getRange();
Chris Lattneracbc2d22008-06-27 22:18:37 +00003039 return;
3040 }
Eli Friedman4735374e2009-03-03 06:41:03 +00003041
John McCall9dd450b2009-09-21 23:43:11 +00003042 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman4735374e2009-03-03 06:41:03 +00003043 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3044 else if (IntegerMode) {
Douglas Gregorb90df602010-06-16 00:17:44 +00003045 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman4735374e2009-03-03 06:41:03 +00003046 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3047 } else if (ComplexMode) {
3048 if (!OldTy->isComplexType())
3049 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3050 } else {
3051 if (!OldTy->isFloatingType())
3052 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3053 }
3054
Mike Stump87c57ac2009-05-16 07:39:55 +00003055 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3056 // and friends, at least with glibc.
3057 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3058 // width on unusual platforms.
Eli Friedman1efaaea2009-02-13 02:31:07 +00003059 // FIXME: Make sure floating-point mappings are accurate
3060 // FIXME: Support XF and TF types
Chris Lattneracbc2d22008-06-27 22:18:37 +00003061 QualType NewTy;
3062 switch (DestWidth) {
3063 case 0:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003064 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003065 return;
3066 default:
Chris Lattner4bd8dd82008-11-19 08:23:25 +00003067 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003068 return;
3069 case 8:
Eli Friedman4735374e2009-03-03 06:41:03 +00003070 if (!IntegerMode) {
3071 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3072 return;
3073 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003074 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00003075 NewTy = S.Context.SignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003076 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00003077 NewTy = S.Context.UnsignedCharTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003078 break;
3079 case 16:
Eli Friedman4735374e2009-03-03 06:41:03 +00003080 if (!IntegerMode) {
3081 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3082 return;
3083 }
Chris Lattneracbc2d22008-06-27 22:18:37 +00003084 if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00003085 NewTy = S.Context.ShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003086 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00003087 NewTy = S.Context.UnsignedShortTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003088 break;
3089 case 32:
3090 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00003091 NewTy = S.Context.FloatTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003092 else if (OldTy->isSignedIntegerType())
Chris Lattnera663a0a2008-06-29 00:28:59 +00003093 NewTy = S.Context.IntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003094 else
Chris Lattnera663a0a2008-06-29 00:28:59 +00003095 NewTy = S.Context.UnsignedIntTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003096 break;
3097 case 64:
3098 if (!IntegerMode)
Chris Lattnera663a0a2008-06-29 00:28:59 +00003099 NewTy = S.Context.DoubleTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003100 else if (OldTy->isSignedIntegerType())
Douglas Gregore8bbc122011-09-02 00:18:52 +00003101 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00003102 NewTy = S.Context.LongTy;
3103 else
3104 NewTy = S.Context.LongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003105 else
Douglas Gregore8bbc122011-09-02 00:18:52 +00003106 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruth72343702010-01-26 06:39:24 +00003107 NewTy = S.Context.UnsignedLongTy;
3108 else
3109 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003110 break;
Eli Friedman4735374e2009-03-03 06:41:03 +00003111 case 96:
3112 NewTy = S.Context.LongDoubleTy;
3113 break;
Eli Friedman1efaaea2009-02-13 02:31:07 +00003114 case 128:
3115 if (!IntegerMode) {
3116 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3117 return;
3118 }
Anders Carlsson88ea2452009-12-29 07:07:36 +00003119 if (OldTy->isSignedIntegerType())
3120 NewTy = S.Context.Int128Ty;
3121 else
3122 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman4735374e2009-03-03 06:41:03 +00003123 break;
Chris Lattneracbc2d22008-06-27 22:18:37 +00003124 }
3125
Eli Friedman4735374e2009-03-03 06:41:03 +00003126 if (ComplexMode) {
3127 NewTy = S.Context.getComplexType(NewTy);
Chris Lattneracbc2d22008-06-27 22:18:37 +00003128 }
3129
3130 // Install the new type.
Richard Smithdda56e42011-04-15 14:24:37 +00003131 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCall703a3f82009-10-24 08:00:42 +00003132 // FIXME: preserve existing source info.
John McCallbcd03502009-12-07 02:54:59 +00003133 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCall703a3f82009-10-24 08:00:42 +00003134 } else
Chris Lattneracbc2d22008-06-27 22:18:37 +00003135 cast<ValueDecl>(D)->setType(NewTy);
3136}
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003137
Chandler Carruthedc2c642011-07-02 00:01:44 +00003138static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson76187b42009-02-13 06:46:13 +00003139 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003140 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson76187b42009-02-13 06:46:13 +00003141 return;
Anders Carlsson63784f42009-02-13 08:11:52 +00003142
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003143 if (!isFunctionOrMethod(D)) {
Anders Carlsson76187b42009-02-13 06:46:13 +00003144 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003145 << Attr.getName() << ExpectedFunction;
Anders Carlsson76187b42009-02-13 06:46:13 +00003146 return;
3147 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003148
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003149 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlsson76187b42009-02-13 06:46:13 +00003150}
3151
Chandler Carruthedc2c642011-07-02 00:01:44 +00003152static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson88097122009-02-19 19:16:48 +00003153 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003154 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson88097122009-02-19 19:16:48 +00003155 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003156
Mike Stumpd3bb5572009-07-24 19:02:52 +00003157
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003158 if (!isa<FunctionDecl>(D)) {
Anders Carlsson88097122009-02-19 19:16:48 +00003159 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003160 << Attr.getName() << ExpectedFunction;
Anders Carlsson88097122009-02-19 19:16:48 +00003161 return;
3162 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003163
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003164 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson88097122009-02-19 19:16:48 +00003165}
3166
Chandler Carruthedc2c642011-07-02 00:01:44 +00003167static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3168 const AttributeList &Attr) {
Chris Lattner3c77a352010-06-22 00:03:40 +00003169 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003170 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner3c77a352010-06-22 00:03:40 +00003171 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003172
Chris Lattner3c77a352010-06-22 00:03:40 +00003173
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003174 if (!isa<FunctionDecl>(D)) {
Chris Lattner3c77a352010-06-22 00:03:40 +00003175 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003176 << Attr.getName() << ExpectedFunction;
Chris Lattner3c77a352010-06-22 00:03:40 +00003177 return;
3178 }
3179
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003180 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003181 S.Context));
Chris Lattner3c77a352010-06-22 00:03:40 +00003182}
3183
Chandler Carruthedc2c642011-07-02 00:01:44 +00003184static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003185 if (S.LangOpts.CUDA) {
3186 // check the attribute arguments.
Ted Kremenek1551d552011-04-15 05:49:29 +00003187 if (Attr.hasParameterOrArguments()) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003188 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3189 return;
3190 }
3191
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003192 if (!isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003193 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003194 << Attr.getName() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003195 return;
3196 }
3197
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003198 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003199 } else {
3200 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3201 }
3202}
3203
Chandler Carruthedc2c642011-07-02 00:01:44 +00003204static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003205 if (S.LangOpts.CUDA) {
3206 // check the attribute arguments.
3207 if (Attr.getNumArgs() != 0) {
3208 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3209 return;
3210 }
3211
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003212 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003213 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003214 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003215 return;
3216 }
3217
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003218 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003219 } else {
3220 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3221 }
3222}
3223
Chandler Carruthedc2c642011-07-02 00:01:44 +00003224static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003225 if (S.LangOpts.CUDA) {
3226 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003227 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003228 return;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003229
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003230 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003231 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003232 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003233 return;
3234 }
3235
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003236 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00003237 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara6d810632010-12-14 22:11:44 +00003238 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbournee8cfaf42010-12-12 23:02:57 +00003239 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
3240 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3241 << FD->getType()
3242 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
3243 "void");
3244 } else {
3245 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3246 << FD->getType();
3247 }
3248 return;
3249 }
3250
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003251 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003252 } else {
3253 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3254 }
3255}
3256
Chandler Carruthedc2c642011-07-02 00:01:44 +00003257static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003258 if (S.LangOpts.CUDA) {
3259 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003260 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003261 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003262
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003263
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003264 if (!isa<FunctionDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003265 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003266 << Attr.getName() << ExpectedFunction;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003267 return;
3268 }
3269
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003270 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003271 } else {
3272 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3273 }
3274}
3275
Chandler Carruthedc2c642011-07-02 00:01:44 +00003276static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003277 if (S.LangOpts.CUDA) {
3278 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003279 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003280 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003281
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003282
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003283 if (!isa<VarDecl>(D)) {
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003284 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003285 << Attr.getName() << ExpectedVariable;
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003286 return;
3287 }
3288
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003289 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourne6ab610c2010-12-01 03:15:31 +00003290 } else {
3291 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3292 }
3293}
3294
Chandler Carruthedc2c642011-07-02 00:01:44 +00003295static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00003296 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003297 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnereaad6b72009-04-14 16:30:50 +00003298 return;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003299
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003300 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattner4225e232009-04-14 17:02:11 +00003301 if (Fn == 0) {
Chris Lattnereaad6b72009-04-14 16:30:50 +00003302 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003303 << Attr.getName() << ExpectedFunction;
Chris Lattnereaad6b72009-04-14 16:30:50 +00003304 return;
3305 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003306
Douglas Gregor35b57532009-10-27 21:01:01 +00003307 if (!Fn->isInlineSpecified()) {
Chris Lattnerddf6ca02009-04-20 19:12:28 +00003308 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattner4225e232009-04-14 17:02:11 +00003309 return;
3310 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003311
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003312 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattnereaad6b72009-04-14 16:30:50 +00003313}
3314
Chandler Carruthedc2c642011-07-02 00:01:44 +00003315static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003316 if (hasDeclarator(D)) return;
Abramo Bagnara50099372010-04-30 13:10:51 +00003317
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003318 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall3882ace2011-01-05 12:14:39 +00003319 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3320 CallingConv CC;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003321 if (S.CheckCallingConvAttr(Attr, CC))
John McCall3882ace2011-01-05 12:14:39 +00003322 return;
3323
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003324 if (!isa<ObjCMethodDecl>(D)) {
3325 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3326 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall3882ace2011-01-05 12:14:39 +00003327 return;
3328 }
3329
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003330 switch (Attr.getKind()) {
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003331 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003332 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00003333 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003334 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003335 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00003336 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003337 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003338 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor4d13d102010-08-30 23:30:49 +00003339 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003340 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003341 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnara50099372010-04-30 13:10:51 +00003342 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003343 case AttributeList::AT_pascal:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003344 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik335e16b2010-09-03 01:29:35 +00003345 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003346 case AttributeList::AT_pcs: {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003347 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003348 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003349 if (!Str || !Str->isAscii()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003350 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003351 << "pcs" << 1;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003352 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003353 return;
3354 }
3355
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003356 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003357 PcsAttr::PCSType PCS;
3358 if (StrRef == "aapcs")
3359 PCS = PcsAttr::AAPCS;
3360 else if (StrRef == "aapcs-vfp")
3361 PCS = PcsAttr::AAPCS_VFP;
3362 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003363 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3364 Attr.setInvalid();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003365 return;
3366 }
3367
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003368 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003369 }
Abramo Bagnara50099372010-04-30 13:10:51 +00003370 default:
3371 llvm_unreachable("unexpected attribute kind");
Abramo Bagnara50099372010-04-30 13:10:51 +00003372 }
3373}
3374
Chandler Carruthedc2c642011-07-02 00:01:44 +00003375static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth9312c642011-07-11 23:33:05 +00003376 assert(!Attr.isInvalid());
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003377 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00003378}
3379
John McCall3882ace2011-01-05 12:14:39 +00003380bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3381 if (attr.isInvalid())
3382 return true;
3383
Ted Kremenek1551d552011-04-15 05:49:29 +00003384 if ((attr.getNumArgs() != 0 &&
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003385 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
Ted Kremenek1551d552011-04-15 05:49:29 +00003386 attr.getParameterName()) {
John McCall3882ace2011-01-05 12:14:39 +00003387 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3388 attr.setInvalid();
3389 return true;
3390 }
3391
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003392 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3393 // move to TargetAttributesSema one day.
John McCall3882ace2011-01-05 12:14:39 +00003394 switch (attr.getKind()) {
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003395 case AttributeList::AT_cdecl: CC = CC_C; break;
3396 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3397 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3398 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3399 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
3400 case AttributeList::AT_pcs: {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003401 Expr *Arg = attr.getArg(0);
3402 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003403 if (!Str || !Str->isAscii()) {
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003404 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3405 << "pcs" << 1;
3406 attr.setInvalid();
3407 return true;
3408 }
3409
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003410 StringRef StrRef = Str->getString();
Anton Korobeynikov231e8752011-04-14 20:06:49 +00003411 if (StrRef == "aapcs") {
3412 CC = CC_AAPCS;
3413 break;
3414 } else if (StrRef == "aapcs-vfp") {
3415 CC = CC_AAPCS_VFP;
3416 break;
3417 }
3418 // FALLS THROUGH
3419 }
David Blaikie8a40f702012-01-17 06:56:22 +00003420 default: llvm_unreachable("unexpected attribute kind");
John McCall3882ace2011-01-05 12:14:39 +00003421 }
3422
3423 return false;
3424}
3425
Chandler Carruthedc2c642011-07-02 00:01:44 +00003426static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003427 if (hasDeclarator(D)) return;
John McCall3882ace2011-01-05 12:14:39 +00003428
3429 unsigned numParams;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003430 if (S.CheckRegparmAttr(Attr, numParams))
John McCall3882ace2011-01-05 12:14:39 +00003431 return;
3432
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003433 if (!isa<ObjCMethodDecl>(D)) {
3434 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3435 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003436 return;
3437 }
Eli Friedman7044b762009-03-27 21:06:47 +00003438
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003439 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall3882ace2011-01-05 12:14:39 +00003440}
3441
3442/// Checks a regparm attribute, returning true if it is ill-formed and
3443/// otherwise setting numParams to the appropriate value.
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003444bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3445 if (Attr.isInvalid())
John McCall3882ace2011-01-05 12:14:39 +00003446 return true;
3447
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003448 if (Attr.getNumArgs() != 1) {
3449 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3450 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003451 return true;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003452 }
Eli Friedman7044b762009-03-27 21:06:47 +00003453
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003454 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman7044b762009-03-27 21:06:47 +00003455 llvm::APSInt NumParams(32);
Douglas Gregorbdb604a2010-05-18 23:01:22 +00003456 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall3882ace2011-01-05 12:14:39 +00003457 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003458 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman7044b762009-03-27 21:06:47 +00003459 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003460 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003461 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003462 }
3463
Douglas Gregore8bbc122011-09-02 00:18:52 +00003464 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003465 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman7044b762009-03-27 21:06:47 +00003466 << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003467 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003468 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003469 }
3470
John McCall3882ace2011-01-05 12:14:39 +00003471 numParams = NumParams.getZExtValue();
Douglas Gregore8bbc122011-09-02 00:18:52 +00003472 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003473 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregore8bbc122011-09-02 00:18:52 +00003474 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003475 Attr.setInvalid();
John McCall3882ace2011-01-05 12:14:39 +00003476 return true;
Eli Friedman7044b762009-03-27 21:06:47 +00003477 }
3478
John McCall3882ace2011-01-05 12:14:39 +00003479 return false;
Fariborz Jahaniana2d609e2009-03-27 18:38:55 +00003480}
3481
Chandler Carruthedc2c642011-07-02 00:01:44 +00003482static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne827301e2010-12-12 23:03:07 +00003483 if (S.LangOpts.CUDA) {
3484 // check the attribute arguments.
3485 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCall80ee5962011-03-02 12:15:05 +00003486 // FIXME: 0 is not okay.
3487 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003488 return;
3489 }
3490
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003491 if (!isFunctionOrMethod(D)) {
Peter Collingbourne827301e2010-12-12 23:03:07 +00003492 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall5fca7ea2011-03-02 12:29:23 +00003493 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne827301e2010-12-12 23:03:07 +00003494 return;
3495 }
3496
3497 Expr *MaxThreadsExpr = Attr.getArg(0);
3498 llvm::APSInt MaxThreads(32);
3499 if (MaxThreadsExpr->isTypeDependent() ||
3500 MaxThreadsExpr->isValueDependent() ||
3501 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3502 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3503 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3504 return;
3505 }
3506
3507 llvm::APSInt MinBlocks(32);
3508 if (Attr.getNumArgs() > 1) {
3509 Expr *MinBlocksExpr = Attr.getArg(1);
3510 if (MinBlocksExpr->isTypeDependent() ||
3511 MinBlocksExpr->isValueDependent() ||
3512 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3513 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3514 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3515 return;
3516 }
3517 }
3518
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003519 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne827301e2010-12-12 23:03:07 +00003520 MaxThreads.getZExtValue(),
3521 MinBlocks.getZExtValue()));
3522 } else {
3523 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3524 }
3525}
3526
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003527//===----------------------------------------------------------------------===//
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003528// Checker-specific attribute handlers.
3529//===----------------------------------------------------------------------===//
3530
John McCalled433932011-01-25 03:31:58 +00003531static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003532 return type->isDependentType() ||
3533 type->isObjCObjectPointerType() ||
3534 S.Context.isObjCNSObjectType(type);
John McCalled433932011-01-25 03:31:58 +00003535}
3536static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregorf892c7f2011-10-09 22:26:49 +00003537 return type->isDependentType() ||
3538 type->isPointerType() ||
3539 isValidSubjectOfNSAttribute(S, type);
John McCalled433932011-01-25 03:31:58 +00003540}
3541
Chandler Carruthedc2c642011-07-02 00:01:44 +00003542static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003543 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCalled433932011-01-25 03:31:58 +00003544 if (!param) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003545 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003546 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCalled433932011-01-25 03:31:58 +00003547 return;
3548 }
3549
3550 bool typeOK, cf;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003551 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCalled433932011-01-25 03:31:58 +00003552 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3553 cf = false;
3554 } else {
3555 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3556 cf = true;
3557 }
3558
3559 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003560 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003561 << Attr.getRange() << Attr.getName() << cf;
John McCalled433932011-01-25 03:31:58 +00003562 return;
3563 }
3564
3565 if (cf)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003566 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003567 else
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003568 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003569}
3570
Chandler Carruthedc2c642011-07-02 00:01:44 +00003571static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3572 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003573 if (!isa<ObjCMethodDecl>(D)) {
3574 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003575 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCalled433932011-01-25 03:31:58 +00003576 return;
3577 }
3578
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003579 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCalled433932011-01-25 03:31:58 +00003580}
3581
Chandler Carruthedc2c642011-07-02 00:01:44 +00003582static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3583 const AttributeList &Attr) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003584
John McCalled433932011-01-25 03:31:58 +00003585 QualType returnType;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003586
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003587 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003588 returnType = MD->getResultType();
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003589 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanianf4105f52011-06-25 00:17:46 +00003590 returnType = PD->getType();
David Blaikiebbafb8a2012-03-11 07:00:24 +00003591 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003592 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCall31168b02011-06-15 23:02:42 +00003593 return; // ignore: was handled as a type attribute
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003594 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCalled433932011-01-25 03:31:58 +00003595 returnType = FD->getResultType();
Ted Kremenek3b204e42009-05-13 21:07:32 +00003596 else {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003597 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003598 << Attr.getRange() << Attr.getName()
John McCall5fca7ea2011-03-02 12:29:23 +00003599 << ExpectedFunctionOrMethod;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003600 return;
3601 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003602
John McCalled433932011-01-25 03:31:58 +00003603 bool typeOK;
3604 bool cf;
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003605 switch (Attr.getKind()) {
David Blaikie8a40f702012-01-17 06:56:22 +00003606 default: llvm_unreachable("invalid ownership attribute");
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003607 case AttributeList::AT_ns_returns_autoreleased:
3608 case AttributeList::AT_ns_returns_retained:
3609 case AttributeList::AT_ns_returns_not_retained:
John McCalled433932011-01-25 03:31:58 +00003610 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3611 cf = false;
3612 break;
3613
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003614 case AttributeList::AT_cf_returns_retained:
3615 case AttributeList::AT_cf_returns_not_retained:
John McCalled433932011-01-25 03:31:58 +00003616 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3617 cf = true;
3618 break;
3619 }
3620
3621 if (!typeOK) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003622 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003623 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpd3bb5572009-07-24 19:02:52 +00003624 return;
Ted Kremenek3b204e42009-05-13 21:07:32 +00003625 }
Mike Stumpd3bb5572009-07-24 19:02:52 +00003626
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003627 switch (Attr.getKind()) {
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003628 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003629 llvm_unreachable("invalid ownership attribute");
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003630 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003631 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCalled433932011-01-25 03:31:58 +00003632 S.Context));
3633 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003634 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003635 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003636 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003637 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003638 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003639 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003640 S.Context));
Ted Kremenekd9c66632010-02-18 00:05:45 +00003641 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003642 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003643 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003644 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003645 return;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003646 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003647 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherbc638a82010-12-01 22:13:54 +00003648 S.Context));
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003649 return;
3650 };
3651}
3652
John McCallcf166702011-07-22 08:53:00 +00003653static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3654 const AttributeList &attr) {
3655 SourceLocation loc = attr.getLoc();
3656
3657 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3658
Fariborz Jahaniana53e5d72012-04-21 17:51:44 +00003659 if (!method) {
Fariborz Jahanian344d65c2012-04-20 22:00:46 +00003660 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003661 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCallcf166702011-07-22 08:53:00 +00003662 return;
3663 }
3664
3665 // Check that the method returns a normal pointer.
3666 QualType resultType = method->getResultType();
Fariborz Jahanian044a5be2011-09-30 20:50:23 +00003667
3668 if (!resultType->isReferenceType() &&
3669 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCallcf166702011-07-22 08:53:00 +00003670 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3671 << SourceRange(loc)
3672 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3673
3674 // Drop the attribute.
3675 return;
3676 }
3677
3678 method->addAttr(
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003679 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCallcf166702011-07-22 08:53:00 +00003680}
3681
John McCall32f5fe12011-09-30 05:12:12 +00003682/// Handle cf_audited_transfer and cf_unknown_transfer.
3683static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3684 if (!isa<FunctionDecl>(D)) {
3685 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003686 << A.getRange() << A.getName() << ExpectedFunction;
John McCall32f5fe12011-09-30 05:12:12 +00003687 return;
3688 }
3689
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003690 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
John McCall32f5fe12011-09-30 05:12:12 +00003691
3692 // Check whether there's a conflicting attribute already present.
3693 Attr *Existing;
3694 if (IsAudited) {
3695 Existing = D->getAttr<CFUnknownTransferAttr>();
3696 } else {
3697 Existing = D->getAttr<CFAuditedTransferAttr>();
3698 }
3699 if (Existing) {
3700 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3701 << A.getName()
3702 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3703 << A.getRange() << Existing->getRange();
3704 return;
3705 }
3706
3707 // All clear; add the attribute.
3708 if (IsAudited) {
3709 D->addAttr(
3710 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3711 } else {
3712 D->addAttr(
3713 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3714 }
3715}
3716
John McCallf1e8b342011-09-29 07:17:38 +00003717static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3718 const AttributeList &Attr) {
3719 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3720 if (!RD || RD->isUnion()) {
3721 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003722 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallf1e8b342011-09-29 07:17:38 +00003723 }
3724
3725 IdentifierInfo *ParmName = Attr.getParameterName();
3726
3727 // In Objective-C, verify that the type names an Objective-C type.
3728 // We don't want to check this outside of ObjC because people sometimes
3729 // do crazy C declarations of Objective-C types.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003730 if (ParmName && S.getLangOpts().ObjC1) {
John McCallf1e8b342011-09-29 07:17:38 +00003731 // Check for an existing type with this name.
3732 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3733 Sema::LookupOrdinaryName);
3734 if (S.LookupName(R, Sc)) {
3735 NamedDecl *Target = R.getFoundDecl();
3736 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3737 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3738 S.Diag(Target->getLocStart(), diag::note_declared_at);
3739 }
3740 }
3741 }
3742
3743 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3744 ParmName));
3745}
3746
Chandler Carruthedc2c642011-07-02 00:01:44 +00003747static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3748 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003749 if (hasDeclarator(D)) return;
John McCall31168b02011-06-15 23:02:42 +00003750
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003751 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003752 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCall31168b02011-06-15 23:02:42 +00003753}
3754
Chandler Carruthedc2c642011-07-02 00:01:44 +00003755static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3756 const AttributeList &Attr) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003757 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003758 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003759 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCall31168b02011-06-15 23:02:42 +00003760 return;
3761 }
3762
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003763 ValueDecl *vd = cast<ValueDecl>(D);
John McCall31168b02011-06-15 23:02:42 +00003764 QualType type = vd->getType();
3765
3766 if (!type->isDependentType() &&
3767 !type->isObjCLifetimeType()) {
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003768 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCall31168b02011-06-15 23:02:42 +00003769 << type;
3770 return;
3771 }
3772
3773 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3774
3775 // If we have no lifetime yet, check the lifetime we're presumably
3776 // going to infer.
3777 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3778 lifetime = type->getObjCARCImplicitLifetime();
3779
3780 switch (lifetime) {
3781 case Qualifiers::OCL_None:
3782 assert(type->isDependentType() &&
3783 "didn't infer lifetime for non-dependent type?");
3784 break;
3785
3786 case Qualifiers::OCL_Weak: // meaningful
3787 case Qualifiers::OCL_Strong: // meaningful
3788 break;
3789
3790 case Qualifiers::OCL_ExplicitNone:
3791 case Qualifiers::OCL_Autoreleasing:
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003792 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCall31168b02011-06-15 23:02:42 +00003793 << (lifetime == Qualifiers::OCL_Autoreleasing);
3794 break;
3795 }
3796
Chandler Carruthff4c4f02011-07-01 23:49:12 +00003797 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003798 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCall31168b02011-06-15 23:02:42 +00003799}
3800
Francois Picheta83957a2010-12-19 06:50:37 +00003801//===----------------------------------------------------------------------===//
3802// Microsoft specific attribute handlers.
3803//===----------------------------------------------------------------------===//
3804
Chandler Carruthedc2c642011-07-02 00:01:44 +00003805static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet0706d202011-09-17 17:15:52 +00003806 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Picheta83957a2010-12-19 06:50:37 +00003807 // check the attribute arguments.
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003808 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Picheta83957a2010-12-19 06:50:37 +00003809 return;
Chandler Carruthfcc48d92011-07-11 23:30:35 +00003810
Francois Picheta83957a2010-12-19 06:50:37 +00003811 Expr *Arg = Attr.getArg(0);
3812 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregorfb65e592011-07-27 05:40:30 +00003813 if (!Str || !Str->isAscii()) {
Francois Pichet7da11662010-12-20 01:41:49 +00003814 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3815 << "uuid" << 1;
3816 return;
3817 }
3818
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003819 StringRef StrRef = Str->getString();
Francois Pichet7da11662010-12-20 01:41:49 +00003820
3821 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3822 StrRef.back() == '}';
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003823
Francois Pichet7da11662010-12-20 01:41:49 +00003824 // Validate GUID length.
3825 if (IsCurly && StrRef.size() != 38) {
3826 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3827 return;
3828 }
3829 if (!IsCurly && StrRef.size() != 36) {
3830 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3831 return;
3832 }
3833
Douglas Gregor5c3cc422012-03-14 16:55:17 +00003834 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichet7da11662010-12-20 01:41:49 +00003835 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003836 StringRef::iterator I = StrRef.begin();
Anders Carlsson19588aa2011-01-23 21:07:30 +00003837 if (IsCurly) // Skip the optional '{'
3838 ++I;
3839
3840 for (int i = 0; i < 36; ++i) {
Francois Pichet7da11662010-12-20 01:41:49 +00003841 if (i == 8 || i == 13 || i == 18 || i == 23) {
3842 if (*I != '-') {
3843 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3844 return;
3845 }
3846 } else if (!isxdigit(*I)) {
3847 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3848 return;
3849 }
3850 I++;
3851 }
Francois Picheta83957a2010-12-19 06:50:37 +00003852
Argyrios Kyrtzidis309b4c42011-09-13 16:05:58 +00003853 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Picheta83957a2010-12-19 06:50:37 +00003854 Str->getString()));
Francois Pichet7da11662010-12-20 01:41:49 +00003855 } else
Francois Picheta83957a2010-12-19 06:50:37 +00003856 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davis163855f2010-02-16 18:27:26 +00003857}
3858
John McCall8d32c052012-05-22 21:28:12 +00003859static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3860 if (S.LangOpts.MicrosoftExt) {
3861 AttributeList::Kind Kind = Attr.getKind();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003862 if (Kind == AttributeList::AT_single_inheritance)
John McCall8d32c052012-05-22 21:28:12 +00003863 D->addAttr(
3864 ::new (S.Context) SingleInheritanceAttr(Attr.getRange(), S.Context));
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003865 else if (Kind == AttributeList::AT_multiple_inheritance)
John McCall8d32c052012-05-22 21:28:12 +00003866 D->addAttr(
3867 ::new (S.Context) MultipleInheritanceAttr(Attr.getRange(), S.Context));
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003868 else if (Kind == AttributeList::AT_virtual_inheritance)
John McCall8d32c052012-05-22 21:28:12 +00003869 D->addAttr(
3870 ::new (S.Context) VirtualInheritanceAttr(Attr.getRange(), S.Context));
3871 } else
3872 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3873}
3874
3875static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3876 if (S.LangOpts.MicrosoftExt) {
3877 AttributeList::Kind Kind = Attr.getKind();
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003878 if (Kind == AttributeList::AT_ptr32)
John McCall8d32c052012-05-22 21:28:12 +00003879 D->addAttr(
3880 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context));
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003881 else if (Kind == AttributeList::AT_ptr64)
John McCall8d32c052012-05-22 21:28:12 +00003882 D->addAttr(
3883 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context));
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003884 else if (Kind == AttributeList::AT_w64)
John McCall8d32c052012-05-22 21:28:12 +00003885 D->addAttr(
3886 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context));
3887 } else
3888 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3889}
3890
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00003891static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3892 if (S.LangOpts.MicrosoftExt)
3893 D->addAttr(::new (S.Context) ForceInlineAttr(Attr.getRange(), S.Context));
3894 else
3895 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3896}
3897
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003898//===----------------------------------------------------------------------===//
Chris Lattner9e2aafe2008-06-29 00:23:49 +00003899// Top Level Sema Entry Points
3900//===----------------------------------------------------------------------===//
3901
Chandler Carruthedc2c642011-07-02 00:01:44 +00003902static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3903 const AttributeList &Attr) {
Peter Collingbourneb331b262011-01-21 02:08:45 +00003904 switch (Attr.getKind()) {
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003905 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3906 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3907 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourneb331b262011-01-21 02:08:45 +00003908 default:
3909 break;
3910 }
3911}
Abramo Bagnara50099372010-04-30 13:10:51 +00003912
Chandler Carruthedc2c642011-07-02 00:01:44 +00003913static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3914 const AttributeList &Attr) {
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003915 switch (Attr.getKind()) {
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003916 case AttributeList::AT_ibaction: handleIBAction(S, D, Attr); break;
3917 case AttributeList::AT_iboutlet: handleIBOutlet(S, D, Attr); break;
3918 case AttributeList::AT_iboutletcollection:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003919 handleIBOutletCollection(S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003920 case AttributeList::AT_address_space:
3921 case AttributeList::AT_opencl_image_access:
3922 case AttributeList::AT_objc_gc:
3923 case AttributeList::AT_vector_size:
3924 case AttributeList::AT_neon_vector_type:
3925 case AttributeList::AT_neon_polyvector_type:
Mike Stumpd3bb5572009-07-24 19:02:52 +00003926 // Ignore these, these are type attributes, handled by
3927 // ProcessTypeAttributes.
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003928 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003929 case AttributeList::AT_device:
3930 case AttributeList::AT_host:
3931 case AttributeList::AT_overloadable:
Peter Collingbourneb331b262011-01-21 02:08:45 +00003932 // Ignore, this is a non-inheritable attribute, handled
3933 // by ProcessNonInheritableDeclAttr.
3934 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003935 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3936 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
3937 case AttributeList::AT_alloc_size: handleAllocSizeAttr (S, D, Attr); break;
3938 case AttributeList::AT_always_inline:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003939 handleAlwaysInlineAttr (S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003940 case AttributeList::AT_analyzer_noreturn:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003941 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003942 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3943 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
3944 case AttributeList::AT_carries_dependency:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003945 handleDependencyAttr (S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003946 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3947 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3948 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3949 case AttributeList::AT_deprecated:
Benjamin Kramerf435ab42012-05-16 12:19:08 +00003950 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
3951 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003952 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
3953 case AttributeList::AT_ext_vector_type:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003954 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00003955 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003956 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3957 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3958 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3959 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
3960 case AttributeList::AT_launch_bounds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003961 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne827301e2010-12-12 23:03:07 +00003962 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003963 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3964 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3965 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3966 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3967 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekd21139a2010-07-31 01:52:11 +00003968 case AttributeList::AT_ownership_returns:
3969 case AttributeList::AT_ownership_takes:
3970 case AttributeList::AT_ownership_holds:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003971 handleOwnershipAttr (S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003972 case AttributeList::AT_cold: handleColdAttr (S, D, Attr); break;
3973 case AttributeList::AT_hot: handleHotAttr (S, D, Attr); break;
3974 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3975 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3976 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3977 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3978 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003979
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003980 case AttributeList::AT_objc_ownership:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003981 handleObjCOwnershipAttr(S, D, Attr); break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003982 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003983 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCall31168b02011-06-15 23:02:42 +00003984
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003985 case AttributeList::AT_objc_returns_inner_pointer:
John McCallcf166702011-07-22 08:53:00 +00003986 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3987
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003988 case AttributeList::AT_ns_bridged:
John McCallf1e8b342011-09-29 07:17:38 +00003989 handleNSBridgedAttr(S, scope, D, Attr); break;
3990
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003991 case AttributeList::AT_cf_audited_transfer:
3992 case AttributeList::AT_cf_unknown_transfer:
John McCall32f5fe12011-09-30 05:12:12 +00003993 handleCFTransferAttr(S, D, Attr); break;
3994
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00003995 // Checker-specific.
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00003996 case AttributeList::AT_cf_consumed:
3997 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
3998 case AttributeList::AT_ns_consumes_self:
Chandler Carruthedc2c642011-07-02 00:01:44 +00003999 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCalled433932011-01-25 03:31:58 +00004000
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004001 case AttributeList::AT_ns_returns_autoreleased:
4002 case AttributeList::AT_ns_returns_not_retained:
4003 case AttributeList::AT_cf_returns_not_retained:
4004 case AttributeList::AT_ns_returns_retained:
4005 case AttributeList::AT_cf_returns_retained:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004006 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenek9ecdfaf2009-05-09 02:44:38 +00004007
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004008 case AttributeList::AT_reqd_work_group_size:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004009 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begemanf2758702009-06-26 06:32:41 +00004010
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004011 case AttributeList::AT_init_priority:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004012 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanianef5f6212010-06-18 21:44:06 +00004013
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004014 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
4015 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
4016 case AttributeList::AT_unavailable:
Benjamin Kramerf435ab42012-05-16 12:19:08 +00004017 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4018 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004019 case AttributeList::AT_objc_arc_weak_reference_unavailable:
Fariborz Jahanian1f626d62011-07-06 19:24:05 +00004020 handleArcWeakrefUnavailableAttr (S, D, Attr);
4021 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004022 case AttributeList::AT_objc_root_class:
Patrick Beardacfbe9e2012-04-06 18:12:22 +00004023 handleObjCRootClassAttr(S, D, Attr);
4024 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004025 case AttributeList::AT_objc_requires_property_definitions:
Ted Kremenek0c2c90b2012-01-05 22:47:47 +00004026 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahanian9d4d20a2012-01-03 18:45:41 +00004027 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004028 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
4029 case AttributeList::AT_returns_twice:
Rafael Espindola70107f92011-10-03 14:59:42 +00004030 handleReturnsTwiceAttr(S, D, Attr);
4031 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004032 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
4033 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
4034 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner237f2752009-02-14 07:37:35 +00004035 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004036 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
4037 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
4038 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
4039 case AttributeList::AT_transparent_union:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004040 handleTransparentUnionAttr(S, D, Attr);
Chris Lattnerb632a6e2008-06-29 00:43:07 +00004041 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004042 case AttributeList::AT_objc_exception:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004043 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner677a3582009-02-14 08:09:34 +00004044 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004045 case AttributeList::AT_objc_method_family:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004046 handleObjCMethodFamilyAttr(S, D, Attr);
John McCall86bc21f2011-03-02 11:33:24 +00004047 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004048 case AttributeList::AT_NSObject: handleObjCNSObject (S, D, Attr); break;
4049 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
4050 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
4051 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
4052 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
4053 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
4054 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
4055 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
4056 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpd3bb5572009-07-24 19:02:52 +00004057 case AttributeList::IgnoredAttribute:
Anders Carlssonb4f31342009-02-13 08:16:43 +00004058 // Just ignore
4059 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004060 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruthedc2c642011-07-02 00:01:44 +00004061 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner3c77a352010-06-22 00:03:40 +00004062 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004063 case AttributeList::AT_stdcall:
4064 case AttributeList::AT_cdecl:
4065 case AttributeList::AT_fastcall:
4066 case AttributeList::AT_thiscall:
4067 case AttributeList::AT_pascal:
4068 case AttributeList::AT_pcs:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004069 handleCallConvAttr(S, D, Attr);
John McCallab26cfa2010-02-05 21:31:56 +00004070 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004071 case AttributeList::AT_opencl_kernel_function:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004072 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbourne7ce13fc2011-02-14 01:42:53 +00004073 break;
John McCall8d32c052012-05-22 21:28:12 +00004074
4075 // Microsoft attributes:
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004076 case AttributeList::AT_ms_struct:
John McCall8d32c052012-05-22 21:28:12 +00004077 handleMsStructAttr(S, D, Attr);
4078 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004079 case AttributeList::AT_uuid:
Chandler Carruthedc2c642011-07-02 00:01:44 +00004080 handleUuidAttr(S, D, Attr);
Francois Picheta83957a2010-12-19 06:50:37 +00004081 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004082 case AttributeList::AT_single_inheritance:
4083 case AttributeList::AT_multiple_inheritance:
4084 case AttributeList::AT_virtual_inheritance:
John McCall8d32c052012-05-22 21:28:12 +00004085 handleInheritanceAttr(S, D, Attr);
4086 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004087 case AttributeList::AT_w64:
4088 case AttributeList::AT_ptr32:
4089 case AttributeList::AT_ptr64:
John McCall8d32c052012-05-22 21:28:12 +00004090 handlePortabilityAttr(S, D, Attr);
4091 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004092 case AttributeList::AT_forceinline:
Michael J. Spencerf97bd8c2012-06-18 07:00:48 +00004093 handleForceInlineAttr(S, D, Attr);
4094 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004095
4096 // Thread safety attributes:
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004097 case AttributeList::AT_guarded_var:
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004098 handleGuardedVarAttr(S, D, Attr);
4099 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004100 case AttributeList::AT_pt_guarded_var:
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004101 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
4102 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004103 case AttributeList::AT_scoped_lockable:
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004104 handleLockableAttr(S, D, Attr, /*scoped = */true);
4105 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004106 case AttributeList::AT_no_address_safety_analysis:
Kostya Serebryany588d6ab2012-01-24 19:25:38 +00004107 handleNoAddressSafetyAttr(S, D, Attr);
4108 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004109 case AttributeList::AT_no_thread_safety_analysis:
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004110 handleNoThreadSafetyAttr(S, D, Attr);
4111 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004112 case AttributeList::AT_lockable:
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004113 handleLockableAttr(S, D, Attr);
4114 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004115 case AttributeList::AT_guarded_by:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004116 handleGuardedByAttr(S, D, Attr);
4117 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004118 case AttributeList::AT_pt_guarded_by:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004119 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
4120 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004121 case AttributeList::AT_exclusive_lock_function:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004122 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
4123 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004124 case AttributeList::AT_exclusive_locks_required:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004125 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
4126 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004127 case AttributeList::AT_exclusive_trylock_function:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004128 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
4129 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004130 case AttributeList::AT_lock_returned:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004131 handleLockReturnedAttr(S, D, Attr);
4132 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004133 case AttributeList::AT_locks_excluded:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004134 handleLocksExcludedAttr(S, D, Attr);
4135 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004136 case AttributeList::AT_shared_lock_function:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004137 handleLockFunAttr(S, D, Attr);
4138 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004139 case AttributeList::AT_shared_locks_required:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004140 handleLocksRequiredAttr(S, D, Attr);
4141 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004142 case AttributeList::AT_shared_trylock_function:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004143 handleTrylockFunAttr(S, D, Attr);
4144 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004145 case AttributeList::AT_unlock_function:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004146 handleUnlockFunAttr(S, D, Attr);
4147 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004148 case AttributeList::AT_acquired_before:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004149 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
4150 break;
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004151 case AttributeList::AT_acquired_after:
Caitlin Sadowski63fa6672011-07-28 20:12:35 +00004152 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
4153 break;
Caitlin Sadowskiaac4d212011-07-28 17:21:07 +00004154
Chris Lattnerb632a6e2008-06-29 00:43:07 +00004155 default:
Anton Korobeynikov55bcea12010-01-10 12:58:08 +00004156 // Ask target about the attribute.
4157 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4158 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballman478faed2012-06-19 22:09:27 +00004159 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4160 diag::warn_unhandled_ms_attribute_ignored :
4161 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattnerb632a6e2008-06-29 00:43:07 +00004162 break;
4163 }
4164}
4165
Peter Collingbourneb331b262011-01-21 02:08:45 +00004166/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4167/// the attribute applies to decls. If the attribute is a type attribute, just
4168/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
4169/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruthedc2c642011-07-02 00:01:44 +00004170static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4171 const AttributeList &Attr,
Peter Collingbourneb331b262011-01-21 02:08:45 +00004172 bool NonInheritable, bool Inheritable) {
4173 if (Attr.isInvalid())
4174 return;
4175
Aaron Ballman478faed2012-06-19 22:09:27 +00004176 // Type attributes are still treated as declaration attributes by
4177 // ParseMicrosoftTypeAttributes and ParseBorlandTypeAttributes. We don't
4178 // want to process them, however, because we will simply warn about ignoring
4179 // them. So instead, we will bail out early.
4180 if (Attr.isMSTypespecAttribute())
Peter Collingbourneb331b262011-01-21 02:08:45 +00004181 return;
4182
4183 if (NonInheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00004184 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00004185
4186 if (Inheritable)
Chandler Carruthedc2c642011-07-02 00:01:44 +00004187 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourneb331b262011-01-21 02:08:45 +00004188}
4189
Chris Lattnerb632a6e2008-06-29 00:43:07 +00004190/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4191/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherbc638a82010-12-01 22:13:54 +00004192void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourneb331b262011-01-21 02:08:45 +00004193 const AttributeList *AttrList,
4194 bool NonInheritable, bool Inheritable) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00004195 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Rafael Espindolac67f2232012-05-10 02:50:16 +00004196 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola3c9d9472012-05-07 23:58:18 +00004197 }
Rafael Espindolac18086a2010-02-23 22:00:30 +00004198
4199 // GCC accepts
4200 // static int a9 __attribute__((weakref));
4201 // but that looks really pointless. We reject it.
Peter Collingbourneb331b262011-01-21 02:08:45 +00004202 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindolac18086a2010-02-23 22:00:30 +00004203 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekd21139a2010-07-31 01:52:11 +00004204 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindolac18086a2010-02-23 22:00:30 +00004205 return;
Chris Lattnerb632a6e2008-06-29 00:43:07 +00004206 }
4207}
4208
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00004209// Annotation attributes are the only attributes allowed after an access
4210// specifier.
4211bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4212 const AttributeList *AttrList) {
4213 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Jakob Stoklund Olesene1c0ae62012-06-19 21:48:43 +00004214 if (l->getKind() == AttributeList::AT_annotate) {
Erik Verbruggenca98f2a2011-10-13 09:41:32 +00004215 handleAnnotateAttr(*this, ASDecl, *l);
4216 } else {
4217 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4218 return true;
4219 }
4220 }
4221
4222 return false;
4223}
4224
John McCall42856de2011-10-01 05:17:03 +00004225/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4226/// contains any decl attributes that we should warn about.
4227static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4228 for ( ; A; A = A->getNext()) {
4229 // Only warn if the attribute is an unignored, non-type attribute.
4230 if (A->isUsedAsTypeAttr()) continue;
4231 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4232
4233 if (A->getKind() == AttributeList::UnknownAttribute) {
4234 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4235 << A->getName() << A->getRange();
4236 } else {
4237 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4238 << A->getName() << A->getRange();
4239 }
4240 }
4241}
4242
4243/// checkUnusedDeclAttributes - Given a declarator which is not being
4244/// used to build a declaration, complain about any decl attributes
4245/// which might be lying around on it.
4246void Sema::checkUnusedDeclAttributes(Declarator &D) {
4247 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4248 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4249 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4250 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4251}
4252
Ryan Flynn7d470f32009-07-30 03:15:39 +00004253/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett634962f2012-06-14 21:40:34 +00004254/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedmance3e2c82011-09-07 04:05:06 +00004255NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4256 SourceLocation Loc) {
Ryan Flynnd963a492009-07-31 02:52:19 +00004257 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynn7d470f32009-07-30 03:15:39 +00004258 NamedDecl *NewD = 0;
4259 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedmance3e2c82011-09-07 04:05:06 +00004260 FunctionDecl *NewFD;
4261 // FIXME: Missing call to CheckFunctionDeclaration().
4262 // FIXME: Mangling?
4263 // FIXME: Is the qualifier info correct?
4264 // FIXME: Is the DeclContext correct?
4265 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4266 Loc, Loc, DeclarationName(II),
4267 FD->getType(), FD->getTypeSourceInfo(),
4268 SC_None, SC_None,
4269 false/*isInlineSpecified*/,
4270 FD->hasPrototype(),
4271 false/*isConstexprSpecified*/);
4272 NewD = NewFD;
4273
4274 if (FD->getQualifier())
Douglas Gregor14454802011-02-25 02:25:35 +00004275 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedmance3e2c82011-09-07 04:05:06 +00004276
4277 // Fake up parameter variables; they are declared as if this were
4278 // a typedef.
4279 QualType FDTy = FD->getType();
4280 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4281 SmallVector<ParmVarDecl*, 16> Params;
4282 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4283 AE = FT->arg_type_end(); AI != AE; ++AI) {
4284 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4285 Param->setScopeInfo(0, Params.size());
4286 Params.push_back(Param);
4287 }
David Blaikie9c70e042011-09-21 18:16:56 +00004288 NewFD->setParams(Params);
John McCall3e11ebe2010-03-15 10:12:16 +00004289 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00004290 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4291 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00004292 VD->getInnerLocStart(), VD->getLocation(), II,
John McCallbcd03502009-12-07 02:54:59 +00004293 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00004294 VD->getStorageClass(),
4295 VD->getStorageClassAsWritten());
John McCall3e11ebe2010-03-15 10:12:16 +00004296 if (VD->getQualifier()) {
4297 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregor14454802011-02-25 02:25:35 +00004298 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCall3e11ebe2010-03-15 10:12:16 +00004299 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00004300 }
4301 return NewD;
4302}
4303
James Dennett634962f2012-06-14 21:40:34 +00004304/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynn7d470f32009-07-30 03:15:39 +00004305/// applied to it, possibly with an alias.
Ryan Flynnd963a492009-07-31 02:52:19 +00004306void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnere6eab982009-09-08 18:10:11 +00004307 if (W.getUsed()) return; // only do this once
4308 W.setUsed(true);
4309 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4310 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedmance3e2c82011-09-07 04:05:06 +00004311 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Alexis Huntdcfba7b2010-08-18 23:23:40 +00004312 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4313 NDId->getName()));
4314 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnere6eab982009-09-08 18:10:11 +00004315 WeakTopLevelDecl.push_back(NewD);
4316 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4317 // to insert Decl at TU scope, sorry.
4318 DeclContext *SavedContext = CurContext;
4319 CurContext = Context.getTranslationUnitDecl();
4320 PushOnScopeChains(NewD, S);
4321 CurContext = SavedContext;
4322 } else { // just add weak to existing
Alexis Huntdcfba7b2010-08-18 23:23:40 +00004323 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynn7d470f32009-07-30 03:15:39 +00004324 }
4325}
4326
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004327/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
4328/// it, apply them to D. This is a bit tricky because PD can have attributes
4329/// specified in many different places, and we need to find and apply them all.
Peter Collingbourneb331b262011-01-21 02:08:45 +00004330void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
4331 bool NonInheritable, bool Inheritable) {
John McCall6fe02402010-10-27 00:59:00 +00004332 // It's valid to "forward-declare" #pragma weak, in which case we
4333 // have to do this.
Douglas Gregor1c4bfe52011-07-28 18:09:57 +00004334 if (Inheritable) {
4335 LoadExternalWeakUndeclaredIdentifiers();
4336 if (!WeakUndeclaredIdentifiers.empty()) {
4337 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
4338 if (IdentifierInfo *Id = ND->getIdentifier()) {
4339 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
4340 = WeakUndeclaredIdentifiers.find(Id);
4341 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
4342 WeakInfo W = I->second;
4343 DeclApplyPragmaWeak(S, ND, W);
4344 WeakUndeclaredIdentifiers[Id] = W;
4345 }
John McCall6fe02402010-10-27 00:59:00 +00004346 }
Ryan Flynn7d470f32009-07-30 03:15:39 +00004347 }
4348 }
4349 }
4350
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004351 // Apply decl attributes from the DeclSpec if present.
John McCall53fa7142010-12-24 02:08:15 +00004352 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourneb331b262011-01-21 02:08:45 +00004353 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00004354
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004355 // Walk the declarator structure, applying decl attributes that were in a type
4356 // position to the decl itself. This handles cases like:
4357 // int *__attr__(x)** D;
4358 // when X is a decl attribute.
4359 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
4360 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourneb331b262011-01-21 02:08:45 +00004361 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpd3bb5572009-07-24 19:02:52 +00004362
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004363 // Finally, apply any attributes on the decl itself.
4364 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourneb331b262011-01-21 02:08:45 +00004365 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner9e2aafe2008-06-29 00:23:49 +00004366}
John McCall28a6aea2009-11-04 02:18:39 +00004367
John McCall31168b02011-06-15 23:02:42 +00004368/// Is the given declaration allowed to use a forbidden type?
4369static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4370 // Private ivars are always okay. Unfortunately, people don't
4371 // always properly make their ivars private, even in system headers.
4372 // Plus we need to make fields okay, too.
Fariborz Jahanian6d5d6a22011-09-26 21:23:35 +00004373 // Function declarations in sys headers will be marked unavailable.
4374 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4375 !isa<FunctionDecl>(decl))
John McCall31168b02011-06-15 23:02:42 +00004376 return false;
4377
4378 // Require it to be declared in a system header.
4379 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4380}
4381
4382/// Handle a delayed forbidden-type diagnostic.
4383static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4384 Decl *decl) {
4385 if (decl && isForbiddenTypeAllowed(S, decl)) {
4386 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4387 "this system declaration uses an unsupported type"));
4388 return;
4389 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00004390 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00004391 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer474261a2012-06-02 10:20:41 +00004392 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanianed1933b2011-10-03 22:11:57 +00004393 // kind of forbidden type messages on unavailable functions.
4394 if (FD->hasAttr<UnavailableAttr>() &&
4395 diag.getForbiddenTypeDiagnostic() ==
4396 diag::err_arc_array_param_no_ownership) {
4397 diag.Triggered = true;
4398 return;
4399 }
4400 }
John McCall31168b02011-06-15 23:02:42 +00004401
4402 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4403 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4404 diag.Triggered = true;
4405}
4406
John McCall2ec85372012-05-07 06:16:41 +00004407void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
4408 assert(DelayedDiagnostics.getCurrentPool());
John McCall6347b682012-05-07 06:16:58 +00004409 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall2ec85372012-05-07 06:16:41 +00004410 DelayedDiagnostics.popWithoutEmitting(state);
John McCallc1465822011-02-14 07:13:47 +00004411
John McCall2ec85372012-05-07 06:16:41 +00004412 // When delaying diagnostics to run in the context of a parsed
4413 // declaration, we only want to actually emit anything if parsing
4414 // succeeds.
4415 if (!decl) return;
John McCallc1465822011-02-14 07:13:47 +00004416
John McCall2ec85372012-05-07 06:16:41 +00004417 // We emit all the active diagnostics in this pool or any of its
4418 // parents. In general, we'll get one pool for the decl spec
4419 // and a child pool for each declarator; in a decl group like:
4420 // deprecated_typedef foo, *bar, baz();
4421 // only the declarator pops will be passed decls. This is correct;
4422 // we really do need to consider delayed diagnostics from the decl spec
4423 // for each of the different declarations.
John McCall6347b682012-05-07 06:16:58 +00004424 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall2ec85372012-05-07 06:16:41 +00004425 do {
John McCall6347b682012-05-07 06:16:58 +00004426 for (DelayedDiagnosticPool::pool_iterator
John McCall2ec85372012-05-07 06:16:41 +00004427 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
4428 // This const_cast is a bit lame. Really, Triggered should be mutable.
4429 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCallc1465822011-02-14 07:13:47 +00004430 if (diag.Triggered)
John McCall86121512010-01-27 03:50:35 +00004431 continue;
4432
John McCallc1465822011-02-14 07:13:47 +00004433 switch (diag.Kind) {
John McCall86121512010-01-27 03:50:35 +00004434 case DelayedDiagnostic::Deprecation:
John McCall18a962b2012-01-26 20:04:03 +00004435 // Don't bother giving deprecation diagnostics if the decl is invalid.
4436 if (!decl->isInvalidDecl())
John McCall2ec85372012-05-07 06:16:41 +00004437 HandleDelayedDeprecationCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004438 break;
4439
4440 case DelayedDiagnostic::Access:
John McCall2ec85372012-05-07 06:16:41 +00004441 HandleDelayedAccessCheck(diag, decl);
John McCall86121512010-01-27 03:50:35 +00004442 break;
John McCall31168b02011-06-15 23:02:42 +00004443
4444 case DelayedDiagnostic::ForbiddenType:
John McCall2ec85372012-05-07 06:16:41 +00004445 handleDelayedForbiddenType(*this, diag, decl);
John McCall31168b02011-06-15 23:02:42 +00004446 break;
John McCall86121512010-01-27 03:50:35 +00004447 }
4448 }
John McCall2ec85372012-05-07 06:16:41 +00004449 } while ((pool = pool->getParent()));
John McCall28a6aea2009-11-04 02:18:39 +00004450}
4451
John McCall6347b682012-05-07 06:16:58 +00004452/// Given a set of delayed diagnostics, re-emit them as if they had
4453/// been delayed in the current context instead of in the given pool.
4454/// Essentially, this just moves them to the current pool.
4455void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
4456 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
4457 assert(curPool && "re-emitting in undelayed context not supported");
4458 curPool->steal(pool);
4459}
4460
John McCall28a6aea2009-11-04 02:18:39 +00004461static bool isDeclDeprecated(Decl *D) {
4462 do {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +00004463 if (D->isDeprecated())
John McCall28a6aea2009-11-04 02:18:39 +00004464 return true;
Argyrios Kyrtzidisc281c962011-10-06 23:23:27 +00004465 // A category implicitly has the availability of the interface.
4466 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4467 return CatD->getClassInterface()->isDeprecated();
John McCall28a6aea2009-11-04 02:18:39 +00004468 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4469 return false;
4470}
4471
John McCallb45a1e72010-08-26 02:13:20 +00004472void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall86121512010-01-27 03:50:35 +00004473 Decl *Ctx) {
4474 if (isDeclDeprecated(Ctx))
John McCall28a6aea2009-11-04 02:18:39 +00004475 return;
4476
John McCall86121512010-01-27 03:50:35 +00004477 DD.Triggered = true;
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004478 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanian551063102010-10-06 21:18:44 +00004479 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004480 << DD.getDeprecationDecl()->getDeclName()
4481 << DD.getDeprecationMessage();
Fariborz Jahanian7923ef42012-03-02 21:50:02 +00004482 else if (DD.getUnknownObjCClass()) {
4483 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4484 << DD.getDeprecationDecl()->getDeclName();
4485 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4486 }
Fariborz Jahanian551063102010-10-06 21:18:44 +00004487 else
4488 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerbfac7dc2010-10-09 15:49:00 +00004489 << DD.getDeprecationDecl()->getDeclName();
John McCall28a6aea2009-11-04 02:18:39 +00004490}
4491
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004492void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004493 SourceLocation Loc,
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004494 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall28a6aea2009-11-04 02:18:39 +00004495 // Delay if we're currently parsing a declaration.
John McCallc1465822011-02-14 07:13:47 +00004496 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanian7923ef42012-03-02 21:50:02 +00004497 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4498 UnknownObjCClass,
4499 Message));
John McCall28a6aea2009-11-04 02:18:39 +00004500 return;
4501 }
4502
4503 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis9321ad32011-10-06 23:23:20 +00004504 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall28a6aea2009-11-04 02:18:39 +00004505 return;
Fariborz Jahanian08a1eb72012-04-23 20:30:52 +00004506 if (!Message.empty()) {
Fariborz Jahanian551063102010-10-06 21:18:44 +00004507 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4508 << Message;
Fariborz Jahanian08a1eb72012-04-23 20:30:52 +00004509 Diag(D->getLocation(),
4510 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
4511 : diag::note_previous_decl) << D->getDeclName();
4512 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004513 else {
Fariborz Jahanianf0218892012-05-27 16:59:48 +00004514 if (!UnknownObjCClass) {
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004515 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanianf0218892012-05-27 16:59:48 +00004516 Diag(D->getLocation(),
4517 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
4518 : diag::note_previous_decl) << D->getDeclName();
4519 }
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004520 else {
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004521 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahaniandbbdd2f2011-04-23 17:27:19 +00004522 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4523 }
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +00004524 }
John McCall28a6aea2009-11-04 02:18:39 +00004525}