blob: 0a30163f99d43bc8756040346fc8c0cdd7b463fc [file] [log] [blame]
Chris Lattner6b6b5372008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +000017#include "clang/AST/CXXInheritance.h"
John McCall384aff82010-08-25 07:42:41 +000018#include "clang/AST/DeclCXX.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000021#include "clang/AST/Expr.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000022#include "clang/Basic/CharInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000023#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000024#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000025#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000026#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000027#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000028#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000029#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000030using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000031using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000032
John McCall883cc2c2011-03-02 12:29:23 +000033/// These constants match the enumerated choices of
34/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000035enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000036 ExpectedFunction,
37 ExpectedUnion,
38 ExpectedVariableOrFunction,
39 ExpectedFunctionOrMethod,
40 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000041 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000042 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000043 ExpectedFunctionMethodOrParameter,
44 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000045 ExpectedVariable,
46 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000047 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000048 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000049 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000050 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000051 ExpectedTLSVar,
52 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000053 ExpectedVariableFieldOrTag,
54 ExpectedTypeOrNamespace
John McCall883cc2c2011-03-02 12:29:23 +000055};
56
Chris Lattnere5c5ee12008-06-29 00:16:31 +000057//===----------------------------------------------------------------------===//
58// Helper functions
59//===----------------------------------------------------------------------===//
60
Chandler Carruth87c44602011-07-01 23:49:12 +000061static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000062 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000063 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000064 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000065 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000066 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000067 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000068 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000069 Ty = decl->getUnderlyingType();
70 else
71 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000072
Chris Lattner6b6b5372008-06-26 18:38:35 +000073 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000074 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000075 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000076 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000077
John McCall183700f2009-09-21 23:43:11 +000078 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000079}
80
Daniel Dunbar35682492008-09-26 04:12:28 +000081// FIXME: We should provide an abstraction around a method or function
82// to provide the following bits of information.
83
Nuno Lopesd20254f2009-12-20 23:11:08 +000084/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000085/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000086static bool isFunction(const Decl *D) {
87 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000088}
89
90/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000091/// type (function or function-typed variable) or an Objective-C
92/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000093static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000094 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000095}
96
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000097/// isFunctionOrMethodOrBlock - Return true if the given decl has function
98/// type (function or function-typed variable) or an Objective-C
99/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000100static bool isFunctionOrMethodOrBlock(const Decl *D) {
101 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000102 return true;
103 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000104 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000105 QualType Ty = V->getType();
106 return Ty->isBlockPointerType();
107 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000108 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000109}
110
John McCall711c52b2011-01-05 12:14:39 +0000111/// Return true if the given decl has a declarator that should have
112/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000113static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000114 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000115 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
116 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000117}
118
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000119/// hasFunctionProto - Return true if the given decl has a argument
120/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000121/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000122static bool hasFunctionProto(const Decl *D) {
123 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000124 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000125 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000126 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000127 return true;
128 }
129}
130
131/// getFunctionOrMethodNumArgs - Return number of function or method
132/// arguments. It is an error to call this on a K&R function (use
133/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000134static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
135 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000136 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000137 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000138 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000139 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000140}
141
Chandler Carruth87c44602011-07-01 23:49:12 +0000142static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
143 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000144 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000145 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000146 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000147
Chandler Carruth87c44602011-07-01 23:49:12 +0000148 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000149}
150
Chandler Carruth87c44602011-07-01 23:49:12 +0000151static QualType getFunctionOrMethodResultType(const Decl *D) {
152 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000153 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000154 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000155}
156
Chandler Carruth87c44602011-07-01 23:49:12 +0000157static bool isFunctionOrMethodVariadic(const Decl *D) {
158 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000159 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000160 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000161 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000162 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000163 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000164 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000165 }
166}
167
Chandler Carruth87c44602011-07-01 23:49:12 +0000168static bool isInstanceMethod(const Decl *D) {
169 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000170 return MethodDecl->isInstance();
171 return false;
172}
173
Chris Lattner6b6b5372008-06-26 18:38:35 +0000174static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000175 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000176 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000177 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000178
John McCall506b57e2010-05-17 21:00:27 +0000179 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
180 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000181 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000182
John McCall506b57e2010-05-17 21:00:27 +0000183 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000184
Chris Lattner6b6b5372008-06-26 18:38:35 +0000185 // FIXME: Should we walk the chain of classes?
186 return ClsName == &Ctx.Idents.get("NSString") ||
187 ClsName == &Ctx.Idents.get("NSMutableString");
188}
189
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000190static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000191 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192 if (!PT)
193 return false;
194
Ted Kremenek6217b802009-07-29 21:53:49 +0000195 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000196 if (!RT)
197 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000198
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000199 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000200 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000201 return false;
202
203 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
204}
205
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000206/// \brief Check if the attribute has exactly as many args as Num. May
207/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000208static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
209 unsigned int Num) {
210 if (Attr.getNumArgs() != Num) {
211 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
212 return false;
213 }
214
215 return true;
216}
217
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000218
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000219/// \brief Check if the attribute has at least as many args as Num. May
220/// output an error.
221static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
222 unsigned int Num) {
223 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000224 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
225 return false;
226 }
227
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000228 return true;
229}
230
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000231/// \brief Check if IdxExpr is a valid argument index for a function or
232/// instance method D. May output an error.
233///
234/// \returns true if IdxExpr is a valid index.
235static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
236 StringRef AttrName,
237 SourceLocation AttrLoc,
238 unsigned AttrArgNum,
239 const Expr *IdxExpr,
240 uint64_t &Idx)
241{
242 assert(isFunctionOrMethod(D) && hasFunctionProto(D));
243
244 // In C++ the implicit 'this' function parameter also counts.
245 // Parameters are counted from one.
246 const bool HasImplicitThisParam = isInstanceMethod(D);
247 const unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
248 const unsigned FirstIdx = 1;
249
250 llvm::APSInt IdxInt;
251 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
252 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
253 S.Diag(AttrLoc, diag::err_attribute_argument_n_not_int)
254 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
255 return false;
256 }
257
258 Idx = IdxInt.getLimitedValue();
259 if (Idx < FirstIdx || (!isFunctionOrMethodVariadic(D) && Idx > NumArgs)) {
260 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
261 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
262 return false;
263 }
264 Idx--; // Convert to zero-based.
265 if (HasImplicitThisParam) {
266 if (Idx == 0) {
267 S.Diag(AttrLoc,
268 diag::err_attribute_invalid_implicit_this_argument)
269 << AttrName << IdxExpr->getSourceRange();
270 return false;
271 }
272 --Idx;
273 }
274
275 return true;
276}
277
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000278///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000279/// \brief Check if passed in Decl is a field or potentially shared global var
280/// \return true if the Decl is a field or potentially shared global variable
281///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000282static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000283 if (isa<FieldDecl>(D))
284 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000285 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000286 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
287
288 return false;
289}
290
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000291/// \brief Check if the passed-in expression is of type int or bool.
292static bool isIntOrBool(Expr *Exp) {
293 QualType QT = Exp->getType();
294 return QT->isBooleanType() || QT->isIntegerType();
295}
296
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000297
298// Check to see if the type is a smart pointer of some kind. We assume
299// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000300static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
301 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
302 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000303 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000304 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000305
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000306 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
307 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000308 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000309 return false;
310
311 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000312}
313
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000314/// \brief Check if passed in Decl is a pointer type.
315/// Note that this function may produce an error message.
316/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000317static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
318 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000319 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000320 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000321 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000322 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000323
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000324 if (const RecordType *RT = QT->getAs<RecordType>()) {
325 // If it's an incomplete type, it could be a smart pointer; skip it.
326 // (We don't want to force template instantiation if we can avoid it,
327 // since that would alter the order in which templates are instantiated.)
328 if (RT->isIncompleteType())
329 return true;
330
331 if (threadSafetyCheckIsSmartPointer(S, RT))
332 return true;
333 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000334
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000335 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000336 << Attr.getName()->getName() << QT;
337 } else {
338 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
339 << Attr.getName();
340 }
341 return false;
342}
343
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000344/// \brief Checks that the passed in QualType either is of RecordType or points
345/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000346static const RecordType *getRecordType(QualType QT) {
347 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000348 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000349
350 // Now check if we point to record type.
351 if (const PointerType *PT = QT->getAs<PointerType>())
352 return PT->getPointeeType()->getAs<RecordType>();
353
354 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000355}
356
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000357
Jordy Rosefad5de92012-05-08 03:27:22 +0000358static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
359 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000360 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
361 if (RT->getDecl()->getAttr<LockableAttr>())
362 return true;
363 return false;
364}
365
366
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000367/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000368/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000369static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
370 QualType Ty) {
371 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000372
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000373 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000374 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000375 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000376 << Attr.getName() << Ty.getAsString();
377 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000378 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000379
Michael Hanf1aae3b2012-08-03 17:40:43 +0000380 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000381 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000382 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000383
384 // Allow smart pointers to be used as lockable objects.
385 // FIXME -- Check the type that the smart pointer points to.
386 if (threadSafetyCheckIsSmartPointer(S, RT))
387 return;
388
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000389 // Check if the type is lockable.
390 RecordDecl *RD = RT->getDecl();
391 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000392 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000393
394 // Else check if any base classes are lockable.
395 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
396 CXXBasePaths BPaths(false, false);
397 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
398 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000399 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000400
401 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
402 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000403}
404
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000405/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000406/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000407/// \param Sidx The attribute argument index to start checking with.
408/// \param ParamIdxOk Whether an argument can be indexing into a function
409/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000410static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000411 const AttributeList &Attr,
412 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000413 int Sidx = 0,
414 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000415 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000416 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000417
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000418 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000419 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000420 Args.push_back(ArgExp);
421 continue;
422 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000423
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000424 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000425 if (StrLit->getLength() == 0 ||
426 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000427 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000428 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000429 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000430 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000431 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000432
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000433 // We allow constant strings to be used as a placeholder for expressions
434 // that are not valid C++ syntax, but warn that they are ignored.
435 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
436 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000437 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000438 continue;
439 }
440
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000441 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000442
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000443 // A pointer to member expression of the form &MyClass::mu is treated
444 // specially -- we need to look at the type of the member.
445 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
446 if (UOp->getOpcode() == UO_AddrOf)
447 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
448 if (DRE->getDecl()->isCXXInstanceMember())
449 ArgTy = DRE->getDecl()->getType();
450
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000451 // First see if we can just cast to record type, or point to record type.
452 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000453
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000454 // Now check if we index into a record type function param.
455 if(!RT && ParamIdxOk) {
456 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000457 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
458 if(FD && IL) {
459 unsigned int NumParams = FD->getNumParams();
460 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000461 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
462 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
463 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000464 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
465 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000466 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000467 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000468 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000469 }
470 }
471
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000472 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000473
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000474 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476}
477
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000478//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000479// Attribute Implementations
480//===----------------------------------------------------------------------===//
481
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000482// FIXME: All this manual attribute parsing code is gross. At the
483// least add some helper functions to check most argument patterns (#
484// and types of args).
485
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000486enum ThreadAttributeDeclKind {
487 ThreadExpectedFieldOrGlobalVar,
488 ThreadExpectedFunctionOrMethod,
489 ThreadExpectedClassOrStruct
490};
491
Michael Hanf1aae3b2012-08-03 17:40:43 +0000492static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000493 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000494 assert(!Attr.isInvalid());
495
496 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000497 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000498
499 // D must be either a member field or global (potentially shared) variable.
500 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000501 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
502 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000503 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000504 }
505
Michael Handc691572012-07-23 18:48:41 +0000506 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000507}
508
Michael Handc691572012-07-23 18:48:41 +0000509static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
510 if (!checkGuardedVarAttrCommon(S, D, Attr))
511 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000512
Michael Han51d8c522013-01-24 16:46:58 +0000513 D->addAttr(::new (S.Context)
514 GuardedVarAttr(Attr.getRange(), S.Context,
515 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000516}
517
Michael Hanf1aae3b2012-08-03 17:40:43 +0000518static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000519 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000520 if (!checkGuardedVarAttrCommon(S, D, Attr))
521 return;
522
523 if (!threadSafetyCheckIsPointer(S, D, Attr))
524 return;
525
Michael Han51d8c522013-01-24 16:46:58 +0000526 D->addAttr(::new (S.Context)
527 PtGuardedVarAttr(Attr.getRange(), S.Context,
528 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000529}
530
Michael Hanf1aae3b2012-08-03 17:40:43 +0000531static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
532 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000533 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000534 assert(!Attr.isInvalid());
535
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000536 if (!checkAttributeNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000537 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000538
539 // D must be either a member field or global (potentially shared) variable.
540 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000541 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
542 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000543 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000544 }
545
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000546 SmallVector<Expr*, 1> Args;
547 // check that all arguments are lockable objects
548 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
549 unsigned Size = Args.size();
550 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000551 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000552
Michael Handc691572012-07-23 18:48:41 +0000553 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000554
Michael Handc691572012-07-23 18:48:41 +0000555 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000556}
557
Michael Handc691572012-07-23 18:48:41 +0000558static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
559 Expr *Arg = 0;
560 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
561 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000562
Michael Handc691572012-07-23 18:48:41 +0000563 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
564}
565
Michael Hanf1aae3b2012-08-03 17:40:43 +0000566static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000567 const AttributeList &Attr) {
568 Expr *Arg = 0;
569 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
570 return;
571
572 if (!threadSafetyCheckIsPointer(S, D, Attr))
573 return;
574
575 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
576 S.Context, Arg));
577}
578
Michael Hanf1aae3b2012-08-03 17:40:43 +0000579static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000580 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000581 assert(!Attr.isInvalid());
582
583 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000584 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000585
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000586 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000587 if (!isa<CXXRecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000588 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
589 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000590 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000591 }
592
Michael Handc691572012-07-23 18:48:41 +0000593 return true;
594}
595
596static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
597 if (!checkLockableAttrCommon(S, D, Attr))
598 return;
599
600 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
601}
602
Michael Hanf1aae3b2012-08-03 17:40:43 +0000603static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000604 const AttributeList &Attr) {
605 if (!checkLockableAttrCommon(S, D, Attr))
606 return;
607
Michael Han51d8c522013-01-24 16:46:58 +0000608 D->addAttr(::new (S.Context)
609 ScopedLockableAttr(Attr.getRange(), S.Context,
610 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000611}
612
613static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
614 const AttributeList &Attr) {
615 assert(!Attr.isInvalid());
616
617 if (!checkAttributeNumArgs(S, Attr, 0))
618 return;
619
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000620 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000621 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
622 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000623 return;
624 }
625
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000626 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000627 S.Context));
628}
629
Kostya Serebryany71efba02012-01-24 19:25:38 +0000630static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000631 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000632 assert(!Attr.isInvalid());
633
634 if (!checkAttributeNumArgs(S, Attr, 0))
635 return;
636
637 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
638 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
639 << Attr.getName() << ExpectedFunctionOrMethod;
640 return;
641 }
642
Michael Han51d8c522013-01-24 16:46:58 +0000643 D->addAttr(::new (S.Context)
644 NoAddressSafetyAnalysisAttr(Attr.getRange(), S.Context,
645 Attr.getAttributeSpellingListIndex()));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000646}
647
Michael Hanf1aae3b2012-08-03 17:40:43 +0000648static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
649 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000650 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000651 assert(!Attr.isInvalid());
652
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000653 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000654 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000655
656 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 ValueDecl *VD = dyn_cast<ValueDecl>(D);
658 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000659 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
660 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000661 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000662 }
663
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000664 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000665 QualType QT = VD->getType();
666 if (!QT->isDependentType()) {
667 const RecordType *RT = getRecordType(QT);
668 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000669 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000670 << Attr.getName();
671 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000672 }
673 }
674
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000675 // Check that all arguments are lockable objects.
676 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000677 if (Args.size() == 0)
678 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000679
Michael Handc691572012-07-23 18:48:41 +0000680 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000681}
682
Michael Hanf1aae3b2012-08-03 17:40:43 +0000683static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000684 const AttributeList &Attr) {
685 SmallVector<Expr*, 1> Args;
686 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
687 return;
688
689 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000690 D->addAttr(::new (S.Context)
691 AcquiredAfterAttr(Attr.getRange(), S.Context,
692 StartArg, Args.size(),
693 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000694}
695
Michael Hanf1aae3b2012-08-03 17:40:43 +0000696static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000697 const AttributeList &Attr) {
698 SmallVector<Expr*, 1> Args;
699 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
700 return;
701
702 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000703 D->addAttr(::new (S.Context)
704 AcquiredBeforeAttr(Attr.getRange(), S.Context,
705 StartArg, Args.size(),
706 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000707}
708
Michael Hanf1aae3b2012-08-03 17:40:43 +0000709static bool checkLockFunAttrCommon(Sema &S, Decl *D,
710 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000711 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000712 assert(!Attr.isInvalid());
713
714 // zero or more arguments ok
715
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000716 // check that the attribute is applied to a function
717 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000718 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
719 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000720 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000721 }
722
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000723 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000724 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000725
Michael Handc691572012-07-23 18:48:41 +0000726 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000727}
728
Michael Hanf1aae3b2012-08-03 17:40:43 +0000729static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000730 const AttributeList &Attr) {
731 SmallVector<Expr*, 1> Args;
732 if (!checkLockFunAttrCommon(S, D, Attr, Args))
733 return;
734
735 unsigned Size = Args.size();
736 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000737 D->addAttr(::new (S.Context)
738 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
739 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000740}
741
Michael Hanf1aae3b2012-08-03 17:40:43 +0000742static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000743 const AttributeList &Attr) {
744 SmallVector<Expr*, 1> Args;
745 if (!checkLockFunAttrCommon(S, D, Attr, Args))
746 return;
747
748 unsigned Size = Args.size();
749 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000750 D->addAttr(::new (S.Context)
751 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
752 StartArg, Size,
753 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000754}
755
Michael Hanf1aae3b2012-08-03 17:40:43 +0000756static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
757 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000758 SmallVector<Expr*, 2> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000759 assert(!Attr.isInvalid());
760
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000761 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000762 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000763
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000764 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000765 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
766 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000767 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000768 }
769
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000770 if (!isIntOrBool(Attr.getArg(0))) {
771 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
Michael Handc691572012-07-23 18:48:41 +0000772 << Attr.getName();
773 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000774 }
775
776 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000777 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000778
Michael Handc691572012-07-23 18:48:41 +0000779 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000780}
781
Michael Hanf1aae3b2012-08-03 17:40:43 +0000782static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000783 const AttributeList &Attr) {
784 SmallVector<Expr*, 2> Args;
785 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
786 return;
787
788 unsigned Size = Args.size();
789 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000790 D->addAttr(::new (S.Context)
791 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
792 Attr.getArg(0), StartArg, Size,
793 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000794}
795
Michael Hanf1aae3b2012-08-03 17:40:43 +0000796static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000797 const AttributeList &Attr) {
798 SmallVector<Expr*, 2> Args;
799 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
800 return;
801
802 unsigned Size = Args.size();
803 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000804 D->addAttr(::new (S.Context)
805 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
806 Attr.getArg(0), StartArg, Size,
807 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000808}
809
Michael Hanf1aae3b2012-08-03 17:40:43 +0000810static bool checkLocksRequiredCommon(Sema &S, Decl *D,
811 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000812 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000813 assert(!Attr.isInvalid());
814
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000815 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000816 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000817
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000818 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000819 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
820 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000821 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000822 }
823
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000824 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000825 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000826 if (Args.size() == 0)
827 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000828
Michael Handc691572012-07-23 18:48:41 +0000829 return true;
830}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000831
Michael Hanf1aae3b2012-08-03 17:40:43 +0000832static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000833 const AttributeList &Attr) {
834 SmallVector<Expr*, 1> Args;
835 if (!checkLocksRequiredCommon(S, D, Attr, Args))
836 return;
837
838 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000839 D->addAttr(::new (S.Context)
840 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
841 StartArg, Args.size(),
842 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000843}
844
Michael Hanf1aae3b2012-08-03 17:40:43 +0000845static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000846 const AttributeList &Attr) {
847 SmallVector<Expr*, 1> Args;
848 if (!checkLocksRequiredCommon(S, D, Attr, Args))
849 return;
850
851 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000852 D->addAttr(::new (S.Context)
853 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
854 StartArg, Args.size(),
855 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000856}
857
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000858static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000859 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000860 assert(!Attr.isInvalid());
861
862 // zero or more arguments ok
863
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000864 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000865 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
866 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000867 return;
868 }
869
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000870 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000871 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000872 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000873 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000874 Expr **StartArg = Size == 0 ? 0 : &Args[0];
875
Michael Han51d8c522013-01-24 16:46:58 +0000876 D->addAttr(::new (S.Context)
877 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
878 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000879}
880
881static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000882 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000883 assert(!Attr.isInvalid());
884
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000885 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000886 return;
887
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000888 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000889 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
890 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000891 return;
892 }
893
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000894 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000895 SmallVector<Expr*, 1> Args;
896 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
897 unsigned Size = Args.size();
898 if (Size == 0)
899 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000900
Michael Han51d8c522013-01-24 16:46:58 +0000901 D->addAttr(::new (S.Context)
902 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
903 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000904}
905
906static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000907 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000908 assert(!Attr.isInvalid());
909
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000910 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000911 return;
912
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000913 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000914 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
915 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000916 return;
917 }
918
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000919 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000920 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000921 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000922 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000923 if (Size == 0)
924 return;
925 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000926
Michael Han51d8c522013-01-24 16:46:58 +0000927 D->addAttr(::new (S.Context)
928 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
929 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000930}
931
932
Chandler Carruth1b03c872011-07-02 00:01:44 +0000933static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
934 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +0000935 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
936 if (TD == 0) {
937 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
938 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +0000939 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000940 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000941 }
Mike Stumpbf916502009-07-24 19:02:52 +0000942
Richard Smitha4fa9002013-01-13 02:11:23 +0000943 // Remember this typedef decl, we will need it later for diagnostics.
944 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000945}
946
Chandler Carruth1b03c872011-07-02 00:01:44 +0000947static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000948 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000949 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000950 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000951
Chandler Carruth87c44602011-07-01 23:49:12 +0000952 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000953 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000954 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000955 // If the alignment is less than or equal to 8 bits, the packed attribute
956 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +0000957 if (!FD->getType()->isDependentType() &&
958 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000959 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000960 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000961 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000962 else
Michael Han51d8c522013-01-24 16:46:58 +0000963 FD->addAttr(::new (S.Context)
964 PackedAttr(Attr.getRange(), S.Context,
965 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000966 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000967 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000968}
969
Chandler Carruth1b03c872011-07-02 00:01:44 +0000970static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +0000971 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +0000972 RD->addAttr(::new (S.Context)
973 MsStructAttr(Attr.getRange(), S.Context,
974 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000975 else
976 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
977}
978
Chandler Carruth1b03c872011-07-02 00:01:44 +0000979static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000980 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000981 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000982 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000983
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000984 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000985 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000986 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +0000987 D->addAttr(::new (S.Context)
988 IBActionAttr(Attr.getRange(), S.Context,
989 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000990 return;
991 }
992
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000993 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000994}
995
Ted Kremenek2f041d02011-09-29 07:02:25 +0000996static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
997 // The IBOutlet/IBOutletCollection attributes only apply to instance
998 // variables or properties of Objective-C classes. The outlet must also
999 // have an object reference type.
1000 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1001 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001002 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001003 << Attr.getName() << VD->getType() << 0;
1004 return false;
1005 }
1006 }
1007 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1008 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001009 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001010 << Attr.getName() << PD->getType() << 1;
1011 return false;
1012 }
1013 }
1014 else {
1015 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1016 return false;
1017 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001018
Ted Kremenek2f041d02011-09-29 07:02:25 +00001019 return true;
1020}
1021
Chandler Carruth1b03c872011-07-02 00:01:44 +00001022static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001023 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001024 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001025 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001026
1027 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001028 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001029
Michael Han51d8c522013-01-24 16:46:58 +00001030 D->addAttr(::new (S.Context)
1031 IBOutletAttr(Attr.getRange(), S.Context,
1032 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001033}
1034
Chandler Carruth1b03c872011-07-02 00:01:44 +00001035static void handleIBOutletCollection(Sema &S, Decl *D,
1036 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001037
1038 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001039 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001040 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1041 return;
1042 }
1043
Ted Kremenek2f041d02011-09-29 07:02:25 +00001044 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001045 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001046
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001047 IdentifierInfo *II = Attr.getParameterName();
1048 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001049 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001050
John McCallb3d87482010-08-24 05:47:05 +00001051 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001052 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001053 if (!TypeRep) {
1054 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1055 return;
1056 }
John McCallb3d87482010-08-24 05:47:05 +00001057 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001058 // Diagnose use of non-object type in iboutletcollection attribute.
1059 // FIXME. Gnu attribute extension ignores use of builtin types in
1060 // attributes. So, __attribute__((iboutletcollection(char))) will be
1061 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001062 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001063 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1064 return;
1065 }
Michael Han51d8c522013-01-24 16:46:58 +00001066 D->addAttr(::new (S.Context)
1067 IBOutletCollectionAttr(Attr.getRange(),S.Context,
1068 QT, Attr.getParameterLoc(),
1069 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001070}
1071
Chandler Carruthd309c812011-07-01 23:49:16 +00001072static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001073 if (const RecordType *UT = T->getAsUnionType())
1074 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1075 RecordDecl *UD = UT->getDecl();
1076 for (RecordDecl::field_iterator it = UD->field_begin(),
1077 itend = UD->field_end(); it != itend; ++it) {
1078 QualType QT = it->getType();
1079 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1080 T = QT;
1081 return;
1082 }
1083 }
1084 }
1085}
1086
Nuno Lopes587de5b2012-05-24 00:22:00 +00001087static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001088 if (!isFunctionOrMethod(D)) {
1089 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1090 << "alloc_size" << ExpectedFunctionOrMethod;
1091 return;
1092 }
1093
Nuno Lopes587de5b2012-05-24 00:22:00 +00001094 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1095 return;
1096
1097 // In C++ the implicit 'this' function parameter also counts, and they are
1098 // counted from one.
1099 bool HasImplicitThisParam = isInstanceMethod(D);
1100 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
1101
1102 SmallVector<unsigned, 8> SizeArgs;
1103
1104 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1105 E = Attr.arg_end(); I!=E; ++I) {
1106 // The argument must be an integer constant expression.
1107 Expr *Ex = *I;
1108 llvm::APSInt ArgNum;
1109 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1110 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
1111 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1112 << "alloc_size" << Ex->getSourceRange();
1113 return;
1114 }
1115
1116 uint64_t x = ArgNum.getZExtValue();
1117
1118 if (x < 1 || x > NumArgs) {
1119 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1120 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
1121 return;
1122 }
1123
1124 --x;
1125 if (HasImplicitThisParam) {
1126 if (x == 0) {
1127 S.Diag(Attr.getLoc(),
1128 diag::err_attribute_invalid_implicit_this_argument)
1129 << "alloc_size" << Ex->getSourceRange();
1130 return;
1131 }
1132 --x;
1133 }
1134
1135 // check if the function argument is of an integer type
1136 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
1137 if (!T->isIntegerType()) {
1138 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1139 << "alloc_size" << Ex->getSourceRange();
1140 return;
1141 }
1142
Nuno Lopes587de5b2012-05-24 00:22:00 +00001143 SizeArgs.push_back(x);
1144 }
1145
1146 // check if the function returns a pointer
1147 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1148 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1149 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
1150 }
1151
Michael Han51d8c522013-01-24 16:46:58 +00001152 D->addAttr(::new (S.Context)
1153 AllocSizeAttr(Attr.getRange(), S.Context,
1154 SizeArgs.data(), SizeArgs.size(),
1155 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001156}
1157
Chandler Carruth1b03c872011-07-02 00:01:44 +00001158static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001159 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1160 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001161 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001162 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001163 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001164 return;
1165 }
Mike Stumpbf916502009-07-24 19:02:52 +00001166
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001167 // In C++ the implicit 'this' function parameter also counts, and they are
1168 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001169 bool HasImplicitThisParam = isInstanceMethod(D);
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001170 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001171
1172 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001173 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001174
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001175 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1176 E = Attr.arg_end(); I != E; ++I) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001177 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001178 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001179 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001180 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1181 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001182 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1183 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001184 return;
1185 }
Mike Stumpbf916502009-07-24 19:02:52 +00001186
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001187 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001188
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001189 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001190 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001191 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001192 return;
1193 }
Mike Stumpbf916502009-07-24 19:02:52 +00001194
Ted Kremenek465172f2008-07-21 22:09:15 +00001195 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001196 if (HasImplicitThisParam) {
1197 if (x == 0) {
1198 S.Diag(Attr.getLoc(),
1199 diag::err_attribute_invalid_implicit_this_argument)
1200 << "nonnull" << Ex->getSourceRange();
1201 return;
1202 }
1203 --x;
1204 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001205
1206 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001207 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001208 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001209
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001210 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001211 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001212 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001213 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001214 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001215 }
Mike Stumpbf916502009-07-24 19:02:52 +00001216
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001217 NonNullArgs.push_back(x);
1218 }
Mike Stumpbf916502009-07-24 19:02:52 +00001219
1220 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1221 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001222 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001223 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1224 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001225 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001226 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001227 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001228 }
Mike Stumpbf916502009-07-24 19:02:52 +00001229
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001230 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001231 if (NonNullArgs.empty()) {
1232 // Warn the trivial case only if attribute is not coming from a
1233 // macro instantiation.
1234 if (Attr.getLoc().isFileID())
1235 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001236 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001237 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001238 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001239
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001240 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001241 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001242 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001243 D->addAttr(::new (S.Context)
1244 NonNullAttr(Attr.getRange(), S.Context, start, size,
1245 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001246}
1247
Chandler Carruth1b03c872011-07-02 00:01:44 +00001248static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001249 // This attribute must be applied to a function declaration.
1250 // The first argument to the attribute must be a string,
1251 // the name of the resource, for example "malloc".
1252 // The following arguments must be argument indexes, the arguments must be
1253 // of integer type for Returns, otherwise of pointer type.
1254 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001255 // after being held. free() should be __attribute((ownership_takes)), whereas
1256 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001257
1258 if (!AL.getParameterName()) {
1259 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1260 << AL.getName()->getName() << 1;
1261 return;
1262 }
1263 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001264 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001265 switch (AL.getKind()) {
1266 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001267 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001268 if (AL.getNumArgs() < 1) {
1269 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1270 return;
1271 }
Jordy Rose2a479922010-08-12 08:54:03 +00001272 break;
1273 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001274 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001275 if (AL.getNumArgs() < 1) {
1276 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1277 return;
1278 }
Jordy Rose2a479922010-08-12 08:54:03 +00001279 break;
1280 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001281 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001282 if (AL.getNumArgs() > 1) {
1283 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1284 << AL.getNumArgs() + 1;
1285 return;
1286 }
Jordy Rose2a479922010-08-12 08:54:03 +00001287 break;
1288 default:
1289 // This should never happen given how we are called.
1290 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001291 }
1292
Chandler Carruth87c44602011-07-01 23:49:12 +00001293 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001294 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1295 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001296 return;
1297 }
1298
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001299 // In C++ the implicit 'this' function parameter also counts, and they are
1300 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001301 bool HasImplicitThisParam = isInstanceMethod(D);
1302 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001303
Chris Lattner5f9e2722011-07-23 10:55:15 +00001304 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001305
1306 // Normalize the argument, __foo__ becomes foo.
1307 if (Module.startswith("__") && Module.endswith("__"))
1308 Module = Module.substr(2, Module.size() - 4);
1309
Chris Lattner5f9e2722011-07-23 10:55:15 +00001310 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001311
Jordy Rose2a479922010-08-12 08:54:03 +00001312 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1313 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001314
Peter Collingbourne7a730022010-11-23 20:45:58 +00001315 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001316 llvm::APSInt ArgNum(32);
1317 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1318 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1319 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1320 << AL.getName()->getName() << IdxExpr->getSourceRange();
1321 continue;
1322 }
1323
1324 unsigned x = (unsigned) ArgNum.getZExtValue();
1325
1326 if (x > NumArgs || x < 1) {
1327 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1328 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1329 continue;
1330 }
1331 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001332 if (HasImplicitThisParam) {
1333 if (x == 0) {
1334 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1335 << "ownership" << IdxExpr->getSourceRange();
1336 return;
1337 }
1338 --x;
1339 }
1340
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001341 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001342 case OwnershipAttr::Takes:
1343 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001344 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001345 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001346 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1347 // FIXME: Should also highlight argument in decl.
1348 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001349 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001350 << "pointer"
1351 << IdxExpr->getSourceRange();
1352 continue;
1353 }
1354 break;
1355 }
Sean Huntcf807c42010-08-18 23:23:40 +00001356 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001357 if (AL.getNumArgs() > 1) {
1358 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001359 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001360 llvm::APSInt ArgNum(32);
1361 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1362 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1363 S.Diag(AL.getLoc(), diag::err_ownership_type)
1364 << "ownership_returns" << "integer"
1365 << IdxExpr->getSourceRange();
1366 return;
1367 }
1368 }
1369 break;
1370 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001371 } // switch
1372
1373 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001374 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001375 i = D->specific_attr_begin<OwnershipAttr>(),
1376 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001377 i != e; ++i) {
1378 if ((*i)->getOwnKind() != K) {
1379 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1380 I!=E; ++I) {
1381 if (x == *I) {
1382 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1383 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001384 }
1385 }
1386 }
1387 }
1388 OwnershipArgs.push_back(x);
1389 }
1390
1391 unsigned* start = OwnershipArgs.data();
1392 unsigned size = OwnershipArgs.size();
1393 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001394
1395 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1396 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1397 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001398 }
Sean Huntcf807c42010-08-18 23:23:40 +00001399
Michael Han51d8c522013-01-24 16:46:58 +00001400 D->addAttr(::new (S.Context)
1401 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1402 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403}
1404
Chandler Carruth1b03c872011-07-02 00:01:44 +00001405static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001406 // Check the attribute arguments.
1407 if (Attr.getNumArgs() > 1) {
1408 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1409 return;
1410 }
1411
Chandler Carruth87c44602011-07-01 23:49:12 +00001412 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001413 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001414 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001415 return;
1416 }
1417
Chandler Carruth87c44602011-07-01 23:49:12 +00001418 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001419
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001420 // gcc rejects
1421 // class c {
1422 // static int a __attribute__((weakref ("v2")));
1423 // static int b() __attribute__((weakref ("f3")));
1424 // };
1425 // and ignores the attributes of
1426 // void f(void) {
1427 // static int a __attribute__((weakref ("v2")));
1428 // }
1429 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001430 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001431 if (!Ctx->isFileContext()) {
1432 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001433 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001434 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001435 }
1436
1437 // The GCC manual says
1438 //
1439 // At present, a declaration to which `weakref' is attached can only
1440 // be `static'.
1441 //
1442 // It also says
1443 //
1444 // Without a TARGET,
1445 // given as an argument to `weakref' or to `alias', `weakref' is
1446 // equivalent to `weak'.
1447 //
1448 // gcc 4.4.1 will accept
1449 // int a7 __attribute__((weakref));
1450 // as
1451 // int a7 __attribute__((weak));
1452 // This looks like a bug in gcc. We reject that for now. We should revisit
1453 // it if this behaviour is actually used.
1454
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001455 // GCC rejects
1456 // static ((alias ("y"), weakref)).
1457 // Should we? How to check that weakref is before or after alias?
1458
1459 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001460 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001461 Arg = Arg->IgnoreParenCasts();
1462 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1463
Douglas Gregor5cee1192011-07-27 05:40:30 +00001464 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001465 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1466 << "weakref" << 1;
1467 return;
1468 }
1469 // GCC will accept anything as the argument of weakref. Should we
1470 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001471 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001472 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001473 }
1474
Michael Han51d8c522013-01-24 16:46:58 +00001475 D->addAttr(::new (S.Context)
1476 WeakRefAttr(Attr.getRange(), S.Context,
1477 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001478}
1479
Chandler Carruth1b03c872011-07-02 00:01:44 +00001480static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001481 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001482 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001483 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001484 return;
1485 }
Mike Stumpbf916502009-07-24 19:02:52 +00001486
Peter Collingbourne7a730022010-11-23 20:45:58 +00001487 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001488 Arg = Arg->IgnoreParenCasts();
1489 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001490
Douglas Gregor5cee1192011-07-27 05:40:30 +00001491 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001492 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001493 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001494 return;
1495 }
Mike Stumpbf916502009-07-24 19:02:52 +00001496
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001497 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001498 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1499 return;
1500 }
1501
Chris Lattner6b6b5372008-06-26 18:38:35 +00001502 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001503
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001504 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001505 Str->getString(),
1506 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001507}
1508
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001509static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1510 // Check the attribute arguments.
1511 if (!checkAttributeNumArgs(S, Attr, 0))
1512 return;
1513
1514 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1515 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1516 << Attr.getName() << ExpectedFunctionOrMethod;
1517 return;
1518 }
1519
Michael Han51d8c522013-01-24 16:46:58 +00001520 D->addAttr(::new (S.Context)
1521 MinSizeAttr(Attr.getRange(), S.Context,
1522 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001523}
1524
Benjamin Krameree409a92012-05-12 21:10:52 +00001525static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1526 // Check the attribute arguments.
1527 if (!checkAttributeNumArgs(S, Attr, 0))
1528 return;
1529
1530 if (!isa<FunctionDecl>(D)) {
1531 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1532 << Attr.getName() << ExpectedFunction;
1533 return;
1534 }
1535
1536 if (D->hasAttr<HotAttr>()) {
1537 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1538 << Attr.getName() << "hot";
1539 return;
1540 }
1541
Michael Han51d8c522013-01-24 16:46:58 +00001542 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1543 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001544}
1545
1546static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1547 // Check the attribute arguments.
1548 if (!checkAttributeNumArgs(S, Attr, 0))
1549 return;
1550
1551 if (!isa<FunctionDecl>(D)) {
1552 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1553 << Attr.getName() << ExpectedFunction;
1554 return;
1555 }
1556
1557 if (D->hasAttr<ColdAttr>()) {
1558 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1559 << Attr.getName() << "cold";
1560 return;
1561 }
1562
Michael Han51d8c522013-01-24 16:46:58 +00001563 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1564 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001565}
1566
Chandler Carruth1b03c872011-07-02 00:01:44 +00001567static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001568 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001569 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001570 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001571
Chandler Carruth87c44602011-07-01 23:49:12 +00001572 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001573 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001574 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001575 return;
1576 }
1577
Michael Han51d8c522013-01-24 16:46:58 +00001578 D->addAttr(::new (S.Context)
1579 NakedAttr(Attr.getRange(), S.Context,
1580 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001581}
1582
Chandler Carruth1b03c872011-07-02 00:01:44 +00001583static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1584 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001585 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001586 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001587 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1588 return;
1589 }
1590
Chandler Carruth87c44602011-07-01 23:49:12 +00001591 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001592 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001593 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001594 return;
1595 }
Mike Stumpbf916502009-07-24 19:02:52 +00001596
Michael Han51d8c522013-01-24 16:46:58 +00001597 D->addAttr(::new (S.Context)
1598 AlwaysInlineAttr(Attr.getRange(), S.Context,
1599 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001600}
1601
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001602static void handleTLSModelAttr(Sema &S, Decl *D,
1603 const AttributeList &Attr) {
1604 // Check the attribute arguments.
1605 if (Attr.getNumArgs() != 1) {
1606 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1607 return;
1608 }
1609
1610 Expr *Arg = Attr.getArg(0);
1611 Arg = Arg->IgnoreParenCasts();
1612 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1613
1614 // Check that it is a string.
1615 if (!Str) {
1616 S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model";
1617 return;
1618 }
1619
1620 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->isThreadSpecified()) {
1621 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1622 << Attr.getName() << ExpectedTLSVar;
1623 return;
1624 }
1625
1626 // Check that the value.
1627 StringRef Model = Str->getString();
1628 if (Model != "global-dynamic" && Model != "local-dynamic"
1629 && Model != "initial-exec" && Model != "local-exec") {
1630 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1631 return;
1632 }
1633
Michael Han51d8c522013-01-24 16:46:58 +00001634 D->addAttr(::new (S.Context)
1635 TLSModelAttr(Attr.getRange(), S.Context, Model,
1636 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001637}
1638
Chandler Carruth1b03c872011-07-02 00:01:44 +00001639static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001640 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001641 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001642 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1643 return;
1644 }
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Chandler Carruth87c44602011-07-01 23:49:12 +00001646 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001647 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001648 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001649 D->addAttr(::new (S.Context)
1650 MallocAttr(Attr.getRange(), S.Context,
1651 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001652 return;
1653 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001654 }
1655
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001656 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001657}
1658
Chandler Carruth1b03c872011-07-02 00:01:44 +00001659static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001660 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001661 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001662 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001663
Michael Han51d8c522013-01-24 16:46:58 +00001664 D->addAttr(::new (S.Context)
1665 MayAliasAttr(Attr.getRange(), S.Context,
1666 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001667}
1668
Chandler Carruth1b03c872011-07-02 00:01:44 +00001669static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001670 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001671 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001672 D->addAttr(::new (S.Context)
1673 NoCommonAttr(Attr.getRange(), S.Context,
1674 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001675 else
1676 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001677 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001678}
1679
Chandler Carruth1b03c872011-07-02 00:01:44 +00001680static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001681 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001682 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001683 D->addAttr(::new (S.Context)
1684 CommonAttr(Attr.getRange(), S.Context,
1685 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001686 else
1687 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001688 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001689}
1690
Chandler Carruth1b03c872011-07-02 00:01:44 +00001691static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001692 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001693
1694 if (S.CheckNoReturnAttr(attr)) return;
1695
Chandler Carruth87c44602011-07-01 23:49:12 +00001696 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001697 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001698 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001699 return;
1700 }
1701
Michael Han51d8c522013-01-24 16:46:58 +00001702 D->addAttr(::new (S.Context)
1703 NoReturnAttr(attr.getRange(), S.Context,
1704 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001705}
1706
1707bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001708 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001709 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1710 attr.setInvalid();
1711 return true;
1712 }
1713
1714 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001715}
1716
Chandler Carruth1b03c872011-07-02 00:01:44 +00001717static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1718 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001719
1720 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1721 // because 'analyzer_noreturn' does not impact the type.
1722
Chandler Carruth1731e202011-07-11 23:30:35 +00001723 if(!checkAttributeNumArgs(S, Attr, 0))
1724 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001725
Chandler Carruth87c44602011-07-01 23:49:12 +00001726 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1727 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001728 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1729 && !VD->getType()->isFunctionPointerType())) {
1730 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001731 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001732 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001733 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001734 return;
1735 }
1736 }
1737
Michael Han51d8c522013-01-24 16:46:58 +00001738 D->addAttr(::new (S.Context)
1739 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1740 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001741}
1742
Richard Smithcd8ab512013-01-17 01:30:42 +00001743static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1744 const AttributeList &Attr) {
1745 // C++11 [dcl.attr.noreturn]p1:
1746 // The attribute may be applied to the declarator-id in a function
1747 // declaration.
1748 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1749 if (!FD) {
1750 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1751 << Attr.getName() << ExpectedFunctionOrMethod;
1752 return;
1753 }
1754
Michael Han51d8c522013-01-24 16:46:58 +00001755 D->addAttr(::new (S.Context)
1756 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1757 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001758}
1759
John Thompson35cc9622010-08-09 21:53:52 +00001760// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001761static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001762/*
1763 Returning a Vector Class in Registers
1764
Eric Christopherf48f3672010-12-01 22:13:54 +00001765 According to the PPU ABI specifications, a class with a single member of
1766 vector type is returned in memory when used as the return value of a function.
1767 This results in inefficient code when implementing vector classes. To return
1768 the value in a single vector register, add the vecreturn attribute to the
1769 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001770
1771 Example:
1772
1773 struct Vector
1774 {
1775 __vector float xyzw;
1776 } __attribute__((vecreturn));
1777
1778 Vector Add(Vector lhs, Vector rhs)
1779 {
1780 Vector result;
1781 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1782 return result; // This will be returned in a register
1783 }
1784*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001785 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001786 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001787 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001788 return;
1789 }
1790
Chandler Carruth87c44602011-07-01 23:49:12 +00001791 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001792 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1793 return;
1794 }
1795
Chandler Carruth87c44602011-07-01 23:49:12 +00001796 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001797 int count = 0;
1798
1799 if (!isa<CXXRecordDecl>(record)) {
1800 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1801 return;
1802 }
1803
1804 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1805 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1806 return;
1807 }
1808
Eric Christopherf48f3672010-12-01 22:13:54 +00001809 for (RecordDecl::field_iterator iter = record->field_begin();
1810 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001811 if ((count == 1) || !iter->getType()->isVectorType()) {
1812 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1813 return;
1814 }
1815 count++;
1816 }
1817
Michael Han51d8c522013-01-24 16:46:58 +00001818 D->addAttr(::new (S.Context)
1819 VecReturnAttr(Attr.getRange(), S.Context,
1820 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001821}
1822
Richard Smith3a2b7a12013-01-28 22:42:45 +00001823static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1824 const AttributeList &Attr) {
1825 if (isa<ParmVarDecl>(D)) {
1826 // [[carries_dependency]] can only be applied to a parameter if it is a
1827 // parameter of a function declaration or lambda.
1828 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1829 S.Diag(Attr.getLoc(),
1830 diag::err_carries_dependency_param_not_function_decl);
1831 return;
1832 }
1833 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001834 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001835 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001836 return;
1837 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001838
1839 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1840 Attr.getRange(), S.Context,
1841 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001842}
1843
Chandler Carruth1b03c872011-07-02 00:01:44 +00001844static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001845 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001846 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001847 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001848 return;
1849 }
Mike Stumpbf916502009-07-24 19:02:52 +00001850
Chandler Carruth87c44602011-07-01 23:49:12 +00001851 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001852 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001853 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001854 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001855 return;
1856 }
Mike Stumpbf916502009-07-24 19:02:52 +00001857
Michael Han51d8c522013-01-24 16:46:58 +00001858 D->addAttr(::new (S.Context)
1859 UnusedAttr(Attr.getRange(), S.Context,
1860 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001861}
1862
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001863static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1864 const AttributeList &Attr) {
1865 // check the attribute arguments.
1866 if (Attr.hasParameterOrArguments()) {
1867 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1868 return;
1869 }
1870
1871 if (!isa<FunctionDecl>(D)) {
1872 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1873 << Attr.getName() << ExpectedFunction;
1874 return;
1875 }
1876
Michael Han51d8c522013-01-24 16:46:58 +00001877 D->addAttr(::new (S.Context)
1878 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1879 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001880}
1881
Chandler Carruth1b03c872011-07-02 00:01:44 +00001882static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001883 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001884 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001885 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1886 return;
1887 }
Mike Stumpbf916502009-07-24 19:02:52 +00001888
Chandler Carruth87c44602011-07-01 23:49:12 +00001889 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001890 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001891 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1892 return;
1893 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001894 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001895 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001896 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001897 return;
1898 }
Mike Stumpbf916502009-07-24 19:02:52 +00001899
Michael Han51d8c522013-01-24 16:46:58 +00001900 D->addAttr(::new (S.Context)
1901 UsedAttr(Attr.getRange(), S.Context,
1902 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001903}
1904
Chandler Carruth1b03c872011-07-02 00:01:44 +00001905static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001906 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001907 if (Attr.getNumArgs() > 1) {
1908 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001909 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001910 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001911
1912 int priority = 65535; // FIXME: Do not hardcode such constants.
1913 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001914 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001915 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001916 if (E->isTypeDependent() || E->isValueDependent() ||
1917 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001918 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001919 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001920 return;
1921 }
1922 priority = Idx.getZExtValue();
1923 }
Mike Stumpbf916502009-07-24 19:02:52 +00001924
Chandler Carruth87c44602011-07-01 23:49:12 +00001925 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001926 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001927 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001928 return;
1929 }
1930
Michael Han51d8c522013-01-24 16:46:58 +00001931 D->addAttr(::new (S.Context)
1932 ConstructorAttr(Attr.getRange(), S.Context, priority,
1933 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001934}
1935
Chandler Carruth1b03c872011-07-02 00:01:44 +00001936static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001937 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001938 if (Attr.getNumArgs() > 1) {
1939 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001940 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001941 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001942
1943 int priority = 65535; // FIXME: Do not hardcode such constants.
1944 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001945 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001946 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001947 if (E->isTypeDependent() || E->isValueDependent() ||
1948 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001949 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001950 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001951 return;
1952 }
1953 priority = Idx.getZExtValue();
1954 }
Mike Stumpbf916502009-07-24 19:02:52 +00001955
Chandler Carruth87c44602011-07-01 23:49:12 +00001956 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001957 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001958 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001959 return;
1960 }
1961
Michael Han51d8c522013-01-24 16:46:58 +00001962 D->addAttr(::new (S.Context)
1963 DestructorAttr(Attr.getRange(), S.Context, priority,
1964 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001965}
1966
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001967template <typename AttrTy>
1968static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1969 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001970 unsigned NumArgs = Attr.getNumArgs();
1971 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001972 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001973 return;
1974 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001975
1976 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001977 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001978 if (NumArgs == 1) {
1979 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001980 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001981 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001982 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001983 return;
1984 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001985 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001986 }
Mike Stumpbf916502009-07-24 19:02:52 +00001987
Michael Han51d8c522013-01-24 16:46:58 +00001988 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
1989 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001990}
1991
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001992static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1993 const AttributeList &Attr) {
1994 unsigned NumArgs = Attr.getNumArgs();
1995 if (NumArgs > 0) {
1996 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1997 return;
1998 }
1999
Michael Han51d8c522013-01-24 16:46:58 +00002000 D->addAttr(::new (S.Context)
2001 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2002 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002003}
2004
Patrick Beardb2f68202012-04-06 18:12:22 +00002005static void handleObjCRootClassAttr(Sema &S, Decl *D,
2006 const AttributeList &Attr) {
2007 if (!isa<ObjCInterfaceDecl>(D)) {
2008 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2009 return;
2010 }
2011
2012 unsigned NumArgs = Attr.getNumArgs();
2013 if (NumArgs > 0) {
2014 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2015 return;
2016 }
2017
Michael Han51d8c522013-01-24 16:46:58 +00002018 D->addAttr(::new (S.Context)
2019 ObjCRootClassAttr(Attr.getRange(), S.Context,
2020 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002021}
2022
Michael Han51d8c522013-01-24 16:46:58 +00002023static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2024 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002025 if (!isa<ObjCInterfaceDecl>(D)) {
2026 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2027 return;
2028 }
2029
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002030 unsigned NumArgs = Attr.getNumArgs();
2031 if (NumArgs > 0) {
2032 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2033 return;
2034 }
2035
Michael Han51d8c522013-01-24 16:46:58 +00002036 D->addAttr(::new (S.Context)
2037 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2038 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002039}
2040
Jordy Rosefad5de92012-05-08 03:27:22 +00002041static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2042 IdentifierInfo *Platform,
2043 VersionTuple Introduced,
2044 VersionTuple Deprecated,
2045 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002046 StringRef PlatformName
2047 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2048 if (PlatformName.empty())
2049 PlatformName = Platform->getName();
2050
2051 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2052 // of these steps are needed).
2053 if (!Introduced.empty() && !Deprecated.empty() &&
2054 !(Introduced <= Deprecated)) {
2055 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2056 << 1 << PlatformName << Deprecated.getAsString()
2057 << 0 << Introduced.getAsString();
2058 return true;
2059 }
2060
2061 if (!Introduced.empty() && !Obsoleted.empty() &&
2062 !(Introduced <= Obsoleted)) {
2063 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2064 << 2 << PlatformName << Obsoleted.getAsString()
2065 << 0 << Introduced.getAsString();
2066 return true;
2067 }
2068
2069 if (!Deprecated.empty() && !Obsoleted.empty() &&
2070 !(Deprecated <= Obsoleted)) {
2071 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2072 << 2 << PlatformName << Obsoleted.getAsString()
2073 << 1 << Deprecated.getAsString();
2074 return true;
2075 }
2076
2077 return false;
2078}
2079
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002080/// \brief Check whether the two versions match.
2081///
2082/// If either version tuple is empty, then they are assumed to match. If
2083/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2084static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2085 bool BeforeIsOkay) {
2086 if (X.empty() || Y.empty())
2087 return true;
2088
2089 if (X == Y)
2090 return true;
2091
2092 if (BeforeIsOkay && X < Y)
2093 return true;
2094
2095 return false;
2096}
2097
Rafael Espindola51be6e32013-01-08 22:04:34 +00002098AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002099 IdentifierInfo *Platform,
2100 VersionTuple Introduced,
2101 VersionTuple Deprecated,
2102 VersionTuple Obsoleted,
2103 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002104 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002105 bool Override,
2106 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002107 VersionTuple MergedIntroduced = Introduced;
2108 VersionTuple MergedDeprecated = Deprecated;
2109 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002110 bool FoundAny = false;
2111
Rafael Espindola98ae8342012-05-10 02:50:16 +00002112 if (D->hasAttrs()) {
2113 AttrVec &Attrs = D->getAttrs();
2114 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2115 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2116 if (!OldAA) {
2117 ++i;
2118 continue;
2119 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002120
Rafael Espindola98ae8342012-05-10 02:50:16 +00002121 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2122 if (OldPlatform != Platform) {
2123 ++i;
2124 continue;
2125 }
2126
2127 FoundAny = true;
2128 VersionTuple OldIntroduced = OldAA->getIntroduced();
2129 VersionTuple OldDeprecated = OldAA->getDeprecated();
2130 VersionTuple OldObsoleted = OldAA->getObsoleted();
2131 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002132
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002133 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2134 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2135 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2136 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002137 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002138 if (Override) {
2139 int Which = -1;
2140 VersionTuple FirstVersion;
2141 VersionTuple SecondVersion;
2142 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2143 Which = 0;
2144 FirstVersion = OldIntroduced;
2145 SecondVersion = Introduced;
2146 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2147 Which = 1;
2148 FirstVersion = Deprecated;
2149 SecondVersion = OldDeprecated;
2150 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2151 Which = 2;
2152 FirstVersion = Obsoleted;
2153 SecondVersion = OldObsoleted;
2154 }
2155
2156 if (Which == -1) {
2157 Diag(OldAA->getLocation(),
2158 diag::warn_mismatched_availability_override_unavail)
2159 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2160 } else {
2161 Diag(OldAA->getLocation(),
2162 diag::warn_mismatched_availability_override)
2163 << Which
2164 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2165 << FirstVersion.getAsString() << SecondVersion.getAsString();
2166 }
2167 Diag(Range.getBegin(), diag::note_overridden_method);
2168 } else {
2169 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2170 Diag(Range.getBegin(), diag::note_previous_attribute);
2171 }
2172
Rafael Espindola98ae8342012-05-10 02:50:16 +00002173 Attrs.erase(Attrs.begin() + i);
2174 --e;
2175 continue;
2176 }
2177
2178 VersionTuple MergedIntroduced2 = MergedIntroduced;
2179 VersionTuple MergedDeprecated2 = MergedDeprecated;
2180 VersionTuple MergedObsoleted2 = MergedObsoleted;
2181
2182 if (MergedIntroduced2.empty())
2183 MergedIntroduced2 = OldIntroduced;
2184 if (MergedDeprecated2.empty())
2185 MergedDeprecated2 = OldDeprecated;
2186 if (MergedObsoleted2.empty())
2187 MergedObsoleted2 = OldObsoleted;
2188
2189 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2190 MergedIntroduced2, MergedDeprecated2,
2191 MergedObsoleted2)) {
2192 Attrs.erase(Attrs.begin() + i);
2193 --e;
2194 continue;
2195 }
2196
2197 MergedIntroduced = MergedIntroduced2;
2198 MergedDeprecated = MergedDeprecated2;
2199 MergedObsoleted = MergedObsoleted2;
2200 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002201 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002202 }
2203
2204 if (FoundAny &&
2205 MergedIntroduced == Introduced &&
2206 MergedDeprecated == Deprecated &&
2207 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002208 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002209
Rafael Espindola98ae8342012-05-10 02:50:16 +00002210 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00002211 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002212 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2213 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002214 Obsoleted, IsUnavailable, Message,
2215 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002216 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002217 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002218}
2219
Chandler Carruth1b03c872011-07-02 00:01:44 +00002220static void handleAvailabilityAttr(Sema &S, Decl *D,
2221 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002222 IdentifierInfo *Platform = Attr.getParameterName();
2223 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002224 unsigned Index = Attr.getAttributeSpellingListIndex();
2225
Rafael Espindola3b294362012-05-06 19:56:25 +00002226 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002227 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2228 << Platform;
2229
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002230 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2231 if (!ND) {
2232 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2233 return;
2234 }
2235
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002236 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2237 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2238 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002239 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002240 StringRef Str;
2241 const StringLiteral *SE =
2242 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2243 if (SE)
2244 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002245
Rafael Espindola51be6e32013-01-08 22:04:34 +00002246 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002247 Platform,
2248 Introduced.Version,
2249 Deprecated.Version,
2250 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002251 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002252 /*Override=*/false,
2253 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002254 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002255 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002256}
2257
John McCalld4c3d662013-02-20 01:54:26 +00002258template <class T>
2259static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2260 typename T::VisibilityType value,
2261 unsigned attrSpellingListIndex) {
2262 T *existingAttr = D->getAttr<T>();
2263 if (existingAttr) {
2264 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2265 if (existingValue == value)
2266 return NULL;
2267 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2268 S.Diag(range.getBegin(), diag::note_previous_attribute);
2269 D->dropAttr<T>();
2270 }
2271 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2272}
2273
Rafael Espindola599f1b72012-05-13 03:25:18 +00002274VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002275 VisibilityAttr::VisibilityType Vis,
2276 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002277 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2278 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002279}
2280
John McCalld4c3d662013-02-20 01:54:26 +00002281TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2282 TypeVisibilityAttr::VisibilityType Vis,
2283 unsigned AttrSpellingListIndex) {
2284 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2285 AttrSpellingListIndex);
2286}
2287
2288static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2289 bool isTypeVisibility) {
2290 // Visibility attributes don't mean anything on a typedef.
2291 if (isa<TypedefNameDecl>(D)) {
2292 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2293 << Attr.getName();
2294 return;
2295 }
2296
2297 // 'type_visibility' can only go on a type or namespace.
2298 if (isTypeVisibility &&
2299 !(isa<TagDecl>(D) ||
2300 isa<ObjCInterfaceDecl>(D) ||
2301 isa<NamespaceDecl>(D))) {
2302 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2303 << Attr.getName() << ExpectedTypeOrNamespace;
2304 return;
2305 }
2306
Chris Lattner6b6b5372008-06-26 18:38:35 +00002307 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002308 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002309 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002310
Peter Collingbourne7a730022010-11-23 20:45:58 +00002311 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002312 Arg = Arg->IgnoreParenCasts();
2313 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002314
Douglas Gregor5cee1192011-07-27 05:40:30 +00002315 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002316 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld4c3d662013-02-20 01:54:26 +00002317 << (isTypeVisibility ? "type_visibility" : "visibility") << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002318 return;
2319 }
Mike Stumpbf916502009-07-24 19:02:52 +00002320
Chris Lattner5f9e2722011-07-23 10:55:15 +00002321 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002322 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002323
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002324 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002325 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002326 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002327 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002328 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002329 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002330 else if (TypeStr == "protected") {
2331 // Complain about attempts to use protected visibility on targets
2332 // (like Darwin) that don't support it.
2333 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2334 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2335 type = VisibilityAttr::Default;
2336 } else {
2337 type = VisibilityAttr::Protected;
2338 }
2339 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002340 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002341 return;
2342 }
Mike Stumpbf916502009-07-24 19:02:52 +00002343
Michael Han51d8c522013-01-24 16:46:58 +00002344 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002345 clang::Attr *newAttr;
2346 if (isTypeVisibility) {
2347 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2348 (TypeVisibilityAttr::VisibilityType) type,
2349 Index);
2350 } else {
2351 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2352 }
2353 if (newAttr)
2354 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002355}
2356
Chandler Carruth1b03c872011-07-02 00:01:44 +00002357static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2358 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002359 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2360 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002361 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002362 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002363 return;
2364 }
2365
Chandler Carruth87c44602011-07-01 23:49:12 +00002366 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2367 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2368 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002369 << "objc_method_family" << 1;
2370 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002371 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002372 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002373 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002374 return;
2375 }
2376
Chris Lattner5f9e2722011-07-23 10:55:15 +00002377 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002378 ObjCMethodFamilyAttr::FamilyKind family;
2379 if (param == "none")
2380 family = ObjCMethodFamilyAttr::OMF_None;
2381 else if (param == "alloc")
2382 family = ObjCMethodFamilyAttr::OMF_alloc;
2383 else if (param == "copy")
2384 family = ObjCMethodFamilyAttr::OMF_copy;
2385 else if (param == "init")
2386 family = ObjCMethodFamilyAttr::OMF_init;
2387 else if (param == "mutableCopy")
2388 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2389 else if (param == "new")
2390 family = ObjCMethodFamilyAttr::OMF_new;
2391 else {
2392 // Just warn and ignore it. This is future-proof against new
2393 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002394 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002395 return;
2396 }
2397
John McCallf85e1932011-06-15 23:02:42 +00002398 if (family == ObjCMethodFamilyAttr::OMF_init &&
2399 !method->getResultType()->isObjCObjectPointerType()) {
2400 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2401 << method->getResultType();
2402 // Ignore the attribute.
2403 return;
2404 }
2405
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002406 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002407 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002408}
2409
Chandler Carruth1b03c872011-07-02 00:01:44 +00002410static void handleObjCExceptionAttr(Sema &S, Decl *D,
2411 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002412 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002413 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002414
Chris Lattner0db29ec2009-02-14 08:09:34 +00002415 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2416 if (OCI == 0) {
2417 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2418 return;
2419 }
Mike Stumpbf916502009-07-24 19:02:52 +00002420
Michael Han51d8c522013-01-24 16:46:58 +00002421 D->addAttr(::new (S.Context)
2422 ObjCExceptionAttr(Attr.getRange(), S.Context,
2423 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002424}
2425
Chandler Carruth1b03c872011-07-02 00:01:44 +00002426static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002427 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002428 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002429 return;
2430 }
Richard Smith162e1c12011-04-15 14:24:37 +00002431 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002432 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002433 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002434 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2435 return;
2436 }
2437 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002438 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2439 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002440 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002441 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2442 return;
2443 }
2444 }
2445 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002446 // It is okay to include this attribute on properties, e.g.:
2447 //
2448 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2449 //
2450 // In this case it follows tradition and suppresses an error in the above
2451 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002452 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002453 }
Michael Han51d8c522013-01-24 16:46:58 +00002454 D->addAttr(::new (S.Context)
2455 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2456 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002457}
2458
Mike Stumpbf916502009-07-24 19:02:52 +00002459static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002460handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002461 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002462 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002463 return;
2464 }
2465
2466 if (!isa<FunctionDecl>(D)) {
2467 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2468 return;
2469 }
2470
Michael Han51d8c522013-01-24 16:46:58 +00002471 D->addAttr(::new (S.Context)
2472 OverloadableAttr(Attr.getRange(), S.Context,
2473 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002474}
2475
Chandler Carruth1b03c872011-07-02 00:01:44 +00002476static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002477 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002478 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002479 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002480 return;
2481 }
Mike Stumpbf916502009-07-24 19:02:52 +00002482
Steve Naroff9eae5762008-09-18 16:44:58 +00002483 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002484 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002485 return;
2486 }
Mike Stumpbf916502009-07-24 19:02:52 +00002487
Sean Huntcf807c42010-08-18 23:23:40 +00002488 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002489 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002490 type = BlocksAttr::ByRef;
2491 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002492 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002493 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002494 return;
2495 }
Mike Stumpbf916502009-07-24 19:02:52 +00002496
Michael Han51d8c522013-01-24 16:46:58 +00002497 D->addAttr(::new (S.Context)
2498 BlocksAttr(Attr.getRange(), S.Context, type,
2499 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002500}
2501
Chandler Carruth1b03c872011-07-02 00:01:44 +00002502static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002503 // check the attribute arguments.
2504 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002505 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002506 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002507 }
2508
John McCall3323fad2011-09-09 07:56:05 +00002509 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002510 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002511 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002512 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002513 if (E->isTypeDependent() || E->isValueDependent() ||
2514 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002515 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002516 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002517 return;
2518 }
Mike Stumpbf916502009-07-24 19:02:52 +00002519
John McCall3323fad2011-09-09 07:56:05 +00002520 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002521 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2522 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002523 return;
2524 }
John McCall3323fad2011-09-09 07:56:05 +00002525
2526 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002527 }
2528
John McCall3323fad2011-09-09 07:56:05 +00002529 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002530 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002531 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002532 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002533 if (E->isTypeDependent() || E->isValueDependent() ||
2534 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002535 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002536 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002537 return;
2538 }
2539 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002540
John McCall3323fad2011-09-09 07:56:05 +00002541 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002542 // FIXME: This error message could be improved, it would be nice
2543 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002544 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2545 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002546 return;
2547 }
2548 }
2549
Chandler Carruth87c44602011-07-01 23:49:12 +00002550 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002551 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002552 if (isa<FunctionNoProtoType>(FT)) {
2553 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2554 return;
2555 }
Mike Stumpbf916502009-07-24 19:02:52 +00002556
Chris Lattner897cd902009-03-17 23:03:47 +00002557 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002558 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002559 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002560 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002561 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002562 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002563 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002564 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002565 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002566 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2567 if (!BD->isVariadic()) {
2568 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2569 return;
2570 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002571 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002572 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002573 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002574 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002575 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002576 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002577 int m = Ty->isFunctionPointerType() ? 0 : 1;
2578 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002579 return;
2580 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002581 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002582 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002583 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002584 return;
2585 }
Anders Carlsson77091822008-10-05 18:05:59 +00002586 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002587 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002588 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002589 return;
2590 }
Michael Han51d8c522013-01-24 16:46:58 +00002591 D->addAttr(::new (S.Context)
2592 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2593 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002594}
2595
Chandler Carruth1b03c872011-07-02 00:01:44 +00002596static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002597 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002598 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002599 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002600
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002601 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002602 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002603 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002604 return;
2605 }
Mike Stumpbf916502009-07-24 19:02:52 +00002606
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002607 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2608 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2609 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002610 return;
2611 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002612 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2613 if (MD->getResultType()->isVoidType()) {
2614 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2615 << Attr.getName() << 1;
2616 return;
2617 }
2618
Michael Han51d8c522013-01-24 16:46:58 +00002619 D->addAttr(::new (S.Context)
2620 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2621 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002622}
2623
Chandler Carruth1b03c872011-07-02 00:01:44 +00002624static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002625 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002626 if (Attr.hasParameterOrArguments()) {
2627 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002628 return;
2629 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002630
Chandler Carruth87c44602011-07-01 23:49:12 +00002631 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002632 if (isa<CXXRecordDecl>(D)) {
2633 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2634 return;
2635 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002636 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2637 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002638 return;
2639 }
2640
Chandler Carruth87c44602011-07-01 23:49:12 +00002641 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002642
Michael Han51d8c522013-01-24 16:46:58 +00002643 nd->addAttr(::new (S.Context)
2644 WeakAttr(Attr.getRange(), S.Context,
2645 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002646}
2647
Chandler Carruth1b03c872011-07-02 00:01:44 +00002648static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002649 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002650 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002651 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002652
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002653
2654 // weak_import only applies to variable & function declarations.
2655 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002656 if (!D->canBeWeakImported(isDef)) {
2657 if (isDef)
2658 S.Diag(Attr.getLoc(),
2659 diag::warn_attribute_weak_import_invalid_on_definition)
2660 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002661 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002662 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002663 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002664 // Nothing to warn about here.
2665 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002666 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002667 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002668
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002669 return;
2670 }
2671
Michael Han51d8c522013-01-24 16:46:58 +00002672 D->addAttr(::new (S.Context)
2673 WeakImportAttr(Attr.getRange(), S.Context,
2674 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002675}
2676
Tanya Lattner0df579e2012-07-09 22:06:01 +00002677// Handles reqd_work_group_size and work_group_size_hint.
2678static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002679 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002680 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2681 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2682
Nate Begeman6f3d8382009-06-26 06:32:41 +00002683 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002684 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002685
2686 unsigned WGSize[3];
2687 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002688 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002689 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002690 if (E->isTypeDependent() || E->isValueDependent() ||
2691 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002692 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002693 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002694 return;
2695 }
2696 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2697 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002698
2699 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2700 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2701 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2702 if (!(A->getXDim() == WGSize[0] &&
2703 A->getYDim() == WGSize[1] &&
2704 A->getZDim() == WGSize[2])) {
2705 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2706 Attr.getName();
2707 }
2708 }
2709
2710 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2711 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2712 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2713 if (!(A->getXDim() == WGSize[0] &&
2714 A->getYDim() == WGSize[1] &&
2715 A->getZDim() == WGSize[2])) {
2716 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2717 Attr.getName();
2718 }
2719 }
2720
2721 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2722 D->addAttr(::new (S.Context)
2723 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002724 WGSize[0], WGSize[1], WGSize[2],
2725 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002726 else
2727 D->addAttr(::new (S.Context)
2728 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002729 WGSize[0], WGSize[1], WGSize[2],
2730 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002731}
2732
Rafael Espindola599f1b72012-05-13 03:25:18 +00002733SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002734 StringRef Name,
2735 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002736 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2737 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002738 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002739 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2740 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002741 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002742 }
Michael Han51d8c522013-01-24 16:46:58 +00002743 return ::new (Context) SectionAttr(Range, Context, Name,
2744 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002745}
2746
Chandler Carruth1b03c872011-07-02 00:01:44 +00002747static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002748 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002749 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002750 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002751
2752 // Make sure that there is a string literal as the sections's single
2753 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002754 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002755 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002756 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002757 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002758 return;
2759 }
Mike Stump1eb44332009-09-09 15:08:12 +00002760
Chris Lattner797c3c42009-08-10 19:03:04 +00002761 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002762 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002763 if (!Error.empty()) {
2764 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2765 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002766 return;
2767 }
Mike Stump1eb44332009-09-09 15:08:12 +00002768
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002769 // This attribute cannot be applied to local variables.
2770 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2771 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2772 return;
2773 }
Michael Han51d8c522013-01-24 16:46:58 +00002774
2775 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002776 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002777 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002778 if (NewAttr)
2779 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002780}
2781
Chris Lattner6b6b5372008-06-26 18:38:35 +00002782
Chandler Carruth1b03c872011-07-02 00:01:44 +00002783static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002784 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002785 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002786 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002787 return;
2788 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002789
Chandler Carruth87c44602011-07-01 23:49:12 +00002790 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002791 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002792 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002793 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002794 D->addAttr(::new (S.Context)
2795 NoThrowAttr(Attr.getRange(), S.Context,
2796 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002797 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002798}
2799
Chandler Carruth1b03c872011-07-02 00:01:44 +00002800static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002801 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002802 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002803 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002804 return;
2805 }
Mike Stumpbf916502009-07-24 19:02:52 +00002806
Chandler Carruth87c44602011-07-01 23:49:12 +00002807 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002808 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002809 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002810 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002811 D->addAttr(::new (S.Context)
2812 ConstAttr(Attr.getRange(), S.Context,
2813 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002814 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002815}
2816
Chandler Carruth1b03c872011-07-02 00:01:44 +00002817static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002818 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002819 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002820 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002821
Michael Han51d8c522013-01-24 16:46:58 +00002822 D->addAttr(::new (S.Context)
2823 PureAttr(Attr.getRange(), S.Context,
2824 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002825}
2826
Chandler Carruth1b03c872011-07-02 00:01:44 +00002827static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002828 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002829 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2830 return;
2831 }
Mike Stumpbf916502009-07-24 19:02:52 +00002832
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002833 if (Attr.getNumArgs() != 0) {
2834 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2835 return;
2836 }
Mike Stumpbf916502009-07-24 19:02:52 +00002837
Chandler Carruth87c44602011-07-01 23:49:12 +00002838 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002839
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002840 if (!VD || !VD->hasLocalStorage()) {
2841 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2842 return;
2843 }
Mike Stumpbf916502009-07-24 19:02:52 +00002844
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002845 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002846 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002847 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002848 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2849 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002850 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002851 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002852 Attr.getParameterName();
2853 return;
2854 }
Mike Stumpbf916502009-07-24 19:02:52 +00002855
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002856 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2857 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002858 S.Diag(Attr.getParameterLoc(),
2859 diag::err_attribute_cleanup_arg_not_function)
2860 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002861 return;
2862 }
2863
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002864 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002865 S.Diag(Attr.getParameterLoc(),
2866 diag::err_attribute_cleanup_func_must_take_one_arg)
2867 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002868 return;
2869 }
Mike Stumpbf916502009-07-24 19:02:52 +00002870
Anders Carlsson89941c12009-02-07 23:16:50 +00002871 // We're currently more strict than GCC about what function types we accept.
2872 // If this ever proves to be a problem it should be easy to fix.
2873 QualType Ty = S.Context.getPointerType(VD->getType());
2874 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002875 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2876 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002877 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002878 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2879 Attr.getParameterName() << ParamTy << Ty;
2880 return;
2881 }
Mike Stumpbf916502009-07-24 19:02:52 +00002882
Michael Han51d8c522013-01-24 16:46:58 +00002883 D->addAttr(::new (S.Context)
2884 CleanupAttr(Attr.getRange(), S.Context, FD,
2885 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002886 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002887 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002888}
2889
Mike Stumpbf916502009-07-24 19:02:52 +00002890/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002891/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002892static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002893 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002894 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002895
Chandler Carruth87c44602011-07-01 23:49:12 +00002896 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002897 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002898 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002899 return;
2900 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002901
2902 // In C++ the implicit 'this' function parameter also counts, and they are
2903 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002904 bool HasImplicitThisParam = isInstanceMethod(D);
2905 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002906 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002907
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002908 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002909 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002910 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002911 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2912 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002913 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2914 << "format" << 2 << IdxExpr->getSourceRange();
2915 return;
2916 }
Mike Stumpbf916502009-07-24 19:02:52 +00002917
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002918 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2919 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2920 << "format" << 2 << IdxExpr->getSourceRange();
2921 return;
2922 }
Mike Stumpbf916502009-07-24 19:02:52 +00002923
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002924 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002925
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002926 if (HasImplicitThisParam) {
2927 if (ArgIdx == 0) {
2928 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2929 << "format_arg" << IdxExpr->getSourceRange();
2930 return;
2931 }
2932 ArgIdx--;
2933 }
2934
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002935 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002936 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002937
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002938 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2939 if (not_nsstring_type &&
2940 !isCFStringType(Ty, S.Context) &&
2941 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002942 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002943 // FIXME: Should highlight the actual expression that has the wrong type.
2944 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002945 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002946 << IdxExpr->getSourceRange();
2947 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002948 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002949 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002950 if (!isNSStringType(Ty, S.Context) &&
2951 !isCFStringType(Ty, S.Context) &&
2952 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002953 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002954 // FIXME: Should highlight the actual expression that has the wrong type.
2955 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002956 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002957 << IdxExpr->getSourceRange();
2958 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002959 }
2960
Michael Han51d8c522013-01-24 16:46:58 +00002961 D->addAttr(::new (S.Context)
2962 FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(),
2963 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002964}
2965
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002966enum FormatAttrKind {
2967 CFStringFormat,
2968 NSStringFormat,
2969 StrftimeFormat,
2970 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002971 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002972 InvalidFormat
2973};
2974
2975/// getFormatAttrKind - Map from format attribute names to supported format
2976/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002977static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002978 return llvm::StringSwitch<FormatAttrKind>(Format)
2979 // Check for formats that get handled specially.
2980 .Case("NSString", NSStringFormat)
2981 .Case("CFString", CFStringFormat)
2982 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002983
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002984 // Otherwise, check for supported formats.
2985 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2986 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2987 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002988
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002989 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2990 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002991}
2992
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002993/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002994/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002995static void handleInitPriorityAttr(Sema &S, Decl *D,
2996 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002997 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002998 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2999 return;
3000 }
3001
Chandler Carruth87c44602011-07-01 23:49:12 +00003002 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003003 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3004 Attr.setInvalid();
3005 return;
3006 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003007 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003008 if (S.Context.getAsArrayType(T))
3009 T = S.Context.getBaseElementType(T);
3010 if (!T->getAs<RecordType>()) {
3011 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3012 Attr.setInvalid();
3013 return;
3014 }
3015
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003016 if (Attr.getNumArgs() != 1) {
3017 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3018 Attr.setInvalid();
3019 return;
3020 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00003021 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003022
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003023 llvm::APSInt priority(32);
3024 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3025 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
3026 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3027 << "init_priority" << priorityExpr->getSourceRange();
3028 Attr.setInvalid();
3029 return;
3030 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003031 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003032 if (prioritynum < 101 || prioritynum > 65535) {
3033 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3034 << priorityExpr->getSourceRange();
3035 Attr.setInvalid();
3036 return;
3037 }
Michael Han51d8c522013-01-24 16:46:58 +00003038 D->addAttr(::new (S.Context)
3039 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3040 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003041}
3042
Rafael Espindola599f1b72012-05-13 03:25:18 +00003043FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003044 int FormatIdx, int FirstArg,
3045 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003046 // Check whether we already have an equivalent format attribute.
3047 for (specific_attr_iterator<FormatAttr>
3048 i = D->specific_attr_begin<FormatAttr>(),
3049 e = D->specific_attr_end<FormatAttr>();
3050 i != e ; ++i) {
3051 FormatAttr *f = *i;
3052 if (f->getType() == Format &&
3053 f->getFormatIdx() == FormatIdx &&
3054 f->getFirstArg() == FirstArg) {
3055 // If we don't have a valid location for this attribute, adopt the
3056 // location.
3057 if (f->getLocation().isInvalid())
3058 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003059 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003060 }
3061 }
3062
Michael Han51d8c522013-01-24 16:46:58 +00003063 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3064 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003065}
3066
Mike Stumpbf916502009-07-24 19:02:52 +00003067/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003068/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003069static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003070
Chris Lattner545dd342008-06-28 23:36:30 +00003071 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003072 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00003073 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003074 return;
3075 }
3076
Chris Lattner545dd342008-06-28 23:36:30 +00003077 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003078 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003079 return;
3080 }
3081
Chandler Carruth87c44602011-07-01 23:49:12 +00003082 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003083 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003084 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003085 return;
3086 }
3087
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003088 // In C++ the implicit 'this' function parameter also counts, and they are
3089 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003090 bool HasImplicitThisParam = isInstanceMethod(D);
3091 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003092 unsigned FirstIdx = 1;
3093
Chris Lattner5f9e2722011-07-23 10:55:15 +00003094 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003095
3096 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003097 if (Format.startswith("__") && Format.endswith("__"))
3098 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003099
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003100 // Check for supported formats.
3101 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003102
3103 if (Kind == IgnoredFormat)
3104 return;
3105
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003106 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003107 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003108 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003109 return;
3110 }
3111
3112 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003113 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003114 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003115 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3116 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003117 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003118 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003119 return;
3120 }
3121
3122 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003123 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003124 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003125 return;
3126 }
3127
3128 // FIXME: Do we need to bounds check?
3129 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003130
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003131 if (HasImplicitThisParam) {
3132 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003133 S.Diag(Attr.getLoc(),
3134 diag::err_format_attribute_implicit_this_format_string)
3135 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003136 return;
3137 }
3138 ArgIdx--;
3139 }
Mike Stump1eb44332009-09-09 15:08:12 +00003140
Chris Lattner6b6b5372008-06-26 18:38:35 +00003141 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003142 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003143
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003144 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003145 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003146 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3147 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003148 return;
3149 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003150 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003151 // FIXME: do we need to check if the type is NSString*? What are the
3152 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003153 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003154 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003155 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3156 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003157 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003158 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003159 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003160 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003161 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003162 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3163 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003164 return;
3165 }
3166
3167 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003168 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003169 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003170 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3171 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003172 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003173 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003174 return;
3175 }
3176
3177 // check if the function is variadic if the 3rd argument non-zero
3178 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003179 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003180 ++NumArgs; // +1 for ...
3181 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003182 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003183 return;
3184 }
3185 }
3186
Chris Lattner3c73c412008-11-19 08:23:25 +00003187 // strftime requires FirstArg to be 0 because it doesn't read from any
3188 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003189 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003190 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003191 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3192 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003193 return;
3194 }
3195 // if 0 it disables parameter checking (to use with e.g. va_list)
3196 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003197 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003198 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003199 return;
3200 }
3201
Rafael Espindola599f1b72012-05-13 03:25:18 +00003202 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3203 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003204 FirstArg.getZExtValue(),
3205 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003206 if (NewAttr)
3207 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003208}
3209
Chandler Carruth1b03c872011-07-02 00:01:44 +00003210static void handleTransparentUnionAttr(Sema &S, Decl *D,
3211 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003212 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003213 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003214 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003215
Chris Lattner6b6b5372008-06-26 18:38:35 +00003216
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003217 // Try to find the underlying union declaration.
3218 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003219 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003220 if (TD && TD->getUnderlyingType()->isUnionType())
3221 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3222 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003223 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003224
3225 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003226 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003227 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003228 return;
3229 }
3230
John McCall5e1cdac2011-10-07 06:10:15 +00003231 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003232 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003233 diag::warn_transparent_union_attribute_not_definition);
3234 return;
3235 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003236
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003237 RecordDecl::field_iterator Field = RD->field_begin(),
3238 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003239 if (Field == FieldEnd) {
3240 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3241 return;
3242 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003243
David Blaikie581deb32012-06-06 20:45:41 +00003244 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003245 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003246 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003247 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003248 diag::warn_transparent_union_attribute_floating)
3249 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003250 return;
3251 }
3252
3253 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3254 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3255 for (; Field != FieldEnd; ++Field) {
3256 QualType FieldType = Field->getType();
3257 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3258 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3259 // Warn if we drop the attribute.
3260 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003261 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003262 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003263 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003264 diag::warn_transparent_union_attribute_field_size_align)
3265 << isSize << Field->getDeclName() << FieldBits;
3266 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003267 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003268 diag::note_transparent_union_first_field_size_align)
3269 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003270 return;
3271 }
3272 }
3273
Michael Han51d8c522013-01-24 16:46:58 +00003274 RD->addAttr(::new (S.Context)
3275 TransparentUnionAttr(Attr.getRange(), S.Context,
3276 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003277}
3278
Chandler Carruth1b03c872011-07-02 00:01:44 +00003279static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003280 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003281 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003282 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003283
Peter Collingbourne7a730022010-11-23 20:45:58 +00003284 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003285 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003286
Chris Lattner6b6b5372008-06-26 18:38:35 +00003287 // Make sure that there is a string literal as the annotation's single
3288 // argument.
3289 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00003290 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00003291 return;
3292 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003293
3294 // Don't duplicate annotations that are already set.
3295 for (specific_attr_iterator<AnnotateAttr>
3296 i = D->specific_attr_begin<AnnotateAttr>(),
3297 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3298 if ((*i)->getAnnotation() == SE->getString())
3299 return;
3300 }
Michael Han51d8c522013-01-24 16:46:58 +00003301
3302 D->addAttr(::new (S.Context)
3303 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3304 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003305}
3306
Chandler Carruth1b03c872011-07-02 00:01:44 +00003307static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003308 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003309 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003310 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003311 return;
3312 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003313
Richard Smithbe507b62013-02-01 08:12:08 +00003314 // FIXME: The C++11 version of this attribute should error out when it is
3315 // used to specify a weaker alignment, rather than being silently
3316 // ignored. This constraint cannot be applied until we have seen
3317 // all the attributes which apply to the variable.
3318
3319 if (Attr.getNumArgs() == 0) {
3320 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3321 true, 0, Attr.getAttributeSpellingListIndex()));
3322 return;
3323 }
3324
3325 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0),
3326 Attr.getAttributeSpellingListIndex());
3327}
3328
3329void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
3330 unsigned SpellingListIndex) {
3331 // FIXME: Handle pack-expansions here.
3332 if (DiagnoseUnexpandedParameterPack(E))
3333 return;
3334
3335 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3336 SourceLocation AttrLoc = AttrRange.getBegin();
3337
Richard Smith4cd81c52013-01-29 09:02:09 +00003338 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003339 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003340 // C++11 [dcl.align]p1:
3341 // An alignment-specifier may be applied to a variable or to a class
3342 // data member, but it shall not be applied to a bit-field, a function
3343 // parameter, the formal parameter of a catch clause, or a variable
3344 // declared with the register storage class specifier. An
3345 // alignment-specifier may also be applied to the declaration of a class
3346 // or enumeration type.
3347 // C11 6.7.5/2:
3348 // An alignment attribute shall not be specified in a declaration of
3349 // a typedef, or a bit-field, or a function, or a parameter, or an
3350 // object declared with the register storage-class specifier.
3351 int DiagKind = -1;
3352 if (isa<ParmVarDecl>(D)) {
3353 DiagKind = 0;
3354 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3355 if (VD->getStorageClass() == SC_Register)
3356 DiagKind = 1;
3357 if (VD->isExceptionVariable())
3358 DiagKind = 2;
3359 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3360 if (FD->isBitField())
3361 DiagKind = 3;
3362 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003363 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3364 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003365 << (TmpAttr.isC11() ? ExpectedVariableOrField
3366 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003367 return;
3368 }
3369 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003370 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003371 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003372 return;
3373 }
3374 }
3375
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003376 if (E->isTypeDependent() || E->isValueDependent()) {
3377 // Save dependent expressions in the AST to be instantiated.
Richard Smithbe507b62013-02-01 08:12:08 +00003378 D->addAttr(::new (Context) AlignedAttr(TmpAttr));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003379 return;
3380 }
Michael Hana31f65b2013-02-01 01:19:17 +00003381
Sean Huntcf807c42010-08-18 23:23:40 +00003382 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003383 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003384 ExprResult ICE
3385 = VerifyIntegerConstantExpression(E, &Alignment,
3386 diag::err_aligned_attribute_argument_not_int,
3387 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003388 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003389 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003390
3391 // C++11 [dcl.align]p2:
3392 // -- if the constant expression evaluates to zero, the alignment
3393 // specifier shall have no effect
3394 // C11 6.7.5p6:
3395 // An alignment specification of zero has no effect.
3396 if (!(TmpAttr.isAlignas() && !Alignment) &&
3397 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003398 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3399 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003400 return;
3401 }
Michael Hana31f65b2013-02-01 01:19:17 +00003402
Richard Smithbe507b62013-02-01 08:12:08 +00003403 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003404 // We've already verified it's a power of 2, now let's make sure it's
3405 // 8192 or less.
3406 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003407 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003408 << E->getSourceRange();
3409 return;
3410 }
3411 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003412
Richard Smithbe507b62013-02-01 08:12:08 +00003413 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true,
3414 ICE.take(), SpellingListIndex));
Sean Huntcf807c42010-08-18 23:23:40 +00003415}
3416
Michael Hana31f65b2013-02-01 01:19:17 +00003417void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
3418 unsigned SpellingListIndex) {
Sean Huntcf807c42010-08-18 23:23:40 +00003419 // FIXME: Cache the number on the Attr object if non-dependent?
3420 // FIXME: Perform checking of type validity
Michael Hana31f65b2013-02-01 01:19:17 +00003421 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3422 SpellingListIndex));
Sean Huntcf807c42010-08-18 23:23:40 +00003423 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003424}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003425
Richard Smithbe507b62013-02-01 08:12:08 +00003426void Sema::CheckAlignasUnderalignment(Decl *D) {
3427 assert(D->hasAttrs() && "no attributes on decl");
3428
3429 QualType Ty;
3430 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3431 Ty = VD->getType();
3432 else
3433 Ty = Context.getTagDeclType(cast<TagDecl>(D));
3434 if (Ty->isDependentType())
3435 return;
3436
3437 // C++11 [dcl.align]p5, C11 6.7.5/4:
3438 // The combined effect of all alignment attributes in a declaration shall
3439 // not specify an alignment that is less strict than the alignment that
3440 // would otherwise be required for the entity being declared.
3441 AlignedAttr *AlignasAttr = 0;
3442 unsigned Align = 0;
3443 for (specific_attr_iterator<AlignedAttr>
3444 I = D->specific_attr_begin<AlignedAttr>(),
3445 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3446 if (I->isAlignmentDependent())
3447 return;
3448 if (I->isAlignas())
3449 AlignasAttr = *I;
3450 Align = std::max(Align, I->getAlignment(Context));
3451 }
3452
3453 if (AlignasAttr && Align) {
3454 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3455 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3456 if (NaturalAlign > RequestedAlign)
3457 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3458 << Ty << (unsigned)NaturalAlign.getQuantity();
3459 }
3460}
3461
Chandler Carruthd309c812011-07-01 23:49:16 +00003462/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003463/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003464///
Mike Stumpbf916502009-07-24 19:02:52 +00003465/// Despite what would be logical, the mode attribute is a decl attribute, not a
3466/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3467/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003468static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003469 // This attribute isn't documented, but glibc uses it. It changes
3470 // the width of an int or unsigned int to the specified size.
3471
3472 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003473 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003474 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003475
Chris Lattnerfbf13472008-06-27 22:18:37 +00003476
3477 IdentifierInfo *Name = Attr.getParameterName();
3478 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003479 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003480 return;
3481 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003482
Chris Lattner5f9e2722011-07-23 10:55:15 +00003483 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003484
3485 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003486 if (Str.startswith("__") && Str.endswith("__"))
3487 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003488
3489 unsigned DestWidth = 0;
3490 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003491 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003492 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003493 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003494 switch (Str[0]) {
3495 case 'Q': DestWidth = 8; break;
3496 case 'H': DestWidth = 16; break;
3497 case 'S': DestWidth = 32; break;
3498 case 'D': DestWidth = 64; break;
3499 case 'X': DestWidth = 96; break;
3500 case 'T': DestWidth = 128; break;
3501 }
3502 if (Str[1] == 'F') {
3503 IntegerMode = false;
3504 } else if (Str[1] == 'C') {
3505 IntegerMode = false;
3506 ComplexMode = true;
3507 } else if (Str[1] != 'I') {
3508 DestWidth = 0;
3509 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003510 break;
3511 case 4:
3512 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3513 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003514 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003515 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003516 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003517 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003518 break;
3519 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003520 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003521 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003522 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003523 case 11:
3524 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003525 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003526 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003527 }
3528
3529 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003530 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003531 OldTy = TD->getUnderlyingType();
3532 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3533 OldTy = VD->getType();
3534 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003535 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003536 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003537 return;
3538 }
Eli Friedman73397492009-03-03 06:41:03 +00003539
John McCall183700f2009-09-21 23:43:11 +00003540 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003541 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3542 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003543 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003544 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3545 } else if (ComplexMode) {
3546 if (!OldTy->isComplexType())
3547 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3548 } else {
3549 if (!OldTy->isFloatingType())
3550 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3551 }
3552
Mike Stump390b4cc2009-05-16 07:39:55 +00003553 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3554 // and friends, at least with glibc.
3555 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3556 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003557 // FIXME: Make sure floating-point mappings are accurate
3558 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003559 QualType NewTy;
3560 switch (DestWidth) {
3561 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003562 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003563 return;
3564 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003565 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003566 return;
3567 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003568 if (!IntegerMode) {
3569 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3570 return;
3571 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003572 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003573 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003574 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003575 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003576 break;
3577 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003578 if (!IntegerMode) {
3579 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3580 return;
3581 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003582 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003583 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003584 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003585 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003586 break;
3587 case 32:
3588 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003589 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003590 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003591 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003592 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003593 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003594 break;
3595 case 64:
3596 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003597 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003598 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003599 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003600 NewTy = S.Context.LongTy;
3601 else
3602 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003603 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003604 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003605 NewTy = S.Context.UnsignedLongTy;
3606 else
3607 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003608 break;
Eli Friedman73397492009-03-03 06:41:03 +00003609 case 96:
3610 NewTy = S.Context.LongDoubleTy;
3611 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003612 case 128:
3613 if (!IntegerMode) {
3614 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3615 return;
3616 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003617 if (OldTy->isSignedIntegerType())
3618 NewTy = S.Context.Int128Ty;
3619 else
3620 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003621 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003622 }
3623
Eli Friedman73397492009-03-03 06:41:03 +00003624 if (ComplexMode) {
3625 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003626 }
3627
3628 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003629 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003630 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003631 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003632 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003633 cast<ValueDecl>(D)->setType(NewTy);
3634}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003635
Chandler Carruth1b03c872011-07-02 00:01:44 +00003636static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003637 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003638 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003639 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003640
Nick Lewycky78d1a102012-07-24 01:40:49 +00003641 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3642 if (!VD->hasGlobalStorage())
3643 S.Diag(Attr.getLoc(),
3644 diag::warn_attribute_requires_functions_or_static_globals)
3645 << Attr.getName();
3646 } else if (!isFunctionOrMethod(D)) {
3647 S.Diag(Attr.getLoc(),
3648 diag::warn_attribute_requires_functions_or_static_globals)
3649 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003650 return;
3651 }
Mike Stumpbf916502009-07-24 19:02:52 +00003652
Michael Han51d8c522013-01-24 16:46:58 +00003653 D->addAttr(::new (S.Context)
3654 NoDebugAttr(Attr.getRange(), S.Context,
3655 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003656}
3657
Chandler Carruth1b03c872011-07-02 00:01:44 +00003658static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003659 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003660 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003661 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003662
Mike Stumpbf916502009-07-24 19:02:52 +00003663
Chandler Carruth87c44602011-07-01 23:49:12 +00003664 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003665 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003666 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003667 return;
3668 }
Mike Stumpbf916502009-07-24 19:02:52 +00003669
Michael Han51d8c522013-01-24 16:46:58 +00003670 D->addAttr(::new (S.Context)
3671 NoInlineAttr(Attr.getRange(), S.Context,
3672 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003673}
3674
Chandler Carruth1b03c872011-07-02 00:01:44 +00003675static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3676 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003677 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003678 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003679 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003680
Chris Lattner7255a2d2010-06-22 00:03:40 +00003681
Chandler Carruth87c44602011-07-01 23:49:12 +00003682 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003683 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003684 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003685 return;
3686 }
3687
Michael Han51d8c522013-01-24 16:46:58 +00003688 D->addAttr(::new (S.Context)
3689 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3690 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003691}
3692
Chandler Carruth1b03c872011-07-02 00:01:44 +00003693static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003694 if (S.LangOpts.CUDA) {
3695 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003696 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003697 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3698 return;
3699 }
3700
Chandler Carruth87c44602011-07-01 23:49:12 +00003701 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003702 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003703 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003704 return;
3705 }
3706
Michael Han51d8c522013-01-24 16:46:58 +00003707 D->addAttr(::new (S.Context)
3708 CUDAConstantAttr(Attr.getRange(), S.Context,
3709 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003710 } else {
3711 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3712 }
3713}
3714
Chandler Carruth1b03c872011-07-02 00:01:44 +00003715static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003716 if (S.LangOpts.CUDA) {
3717 // check the attribute arguments.
3718 if (Attr.getNumArgs() != 0) {
3719 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3720 return;
3721 }
3722
Chandler Carruth87c44602011-07-01 23:49:12 +00003723 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003724 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003725 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003726 return;
3727 }
3728
Michael Han51d8c522013-01-24 16:46:58 +00003729 D->addAttr(::new (S.Context)
3730 CUDADeviceAttr(Attr.getRange(), S.Context,
3731 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003732 } else {
3733 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3734 }
3735}
3736
Chandler Carruth1b03c872011-07-02 00:01:44 +00003737static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003738 if (S.LangOpts.CUDA) {
3739 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003740 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003741 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003742
Chandler Carruth87c44602011-07-01 23:49:12 +00003743 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003744 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003745 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003746 return;
3747 }
3748
Chandler Carruth87c44602011-07-01 23:49:12 +00003749 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003750 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003751 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003752 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003753 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3754 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003755 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003756 "void");
3757 } else {
3758 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3759 << FD->getType();
3760 }
3761 return;
3762 }
3763
Michael Han51d8c522013-01-24 16:46:58 +00003764 D->addAttr(::new (S.Context)
3765 CUDAGlobalAttr(Attr.getRange(), S.Context,
3766 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003767 } else {
3768 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3769 }
3770}
3771
Chandler Carruth1b03c872011-07-02 00:01:44 +00003772static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003773 if (S.LangOpts.CUDA) {
3774 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003775 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003776 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003777
Peter Collingbourneced76712010-12-01 03:15:31 +00003778
Chandler Carruth87c44602011-07-01 23:49:12 +00003779 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003780 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003781 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003782 return;
3783 }
3784
Michael Han51d8c522013-01-24 16:46:58 +00003785 D->addAttr(::new (S.Context)
3786 CUDAHostAttr(Attr.getRange(), S.Context,
3787 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003788 } else {
3789 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3790 }
3791}
3792
Chandler Carruth1b03c872011-07-02 00:01:44 +00003793static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003794 if (S.LangOpts.CUDA) {
3795 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003796 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003797 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003798
Chandler Carruth87c44602011-07-01 23:49:12 +00003799 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003800 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003801 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003802 return;
3803 }
3804
Michael Han51d8c522013-01-24 16:46:58 +00003805 D->addAttr(::new (S.Context)
3806 CUDASharedAttr(Attr.getRange(), S.Context,
3807 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003808 } else {
3809 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3810 }
3811}
3812
Chandler Carruth1b03c872011-07-02 00:01:44 +00003813static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003814 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003815 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003816 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003817
Chandler Carruth87c44602011-07-01 23:49:12 +00003818 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003819 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003820 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003821 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003822 return;
3823 }
Mike Stumpbf916502009-07-24 19:02:52 +00003824
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003825 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003826 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003827 return;
3828 }
Mike Stumpbf916502009-07-24 19:02:52 +00003829
Michael Han51d8c522013-01-24 16:46:58 +00003830 D->addAttr(::new (S.Context)
3831 GNUInlineAttr(Attr.getRange(), S.Context,
3832 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003833}
3834
Chandler Carruth1b03c872011-07-02 00:01:44 +00003835static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003836 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003837
Aaron Ballmanfff32482012-12-09 17:45:41 +00003838 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003839 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003840 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3841 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003842 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003843 return;
3844
Chandler Carruth87c44602011-07-01 23:49:12 +00003845 if (!isa<ObjCMethodDecl>(D)) {
3846 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3847 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003848 return;
3849 }
3850
Chandler Carruth87c44602011-07-01 23:49:12 +00003851 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003852 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003853 D->addAttr(::new (S.Context)
3854 FastCallAttr(Attr.getRange(), S.Context,
3855 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003856 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003857 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003858 D->addAttr(::new (S.Context)
3859 StdCallAttr(Attr.getRange(), S.Context,
3860 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003861 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003862 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003863 D->addAttr(::new (S.Context)
3864 ThisCallAttr(Attr.getRange(), S.Context,
3865 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003866 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003867 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003868 D->addAttr(::new (S.Context)
3869 CDeclAttr(Attr.getRange(), S.Context,
3870 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003871 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003872 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003873 D->addAttr(::new (S.Context)
3874 PascalAttr(Attr.getRange(), S.Context,
3875 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003876 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003877 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003878 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003879 switch (CC) {
3880 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003881 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003882 break;
3883 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003884 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003885 break;
3886 default:
3887 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003888 }
3889
Michael Han51d8c522013-01-24 16:46:58 +00003890 D->addAttr(::new (S.Context)
3891 PcsAttr(Attr.getRange(), S.Context, PCS,
3892 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003893 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003894 }
Derek Schuff263366f2012-10-16 22:30:41 +00003895 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003896 D->addAttr(::new (S.Context)
3897 PnaclCallAttr(Attr.getRange(), S.Context,
3898 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003899 return;
Guy Benyei38980082012-12-25 08:53:55 +00003900 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003901 D->addAttr(::new (S.Context)
3902 IntelOclBiccAttr(Attr.getRange(), S.Context,
3903 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003904 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003905
Abramo Bagnarae215f722010-04-30 13:10:51 +00003906 default:
3907 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003908 }
3909}
3910
Chandler Carruth1b03c872011-07-02 00:01:44 +00003911static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003912 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003913 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003914}
3915
Aaron Ballmanfff32482012-12-09 17:45:41 +00003916bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3917 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003918 if (attr.isInvalid())
3919 return true;
3920
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003921 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3922 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
3923 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00003924 attr.setInvalid();
3925 return true;
3926 }
3927
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003928 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3929 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003930 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003931 case AttributeList::AT_CDecl: CC = CC_C; break;
3932 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3933 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3934 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3935 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3936 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003937 Expr *Arg = attr.getArg(0);
3938 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003939 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003940 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3941 << "pcs" << 1;
3942 attr.setInvalid();
3943 return true;
3944 }
3945
Chris Lattner5f9e2722011-07-23 10:55:15 +00003946 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003947 if (StrRef == "aapcs") {
3948 CC = CC_AAPCS;
3949 break;
3950 } else if (StrRef == "aapcs-vfp") {
3951 CC = CC_AAPCS_VFP;
3952 break;
3953 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003954
3955 attr.setInvalid();
3956 Diag(attr.getLoc(), diag::err_invalid_pcs);
3957 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003958 }
Derek Schuff263366f2012-10-16 22:30:41 +00003959 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003960 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003961 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003962 }
3963
Aaron Ballman82bfa192012-10-02 14:26:08 +00003964 const TargetInfo &TI = Context.getTargetInfo();
3965 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3966 if (A == TargetInfo::CCCR_Warning) {
3967 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003968
3969 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3970 if (FD)
3971 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3972 TargetInfo::CCMT_NonMember;
3973 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003974 }
3975
John McCall711c52b2011-01-05 12:14:39 +00003976 return false;
3977}
3978
Chandler Carruth1b03c872011-07-02 00:01:44 +00003979static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003980 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003981
3982 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003983 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003984 return;
3985
Chandler Carruth87c44602011-07-01 23:49:12 +00003986 if (!isa<ObjCMethodDecl>(D)) {
3987 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3988 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003989 return;
3990 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003991
Michael Han51d8c522013-01-24 16:46:58 +00003992 D->addAttr(::new (S.Context)
3993 RegparmAttr(Attr.getRange(), S.Context, numParams,
3994 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003995}
3996
3997/// Checks a regparm attribute, returning true if it is ill-formed and
3998/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003999bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4000 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004001 return true;
4002
Chandler Carruth87c44602011-07-01 23:49:12 +00004003 if (Attr.getNumArgs() != 1) {
4004 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
4005 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004006 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004007 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004008
Chandler Carruth87c44602011-07-01 23:49:12 +00004009 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004010 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004011 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004012 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004013 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004014 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004015 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004016 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004017 }
4018
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004019 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004020 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004021 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004022 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004023 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004024 }
4025
John McCall711c52b2011-01-05 12:14:39 +00004026 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004027 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004028 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004029 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004030 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004031 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004032 }
4033
John McCall711c52b2011-01-05 12:14:39 +00004034 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004035}
4036
Chandler Carruth1b03c872011-07-02 00:01:44 +00004037static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004038 if (S.LangOpts.CUDA) {
4039 // check the attribute arguments.
4040 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004041 // FIXME: 0 is not okay.
4042 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004043 return;
4044 }
4045
Chandler Carruth87c44602011-07-01 23:49:12 +00004046 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004047 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004048 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004049 return;
4050 }
4051
4052 Expr *MaxThreadsExpr = Attr.getArg(0);
4053 llvm::APSInt MaxThreads(32);
4054 if (MaxThreadsExpr->isTypeDependent() ||
4055 MaxThreadsExpr->isValueDependent() ||
4056 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
4057 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4058 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
4059 return;
4060 }
4061
4062 llvm::APSInt MinBlocks(32);
4063 if (Attr.getNumArgs() > 1) {
4064 Expr *MinBlocksExpr = Attr.getArg(1);
4065 if (MinBlocksExpr->isTypeDependent() ||
4066 MinBlocksExpr->isValueDependent() ||
4067 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
4068 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4069 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
4070 return;
4071 }
4072 }
4073
Michael Han51d8c522013-01-24 16:46:58 +00004074 D->addAttr(::new (S.Context)
4075 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4076 MaxThreads.getZExtValue(),
4077 MinBlocks.getZExtValue(),
4078 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004079 } else {
4080 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4081 }
4082}
4083
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004084static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4085 const AttributeList &Attr) {
4086 StringRef AttrName = Attr.getName()->getName();
4087 if (!Attr.getParameterName()) {
4088 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4089 << Attr.getName() << /* arg num = */ 1;
4090 return;
4091 }
4092
4093 if (Attr.getNumArgs() != 2) {
4094 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4095 << /* required args = */ 3;
4096 return;
4097 }
4098
4099 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4100
4101 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4102 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4103 << Attr.getName() << ExpectedFunctionOrMethod;
4104 return;
4105 }
4106
4107 uint64_t ArgumentIdx;
4108 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4109 Attr.getLoc(), 2,
4110 Attr.getArg(0), ArgumentIdx))
4111 return;
4112
4113 uint64_t TypeTagIdx;
4114 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4115 Attr.getLoc(), 3,
4116 Attr.getArg(1), TypeTagIdx))
4117 return;
4118
4119 bool IsPointer = (AttrName == "pointer_with_type_tag");
4120 if (IsPointer) {
4121 // Ensure that buffer has a pointer type.
4122 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4123 if (!BufferTy->isPointerType()) {
4124 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
4125 << AttrName;
4126 }
4127 }
4128
Michael Han51d8c522013-01-24 16:46:58 +00004129 D->addAttr(::new (S.Context)
4130 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4131 ArgumentIdx, TypeTagIdx, IsPointer,
4132 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004133}
4134
4135static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4136 const AttributeList &Attr) {
4137 IdentifierInfo *PointerKind = Attr.getParameterName();
4138 if (!PointerKind) {
4139 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4140 << "type_tag_for_datatype" << 1;
4141 return;
4142 }
4143
4144 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4145
Michael Han51d8c522013-01-24 16:46:58 +00004146 D->addAttr(::new (S.Context)
4147 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4148 MatchingCType,
4149 Attr.getLayoutCompatible(),
4150 Attr.getMustBeNull(),
4151 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004152}
4153
Chris Lattner0744e5f2008-06-29 00:23:49 +00004154//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004155// Checker-specific attribute handlers.
4156//===----------------------------------------------------------------------===//
4157
John McCallc7ad3812011-01-25 03:31:58 +00004158static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004159 return type->isDependentType() ||
4160 type->isObjCObjectPointerType() ||
4161 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004162}
4163static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004164 return type->isDependentType() ||
4165 type->isPointerType() ||
4166 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004167}
4168
Chandler Carruth1b03c872011-07-02 00:01:44 +00004169static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004170 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004171 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004172 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004173 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004174 return;
4175 }
4176
4177 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004178 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004179 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4180 cf = false;
4181 } else {
4182 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4183 cf = true;
4184 }
4185
4186 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004187 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004188 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004189 return;
4190 }
4191
4192 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004193 param->addAttr(::new (S.Context)
4194 CFConsumedAttr(Attr.getRange(), S.Context,
4195 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004196 else
Michael Han51d8c522013-01-24 16:46:58 +00004197 param->addAttr(::new (S.Context)
4198 NSConsumedAttr(Attr.getRange(), S.Context,
4199 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004200}
4201
Chandler Carruth1b03c872011-07-02 00:01:44 +00004202static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4203 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004204 if (!isa<ObjCMethodDecl>(D)) {
4205 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004206 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004207 return;
4208 }
4209
Michael Han51d8c522013-01-24 16:46:58 +00004210 D->addAttr(::new (S.Context)
4211 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4212 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004213}
4214
Chandler Carruth1b03c872011-07-02 00:01:44 +00004215static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4216 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004217
John McCallc7ad3812011-01-25 03:31:58 +00004218 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004219
Chandler Carruth87c44602011-07-01 23:49:12 +00004220 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004221 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004222 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004223 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004224 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004225 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4226 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004227 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004228 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004229 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004230 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004231 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004232 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004233 return;
4234 }
Mike Stumpbf916502009-07-24 19:02:52 +00004235
John McCallc7ad3812011-01-25 03:31:58 +00004236 bool typeOK;
4237 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004238 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004239 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004240 case AttributeList::AT_NSReturnsAutoreleased:
4241 case AttributeList::AT_NSReturnsRetained:
4242 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004243 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4244 cf = false;
4245 break;
4246
Sean Hunt8e083e72012-06-19 23:57:03 +00004247 case AttributeList::AT_CFReturnsRetained:
4248 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004249 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4250 cf = true;
4251 break;
4252 }
4253
4254 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004255 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004256 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004257 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004258 }
Mike Stumpbf916502009-07-24 19:02:52 +00004259
Chandler Carruth87c44602011-07-01 23:49:12 +00004260 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004261 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004262 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004263 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004264 D->addAttr(::new (S.Context)
4265 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4266 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004267 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004268 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004269 D->addAttr(::new (S.Context)
4270 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4271 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004272 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004273 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004274 D->addAttr(::new (S.Context)
4275 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4276 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004277 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004278 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004279 D->addAttr(::new (S.Context)
4280 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4281 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004282 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004283 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004284 D->addAttr(::new (S.Context)
4285 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4286 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004287 return;
4288 };
4289}
4290
John McCalldc7c5ad2011-07-22 08:53:00 +00004291static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4292 const AttributeList &attr) {
4293 SourceLocation loc = attr.getLoc();
4294
4295 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4296
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004297 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004298 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004299 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004300 return;
4301 }
4302
4303 // Check that the method returns a normal pointer.
4304 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004305
4306 if (!resultType->isReferenceType() &&
4307 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004308 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4309 << SourceRange(loc)
4310 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4311
4312 // Drop the attribute.
4313 return;
4314 }
4315
Michael Han51d8c522013-01-24 16:46:58 +00004316 method->addAttr(::new (S.Context)
4317 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4318 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004319}
4320
Fariborz Jahanian84101132012-09-07 23:46:23 +00004321static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4322 const AttributeList &attr) {
4323 SourceLocation loc = attr.getLoc();
4324 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4325
4326 if (!method) {
4327 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4328 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4329 return;
4330 }
4331 DeclContext *DC = method->getDeclContext();
4332 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4333 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4334 << attr.getName() << 0;
4335 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4336 return;
4337 }
4338 if (method->getMethodFamily() == OMF_dealloc) {
4339 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4340 << attr.getName() << 1;
4341 return;
4342 }
4343
Michael Han51d8c522013-01-24 16:46:58 +00004344 method->addAttr(::new (S.Context)
4345 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4346 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004347}
4348
John McCall8dfac0b2011-09-30 05:12:12 +00004349/// Handle cf_audited_transfer and cf_unknown_transfer.
4350static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4351 if (!isa<FunctionDecl>(D)) {
4352 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004353 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004354 return;
4355 }
4356
Sean Hunt8e083e72012-06-19 23:57:03 +00004357 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004358
4359 // Check whether there's a conflicting attribute already present.
4360 Attr *Existing;
4361 if (IsAudited) {
4362 Existing = D->getAttr<CFUnknownTransferAttr>();
4363 } else {
4364 Existing = D->getAttr<CFAuditedTransferAttr>();
4365 }
4366 if (Existing) {
4367 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4368 << A.getName()
4369 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4370 << A.getRange() << Existing->getRange();
4371 return;
4372 }
4373
4374 // All clear; add the attribute.
4375 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004376 D->addAttr(::new (S.Context)
4377 CFAuditedTransferAttr(A.getRange(), S.Context,
4378 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004379 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004380 D->addAttr(::new (S.Context)
4381 CFUnknownTransferAttr(A.getRange(), S.Context,
4382 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004383 }
4384}
4385
John McCallfe98da02011-09-29 07:17:38 +00004386static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4387 const AttributeList &Attr) {
4388 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4389 if (!RD || RD->isUnion()) {
4390 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004391 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004392 }
4393
4394 IdentifierInfo *ParmName = Attr.getParameterName();
4395
4396 // In Objective-C, verify that the type names an Objective-C type.
4397 // We don't want to check this outside of ObjC because people sometimes
4398 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004399 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004400 // Check for an existing type with this name.
4401 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4402 Sema::LookupOrdinaryName);
4403 if (S.LookupName(R, Sc)) {
4404 NamedDecl *Target = R.getFoundDecl();
4405 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4406 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4407 S.Diag(Target->getLocStart(), diag::note_declared_at);
4408 }
4409 }
4410 }
4411
Michael Han51d8c522013-01-24 16:46:58 +00004412 D->addAttr(::new (S.Context)
4413 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4414 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004415}
4416
Chandler Carruth1b03c872011-07-02 00:01:44 +00004417static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4418 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004419 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004420
Chandler Carruth87c44602011-07-01 23:49:12 +00004421 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004422 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004423}
4424
Chandler Carruth1b03c872011-07-02 00:01:44 +00004425static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4426 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004427 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004428 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004429 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004430 return;
4431 }
4432
Chandler Carruth87c44602011-07-01 23:49:12 +00004433 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004434 QualType type = vd->getType();
4435
4436 if (!type->isDependentType() &&
4437 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004438 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004439 << type;
4440 return;
4441 }
4442
4443 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4444
4445 // If we have no lifetime yet, check the lifetime we're presumably
4446 // going to infer.
4447 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4448 lifetime = type->getObjCARCImplicitLifetime();
4449
4450 switch (lifetime) {
4451 case Qualifiers::OCL_None:
4452 assert(type->isDependentType() &&
4453 "didn't infer lifetime for non-dependent type?");
4454 break;
4455
4456 case Qualifiers::OCL_Weak: // meaningful
4457 case Qualifiers::OCL_Strong: // meaningful
4458 break;
4459
4460 case Qualifiers::OCL_ExplicitNone:
4461 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004462 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004463 << (lifetime == Qualifiers::OCL_Autoreleasing);
4464 break;
4465 }
4466
Chandler Carruth87c44602011-07-01 23:49:12 +00004467 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004468 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4469 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004470}
4471
Francois Pichet11542142010-12-19 06:50:37 +00004472//===----------------------------------------------------------------------===//
4473// Microsoft specific attribute handlers.
4474//===----------------------------------------------------------------------===//
4475
Chandler Carruth1b03c872011-07-02 00:01:44 +00004476static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004477 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00004478 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00004479 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00004480 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004481
Francois Pichet11542142010-12-19 06:50:37 +00004482 Expr *Arg = Attr.getArg(0);
4483 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004484 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004485 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
4486 << "uuid" << 1;
4487 return;
4488 }
4489
Chris Lattner5f9e2722011-07-23 10:55:15 +00004490 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004491
4492 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4493 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004494
Francois Pichetd3d3be92010-12-20 01:41:49 +00004495 // Validate GUID length.
4496 if (IsCurly && StrRef.size() != 38) {
4497 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4498 return;
4499 }
4500 if (!IsCurly && StrRef.size() != 36) {
4501 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4502 return;
4503 }
4504
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004505 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00004506 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00004507 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00004508 if (IsCurly) // Skip the optional '{'
4509 ++I;
4510
4511 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004512 if (i == 8 || i == 13 || i == 18 || i == 23) {
4513 if (*I != '-') {
4514 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4515 return;
4516 }
Jordan Rose3f6f51e2013-02-08 22:30:41 +00004517 } else if (!isHexDigit(*I)) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004518 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4519 return;
4520 }
4521 I++;
4522 }
Francois Pichet11542142010-12-19 06:50:37 +00004523
Michael Han51d8c522013-01-24 16:46:58 +00004524 D->addAttr(::new (S.Context)
4525 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4526 Attr.getAttributeSpellingListIndex()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00004527 } else
Francois Pichet11542142010-12-19 06:50:37 +00004528 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00004529}
4530
John McCallc052dbb2012-05-22 21:28:12 +00004531static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nico Weber7b89ab72012-11-07 21:31:36 +00004532 if (!S.LangOpts.MicrosoftExt) {
John McCallc052dbb2012-05-22 21:28:12 +00004533 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Nico Weber7b89ab72012-11-07 21:31:36 +00004534 return;
4535 }
4536
4537 AttributeList::Kind Kind = Attr.getKind();
4538 if (Kind == AttributeList::AT_SingleInheritance)
4539 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004540 ::new (S.Context)
4541 SingleInheritanceAttr(Attr.getRange(), S.Context,
4542 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004543 else if (Kind == AttributeList::AT_MultipleInheritance)
4544 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004545 ::new (S.Context)
4546 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4547 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004548 else if (Kind == AttributeList::AT_VirtualInheritance)
4549 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004550 ::new (S.Context)
4551 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4552 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004553}
4554
4555static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4556 if (S.LangOpts.MicrosoftExt) {
4557 AttributeList::Kind Kind = Attr.getKind();
Sean Hunt8e083e72012-06-19 23:57:03 +00004558 if (Kind == AttributeList::AT_Ptr32)
John McCallc052dbb2012-05-22 21:28:12 +00004559 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004560 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context,
4561 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004562 else if (Kind == AttributeList::AT_Ptr64)
John McCallc052dbb2012-05-22 21:28:12 +00004563 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004564 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context,
4565 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004566 else if (Kind == AttributeList::AT_Win64)
John McCallc052dbb2012-05-22 21:28:12 +00004567 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004568 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4569 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004570 } else
4571 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4572}
4573
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004574static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4575 if (S.LangOpts.MicrosoftExt)
Michael Han51d8c522013-01-24 16:46:58 +00004576 D->addAttr(::new (S.Context)
4577 ForceInlineAttr(Attr.getRange(), S.Context,
4578 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004579 else
4580 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4581}
4582
Ted Kremenekb71368d2009-05-09 02:44:38 +00004583//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004584// Top Level Sema Entry Points
4585//===----------------------------------------------------------------------===//
4586
Chandler Carruth1b03c872011-07-02 00:01:44 +00004587static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4588 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004589 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004590 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4591 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4592 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004593 default:
4594 break;
4595 }
4596}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004597
Chandler Carruth1b03c872011-07-02 00:01:44 +00004598static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4599 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004600 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004601 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4602 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4603 case AttributeList::AT_IBOutletCollection:
4604 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004605 case AttributeList::AT_AddressSpace:
4606 case AttributeList::AT_OpenCLImageAccess:
4607 case AttributeList::AT_ObjCGC:
4608 case AttributeList::AT_VectorSize:
4609 case AttributeList::AT_NeonVectorType:
4610 case AttributeList::AT_NeonPolyVectorType:
Mike Stumpbf916502009-07-24 19:02:52 +00004611 // Ignore these, these are type attributes, handled by
4612 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004613 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004614 case AttributeList::AT_CUDADevice:
4615 case AttributeList::AT_CUDAHost:
4616 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004617 // Ignore, this is a non-inheritable attribute, handled
4618 // by ProcessNonInheritableDeclAttr.
4619 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004620 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4621 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4622 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4623 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004624 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004625 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004626 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004627 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004628 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4629 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4630 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004631 handleDependencyAttr(S, scope, D, Attr);
4632 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004633 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4634 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4635 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004636 case AttributeList::AT_CXX11NoReturn:
4637 handleCXX11NoReturnAttr(S, D, Attr);
4638 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004639 case AttributeList::AT_Deprecated:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004640 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
4641 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004642 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4643 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004644 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004645 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004646 case AttributeList::AT_MinSize:
4647 handleMinSizeAttr(S, D, Attr);
4648 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004649 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4650 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4651 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4652 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4653 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004654 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004655 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004656 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4657 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4658 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4659 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4660 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004661 case AttributeList::AT_ownership_returns:
4662 case AttributeList::AT_ownership_takes:
4663 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004664 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004665 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4666 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4667 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4668 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4669 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4670 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4671 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004672
Sean Hunt8e083e72012-06-19 23:57:03 +00004673 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004674 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004675 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004676 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004677
Sean Hunt8e083e72012-06-19 23:57:03 +00004678 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004679 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4680
Fariborz Jahanian84101132012-09-07 23:46:23 +00004681 case AttributeList::AT_ObjCRequiresSuper:
4682 handleObjCRequiresSuperAttr(S, D, Attr); break;
4683
Sean Hunt8e083e72012-06-19 23:57:03 +00004684 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004685 handleNSBridgedAttr(S, scope, D, Attr); break;
4686
Sean Hunt8e083e72012-06-19 23:57:03 +00004687 case AttributeList::AT_CFAuditedTransfer:
4688 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004689 handleCFTransferAttr(S, D, Attr); break;
4690
Ted Kremenekb71368d2009-05-09 02:44:38 +00004691 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004692 case AttributeList::AT_CFConsumed:
4693 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4694 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004695 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004696
Sean Hunt8e083e72012-06-19 23:57:03 +00004697 case AttributeList::AT_NSReturnsAutoreleased:
4698 case AttributeList::AT_NSReturnsNotRetained:
4699 case AttributeList::AT_CFReturnsNotRetained:
4700 case AttributeList::AT_NSReturnsRetained:
4701 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004702 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004703
Tanya Lattner0df579e2012-07-09 22:06:01 +00004704 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004705 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004706 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004707
Sean Hunt8e083e72012-06-19 23:57:03 +00004708 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004709 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004710
Sean Hunt8e083e72012-06-19 23:57:03 +00004711 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4712 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4713 case AttributeList::AT_Unavailable:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004714 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4715 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004716 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004717 handleArcWeakrefUnavailableAttr (S, D, Attr);
4718 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004719 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004720 handleObjCRootClassAttr(S, D, Attr);
4721 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004722 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004723 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004724 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004725 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4726 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004727 handleReturnsTwiceAttr(S, D, Attr);
4728 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004729 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004730 case AttributeList::AT_Visibility:
4731 handleVisibilityAttr(S, D, Attr, false);
4732 break;
4733 case AttributeList::AT_TypeVisibility:
4734 handleVisibilityAttr(S, D, Attr, true);
4735 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004736 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004737 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004738 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4739 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4740 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4741 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004742 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004743 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004744 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004745 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004746 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004747 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004748 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004749 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004750 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4751 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4752 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4753 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4754 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4755 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4756 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4757 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4758 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004759 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004760 // Just ignore
4761 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004762 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004763 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004764 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004765 case AttributeList::AT_StdCall:
4766 case AttributeList::AT_CDecl:
4767 case AttributeList::AT_FastCall:
4768 case AttributeList::AT_ThisCall:
4769 case AttributeList::AT_Pascal:
4770 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004771 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004772 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004773 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004774 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004775 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004776 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004777 break;
John McCallc052dbb2012-05-22 21:28:12 +00004778
4779 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004780 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004781 handleMsStructAttr(S, D, Attr);
4782 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004783 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004784 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004785 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004786 case AttributeList::AT_SingleInheritance:
4787 case AttributeList::AT_MultipleInheritance:
4788 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004789 handleInheritanceAttr(S, D, Attr);
4790 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004791 case AttributeList::AT_Win64:
4792 case AttributeList::AT_Ptr32:
4793 case AttributeList::AT_Ptr64:
John McCallc052dbb2012-05-22 21:28:12 +00004794 handlePortabilityAttr(S, D, Attr);
4795 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004796 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004797 handleForceInlineAttr(S, D, Attr);
4798 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004799
4800 // Thread safety attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004801 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004802 handleGuardedVarAttr(S, D, Attr);
4803 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004804 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004805 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004806 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004807 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004808 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004809 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004810 case AttributeList::AT_NoAddressSafetyAnalysis:
Kostya Serebryany71efba02012-01-24 19:25:38 +00004811 handleNoAddressSafetyAttr(S, D, Attr);
4812 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004813 case AttributeList::AT_NoThreadSafetyAnalysis:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004814 handleNoThreadSafetyAttr(S, D, Attr);
4815 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004816 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004817 handleLockableAttr(S, D, Attr);
4818 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004819 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004820 handleGuardedByAttr(S, D, Attr);
4821 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004822 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004823 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004824 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004825 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004826 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004827 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004828 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004829 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004830 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004831 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004832 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004833 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004834 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004835 handleLockReturnedAttr(S, D, Attr);
4836 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004837 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004838 handleLocksExcludedAttr(S, D, Attr);
4839 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004840 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004841 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004842 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004843 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004844 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004845 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004846 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004847 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004848 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004849 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004850 handleUnlockFunAttr(S, D, Attr);
4851 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004852 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004853 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004854 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004855 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004856 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004857 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004858
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004859 // Type safety attributes.
4860 case AttributeList::AT_ArgumentWithTypeTag:
4861 handleArgumentWithTypeTagAttr(S, D, Attr);
4862 break;
4863 case AttributeList::AT_TypeTagForDatatype:
4864 handleTypeTagForDatatypeAttr(S, D, Attr);
4865 break;
4866
Chris Lattner803d0802008-06-29 00:43:07 +00004867 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004868 // Ask target about the attribute.
4869 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4870 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004871 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4872 diag::warn_unhandled_ms_attribute_ignored :
4873 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004874 break;
4875 }
4876}
4877
Peter Collingbourne60700392011-01-21 02:08:45 +00004878/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4879/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004880/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004881static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4882 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00004883 bool NonInheritable, bool Inheritable,
4884 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004885 if (Attr.isInvalid())
4886 return;
4887
Richard Smithcd8ab512013-01-17 01:30:42 +00004888 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4889 // instead.
4890 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4891 return;
4892
Peter Collingbourne60700392011-01-21 02:08:45 +00004893 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004894 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004895
4896 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004897 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004898}
4899
Chris Lattner803d0802008-06-29 00:43:07 +00004900/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4901/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004902void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004903 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004904 bool NonInheritable, bool Inheritable,
4905 bool IncludeCXX11Attributes) {
4906 for (const AttributeList* l = AttrList; l; l = l->getNext())
4907 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
4908 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004909
4910 // GCC accepts
4911 // static int a9 __attribute__((weakref));
4912 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004913 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004914 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004915 cast<NamedDecl>(D)->getNameAsString();
4916 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004917 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004918 }
4919}
4920
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004921// Annotation attributes are the only attributes allowed after an access
4922// specifier.
4923bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4924 const AttributeList *AttrList) {
4925 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004926 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004927 handleAnnotateAttr(*this, ASDecl, *l);
4928 } else {
4929 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4930 return true;
4931 }
4932 }
4933
4934 return false;
4935}
4936
John McCalle82247a2011-10-01 05:17:03 +00004937/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4938/// contains any decl attributes that we should warn about.
4939static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4940 for ( ; A; A = A->getNext()) {
4941 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004942 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004943 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4944
4945 if (A->getKind() == AttributeList::UnknownAttribute) {
4946 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4947 << A->getName() << A->getRange();
4948 } else {
4949 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4950 << A->getName() << A->getRange();
4951 }
4952 }
4953}
4954
4955/// checkUnusedDeclAttributes - Given a declarator which is not being
4956/// used to build a declaration, complain about any decl attributes
4957/// which might be lying around on it.
4958void Sema::checkUnusedDeclAttributes(Declarator &D) {
4959 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4960 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4961 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4962 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4963}
4964
Ryan Flynne25ff832009-07-30 03:15:39 +00004965/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004966/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004967NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4968 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004969 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004970 NamedDecl *NewD = 0;
4971 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004972 FunctionDecl *NewFD;
4973 // FIXME: Missing call to CheckFunctionDeclaration().
4974 // FIXME: Mangling?
4975 // FIXME: Is the qualifier info correct?
4976 // FIXME: Is the DeclContext correct?
4977 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4978 Loc, Loc, DeclarationName(II),
4979 FD->getType(), FD->getTypeSourceInfo(),
4980 SC_None, SC_None,
4981 false/*isInlineSpecified*/,
4982 FD->hasPrototype(),
4983 false/*isConstexprSpecified*/);
4984 NewD = NewFD;
4985
4986 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004987 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004988
4989 // Fake up parameter variables; they are declared as if this were
4990 // a typedef.
4991 QualType FDTy = FD->getType();
4992 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4993 SmallVector<ParmVarDecl*, 16> Params;
4994 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4995 AE = FT->arg_type_end(); AI != AE; ++AI) {
4996 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4997 Param->setScopeInfo(0, Params.size());
4998 Params.push_back(Param);
4999 }
David Blaikie4278c652011-09-21 18:16:56 +00005000 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005001 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005002 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5003 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005004 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005005 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00005006 VD->getStorageClass(),
5007 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00005008 if (VD->getQualifier()) {
5009 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005010 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005011 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005012 }
5013 return NewD;
5014}
5015
James Dennett1dfbd922012-06-14 21:40:34 +00005016/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005017/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005018void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005019 if (W.getUsed()) return; // only do this once
5020 W.setUsed(true);
5021 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5022 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005023 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005024 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5025 NDId->getName()));
5026 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005027 WeakTopLevelDecl.push_back(NewD);
5028 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5029 // to insert Decl at TU scope, sorry.
5030 DeclContext *SavedContext = CurContext;
5031 CurContext = Context.getTranslationUnitDecl();
5032 PushOnScopeChains(NewD, S);
5033 CurContext = SavedContext;
5034 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005035 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005036 }
5037}
5038
Chris Lattner0744e5f2008-06-29 00:23:49 +00005039/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5040/// it, apply them to D. This is a bit tricky because PD can have attributes
5041/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005042void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5043 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00005044 // It's valid to "forward-declare" #pragma weak, in which case we
5045 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00005046 if (Inheritable) {
5047 LoadExternalWeakUndeclaredIdentifiers();
5048 if (!WeakUndeclaredIdentifiers.empty()) {
5049 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
5050 if (IdentifierInfo *Id = ND->getIdentifier()) {
5051 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5052 = WeakUndeclaredIdentifiers.find(Id);
5053 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
5054 WeakInfo W = I->second;
5055 DeclApplyPragmaWeak(S, ND, W);
5056 WeakUndeclaredIdentifiers[Id] = W;
5057 }
John McCalld4aff0e2010-10-27 00:59:00 +00005058 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005059 }
5060 }
5061 }
5062
Chris Lattner0744e5f2008-06-29 00:23:49 +00005063 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005064 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005065 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005066
Chris Lattner0744e5f2008-06-29 00:23:49 +00005067 // Walk the declarator structure, applying decl attributes that were in a type
5068 // position to the decl itself. This handles cases like:
5069 // int *__attr__(x)** D;
5070 // when X is a decl attribute.
5071 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5072 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005073 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5074 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005075
Chris Lattner0744e5f2008-06-29 00:23:49 +00005076 // Finally, apply any attributes on the decl itself.
5077 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005078 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005079}
John McCall54abf7d2009-11-04 02:18:39 +00005080
John McCallf85e1932011-06-15 23:02:42 +00005081/// Is the given declaration allowed to use a forbidden type?
5082static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5083 // Private ivars are always okay. Unfortunately, people don't
5084 // always properly make their ivars private, even in system headers.
5085 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005086 // Function declarations in sys headers will be marked unavailable.
5087 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5088 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005089 return false;
5090
5091 // Require it to be declared in a system header.
5092 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5093}
5094
5095/// Handle a delayed forbidden-type diagnostic.
5096static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5097 Decl *decl) {
5098 if (decl && isForbiddenTypeAllowed(S, decl)) {
5099 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5100 "this system declaration uses an unsupported type"));
5101 return;
5102 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005103 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005104 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005105 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005106 // kind of forbidden type messages on unavailable functions.
5107 if (FD->hasAttr<UnavailableAttr>() &&
5108 diag.getForbiddenTypeDiagnostic() ==
5109 diag::err_arc_array_param_no_ownership) {
5110 diag.Triggered = true;
5111 return;
5112 }
5113 }
John McCallf85e1932011-06-15 23:02:42 +00005114
5115 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5116 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5117 diag.Triggered = true;
5118}
5119
John McCall92576642012-05-07 06:16:41 +00005120void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5121 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005122 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005123 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005124
John McCall92576642012-05-07 06:16:41 +00005125 // When delaying diagnostics to run in the context of a parsed
5126 // declaration, we only want to actually emit anything if parsing
5127 // succeeds.
5128 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005129
John McCall92576642012-05-07 06:16:41 +00005130 // We emit all the active diagnostics in this pool or any of its
5131 // parents. In general, we'll get one pool for the decl spec
5132 // and a child pool for each declarator; in a decl group like:
5133 // deprecated_typedef foo, *bar, baz();
5134 // only the declarator pops will be passed decls. This is correct;
5135 // we really do need to consider delayed diagnostics from the decl spec
5136 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005137 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005138 do {
John McCall13489672012-05-07 06:16:58 +00005139 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005140 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5141 // This const_cast is a bit lame. Really, Triggered should be mutable.
5142 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005143 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005144 continue;
5145
John McCalleee1d542011-02-14 07:13:47 +00005146 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005147 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005148 // Don't bother giving deprecation diagnostics if the decl is invalid.
5149 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005150 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005151 break;
5152
5153 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005154 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005155 break;
John McCallf85e1932011-06-15 23:02:42 +00005156
5157 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005158 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005159 break;
John McCall2f514482010-01-27 03:50:35 +00005160 }
5161 }
John McCall92576642012-05-07 06:16:41 +00005162 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005163}
5164
John McCall13489672012-05-07 06:16:58 +00005165/// Given a set of delayed diagnostics, re-emit them as if they had
5166/// been delayed in the current context instead of in the given pool.
5167/// Essentially, this just moves them to the current pool.
5168void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5169 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5170 assert(curPool && "re-emitting in undelayed context not supported");
5171 curPool->steal(pool);
5172}
5173
John McCall54abf7d2009-11-04 02:18:39 +00005174static bool isDeclDeprecated(Decl *D) {
5175 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005176 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005177 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005178 // A category implicitly has the availability of the interface.
5179 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5180 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005181 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5182 return false;
5183}
5184
Eli Friedmanc3b23082012-08-08 21:52:41 +00005185static void
5186DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5187 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005188 const ObjCInterfaceDecl *UnknownObjCClass,
5189 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005190 DeclarationName Name = D->getDeclName();
5191 if (!Message.empty()) {
5192 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5193 S.Diag(D->getLocation(),
5194 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5195 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005196 if (ObjCPropery)
5197 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5198 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005199 } else if (!UnknownObjCClass) {
5200 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5201 S.Diag(D->getLocation(),
5202 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5203 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005204 if (ObjCPropery)
5205 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5206 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005207 } else {
5208 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5209 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5210 }
5211}
5212
John McCall9c3087b2010-08-26 02:13:20 +00005213void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005214 Decl *Ctx) {
5215 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005216 return;
5217
John McCall2f514482010-01-27 03:50:35 +00005218 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005219 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5220 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005221 DD.getUnknownObjCClass(),
5222 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005223}
5224
Chris Lattner5f9e2722011-07-23 10:55:15 +00005225void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005226 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005227 const ObjCInterfaceDecl *UnknownObjCClass,
5228 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005229 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005230 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005231 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5232 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005233 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005234 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005235 return;
5236 }
5237
5238 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005239 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005240 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005241 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005242}