blob: 8e2bac6ed0f69b6844bdddbe62c0ce382f7ed90e [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);
Argyrios Kyrtzidis28965bf2013-02-22 06:58:28 +00001100 unsigned NumArgs;
1101 if (hasFunctionProto(D))
1102 NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
1103 else
1104 NumArgs = 0;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001105
1106 SmallVector<unsigned, 8> SizeArgs;
1107
1108 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1109 E = Attr.arg_end(); I!=E; ++I) {
1110 // The argument must be an integer constant expression.
1111 Expr *Ex = *I;
1112 llvm::APSInt ArgNum;
1113 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1114 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
1115 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1116 << "alloc_size" << Ex->getSourceRange();
1117 return;
1118 }
1119
1120 uint64_t x = ArgNum.getZExtValue();
1121
1122 if (x < 1 || x > NumArgs) {
1123 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1124 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
1125 return;
1126 }
1127
1128 --x;
1129 if (HasImplicitThisParam) {
1130 if (x == 0) {
1131 S.Diag(Attr.getLoc(),
1132 diag::err_attribute_invalid_implicit_this_argument)
1133 << "alloc_size" << Ex->getSourceRange();
1134 return;
1135 }
1136 --x;
1137 }
1138
1139 // check if the function argument is of an integer type
1140 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
1141 if (!T->isIntegerType()) {
1142 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1143 << "alloc_size" << Ex->getSourceRange();
1144 return;
1145 }
1146
Nuno Lopes587de5b2012-05-24 00:22:00 +00001147 SizeArgs.push_back(x);
1148 }
1149
1150 // check if the function returns a pointer
1151 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1152 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1153 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
1154 }
1155
Michael Han51d8c522013-01-24 16:46:58 +00001156 D->addAttr(::new (S.Context)
1157 AllocSizeAttr(Attr.getRange(), S.Context,
1158 SizeArgs.data(), SizeArgs.size(),
1159 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001160}
1161
Chandler Carruth1b03c872011-07-02 00:01:44 +00001162static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001163 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1164 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001165 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001166 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001167 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001168 return;
1169 }
Mike Stumpbf916502009-07-24 19:02:52 +00001170
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001171 // In C++ the implicit 'this' function parameter also counts, and they are
1172 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001173 bool HasImplicitThisParam = isInstanceMethod(D);
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001174 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001175
1176 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001177 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001178
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001179 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1180 E = Attr.arg_end(); I != E; ++I) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001181 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001182 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001183 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001184 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1185 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001186 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1187 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001188 return;
1189 }
Mike Stumpbf916502009-07-24 19:02:52 +00001190
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001191 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001192
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001193 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001194 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001195 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001196 return;
1197 }
Mike Stumpbf916502009-07-24 19:02:52 +00001198
Ted Kremenek465172f2008-07-21 22:09:15 +00001199 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001200 if (HasImplicitThisParam) {
1201 if (x == 0) {
1202 S.Diag(Attr.getLoc(),
1203 diag::err_attribute_invalid_implicit_this_argument)
1204 << "nonnull" << Ex->getSourceRange();
1205 return;
1206 }
1207 --x;
1208 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001209
1210 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001211 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001212 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001213
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001214 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001215 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001216 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001217 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001218 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001219 }
Mike Stumpbf916502009-07-24 19:02:52 +00001220
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001221 NonNullArgs.push_back(x);
1222 }
Mike Stumpbf916502009-07-24 19:02:52 +00001223
1224 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1225 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001226 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001227 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1228 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001229 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001230 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001231 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001232 }
Mike Stumpbf916502009-07-24 19:02:52 +00001233
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001234 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001235 if (NonNullArgs.empty()) {
1236 // Warn the trivial case only if attribute is not coming from a
1237 // macro instantiation.
1238 if (Attr.getLoc().isFileID())
1239 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001240 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001241 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001242 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001243
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001244 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001245 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001246 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001247 D->addAttr(::new (S.Context)
1248 NonNullAttr(Attr.getRange(), S.Context, start, size,
1249 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001250}
1251
Chandler Carruth1b03c872011-07-02 00:01:44 +00001252static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001253 // This attribute must be applied to a function declaration.
1254 // The first argument to the attribute must be a string,
1255 // the name of the resource, for example "malloc".
1256 // The following arguments must be argument indexes, the arguments must be
1257 // of integer type for Returns, otherwise of pointer type.
1258 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001259 // after being held. free() should be __attribute((ownership_takes)), whereas
1260 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001261
1262 if (!AL.getParameterName()) {
1263 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1264 << AL.getName()->getName() << 1;
1265 return;
1266 }
1267 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001268 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001269 switch (AL.getKind()) {
1270 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001271 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001272 if (AL.getNumArgs() < 1) {
1273 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1274 return;
1275 }
Jordy Rose2a479922010-08-12 08:54:03 +00001276 break;
1277 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001278 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001279 if (AL.getNumArgs() < 1) {
1280 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1281 return;
1282 }
Jordy Rose2a479922010-08-12 08:54:03 +00001283 break;
1284 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001285 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001286 if (AL.getNumArgs() > 1) {
1287 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1288 << AL.getNumArgs() + 1;
1289 return;
1290 }
Jordy Rose2a479922010-08-12 08:54:03 +00001291 break;
1292 default:
1293 // This should never happen given how we are called.
1294 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001295 }
1296
Chandler Carruth87c44602011-07-01 23:49:12 +00001297 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001298 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1299 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001300 return;
1301 }
1302
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001303 // In C++ the implicit 'this' function parameter also counts, and they are
1304 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001305 bool HasImplicitThisParam = isInstanceMethod(D);
1306 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001307
Chris Lattner5f9e2722011-07-23 10:55:15 +00001308 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001309
1310 // Normalize the argument, __foo__ becomes foo.
1311 if (Module.startswith("__") && Module.endswith("__"))
1312 Module = Module.substr(2, Module.size() - 4);
1313
Chris Lattner5f9e2722011-07-23 10:55:15 +00001314 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001315
Jordy Rose2a479922010-08-12 08:54:03 +00001316 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1317 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001318
Peter Collingbourne7a730022010-11-23 20:45:58 +00001319 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001320 llvm::APSInt ArgNum(32);
1321 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1322 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1323 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1324 << AL.getName()->getName() << IdxExpr->getSourceRange();
1325 continue;
1326 }
1327
1328 unsigned x = (unsigned) ArgNum.getZExtValue();
1329
1330 if (x > NumArgs || x < 1) {
1331 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1332 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1333 continue;
1334 }
1335 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001336 if (HasImplicitThisParam) {
1337 if (x == 0) {
1338 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1339 << "ownership" << IdxExpr->getSourceRange();
1340 return;
1341 }
1342 --x;
1343 }
1344
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001345 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001346 case OwnershipAttr::Takes:
1347 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001348 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001349 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001350 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1351 // FIXME: Should also highlight argument in decl.
1352 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001353 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001354 << "pointer"
1355 << IdxExpr->getSourceRange();
1356 continue;
1357 }
1358 break;
1359 }
Sean Huntcf807c42010-08-18 23:23:40 +00001360 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001361 if (AL.getNumArgs() > 1) {
1362 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001363 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001364 llvm::APSInt ArgNum(32);
1365 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1366 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1367 S.Diag(AL.getLoc(), diag::err_ownership_type)
1368 << "ownership_returns" << "integer"
1369 << IdxExpr->getSourceRange();
1370 return;
1371 }
1372 }
1373 break;
1374 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001375 } // switch
1376
1377 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001378 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001379 i = D->specific_attr_begin<OwnershipAttr>(),
1380 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001381 i != e; ++i) {
1382 if ((*i)->getOwnKind() != K) {
1383 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1384 I!=E; ++I) {
1385 if (x == *I) {
1386 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1387 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001388 }
1389 }
1390 }
1391 }
1392 OwnershipArgs.push_back(x);
1393 }
1394
1395 unsigned* start = OwnershipArgs.data();
1396 unsigned size = OwnershipArgs.size();
1397 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001398
1399 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1400 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1401 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001402 }
Sean Huntcf807c42010-08-18 23:23:40 +00001403
Michael Han51d8c522013-01-24 16:46:58 +00001404 D->addAttr(::new (S.Context)
1405 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1406 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001407}
1408
Chandler Carruth1b03c872011-07-02 00:01:44 +00001409static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001410 // Check the attribute arguments.
1411 if (Attr.getNumArgs() > 1) {
1412 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1413 return;
1414 }
1415
Chandler Carruth87c44602011-07-01 23:49:12 +00001416 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001417 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001418 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001419 return;
1420 }
1421
Chandler Carruth87c44602011-07-01 23:49:12 +00001422 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001423
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001424 // gcc rejects
1425 // class c {
1426 // static int a __attribute__((weakref ("v2")));
1427 // static int b() __attribute__((weakref ("f3")));
1428 // };
1429 // and ignores the attributes of
1430 // void f(void) {
1431 // static int a __attribute__((weakref ("v2")));
1432 // }
1433 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001434 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001435 if (!Ctx->isFileContext()) {
1436 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001437 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001438 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001439 }
1440
1441 // The GCC manual says
1442 //
1443 // At present, a declaration to which `weakref' is attached can only
1444 // be `static'.
1445 //
1446 // It also says
1447 //
1448 // Without a TARGET,
1449 // given as an argument to `weakref' or to `alias', `weakref' is
1450 // equivalent to `weak'.
1451 //
1452 // gcc 4.4.1 will accept
1453 // int a7 __attribute__((weakref));
1454 // as
1455 // int a7 __attribute__((weak));
1456 // This looks like a bug in gcc. We reject that for now. We should revisit
1457 // it if this behaviour is actually used.
1458
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001459 // GCC rejects
1460 // static ((alias ("y"), weakref)).
1461 // Should we? How to check that weakref is before or after alias?
1462
1463 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001464 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001465 Arg = Arg->IgnoreParenCasts();
1466 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1467
Douglas Gregor5cee1192011-07-27 05:40:30 +00001468 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001469 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1470 << "weakref" << 1;
1471 return;
1472 }
1473 // GCC will accept anything as the argument of weakref. Should we
1474 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001475 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001476 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001477 }
1478
Michael Han51d8c522013-01-24 16:46:58 +00001479 D->addAttr(::new (S.Context)
1480 WeakRefAttr(Attr.getRange(), S.Context,
1481 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001482}
1483
Chandler Carruth1b03c872011-07-02 00:01:44 +00001484static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001485 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001486 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001487 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001488 return;
1489 }
Mike Stumpbf916502009-07-24 19:02:52 +00001490
Peter Collingbourne7a730022010-11-23 20:45:58 +00001491 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001492 Arg = Arg->IgnoreParenCasts();
1493 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001494
Douglas Gregor5cee1192011-07-27 05:40:30 +00001495 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001496 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001497 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001498 return;
1499 }
Mike Stumpbf916502009-07-24 19:02:52 +00001500
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001501 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001502 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1503 return;
1504 }
1505
Chris Lattner6b6b5372008-06-26 18:38:35 +00001506 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001507
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001508 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001509 Str->getString(),
1510 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001511}
1512
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001513static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1514 // Check the attribute arguments.
1515 if (!checkAttributeNumArgs(S, Attr, 0))
1516 return;
1517
1518 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1519 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1520 << Attr.getName() << ExpectedFunctionOrMethod;
1521 return;
1522 }
1523
Michael Han51d8c522013-01-24 16:46:58 +00001524 D->addAttr(::new (S.Context)
1525 MinSizeAttr(Attr.getRange(), S.Context,
1526 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001527}
1528
Benjamin Krameree409a92012-05-12 21:10:52 +00001529static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1530 // Check the attribute arguments.
1531 if (!checkAttributeNumArgs(S, Attr, 0))
1532 return;
1533
1534 if (!isa<FunctionDecl>(D)) {
1535 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1536 << Attr.getName() << ExpectedFunction;
1537 return;
1538 }
1539
1540 if (D->hasAttr<HotAttr>()) {
1541 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1542 << Attr.getName() << "hot";
1543 return;
1544 }
1545
Michael Han51d8c522013-01-24 16:46:58 +00001546 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1547 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001548}
1549
1550static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1551 // Check the attribute arguments.
1552 if (!checkAttributeNumArgs(S, Attr, 0))
1553 return;
1554
1555 if (!isa<FunctionDecl>(D)) {
1556 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1557 << Attr.getName() << ExpectedFunction;
1558 return;
1559 }
1560
1561 if (D->hasAttr<ColdAttr>()) {
1562 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1563 << Attr.getName() << "cold";
1564 return;
1565 }
1566
Michael Han51d8c522013-01-24 16:46:58 +00001567 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1568 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001569}
1570
Chandler Carruth1b03c872011-07-02 00:01:44 +00001571static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001572 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001573 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001574 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001575
Chandler Carruth87c44602011-07-01 23:49:12 +00001576 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001577 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001578 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001579 return;
1580 }
1581
Michael Han51d8c522013-01-24 16:46:58 +00001582 D->addAttr(::new (S.Context)
1583 NakedAttr(Attr.getRange(), S.Context,
1584 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001585}
1586
Chandler Carruth1b03c872011-07-02 00:01:44 +00001587static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1588 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001589 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001590 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001591 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1592 return;
1593 }
1594
Chandler Carruth87c44602011-07-01 23:49:12 +00001595 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001596 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001597 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001598 return;
1599 }
Mike Stumpbf916502009-07-24 19:02:52 +00001600
Michael Han51d8c522013-01-24 16:46:58 +00001601 D->addAttr(::new (S.Context)
1602 AlwaysInlineAttr(Attr.getRange(), S.Context,
1603 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001604}
1605
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001606static void handleTLSModelAttr(Sema &S, Decl *D,
1607 const AttributeList &Attr) {
1608 // Check the attribute arguments.
1609 if (Attr.getNumArgs() != 1) {
1610 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1611 return;
1612 }
1613
1614 Expr *Arg = Attr.getArg(0);
1615 Arg = Arg->IgnoreParenCasts();
1616 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1617
1618 // Check that it is a string.
1619 if (!Str) {
1620 S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model";
1621 return;
1622 }
1623
1624 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->isThreadSpecified()) {
1625 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1626 << Attr.getName() << ExpectedTLSVar;
1627 return;
1628 }
1629
1630 // Check that the value.
1631 StringRef Model = Str->getString();
1632 if (Model != "global-dynamic" && Model != "local-dynamic"
1633 && Model != "initial-exec" && Model != "local-exec") {
1634 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1635 return;
1636 }
1637
Michael Han51d8c522013-01-24 16:46:58 +00001638 D->addAttr(::new (S.Context)
1639 TLSModelAttr(Attr.getRange(), S.Context, Model,
1640 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001641}
1642
Chandler Carruth1b03c872011-07-02 00:01:44 +00001643static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001644 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001645 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001646 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1647 return;
1648 }
Mike Stump1eb44332009-09-09 15:08:12 +00001649
Chandler Carruth87c44602011-07-01 23:49:12 +00001650 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001651 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001652 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001653 D->addAttr(::new (S.Context)
1654 MallocAttr(Attr.getRange(), S.Context,
1655 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001656 return;
1657 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001658 }
1659
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001660 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001661}
1662
Chandler Carruth1b03c872011-07-02 00:01:44 +00001663static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001664 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001665 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001666 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001667
Michael Han51d8c522013-01-24 16:46:58 +00001668 D->addAttr(::new (S.Context)
1669 MayAliasAttr(Attr.getRange(), S.Context,
1670 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001671}
1672
Chandler Carruth1b03c872011-07-02 00:01:44 +00001673static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001674 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001675 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001676 D->addAttr(::new (S.Context)
1677 NoCommonAttr(Attr.getRange(), S.Context,
1678 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001679 else
1680 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001681 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001682}
1683
Chandler Carruth1b03c872011-07-02 00:01:44 +00001684static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001685 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001686 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001687 D->addAttr(::new (S.Context)
1688 CommonAttr(Attr.getRange(), S.Context,
1689 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001690 else
1691 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001692 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001693}
1694
Chandler Carruth1b03c872011-07-02 00:01:44 +00001695static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001696 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001697
1698 if (S.CheckNoReturnAttr(attr)) return;
1699
Chandler Carruth87c44602011-07-01 23:49:12 +00001700 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001701 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001702 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001703 return;
1704 }
1705
Michael Han51d8c522013-01-24 16:46:58 +00001706 D->addAttr(::new (S.Context)
1707 NoReturnAttr(attr.getRange(), S.Context,
1708 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001709}
1710
1711bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001712 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001713 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1714 attr.setInvalid();
1715 return true;
1716 }
1717
1718 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001719}
1720
Chandler Carruth1b03c872011-07-02 00:01:44 +00001721static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1722 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001723
1724 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1725 // because 'analyzer_noreturn' does not impact the type.
1726
Chandler Carruth1731e202011-07-11 23:30:35 +00001727 if(!checkAttributeNumArgs(S, Attr, 0))
1728 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001729
Chandler Carruth87c44602011-07-01 23:49:12 +00001730 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1731 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001732 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1733 && !VD->getType()->isFunctionPointerType())) {
1734 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001735 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001736 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001737 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001738 return;
1739 }
1740 }
1741
Michael Han51d8c522013-01-24 16:46:58 +00001742 D->addAttr(::new (S.Context)
1743 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1744 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001745}
1746
Richard Smithcd8ab512013-01-17 01:30:42 +00001747static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1748 const AttributeList &Attr) {
1749 // C++11 [dcl.attr.noreturn]p1:
1750 // The attribute may be applied to the declarator-id in a function
1751 // declaration.
1752 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1753 if (!FD) {
1754 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1755 << Attr.getName() << ExpectedFunctionOrMethod;
1756 return;
1757 }
1758
Michael Han51d8c522013-01-24 16:46:58 +00001759 D->addAttr(::new (S.Context)
1760 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1761 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001762}
1763
John Thompson35cc9622010-08-09 21:53:52 +00001764// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001765static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001766/*
1767 Returning a Vector Class in Registers
1768
Eric Christopherf48f3672010-12-01 22:13:54 +00001769 According to the PPU ABI specifications, a class with a single member of
1770 vector type is returned in memory when used as the return value of a function.
1771 This results in inefficient code when implementing vector classes. To return
1772 the value in a single vector register, add the vecreturn attribute to the
1773 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001774
1775 Example:
1776
1777 struct Vector
1778 {
1779 __vector float xyzw;
1780 } __attribute__((vecreturn));
1781
1782 Vector Add(Vector lhs, Vector rhs)
1783 {
1784 Vector result;
1785 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1786 return result; // This will be returned in a register
1787 }
1788*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001789 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001790 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001791 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001792 return;
1793 }
1794
Chandler Carruth87c44602011-07-01 23:49:12 +00001795 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001796 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1797 return;
1798 }
1799
Chandler Carruth87c44602011-07-01 23:49:12 +00001800 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001801 int count = 0;
1802
1803 if (!isa<CXXRecordDecl>(record)) {
1804 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1805 return;
1806 }
1807
1808 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1809 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1810 return;
1811 }
1812
Eric Christopherf48f3672010-12-01 22:13:54 +00001813 for (RecordDecl::field_iterator iter = record->field_begin();
1814 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001815 if ((count == 1) || !iter->getType()->isVectorType()) {
1816 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1817 return;
1818 }
1819 count++;
1820 }
1821
Michael Han51d8c522013-01-24 16:46:58 +00001822 D->addAttr(::new (S.Context)
1823 VecReturnAttr(Attr.getRange(), S.Context,
1824 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001825}
1826
Richard Smith3a2b7a12013-01-28 22:42:45 +00001827static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1828 const AttributeList &Attr) {
1829 if (isa<ParmVarDecl>(D)) {
1830 // [[carries_dependency]] can only be applied to a parameter if it is a
1831 // parameter of a function declaration or lambda.
1832 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1833 S.Diag(Attr.getLoc(),
1834 diag::err_carries_dependency_param_not_function_decl);
1835 return;
1836 }
1837 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001838 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001839 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001840 return;
1841 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001842
1843 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1844 Attr.getRange(), S.Context,
1845 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001846}
1847
Chandler Carruth1b03c872011-07-02 00:01:44 +00001848static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001849 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001850 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001851 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001852 return;
1853 }
Mike Stumpbf916502009-07-24 19:02:52 +00001854
Chandler Carruth87c44602011-07-01 23:49:12 +00001855 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001856 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001857 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001858 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001859 return;
1860 }
Mike Stumpbf916502009-07-24 19:02:52 +00001861
Michael Han51d8c522013-01-24 16:46:58 +00001862 D->addAttr(::new (S.Context)
1863 UnusedAttr(Attr.getRange(), S.Context,
1864 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001865}
1866
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001867static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1868 const AttributeList &Attr) {
1869 // check the attribute arguments.
1870 if (Attr.hasParameterOrArguments()) {
1871 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1872 return;
1873 }
1874
1875 if (!isa<FunctionDecl>(D)) {
1876 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1877 << Attr.getName() << ExpectedFunction;
1878 return;
1879 }
1880
Michael Han51d8c522013-01-24 16:46:58 +00001881 D->addAttr(::new (S.Context)
1882 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1883 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001884}
1885
Chandler Carruth1b03c872011-07-02 00:01:44 +00001886static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001887 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001888 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001889 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1890 return;
1891 }
Mike Stumpbf916502009-07-24 19:02:52 +00001892
Chandler Carruth87c44602011-07-01 23:49:12 +00001893 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001894 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001895 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1896 return;
1897 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001898 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001899 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001900 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001901 return;
1902 }
Mike Stumpbf916502009-07-24 19:02:52 +00001903
Michael Han51d8c522013-01-24 16:46:58 +00001904 D->addAttr(::new (S.Context)
1905 UsedAttr(Attr.getRange(), S.Context,
1906 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001907}
1908
Chandler Carruth1b03c872011-07-02 00:01:44 +00001909static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001910 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001911 if (Attr.getNumArgs() > 1) {
1912 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001913 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001914 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001915
1916 int priority = 65535; // FIXME: Do not hardcode such constants.
1917 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001918 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001919 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001920 if (E->isTypeDependent() || E->isValueDependent() ||
1921 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001922 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001923 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001924 return;
1925 }
1926 priority = Idx.getZExtValue();
1927 }
Mike Stumpbf916502009-07-24 19:02:52 +00001928
Chandler Carruth87c44602011-07-01 23:49:12 +00001929 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001930 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001931 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001932 return;
1933 }
1934
Michael Han51d8c522013-01-24 16:46:58 +00001935 D->addAttr(::new (S.Context)
1936 ConstructorAttr(Attr.getRange(), S.Context, priority,
1937 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001938}
1939
Chandler Carruth1b03c872011-07-02 00:01:44 +00001940static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001941 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001942 if (Attr.getNumArgs() > 1) {
1943 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001944 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001945 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001946
1947 int priority = 65535; // FIXME: Do not hardcode such constants.
1948 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001949 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001950 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001951 if (E->isTypeDependent() || E->isValueDependent() ||
1952 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001953 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001954 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001955 return;
1956 }
1957 priority = Idx.getZExtValue();
1958 }
Mike Stumpbf916502009-07-24 19:02:52 +00001959
Chandler Carruth87c44602011-07-01 23:49:12 +00001960 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001961 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001962 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001963 return;
1964 }
1965
Michael Han51d8c522013-01-24 16:46:58 +00001966 D->addAttr(::new (S.Context)
1967 DestructorAttr(Attr.getRange(), S.Context, priority,
1968 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001969}
1970
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001971template <typename AttrTy>
1972static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1973 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001974 unsigned NumArgs = Attr.getNumArgs();
1975 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001976 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001977 return;
1978 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001979
1980 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001981 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001982 if (NumArgs == 1) {
1983 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001984 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001985 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001986 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001987 return;
1988 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001989 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001990 }
Mike Stumpbf916502009-07-24 19:02:52 +00001991
Michael Han51d8c522013-01-24 16:46:58 +00001992 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
1993 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001994}
1995
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001996static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1997 const AttributeList &Attr) {
1998 unsigned NumArgs = Attr.getNumArgs();
1999 if (NumArgs > 0) {
2000 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2001 return;
2002 }
2003
Michael Han51d8c522013-01-24 16:46:58 +00002004 D->addAttr(::new (S.Context)
2005 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2006 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002007}
2008
Patrick Beardb2f68202012-04-06 18:12:22 +00002009static void handleObjCRootClassAttr(Sema &S, Decl *D,
2010 const AttributeList &Attr) {
2011 if (!isa<ObjCInterfaceDecl>(D)) {
2012 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2013 return;
2014 }
2015
2016 unsigned NumArgs = Attr.getNumArgs();
2017 if (NumArgs > 0) {
2018 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2019 return;
2020 }
2021
Michael Han51d8c522013-01-24 16:46:58 +00002022 D->addAttr(::new (S.Context)
2023 ObjCRootClassAttr(Attr.getRange(), S.Context,
2024 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002025}
2026
Michael Han51d8c522013-01-24 16:46:58 +00002027static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2028 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002029 if (!isa<ObjCInterfaceDecl>(D)) {
2030 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2031 return;
2032 }
2033
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002034 unsigned NumArgs = Attr.getNumArgs();
2035 if (NumArgs > 0) {
2036 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2037 return;
2038 }
2039
Michael Han51d8c522013-01-24 16:46:58 +00002040 D->addAttr(::new (S.Context)
2041 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2042 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002043}
2044
Jordy Rosefad5de92012-05-08 03:27:22 +00002045static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2046 IdentifierInfo *Platform,
2047 VersionTuple Introduced,
2048 VersionTuple Deprecated,
2049 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002050 StringRef PlatformName
2051 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2052 if (PlatformName.empty())
2053 PlatformName = Platform->getName();
2054
2055 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2056 // of these steps are needed).
2057 if (!Introduced.empty() && !Deprecated.empty() &&
2058 !(Introduced <= Deprecated)) {
2059 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2060 << 1 << PlatformName << Deprecated.getAsString()
2061 << 0 << Introduced.getAsString();
2062 return true;
2063 }
2064
2065 if (!Introduced.empty() && !Obsoleted.empty() &&
2066 !(Introduced <= Obsoleted)) {
2067 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2068 << 2 << PlatformName << Obsoleted.getAsString()
2069 << 0 << Introduced.getAsString();
2070 return true;
2071 }
2072
2073 if (!Deprecated.empty() && !Obsoleted.empty() &&
2074 !(Deprecated <= Obsoleted)) {
2075 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2076 << 2 << PlatformName << Obsoleted.getAsString()
2077 << 1 << Deprecated.getAsString();
2078 return true;
2079 }
2080
2081 return false;
2082}
2083
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002084/// \brief Check whether the two versions match.
2085///
2086/// If either version tuple is empty, then they are assumed to match. If
2087/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2088static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2089 bool BeforeIsOkay) {
2090 if (X.empty() || Y.empty())
2091 return true;
2092
2093 if (X == Y)
2094 return true;
2095
2096 if (BeforeIsOkay && X < Y)
2097 return true;
2098
2099 return false;
2100}
2101
Rafael Espindola51be6e32013-01-08 22:04:34 +00002102AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002103 IdentifierInfo *Platform,
2104 VersionTuple Introduced,
2105 VersionTuple Deprecated,
2106 VersionTuple Obsoleted,
2107 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002108 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002109 bool Override,
2110 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002111 VersionTuple MergedIntroduced = Introduced;
2112 VersionTuple MergedDeprecated = Deprecated;
2113 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002114 bool FoundAny = false;
2115
Rafael Espindola98ae8342012-05-10 02:50:16 +00002116 if (D->hasAttrs()) {
2117 AttrVec &Attrs = D->getAttrs();
2118 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2119 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2120 if (!OldAA) {
2121 ++i;
2122 continue;
2123 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002124
Rafael Espindola98ae8342012-05-10 02:50:16 +00002125 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2126 if (OldPlatform != Platform) {
2127 ++i;
2128 continue;
2129 }
2130
2131 FoundAny = true;
2132 VersionTuple OldIntroduced = OldAA->getIntroduced();
2133 VersionTuple OldDeprecated = OldAA->getDeprecated();
2134 VersionTuple OldObsoleted = OldAA->getObsoleted();
2135 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002136
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002137 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2138 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2139 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2140 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002141 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002142 if (Override) {
2143 int Which = -1;
2144 VersionTuple FirstVersion;
2145 VersionTuple SecondVersion;
2146 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2147 Which = 0;
2148 FirstVersion = OldIntroduced;
2149 SecondVersion = Introduced;
2150 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2151 Which = 1;
2152 FirstVersion = Deprecated;
2153 SecondVersion = OldDeprecated;
2154 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2155 Which = 2;
2156 FirstVersion = Obsoleted;
2157 SecondVersion = OldObsoleted;
2158 }
2159
2160 if (Which == -1) {
2161 Diag(OldAA->getLocation(),
2162 diag::warn_mismatched_availability_override_unavail)
2163 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2164 } else {
2165 Diag(OldAA->getLocation(),
2166 diag::warn_mismatched_availability_override)
2167 << Which
2168 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2169 << FirstVersion.getAsString() << SecondVersion.getAsString();
2170 }
2171 Diag(Range.getBegin(), diag::note_overridden_method);
2172 } else {
2173 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2174 Diag(Range.getBegin(), diag::note_previous_attribute);
2175 }
2176
Rafael Espindola98ae8342012-05-10 02:50:16 +00002177 Attrs.erase(Attrs.begin() + i);
2178 --e;
2179 continue;
2180 }
2181
2182 VersionTuple MergedIntroduced2 = MergedIntroduced;
2183 VersionTuple MergedDeprecated2 = MergedDeprecated;
2184 VersionTuple MergedObsoleted2 = MergedObsoleted;
2185
2186 if (MergedIntroduced2.empty())
2187 MergedIntroduced2 = OldIntroduced;
2188 if (MergedDeprecated2.empty())
2189 MergedDeprecated2 = OldDeprecated;
2190 if (MergedObsoleted2.empty())
2191 MergedObsoleted2 = OldObsoleted;
2192
2193 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2194 MergedIntroduced2, MergedDeprecated2,
2195 MergedObsoleted2)) {
2196 Attrs.erase(Attrs.begin() + i);
2197 --e;
2198 continue;
2199 }
2200
2201 MergedIntroduced = MergedIntroduced2;
2202 MergedDeprecated = MergedDeprecated2;
2203 MergedObsoleted = MergedObsoleted2;
2204 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002205 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002206 }
2207
2208 if (FoundAny &&
2209 MergedIntroduced == Introduced &&
2210 MergedDeprecated == Deprecated &&
2211 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002212 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002213
Rafael Espindola98ae8342012-05-10 02:50:16 +00002214 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00002215 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002216 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2217 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002218 Obsoleted, IsUnavailable, Message,
2219 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002220 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002221 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002222}
2223
Chandler Carruth1b03c872011-07-02 00:01:44 +00002224static void handleAvailabilityAttr(Sema &S, Decl *D,
2225 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002226 IdentifierInfo *Platform = Attr.getParameterName();
2227 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002228 unsigned Index = Attr.getAttributeSpellingListIndex();
2229
Rafael Espindola3b294362012-05-06 19:56:25 +00002230 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002231 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2232 << Platform;
2233
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002234 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2235 if (!ND) {
2236 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2237 return;
2238 }
2239
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002240 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2241 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2242 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002243 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002244 StringRef Str;
2245 const StringLiteral *SE =
2246 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2247 if (SE)
2248 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002249
Rafael Espindola51be6e32013-01-08 22:04:34 +00002250 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002251 Platform,
2252 Introduced.Version,
2253 Deprecated.Version,
2254 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002255 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002256 /*Override=*/false,
2257 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002258 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002259 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002260}
2261
John McCalld4c3d662013-02-20 01:54:26 +00002262template <class T>
2263static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2264 typename T::VisibilityType value,
2265 unsigned attrSpellingListIndex) {
2266 T *existingAttr = D->getAttr<T>();
2267 if (existingAttr) {
2268 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2269 if (existingValue == value)
2270 return NULL;
2271 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2272 S.Diag(range.getBegin(), diag::note_previous_attribute);
2273 D->dropAttr<T>();
2274 }
2275 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2276}
2277
Rafael Espindola599f1b72012-05-13 03:25:18 +00002278VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002279 VisibilityAttr::VisibilityType Vis,
2280 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002281 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2282 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002283}
2284
John McCalld4c3d662013-02-20 01:54:26 +00002285TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2286 TypeVisibilityAttr::VisibilityType Vis,
2287 unsigned AttrSpellingListIndex) {
2288 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2289 AttrSpellingListIndex);
2290}
2291
2292static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2293 bool isTypeVisibility) {
2294 // Visibility attributes don't mean anything on a typedef.
2295 if (isa<TypedefNameDecl>(D)) {
2296 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2297 << Attr.getName();
2298 return;
2299 }
2300
2301 // 'type_visibility' can only go on a type or namespace.
2302 if (isTypeVisibility &&
2303 !(isa<TagDecl>(D) ||
2304 isa<ObjCInterfaceDecl>(D) ||
2305 isa<NamespaceDecl>(D))) {
2306 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2307 << Attr.getName() << ExpectedTypeOrNamespace;
2308 return;
2309 }
2310
Chris Lattner6b6b5372008-06-26 18:38:35 +00002311 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002312 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002313 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002314
Peter Collingbourne7a730022010-11-23 20:45:58 +00002315 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002316 Arg = Arg->IgnoreParenCasts();
2317 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002318
Douglas Gregor5cee1192011-07-27 05:40:30 +00002319 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002320 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld4c3d662013-02-20 01:54:26 +00002321 << (isTypeVisibility ? "type_visibility" : "visibility") << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002322 return;
2323 }
Mike Stumpbf916502009-07-24 19:02:52 +00002324
Chris Lattner5f9e2722011-07-23 10:55:15 +00002325 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002326 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002327
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002328 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002329 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002330 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002331 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002332 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002333 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002334 else if (TypeStr == "protected") {
2335 // Complain about attempts to use protected visibility on targets
2336 // (like Darwin) that don't support it.
2337 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2338 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2339 type = VisibilityAttr::Default;
2340 } else {
2341 type = VisibilityAttr::Protected;
2342 }
2343 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002344 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002345 return;
2346 }
Mike Stumpbf916502009-07-24 19:02:52 +00002347
Michael Han51d8c522013-01-24 16:46:58 +00002348 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002349 clang::Attr *newAttr;
2350 if (isTypeVisibility) {
2351 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2352 (TypeVisibilityAttr::VisibilityType) type,
2353 Index);
2354 } else {
2355 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2356 }
2357 if (newAttr)
2358 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002359}
2360
Chandler Carruth1b03c872011-07-02 00:01:44 +00002361static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2362 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002363 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2364 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002365 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002366 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002367 return;
2368 }
2369
Chandler Carruth87c44602011-07-01 23:49:12 +00002370 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2371 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2372 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002373 << "objc_method_family" << 1;
2374 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002375 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002376 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002377 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002378 return;
2379 }
2380
Chris Lattner5f9e2722011-07-23 10:55:15 +00002381 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002382 ObjCMethodFamilyAttr::FamilyKind family;
2383 if (param == "none")
2384 family = ObjCMethodFamilyAttr::OMF_None;
2385 else if (param == "alloc")
2386 family = ObjCMethodFamilyAttr::OMF_alloc;
2387 else if (param == "copy")
2388 family = ObjCMethodFamilyAttr::OMF_copy;
2389 else if (param == "init")
2390 family = ObjCMethodFamilyAttr::OMF_init;
2391 else if (param == "mutableCopy")
2392 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2393 else if (param == "new")
2394 family = ObjCMethodFamilyAttr::OMF_new;
2395 else {
2396 // Just warn and ignore it. This is future-proof against new
2397 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002398 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002399 return;
2400 }
2401
John McCallf85e1932011-06-15 23:02:42 +00002402 if (family == ObjCMethodFamilyAttr::OMF_init &&
2403 !method->getResultType()->isObjCObjectPointerType()) {
2404 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2405 << method->getResultType();
2406 // Ignore the attribute.
2407 return;
2408 }
2409
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002410 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002411 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002412}
2413
Chandler Carruth1b03c872011-07-02 00:01:44 +00002414static void handleObjCExceptionAttr(Sema &S, Decl *D,
2415 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002416 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002417 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002418
Chris Lattner0db29ec2009-02-14 08:09:34 +00002419 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2420 if (OCI == 0) {
2421 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2422 return;
2423 }
Mike Stumpbf916502009-07-24 19:02:52 +00002424
Michael Han51d8c522013-01-24 16:46:58 +00002425 D->addAttr(::new (S.Context)
2426 ObjCExceptionAttr(Attr.getRange(), S.Context,
2427 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002428}
2429
Chandler Carruth1b03c872011-07-02 00:01:44 +00002430static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002431 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002432 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002433 return;
2434 }
Richard Smith162e1c12011-04-15 14:24:37 +00002435 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002436 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002437 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002438 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2439 return;
2440 }
2441 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002442 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2443 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002444 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002445 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2446 return;
2447 }
2448 }
2449 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002450 // It is okay to include this attribute on properties, e.g.:
2451 //
2452 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2453 //
2454 // In this case it follows tradition and suppresses an error in the above
2455 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002456 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002457 }
Michael Han51d8c522013-01-24 16:46:58 +00002458 D->addAttr(::new (S.Context)
2459 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2460 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002461}
2462
Mike Stumpbf916502009-07-24 19:02:52 +00002463static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002464handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002465 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002466 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002467 return;
2468 }
2469
2470 if (!isa<FunctionDecl>(D)) {
2471 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2472 return;
2473 }
2474
Michael Han51d8c522013-01-24 16:46:58 +00002475 D->addAttr(::new (S.Context)
2476 OverloadableAttr(Attr.getRange(), S.Context,
2477 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002478}
2479
Chandler Carruth1b03c872011-07-02 00:01:44 +00002480static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002481 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002482 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002483 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002484 return;
2485 }
Mike Stumpbf916502009-07-24 19:02:52 +00002486
Steve Naroff9eae5762008-09-18 16:44:58 +00002487 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002488 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002489 return;
2490 }
Mike Stumpbf916502009-07-24 19:02:52 +00002491
Sean Huntcf807c42010-08-18 23:23:40 +00002492 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002493 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002494 type = BlocksAttr::ByRef;
2495 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002496 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002497 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002498 return;
2499 }
Mike Stumpbf916502009-07-24 19:02:52 +00002500
Michael Han51d8c522013-01-24 16:46:58 +00002501 D->addAttr(::new (S.Context)
2502 BlocksAttr(Attr.getRange(), S.Context, type,
2503 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002504}
2505
Chandler Carruth1b03c872011-07-02 00:01:44 +00002506static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002507 // check the attribute arguments.
2508 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002509 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002510 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002511 }
2512
John McCall3323fad2011-09-09 07:56:05 +00002513 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002514 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002515 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002516 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002517 if (E->isTypeDependent() || E->isValueDependent() ||
2518 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002519 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002520 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002521 return;
2522 }
Mike Stumpbf916502009-07-24 19:02:52 +00002523
John McCall3323fad2011-09-09 07:56:05 +00002524 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002525 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2526 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002527 return;
2528 }
John McCall3323fad2011-09-09 07:56:05 +00002529
2530 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002531 }
2532
John McCall3323fad2011-09-09 07:56:05 +00002533 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002534 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002535 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002536 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002537 if (E->isTypeDependent() || E->isValueDependent() ||
2538 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002539 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002540 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002541 return;
2542 }
2543 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002544
John McCall3323fad2011-09-09 07:56:05 +00002545 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002546 // FIXME: This error message could be improved, it would be nice
2547 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002548 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2549 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002550 return;
2551 }
2552 }
2553
Chandler Carruth87c44602011-07-01 23:49:12 +00002554 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002555 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002556 if (isa<FunctionNoProtoType>(FT)) {
2557 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2558 return;
2559 }
Mike Stumpbf916502009-07-24 19:02:52 +00002560
Chris Lattner897cd902009-03-17 23:03:47 +00002561 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002562 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002563 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002564 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002565 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002566 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002567 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002568 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002569 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002570 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2571 if (!BD->isVariadic()) {
2572 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2573 return;
2574 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002575 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002576 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002577 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002578 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002579 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002580 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002581 int m = Ty->isFunctionPointerType() ? 0 : 1;
2582 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002583 return;
2584 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002585 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002586 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002587 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002588 return;
2589 }
Anders Carlsson77091822008-10-05 18:05:59 +00002590 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002591 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002592 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002593 return;
2594 }
Michael Han51d8c522013-01-24 16:46:58 +00002595 D->addAttr(::new (S.Context)
2596 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2597 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002598}
2599
Chandler Carruth1b03c872011-07-02 00:01:44 +00002600static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002601 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002602 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002603 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002604
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002605 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002606 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002607 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002608 return;
2609 }
Mike Stumpbf916502009-07-24 19:02:52 +00002610
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002611 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2612 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2613 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002614 return;
2615 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002616 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2617 if (MD->getResultType()->isVoidType()) {
2618 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2619 << Attr.getName() << 1;
2620 return;
2621 }
2622
Michael Han51d8c522013-01-24 16:46:58 +00002623 D->addAttr(::new (S.Context)
2624 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2625 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002626}
2627
Chandler Carruth1b03c872011-07-02 00:01:44 +00002628static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002629 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002630 if (Attr.hasParameterOrArguments()) {
2631 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002632 return;
2633 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002634
Chandler Carruth87c44602011-07-01 23:49:12 +00002635 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002636 if (isa<CXXRecordDecl>(D)) {
2637 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2638 return;
2639 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002640 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2641 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002642 return;
2643 }
2644
Chandler Carruth87c44602011-07-01 23:49:12 +00002645 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002646
Michael Han51d8c522013-01-24 16:46:58 +00002647 nd->addAttr(::new (S.Context)
2648 WeakAttr(Attr.getRange(), S.Context,
2649 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002650}
2651
Chandler Carruth1b03c872011-07-02 00:01:44 +00002652static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002653 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002654 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002655 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002656
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002657
2658 // weak_import only applies to variable & function declarations.
2659 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002660 if (!D->canBeWeakImported(isDef)) {
2661 if (isDef)
2662 S.Diag(Attr.getLoc(),
2663 diag::warn_attribute_weak_import_invalid_on_definition)
2664 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002665 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002666 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002667 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002668 // Nothing to warn about here.
2669 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002670 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002671 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002672
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002673 return;
2674 }
2675
Michael Han51d8c522013-01-24 16:46:58 +00002676 D->addAttr(::new (S.Context)
2677 WeakImportAttr(Attr.getRange(), S.Context,
2678 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002679}
2680
Tanya Lattner0df579e2012-07-09 22:06:01 +00002681// Handles reqd_work_group_size and work_group_size_hint.
2682static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002683 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002684 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2685 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2686
Nate Begeman6f3d8382009-06-26 06:32:41 +00002687 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002688 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002689
2690 unsigned WGSize[3];
2691 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002692 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002693 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002694 if (E->isTypeDependent() || E->isValueDependent() ||
2695 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002696 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002697 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002698 return;
2699 }
2700 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2701 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002702
2703 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2704 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2705 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2706 if (!(A->getXDim() == WGSize[0] &&
2707 A->getYDim() == WGSize[1] &&
2708 A->getZDim() == WGSize[2])) {
2709 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2710 Attr.getName();
2711 }
2712 }
2713
2714 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2715 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2716 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2717 if (!(A->getXDim() == WGSize[0] &&
2718 A->getYDim() == WGSize[1] &&
2719 A->getZDim() == WGSize[2])) {
2720 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2721 Attr.getName();
2722 }
2723 }
2724
2725 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2726 D->addAttr(::new (S.Context)
2727 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002728 WGSize[0], WGSize[1], WGSize[2],
2729 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002730 else
2731 D->addAttr(::new (S.Context)
2732 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002733 WGSize[0], WGSize[1], WGSize[2],
2734 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002735}
2736
Rafael Espindola599f1b72012-05-13 03:25:18 +00002737SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002738 StringRef Name,
2739 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002740 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2741 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002742 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002743 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2744 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002745 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002746 }
Michael Han51d8c522013-01-24 16:46:58 +00002747 return ::new (Context) SectionAttr(Range, Context, Name,
2748 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002749}
2750
Chandler Carruth1b03c872011-07-02 00:01:44 +00002751static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002752 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002753 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002754 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002755
2756 // Make sure that there is a string literal as the sections's single
2757 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002758 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002759 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002760 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002761 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002762 return;
2763 }
Mike Stump1eb44332009-09-09 15:08:12 +00002764
Chris Lattner797c3c42009-08-10 19:03:04 +00002765 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002766 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002767 if (!Error.empty()) {
2768 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2769 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002770 return;
2771 }
Mike Stump1eb44332009-09-09 15:08:12 +00002772
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002773 // This attribute cannot be applied to local variables.
2774 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2775 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2776 return;
2777 }
Michael Han51d8c522013-01-24 16:46:58 +00002778
2779 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002780 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002781 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002782 if (NewAttr)
2783 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002784}
2785
Chris Lattner6b6b5372008-06-26 18:38:35 +00002786
Chandler Carruth1b03c872011-07-02 00:01:44 +00002787static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002788 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002789 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002790 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002791 return;
2792 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002793
Chandler Carruth87c44602011-07-01 23:49:12 +00002794 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002795 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002796 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002797 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002798 D->addAttr(::new (S.Context)
2799 NoThrowAttr(Attr.getRange(), S.Context,
2800 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002801 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002802}
2803
Chandler Carruth1b03c872011-07-02 00:01:44 +00002804static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002805 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002806 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002807 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002808 return;
2809 }
Mike Stumpbf916502009-07-24 19:02:52 +00002810
Chandler Carruth87c44602011-07-01 23:49:12 +00002811 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002812 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002813 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002814 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002815 D->addAttr(::new (S.Context)
2816 ConstAttr(Attr.getRange(), S.Context,
2817 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002818 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002819}
2820
Chandler Carruth1b03c872011-07-02 00:01:44 +00002821static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002822 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002823 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002824 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002825
Michael Han51d8c522013-01-24 16:46:58 +00002826 D->addAttr(::new (S.Context)
2827 PureAttr(Attr.getRange(), S.Context,
2828 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002829}
2830
Chandler Carruth1b03c872011-07-02 00:01:44 +00002831static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002832 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002833 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2834 return;
2835 }
Mike Stumpbf916502009-07-24 19:02:52 +00002836
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002837 if (Attr.getNumArgs() != 0) {
2838 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2839 return;
2840 }
Mike Stumpbf916502009-07-24 19:02:52 +00002841
Chandler Carruth87c44602011-07-01 23:49:12 +00002842 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002843
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002844 if (!VD || !VD->hasLocalStorage()) {
2845 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2846 return;
2847 }
Mike Stumpbf916502009-07-24 19:02:52 +00002848
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002849 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002850 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002851 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002852 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2853 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002854 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002855 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002856 Attr.getParameterName();
2857 return;
2858 }
Mike Stumpbf916502009-07-24 19:02:52 +00002859
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002860 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2861 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002862 S.Diag(Attr.getParameterLoc(),
2863 diag::err_attribute_cleanup_arg_not_function)
2864 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002865 return;
2866 }
2867
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002868 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002869 S.Diag(Attr.getParameterLoc(),
2870 diag::err_attribute_cleanup_func_must_take_one_arg)
2871 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002872 return;
2873 }
Mike Stumpbf916502009-07-24 19:02:52 +00002874
Anders Carlsson89941c12009-02-07 23:16:50 +00002875 // We're currently more strict than GCC about what function types we accept.
2876 // If this ever proves to be a problem it should be easy to fix.
2877 QualType Ty = S.Context.getPointerType(VD->getType());
2878 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002879 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2880 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002881 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002882 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2883 Attr.getParameterName() << ParamTy << Ty;
2884 return;
2885 }
Mike Stumpbf916502009-07-24 19:02:52 +00002886
Michael Han51d8c522013-01-24 16:46:58 +00002887 D->addAttr(::new (S.Context)
2888 CleanupAttr(Attr.getRange(), S.Context, FD,
2889 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002890 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002891 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002892}
2893
Mike Stumpbf916502009-07-24 19:02:52 +00002894/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002895/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002896static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002897 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002898 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002899
Chandler Carruth87c44602011-07-01 23:49:12 +00002900 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002901 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002902 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002903 return;
2904 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002905
2906 // In C++ the implicit 'this' function parameter also counts, and they are
2907 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002908 bool HasImplicitThisParam = isInstanceMethod(D);
2909 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002910 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002911
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002912 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002913 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002914 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002915 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2916 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002917 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2918 << "format" << 2 << IdxExpr->getSourceRange();
2919 return;
2920 }
Mike Stumpbf916502009-07-24 19:02:52 +00002921
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002922 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2923 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2924 << "format" << 2 << IdxExpr->getSourceRange();
2925 return;
2926 }
Mike Stumpbf916502009-07-24 19:02:52 +00002927
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002928 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002929
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002930 if (HasImplicitThisParam) {
2931 if (ArgIdx == 0) {
2932 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2933 << "format_arg" << IdxExpr->getSourceRange();
2934 return;
2935 }
2936 ArgIdx--;
2937 }
2938
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002939 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002940 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002941
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002942 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2943 if (not_nsstring_type &&
2944 !isCFStringType(Ty, S.Context) &&
2945 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002946 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002947 // FIXME: Should highlight the actual expression that has the wrong type.
2948 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002949 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002950 << IdxExpr->getSourceRange();
2951 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002952 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002953 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002954 if (!isNSStringType(Ty, S.Context) &&
2955 !isCFStringType(Ty, S.Context) &&
2956 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002957 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002958 // FIXME: Should highlight the actual expression that has the wrong type.
2959 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002960 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002961 << IdxExpr->getSourceRange();
2962 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002963 }
2964
Michael Han51d8c522013-01-24 16:46:58 +00002965 D->addAttr(::new (S.Context)
2966 FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(),
2967 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002968}
2969
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002970enum FormatAttrKind {
2971 CFStringFormat,
2972 NSStringFormat,
2973 StrftimeFormat,
2974 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002975 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002976 InvalidFormat
2977};
2978
2979/// getFormatAttrKind - Map from format attribute names to supported format
2980/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002981static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002982 return llvm::StringSwitch<FormatAttrKind>(Format)
2983 // Check for formats that get handled specially.
2984 .Case("NSString", NSStringFormat)
2985 .Case("CFString", CFStringFormat)
2986 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002987
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002988 // Otherwise, check for supported formats.
2989 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2990 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2991 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002992
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002993 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2994 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002995}
2996
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002997/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002998/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002999static void handleInitPriorityAttr(Sema &S, Decl *D,
3000 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003001 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003002 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3003 return;
3004 }
3005
Chandler Carruth87c44602011-07-01 23:49:12 +00003006 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003007 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3008 Attr.setInvalid();
3009 return;
3010 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003011 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003012 if (S.Context.getAsArrayType(T))
3013 T = S.Context.getBaseElementType(T);
3014 if (!T->getAs<RecordType>()) {
3015 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3016 Attr.setInvalid();
3017 return;
3018 }
3019
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003020 if (Attr.getNumArgs() != 1) {
3021 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3022 Attr.setInvalid();
3023 return;
3024 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00003025 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003026
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003027 llvm::APSInt priority(32);
3028 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3029 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
3030 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3031 << "init_priority" << priorityExpr->getSourceRange();
3032 Attr.setInvalid();
3033 return;
3034 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003035 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003036 if (prioritynum < 101 || prioritynum > 65535) {
3037 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3038 << priorityExpr->getSourceRange();
3039 Attr.setInvalid();
3040 return;
3041 }
Michael Han51d8c522013-01-24 16:46:58 +00003042 D->addAttr(::new (S.Context)
3043 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3044 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003045}
3046
Rafael Espindola599f1b72012-05-13 03:25:18 +00003047FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003048 int FormatIdx, int FirstArg,
3049 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003050 // Check whether we already have an equivalent format attribute.
3051 for (specific_attr_iterator<FormatAttr>
3052 i = D->specific_attr_begin<FormatAttr>(),
3053 e = D->specific_attr_end<FormatAttr>();
3054 i != e ; ++i) {
3055 FormatAttr *f = *i;
3056 if (f->getType() == Format &&
3057 f->getFormatIdx() == FormatIdx &&
3058 f->getFirstArg() == FirstArg) {
3059 // If we don't have a valid location for this attribute, adopt the
3060 // location.
3061 if (f->getLocation().isInvalid())
3062 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003063 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003064 }
3065 }
3066
Michael Han51d8c522013-01-24 16:46:58 +00003067 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3068 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003069}
3070
Mike Stumpbf916502009-07-24 19:02:52 +00003071/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003072/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003073static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003074
Chris Lattner545dd342008-06-28 23:36:30 +00003075 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003076 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00003077 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003078 return;
3079 }
3080
Chris Lattner545dd342008-06-28 23:36:30 +00003081 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003082 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003083 return;
3084 }
3085
Chandler Carruth87c44602011-07-01 23:49:12 +00003086 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003087 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003088 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003089 return;
3090 }
3091
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003092 // In C++ the implicit 'this' function parameter also counts, and they are
3093 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003094 bool HasImplicitThisParam = isInstanceMethod(D);
3095 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003096 unsigned FirstIdx = 1;
3097
Chris Lattner5f9e2722011-07-23 10:55:15 +00003098 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003099
3100 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003101 if (Format.startswith("__") && Format.endswith("__"))
3102 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003103
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003104 // Check for supported formats.
3105 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003106
3107 if (Kind == IgnoredFormat)
3108 return;
3109
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003110 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003111 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003112 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003113 return;
3114 }
3115
3116 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003117 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003118 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003119 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3120 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003121 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003122 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003123 return;
3124 }
3125
3126 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003127 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003128 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003129 return;
3130 }
3131
3132 // FIXME: Do we need to bounds check?
3133 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003134
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003135 if (HasImplicitThisParam) {
3136 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003137 S.Diag(Attr.getLoc(),
3138 diag::err_format_attribute_implicit_this_format_string)
3139 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003140 return;
3141 }
3142 ArgIdx--;
3143 }
Mike Stump1eb44332009-09-09 15:08:12 +00003144
Chris Lattner6b6b5372008-06-26 18:38:35 +00003145 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003146 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003147
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003148 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003149 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003150 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3151 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003152 return;
3153 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003154 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003155 // FIXME: do we need to check if the type is NSString*? What are the
3156 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003157 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003158 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003159 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3160 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003161 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003162 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003163 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003164 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003165 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003166 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3167 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003168 return;
3169 }
3170
3171 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003172 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003173 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003174 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3175 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003176 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003177 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003178 return;
3179 }
3180
3181 // check if the function is variadic if the 3rd argument non-zero
3182 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003183 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003184 ++NumArgs; // +1 for ...
3185 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003186 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003187 return;
3188 }
3189 }
3190
Chris Lattner3c73c412008-11-19 08:23:25 +00003191 // strftime requires FirstArg to be 0 because it doesn't read from any
3192 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003193 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003194 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003195 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3196 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003197 return;
3198 }
3199 // if 0 it disables parameter checking (to use with e.g. va_list)
3200 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003201 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003202 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003203 return;
3204 }
3205
Rafael Espindola599f1b72012-05-13 03:25:18 +00003206 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3207 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003208 FirstArg.getZExtValue(),
3209 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003210 if (NewAttr)
3211 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003212}
3213
Chandler Carruth1b03c872011-07-02 00:01:44 +00003214static void handleTransparentUnionAttr(Sema &S, Decl *D,
3215 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003216 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003217 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003218 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003219
Chris Lattner6b6b5372008-06-26 18:38:35 +00003220
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003221 // Try to find the underlying union declaration.
3222 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003223 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003224 if (TD && TD->getUnderlyingType()->isUnionType())
3225 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3226 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003227 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003228
3229 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003230 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003231 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003232 return;
3233 }
3234
John McCall5e1cdac2011-10-07 06:10:15 +00003235 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003236 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003237 diag::warn_transparent_union_attribute_not_definition);
3238 return;
3239 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003240
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003241 RecordDecl::field_iterator Field = RD->field_begin(),
3242 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003243 if (Field == FieldEnd) {
3244 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3245 return;
3246 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003247
David Blaikie581deb32012-06-06 20:45:41 +00003248 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003249 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003250 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003251 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003252 diag::warn_transparent_union_attribute_floating)
3253 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003254 return;
3255 }
3256
3257 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3258 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3259 for (; Field != FieldEnd; ++Field) {
3260 QualType FieldType = Field->getType();
3261 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3262 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3263 // Warn if we drop the attribute.
3264 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003265 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003266 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003267 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003268 diag::warn_transparent_union_attribute_field_size_align)
3269 << isSize << Field->getDeclName() << FieldBits;
3270 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003271 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003272 diag::note_transparent_union_first_field_size_align)
3273 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003274 return;
3275 }
3276 }
3277
Michael Han51d8c522013-01-24 16:46:58 +00003278 RD->addAttr(::new (S.Context)
3279 TransparentUnionAttr(Attr.getRange(), S.Context,
3280 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003281}
3282
Chandler Carruth1b03c872011-07-02 00:01:44 +00003283static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003284 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003285 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003286 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003287
Peter Collingbourne7a730022010-11-23 20:45:58 +00003288 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003289 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003290
Chris Lattner6b6b5372008-06-26 18:38:35 +00003291 // Make sure that there is a string literal as the annotation's single
3292 // argument.
3293 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00003294 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00003295 return;
3296 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003297
3298 // Don't duplicate annotations that are already set.
3299 for (specific_attr_iterator<AnnotateAttr>
3300 i = D->specific_attr_begin<AnnotateAttr>(),
3301 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3302 if ((*i)->getAnnotation() == SE->getString())
3303 return;
3304 }
Michael Han51d8c522013-01-24 16:46:58 +00003305
3306 D->addAttr(::new (S.Context)
3307 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3308 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003309}
3310
Chandler Carruth1b03c872011-07-02 00:01:44 +00003311static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003312 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003313 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003314 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003315 return;
3316 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003317
Richard Smithbe507b62013-02-01 08:12:08 +00003318 if (Attr.getNumArgs() == 0) {
3319 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3320 true, 0, Attr.getAttributeSpellingListIndex()));
3321 return;
3322 }
3323
Richard Smithf6565a92013-02-22 08:32:16 +00003324 Expr *E = Attr.getArg(0);
3325 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3326 S.Diag(Attr.getEllipsisLoc(),
3327 diag::err_pack_expansion_without_parameter_packs);
3328 return;
3329 }
3330
3331 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3332 return;
3333
3334 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3335 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003336}
3337
3338void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003339 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003340 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3341 SourceLocation AttrLoc = AttrRange.getBegin();
3342
Richard Smith4cd81c52013-01-29 09:02:09 +00003343 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003344 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003345 // C++11 [dcl.align]p1:
3346 // An alignment-specifier may be applied to a variable or to a class
3347 // data member, but it shall not be applied to a bit-field, a function
3348 // parameter, the formal parameter of a catch clause, or a variable
3349 // declared with the register storage class specifier. An
3350 // alignment-specifier may also be applied to the declaration of a class
3351 // or enumeration type.
3352 // C11 6.7.5/2:
3353 // An alignment attribute shall not be specified in a declaration of
3354 // a typedef, or a bit-field, or a function, or a parameter, or an
3355 // object declared with the register storage-class specifier.
3356 int DiagKind = -1;
3357 if (isa<ParmVarDecl>(D)) {
3358 DiagKind = 0;
3359 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3360 if (VD->getStorageClass() == SC_Register)
3361 DiagKind = 1;
3362 if (VD->isExceptionVariable())
3363 DiagKind = 2;
3364 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3365 if (FD->isBitField())
3366 DiagKind = 3;
3367 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003368 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3369 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003370 << (TmpAttr.isC11() ? ExpectedVariableOrField
3371 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003372 return;
3373 }
3374 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003375 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003376 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003377 return;
3378 }
3379 }
3380
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003381 if (E->isTypeDependent() || E->isValueDependent()) {
3382 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003383 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3384 AA->setPackExpansion(IsPackExpansion);
3385 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003386 return;
3387 }
Michael Hana31f65b2013-02-01 01:19:17 +00003388
Sean Huntcf807c42010-08-18 23:23:40 +00003389 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003390 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003391 ExprResult ICE
3392 = VerifyIntegerConstantExpression(E, &Alignment,
3393 diag::err_aligned_attribute_argument_not_int,
3394 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003395 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003396 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003397
3398 // C++11 [dcl.align]p2:
3399 // -- if the constant expression evaluates to zero, the alignment
3400 // specifier shall have no effect
3401 // C11 6.7.5p6:
3402 // An alignment specification of zero has no effect.
3403 if (!(TmpAttr.isAlignas() && !Alignment) &&
3404 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003405 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3406 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003407 return;
3408 }
Michael Hana31f65b2013-02-01 01:19:17 +00003409
Richard Smithbe507b62013-02-01 08:12:08 +00003410 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003411 // We've already verified it's a power of 2, now let's make sure it's
3412 // 8192 or less.
3413 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003414 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003415 << E->getSourceRange();
3416 return;
3417 }
3418 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003419
Richard Smithf6565a92013-02-22 08:32:16 +00003420 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3421 ICE.take(), SpellingListIndex);
3422 AA->setPackExpansion(IsPackExpansion);
3423 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003424}
3425
Michael Hana31f65b2013-02-01 01:19:17 +00003426void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003427 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003428 // FIXME: Cache the number on the Attr object if non-dependent?
3429 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003430 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3431 SpellingListIndex);
3432 AA->setPackExpansion(IsPackExpansion);
3433 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003434}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003435
Richard Smithbe507b62013-02-01 08:12:08 +00003436void Sema::CheckAlignasUnderalignment(Decl *D) {
3437 assert(D->hasAttrs() && "no attributes on decl");
3438
3439 QualType Ty;
3440 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3441 Ty = VD->getType();
3442 else
3443 Ty = Context.getTagDeclType(cast<TagDecl>(D));
3444 if (Ty->isDependentType())
3445 return;
3446
3447 // C++11 [dcl.align]p5, C11 6.7.5/4:
3448 // The combined effect of all alignment attributes in a declaration shall
3449 // not specify an alignment that is less strict than the alignment that
3450 // would otherwise be required for the entity being declared.
3451 AlignedAttr *AlignasAttr = 0;
3452 unsigned Align = 0;
3453 for (specific_attr_iterator<AlignedAttr>
3454 I = D->specific_attr_begin<AlignedAttr>(),
3455 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3456 if (I->isAlignmentDependent())
3457 return;
3458 if (I->isAlignas())
3459 AlignasAttr = *I;
3460 Align = std::max(Align, I->getAlignment(Context));
3461 }
3462
3463 if (AlignasAttr && Align) {
3464 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3465 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3466 if (NaturalAlign > RequestedAlign)
3467 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3468 << Ty << (unsigned)NaturalAlign.getQuantity();
3469 }
3470}
3471
Chandler Carruthd309c812011-07-01 23:49:16 +00003472/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003473/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003474///
Mike Stumpbf916502009-07-24 19:02:52 +00003475/// Despite what would be logical, the mode attribute is a decl attribute, not a
3476/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3477/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003478static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003479 // This attribute isn't documented, but glibc uses it. It changes
3480 // the width of an int or unsigned int to the specified size.
3481
3482 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003483 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003484 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003485
Chris Lattnerfbf13472008-06-27 22:18:37 +00003486
3487 IdentifierInfo *Name = Attr.getParameterName();
3488 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003489 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003490 return;
3491 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003492
Chris Lattner5f9e2722011-07-23 10:55:15 +00003493 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003494
3495 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003496 if (Str.startswith("__") && Str.endswith("__"))
3497 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003498
3499 unsigned DestWidth = 0;
3500 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003501 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003502 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003503 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003504 switch (Str[0]) {
3505 case 'Q': DestWidth = 8; break;
3506 case 'H': DestWidth = 16; break;
3507 case 'S': DestWidth = 32; break;
3508 case 'D': DestWidth = 64; break;
3509 case 'X': DestWidth = 96; break;
3510 case 'T': DestWidth = 128; break;
3511 }
3512 if (Str[1] == 'F') {
3513 IntegerMode = false;
3514 } else if (Str[1] == 'C') {
3515 IntegerMode = false;
3516 ComplexMode = true;
3517 } else if (Str[1] != 'I') {
3518 DestWidth = 0;
3519 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003520 break;
3521 case 4:
3522 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3523 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003524 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003525 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003526 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003527 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003528 break;
3529 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003530 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003531 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003532 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003533 case 11:
3534 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003535 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003536 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003537 }
3538
3539 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003540 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003541 OldTy = TD->getUnderlyingType();
3542 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3543 OldTy = VD->getType();
3544 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003545 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003546 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003547 return;
3548 }
Eli Friedman73397492009-03-03 06:41:03 +00003549
John McCall183700f2009-09-21 23:43:11 +00003550 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003551 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3552 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003553 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003554 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3555 } else if (ComplexMode) {
3556 if (!OldTy->isComplexType())
3557 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3558 } else {
3559 if (!OldTy->isFloatingType())
3560 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3561 }
3562
Mike Stump390b4cc2009-05-16 07:39:55 +00003563 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3564 // and friends, at least with glibc.
3565 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3566 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003567 // FIXME: Make sure floating-point mappings are accurate
3568 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003569 QualType NewTy;
3570 switch (DestWidth) {
3571 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003572 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003573 return;
3574 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003575 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003576 return;
3577 case 8:
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.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003584 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003585 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003586 break;
3587 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003588 if (!IntegerMode) {
3589 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3590 return;
3591 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003592 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003593 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003594 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003595 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003596 break;
3597 case 32:
3598 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003599 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003600 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003601 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003602 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003603 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003604 break;
3605 case 64:
3606 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003607 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003608 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003609 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003610 NewTy = S.Context.LongTy;
3611 else
3612 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003613 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003614 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003615 NewTy = S.Context.UnsignedLongTy;
3616 else
3617 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003618 break;
Eli Friedman73397492009-03-03 06:41:03 +00003619 case 96:
3620 NewTy = S.Context.LongDoubleTy;
3621 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003622 case 128:
3623 if (!IntegerMode) {
3624 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3625 return;
3626 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003627 if (OldTy->isSignedIntegerType())
3628 NewTy = S.Context.Int128Ty;
3629 else
3630 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003631 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003632 }
3633
Eli Friedman73397492009-03-03 06:41:03 +00003634 if (ComplexMode) {
3635 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003636 }
3637
3638 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003639 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003640 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003641 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003642 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003643 cast<ValueDecl>(D)->setType(NewTy);
3644}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003645
Chandler Carruth1b03c872011-07-02 00:01:44 +00003646static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003647 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003648 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003649 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003650
Nick Lewycky78d1a102012-07-24 01:40:49 +00003651 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3652 if (!VD->hasGlobalStorage())
3653 S.Diag(Attr.getLoc(),
3654 diag::warn_attribute_requires_functions_or_static_globals)
3655 << Attr.getName();
3656 } else if (!isFunctionOrMethod(D)) {
3657 S.Diag(Attr.getLoc(),
3658 diag::warn_attribute_requires_functions_or_static_globals)
3659 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003660 return;
3661 }
Mike Stumpbf916502009-07-24 19:02:52 +00003662
Michael Han51d8c522013-01-24 16:46:58 +00003663 D->addAttr(::new (S.Context)
3664 NoDebugAttr(Attr.getRange(), S.Context,
3665 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003666}
3667
Chandler Carruth1b03c872011-07-02 00:01:44 +00003668static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003669 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003670 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003671 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003672
Mike Stumpbf916502009-07-24 19:02:52 +00003673
Chandler Carruth87c44602011-07-01 23:49:12 +00003674 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003675 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003676 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003677 return;
3678 }
Mike Stumpbf916502009-07-24 19:02:52 +00003679
Michael Han51d8c522013-01-24 16:46:58 +00003680 D->addAttr(::new (S.Context)
3681 NoInlineAttr(Attr.getRange(), S.Context,
3682 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003683}
3684
Chandler Carruth1b03c872011-07-02 00:01:44 +00003685static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3686 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003687 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003688 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003689 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003690
Chris Lattner7255a2d2010-06-22 00:03:40 +00003691
Chandler Carruth87c44602011-07-01 23:49:12 +00003692 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003693 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003694 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003695 return;
3696 }
3697
Michael Han51d8c522013-01-24 16:46:58 +00003698 D->addAttr(::new (S.Context)
3699 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3700 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003701}
3702
Chandler Carruth1b03c872011-07-02 00:01:44 +00003703static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003704 if (S.LangOpts.CUDA) {
3705 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003706 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003707 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3708 return;
3709 }
3710
Chandler Carruth87c44602011-07-01 23:49:12 +00003711 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003712 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003713 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003714 return;
3715 }
3716
Michael Han51d8c522013-01-24 16:46:58 +00003717 D->addAttr(::new (S.Context)
3718 CUDAConstantAttr(Attr.getRange(), S.Context,
3719 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003720 } else {
3721 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3722 }
3723}
3724
Chandler Carruth1b03c872011-07-02 00:01:44 +00003725static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003726 if (S.LangOpts.CUDA) {
3727 // check the attribute arguments.
3728 if (Attr.getNumArgs() != 0) {
3729 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3730 return;
3731 }
3732
Chandler Carruth87c44602011-07-01 23:49:12 +00003733 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003734 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003735 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003736 return;
3737 }
3738
Michael Han51d8c522013-01-24 16:46:58 +00003739 D->addAttr(::new (S.Context)
3740 CUDADeviceAttr(Attr.getRange(), S.Context,
3741 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003742 } else {
3743 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3744 }
3745}
3746
Chandler Carruth1b03c872011-07-02 00:01:44 +00003747static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003748 if (S.LangOpts.CUDA) {
3749 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003750 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003751 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003752
Chandler Carruth87c44602011-07-01 23:49:12 +00003753 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003754 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003755 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003756 return;
3757 }
3758
Chandler Carruth87c44602011-07-01 23:49:12 +00003759 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003760 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003761 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003762 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003763 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3764 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003765 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003766 "void");
3767 } else {
3768 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3769 << FD->getType();
3770 }
3771 return;
3772 }
3773
Michael Han51d8c522013-01-24 16:46:58 +00003774 D->addAttr(::new (S.Context)
3775 CUDAGlobalAttr(Attr.getRange(), S.Context,
3776 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003777 } else {
3778 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3779 }
3780}
3781
Chandler Carruth1b03c872011-07-02 00:01:44 +00003782static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003783 if (S.LangOpts.CUDA) {
3784 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003785 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003786 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003787
Peter Collingbourneced76712010-12-01 03:15:31 +00003788
Chandler Carruth87c44602011-07-01 23:49:12 +00003789 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003790 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003791 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003792 return;
3793 }
3794
Michael Han51d8c522013-01-24 16:46:58 +00003795 D->addAttr(::new (S.Context)
3796 CUDAHostAttr(Attr.getRange(), S.Context,
3797 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003798 } else {
3799 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3800 }
3801}
3802
Chandler Carruth1b03c872011-07-02 00:01:44 +00003803static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003804 if (S.LangOpts.CUDA) {
3805 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003806 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003807 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003808
Chandler Carruth87c44602011-07-01 23:49:12 +00003809 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003810 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003811 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003812 return;
3813 }
3814
Michael Han51d8c522013-01-24 16:46:58 +00003815 D->addAttr(::new (S.Context)
3816 CUDASharedAttr(Attr.getRange(), S.Context,
3817 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003818 } else {
3819 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3820 }
3821}
3822
Chandler Carruth1b03c872011-07-02 00:01:44 +00003823static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003824 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003825 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003826 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003827
Chandler Carruth87c44602011-07-01 23:49:12 +00003828 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003829 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003830 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003831 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003832 return;
3833 }
Mike Stumpbf916502009-07-24 19:02:52 +00003834
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003835 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003836 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003837 return;
3838 }
Mike Stumpbf916502009-07-24 19:02:52 +00003839
Michael Han51d8c522013-01-24 16:46:58 +00003840 D->addAttr(::new (S.Context)
3841 GNUInlineAttr(Attr.getRange(), S.Context,
3842 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003843}
3844
Chandler Carruth1b03c872011-07-02 00:01:44 +00003845static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003846 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003847
Aaron Ballmanfff32482012-12-09 17:45:41 +00003848 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003849 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003850 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3851 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003852 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003853 return;
3854
Chandler Carruth87c44602011-07-01 23:49:12 +00003855 if (!isa<ObjCMethodDecl>(D)) {
3856 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3857 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003858 return;
3859 }
3860
Chandler Carruth87c44602011-07-01 23:49:12 +00003861 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003862 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003863 D->addAttr(::new (S.Context)
3864 FastCallAttr(Attr.getRange(), S.Context,
3865 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003866 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003867 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003868 D->addAttr(::new (S.Context)
3869 StdCallAttr(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_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003873 D->addAttr(::new (S.Context)
3874 ThisCallAttr(Attr.getRange(), S.Context,
3875 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003876 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003877 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003878 D->addAttr(::new (S.Context)
3879 CDeclAttr(Attr.getRange(), S.Context,
3880 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003881 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003882 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003883 D->addAttr(::new (S.Context)
3884 PascalAttr(Attr.getRange(), S.Context,
3885 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003886 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003887 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003888 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003889 switch (CC) {
3890 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003891 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003892 break;
3893 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003894 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003895 break;
3896 default:
3897 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003898 }
3899
Michael Han51d8c522013-01-24 16:46:58 +00003900 D->addAttr(::new (S.Context)
3901 PcsAttr(Attr.getRange(), S.Context, PCS,
3902 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003903 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003904 }
Derek Schuff263366f2012-10-16 22:30:41 +00003905 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003906 D->addAttr(::new (S.Context)
3907 PnaclCallAttr(Attr.getRange(), S.Context,
3908 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003909 return;
Guy Benyei38980082012-12-25 08:53:55 +00003910 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003911 D->addAttr(::new (S.Context)
3912 IntelOclBiccAttr(Attr.getRange(), S.Context,
3913 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003914 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003915
Abramo Bagnarae215f722010-04-30 13:10:51 +00003916 default:
3917 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003918 }
3919}
3920
Chandler Carruth1b03c872011-07-02 00:01:44 +00003921static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003922 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003923 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003924}
3925
Aaron Ballmanfff32482012-12-09 17:45:41 +00003926bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3927 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003928 if (attr.isInvalid())
3929 return true;
3930
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003931 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3932 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
3933 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00003934 attr.setInvalid();
3935 return true;
3936 }
3937
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003938 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3939 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003940 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003941 case AttributeList::AT_CDecl: CC = CC_C; break;
3942 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3943 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3944 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3945 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3946 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003947 Expr *Arg = attr.getArg(0);
3948 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003949 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003950 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3951 << "pcs" << 1;
3952 attr.setInvalid();
3953 return true;
3954 }
3955
Chris Lattner5f9e2722011-07-23 10:55:15 +00003956 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003957 if (StrRef == "aapcs") {
3958 CC = CC_AAPCS;
3959 break;
3960 } else if (StrRef == "aapcs-vfp") {
3961 CC = CC_AAPCS_VFP;
3962 break;
3963 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003964
3965 attr.setInvalid();
3966 Diag(attr.getLoc(), diag::err_invalid_pcs);
3967 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003968 }
Derek Schuff263366f2012-10-16 22:30:41 +00003969 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003970 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003971 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003972 }
3973
Aaron Ballman82bfa192012-10-02 14:26:08 +00003974 const TargetInfo &TI = Context.getTargetInfo();
3975 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3976 if (A == TargetInfo::CCCR_Warning) {
3977 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003978
3979 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3980 if (FD)
3981 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3982 TargetInfo::CCMT_NonMember;
3983 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003984 }
3985
John McCall711c52b2011-01-05 12:14:39 +00003986 return false;
3987}
3988
Chandler Carruth1b03c872011-07-02 00:01:44 +00003989static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003990 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003991
3992 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003993 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003994 return;
3995
Chandler Carruth87c44602011-07-01 23:49:12 +00003996 if (!isa<ObjCMethodDecl>(D)) {
3997 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3998 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003999 return;
4000 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004001
Michael Han51d8c522013-01-24 16:46:58 +00004002 D->addAttr(::new (S.Context)
4003 RegparmAttr(Attr.getRange(), S.Context, numParams,
4004 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004005}
4006
4007/// Checks a regparm attribute, returning true if it is ill-formed and
4008/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004009bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4010 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004011 return true;
4012
Chandler Carruth87c44602011-07-01 23:49:12 +00004013 if (Attr.getNumArgs() != 1) {
4014 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
4015 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004016 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004017 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004018
Chandler Carruth87c44602011-07-01 23:49:12 +00004019 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004020 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004021 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004022 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004023 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004024 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004025 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004026 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004027 }
4028
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004029 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004030 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004031 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004032 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004033 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004034 }
4035
John McCall711c52b2011-01-05 12:14:39 +00004036 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004037 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004038 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004039 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004040 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004041 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004042 }
4043
John McCall711c52b2011-01-05 12:14:39 +00004044 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004045}
4046
Chandler Carruth1b03c872011-07-02 00:01:44 +00004047static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004048 if (S.LangOpts.CUDA) {
4049 // check the attribute arguments.
4050 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004051 // FIXME: 0 is not okay.
4052 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004053 return;
4054 }
4055
Chandler Carruth87c44602011-07-01 23:49:12 +00004056 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004057 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004058 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004059 return;
4060 }
4061
4062 Expr *MaxThreadsExpr = Attr.getArg(0);
4063 llvm::APSInt MaxThreads(32);
4064 if (MaxThreadsExpr->isTypeDependent() ||
4065 MaxThreadsExpr->isValueDependent() ||
4066 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
4067 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4068 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
4069 return;
4070 }
4071
4072 llvm::APSInt MinBlocks(32);
4073 if (Attr.getNumArgs() > 1) {
4074 Expr *MinBlocksExpr = Attr.getArg(1);
4075 if (MinBlocksExpr->isTypeDependent() ||
4076 MinBlocksExpr->isValueDependent() ||
4077 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
4078 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4079 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
4080 return;
4081 }
4082 }
4083
Michael Han51d8c522013-01-24 16:46:58 +00004084 D->addAttr(::new (S.Context)
4085 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4086 MaxThreads.getZExtValue(),
4087 MinBlocks.getZExtValue(),
4088 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004089 } else {
4090 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4091 }
4092}
4093
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004094static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4095 const AttributeList &Attr) {
4096 StringRef AttrName = Attr.getName()->getName();
4097 if (!Attr.getParameterName()) {
4098 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4099 << Attr.getName() << /* arg num = */ 1;
4100 return;
4101 }
4102
4103 if (Attr.getNumArgs() != 2) {
4104 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4105 << /* required args = */ 3;
4106 return;
4107 }
4108
4109 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4110
4111 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4112 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4113 << Attr.getName() << ExpectedFunctionOrMethod;
4114 return;
4115 }
4116
4117 uint64_t ArgumentIdx;
4118 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4119 Attr.getLoc(), 2,
4120 Attr.getArg(0), ArgumentIdx))
4121 return;
4122
4123 uint64_t TypeTagIdx;
4124 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4125 Attr.getLoc(), 3,
4126 Attr.getArg(1), TypeTagIdx))
4127 return;
4128
4129 bool IsPointer = (AttrName == "pointer_with_type_tag");
4130 if (IsPointer) {
4131 // Ensure that buffer has a pointer type.
4132 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4133 if (!BufferTy->isPointerType()) {
4134 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
4135 << AttrName;
4136 }
4137 }
4138
Michael Han51d8c522013-01-24 16:46:58 +00004139 D->addAttr(::new (S.Context)
4140 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4141 ArgumentIdx, TypeTagIdx, IsPointer,
4142 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004143}
4144
4145static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4146 const AttributeList &Attr) {
4147 IdentifierInfo *PointerKind = Attr.getParameterName();
4148 if (!PointerKind) {
4149 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4150 << "type_tag_for_datatype" << 1;
4151 return;
4152 }
4153
4154 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4155
Michael Han51d8c522013-01-24 16:46:58 +00004156 D->addAttr(::new (S.Context)
4157 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4158 MatchingCType,
4159 Attr.getLayoutCompatible(),
4160 Attr.getMustBeNull(),
4161 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004162}
4163
Chris Lattner0744e5f2008-06-29 00:23:49 +00004164//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004165// Checker-specific attribute handlers.
4166//===----------------------------------------------------------------------===//
4167
John McCallc7ad3812011-01-25 03:31:58 +00004168static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004169 return type->isDependentType() ||
4170 type->isObjCObjectPointerType() ||
4171 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004172}
4173static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004174 return type->isDependentType() ||
4175 type->isPointerType() ||
4176 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004177}
4178
Chandler Carruth1b03c872011-07-02 00:01:44 +00004179static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004180 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004181 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004182 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004183 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004184 return;
4185 }
4186
4187 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004188 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004189 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4190 cf = false;
4191 } else {
4192 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4193 cf = true;
4194 }
4195
4196 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004197 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004198 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004199 return;
4200 }
4201
4202 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004203 param->addAttr(::new (S.Context)
4204 CFConsumedAttr(Attr.getRange(), S.Context,
4205 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004206 else
Michael Han51d8c522013-01-24 16:46:58 +00004207 param->addAttr(::new (S.Context)
4208 NSConsumedAttr(Attr.getRange(), S.Context,
4209 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004210}
4211
Chandler Carruth1b03c872011-07-02 00:01:44 +00004212static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4213 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004214 if (!isa<ObjCMethodDecl>(D)) {
4215 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004216 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004217 return;
4218 }
4219
Michael Han51d8c522013-01-24 16:46:58 +00004220 D->addAttr(::new (S.Context)
4221 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4222 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004223}
4224
Chandler Carruth1b03c872011-07-02 00:01:44 +00004225static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4226 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004227
John McCallc7ad3812011-01-25 03:31:58 +00004228 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004229
Chandler Carruth87c44602011-07-01 23:49:12 +00004230 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004231 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004232 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004233 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004234 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004235 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4236 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004237 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004238 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004239 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004240 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004241 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004242 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004243 return;
4244 }
Mike Stumpbf916502009-07-24 19:02:52 +00004245
John McCallc7ad3812011-01-25 03:31:58 +00004246 bool typeOK;
4247 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004248 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004249 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004250 case AttributeList::AT_NSReturnsAutoreleased:
4251 case AttributeList::AT_NSReturnsRetained:
4252 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004253 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4254 cf = false;
4255 break;
4256
Sean Hunt8e083e72012-06-19 23:57:03 +00004257 case AttributeList::AT_CFReturnsRetained:
4258 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004259 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4260 cf = true;
4261 break;
4262 }
4263
4264 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004265 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004266 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004267 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004268 }
Mike Stumpbf916502009-07-24 19:02:52 +00004269
Chandler Carruth87c44602011-07-01 23:49:12 +00004270 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004271 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004272 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004273 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004274 D->addAttr(::new (S.Context)
4275 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4276 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004277 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004278 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004279 D->addAttr(::new (S.Context)
4280 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4281 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004282 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004283 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004284 D->addAttr(::new (S.Context)
4285 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4286 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004287 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004288 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004289 D->addAttr(::new (S.Context)
4290 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4291 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004292 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004293 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004294 D->addAttr(::new (S.Context)
4295 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4296 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004297 return;
4298 };
4299}
4300
John McCalldc7c5ad2011-07-22 08:53:00 +00004301static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4302 const AttributeList &attr) {
4303 SourceLocation loc = attr.getLoc();
4304
4305 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4306
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004307 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004308 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004309 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004310 return;
4311 }
4312
4313 // Check that the method returns a normal pointer.
4314 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004315
4316 if (!resultType->isReferenceType() &&
4317 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004318 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4319 << SourceRange(loc)
4320 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4321
4322 // Drop the attribute.
4323 return;
4324 }
4325
Michael Han51d8c522013-01-24 16:46:58 +00004326 method->addAttr(::new (S.Context)
4327 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4328 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004329}
4330
Fariborz Jahanian84101132012-09-07 23:46:23 +00004331static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4332 const AttributeList &attr) {
4333 SourceLocation loc = attr.getLoc();
4334 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4335
4336 if (!method) {
4337 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4338 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4339 return;
4340 }
4341 DeclContext *DC = method->getDeclContext();
4342 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4343 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4344 << attr.getName() << 0;
4345 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4346 return;
4347 }
4348 if (method->getMethodFamily() == OMF_dealloc) {
4349 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4350 << attr.getName() << 1;
4351 return;
4352 }
4353
Michael Han51d8c522013-01-24 16:46:58 +00004354 method->addAttr(::new (S.Context)
4355 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4356 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004357}
4358
John McCall8dfac0b2011-09-30 05:12:12 +00004359/// Handle cf_audited_transfer and cf_unknown_transfer.
4360static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4361 if (!isa<FunctionDecl>(D)) {
4362 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004363 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004364 return;
4365 }
4366
Sean Hunt8e083e72012-06-19 23:57:03 +00004367 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004368
4369 // Check whether there's a conflicting attribute already present.
4370 Attr *Existing;
4371 if (IsAudited) {
4372 Existing = D->getAttr<CFUnknownTransferAttr>();
4373 } else {
4374 Existing = D->getAttr<CFAuditedTransferAttr>();
4375 }
4376 if (Existing) {
4377 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4378 << A.getName()
4379 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4380 << A.getRange() << Existing->getRange();
4381 return;
4382 }
4383
4384 // All clear; add the attribute.
4385 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004386 D->addAttr(::new (S.Context)
4387 CFAuditedTransferAttr(A.getRange(), S.Context,
4388 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004389 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004390 D->addAttr(::new (S.Context)
4391 CFUnknownTransferAttr(A.getRange(), S.Context,
4392 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004393 }
4394}
4395
John McCallfe98da02011-09-29 07:17:38 +00004396static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4397 const AttributeList &Attr) {
4398 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4399 if (!RD || RD->isUnion()) {
4400 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004401 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004402 }
4403
4404 IdentifierInfo *ParmName = Attr.getParameterName();
4405
4406 // In Objective-C, verify that the type names an Objective-C type.
4407 // We don't want to check this outside of ObjC because people sometimes
4408 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004409 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004410 // Check for an existing type with this name.
4411 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4412 Sema::LookupOrdinaryName);
4413 if (S.LookupName(R, Sc)) {
4414 NamedDecl *Target = R.getFoundDecl();
4415 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4416 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4417 S.Diag(Target->getLocStart(), diag::note_declared_at);
4418 }
4419 }
4420 }
4421
Michael Han51d8c522013-01-24 16:46:58 +00004422 D->addAttr(::new (S.Context)
4423 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4424 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004425}
4426
Chandler Carruth1b03c872011-07-02 00:01:44 +00004427static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4428 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004429 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004430
Chandler Carruth87c44602011-07-01 23:49:12 +00004431 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004432 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004433}
4434
Chandler Carruth1b03c872011-07-02 00:01:44 +00004435static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4436 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004437 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004438 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004439 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004440 return;
4441 }
4442
Chandler Carruth87c44602011-07-01 23:49:12 +00004443 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004444 QualType type = vd->getType();
4445
4446 if (!type->isDependentType() &&
4447 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004448 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004449 << type;
4450 return;
4451 }
4452
4453 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4454
4455 // If we have no lifetime yet, check the lifetime we're presumably
4456 // going to infer.
4457 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4458 lifetime = type->getObjCARCImplicitLifetime();
4459
4460 switch (lifetime) {
4461 case Qualifiers::OCL_None:
4462 assert(type->isDependentType() &&
4463 "didn't infer lifetime for non-dependent type?");
4464 break;
4465
4466 case Qualifiers::OCL_Weak: // meaningful
4467 case Qualifiers::OCL_Strong: // meaningful
4468 break;
4469
4470 case Qualifiers::OCL_ExplicitNone:
4471 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004472 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004473 << (lifetime == Qualifiers::OCL_Autoreleasing);
4474 break;
4475 }
4476
Chandler Carruth87c44602011-07-01 23:49:12 +00004477 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004478 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4479 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004480}
4481
Francois Pichet11542142010-12-19 06:50:37 +00004482//===----------------------------------------------------------------------===//
4483// Microsoft specific attribute handlers.
4484//===----------------------------------------------------------------------===//
4485
Chandler Carruth1b03c872011-07-02 00:01:44 +00004486static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004487 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00004488 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00004489 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00004490 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004491
Francois Pichet11542142010-12-19 06:50:37 +00004492 Expr *Arg = Attr.getArg(0);
4493 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004494 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004495 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
4496 << "uuid" << 1;
4497 return;
4498 }
4499
Chris Lattner5f9e2722011-07-23 10:55:15 +00004500 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004501
4502 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4503 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004504
Francois Pichetd3d3be92010-12-20 01:41:49 +00004505 // Validate GUID length.
4506 if (IsCurly && StrRef.size() != 38) {
4507 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4508 return;
4509 }
4510 if (!IsCurly && StrRef.size() != 36) {
4511 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4512 return;
4513 }
4514
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004515 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00004516 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00004517 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00004518 if (IsCurly) // Skip the optional '{'
4519 ++I;
4520
4521 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004522 if (i == 8 || i == 13 || i == 18 || i == 23) {
4523 if (*I != '-') {
4524 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4525 return;
4526 }
Jordan Rose3f6f51e2013-02-08 22:30:41 +00004527 } else if (!isHexDigit(*I)) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004528 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4529 return;
4530 }
4531 I++;
4532 }
Francois Pichet11542142010-12-19 06:50:37 +00004533
Michael Han51d8c522013-01-24 16:46:58 +00004534 D->addAttr(::new (S.Context)
4535 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4536 Attr.getAttributeSpellingListIndex()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00004537 } else
Francois Pichet11542142010-12-19 06:50:37 +00004538 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00004539}
4540
John McCallc052dbb2012-05-22 21:28:12 +00004541static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nico Weber7b89ab72012-11-07 21:31:36 +00004542 if (!S.LangOpts.MicrosoftExt) {
John McCallc052dbb2012-05-22 21:28:12 +00004543 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Nico Weber7b89ab72012-11-07 21:31:36 +00004544 return;
4545 }
4546
4547 AttributeList::Kind Kind = Attr.getKind();
4548 if (Kind == AttributeList::AT_SingleInheritance)
4549 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004550 ::new (S.Context)
4551 SingleInheritanceAttr(Attr.getRange(), S.Context,
4552 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004553 else if (Kind == AttributeList::AT_MultipleInheritance)
4554 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004555 ::new (S.Context)
4556 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4557 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004558 else if (Kind == AttributeList::AT_VirtualInheritance)
4559 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004560 ::new (S.Context)
4561 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4562 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004563}
4564
4565static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4566 if (S.LangOpts.MicrosoftExt) {
4567 AttributeList::Kind Kind = Attr.getKind();
Sean Hunt8e083e72012-06-19 23:57:03 +00004568 if (Kind == AttributeList::AT_Ptr32)
John McCallc052dbb2012-05-22 21:28:12 +00004569 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004570 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context,
4571 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004572 else if (Kind == AttributeList::AT_Ptr64)
John McCallc052dbb2012-05-22 21:28:12 +00004573 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004574 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context,
4575 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004576 else if (Kind == AttributeList::AT_Win64)
John McCallc052dbb2012-05-22 21:28:12 +00004577 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004578 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4579 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004580 } else
4581 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4582}
4583
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004584static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4585 if (S.LangOpts.MicrosoftExt)
Michael Han51d8c522013-01-24 16:46:58 +00004586 D->addAttr(::new (S.Context)
4587 ForceInlineAttr(Attr.getRange(), S.Context,
4588 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004589 else
4590 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4591}
4592
Ted Kremenekb71368d2009-05-09 02:44:38 +00004593//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004594// Top Level Sema Entry Points
4595//===----------------------------------------------------------------------===//
4596
Chandler Carruth1b03c872011-07-02 00:01:44 +00004597static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4598 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004599 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004600 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4601 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4602 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004603 default:
4604 break;
4605 }
4606}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004607
Chandler Carruth1b03c872011-07-02 00:01:44 +00004608static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4609 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004610 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004611 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4612 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4613 case AttributeList::AT_IBOutletCollection:
4614 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004615 case AttributeList::AT_AddressSpace:
4616 case AttributeList::AT_OpenCLImageAccess:
4617 case AttributeList::AT_ObjCGC:
4618 case AttributeList::AT_VectorSize:
4619 case AttributeList::AT_NeonVectorType:
4620 case AttributeList::AT_NeonPolyVectorType:
Mike Stumpbf916502009-07-24 19:02:52 +00004621 // Ignore these, these are type attributes, handled by
4622 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004623 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004624 case AttributeList::AT_CUDADevice:
4625 case AttributeList::AT_CUDAHost:
4626 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004627 // Ignore, this is a non-inheritable attribute, handled
4628 // by ProcessNonInheritableDeclAttr.
4629 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004630 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4631 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4632 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4633 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004634 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004635 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004636 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004637 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004638 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4639 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4640 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004641 handleDependencyAttr(S, scope, D, Attr);
4642 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004643 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4644 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4645 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004646 case AttributeList::AT_CXX11NoReturn:
4647 handleCXX11NoReturnAttr(S, D, Attr);
4648 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004649 case AttributeList::AT_Deprecated:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004650 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
4651 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004652 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4653 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004654 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004655 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004656 case AttributeList::AT_MinSize:
4657 handleMinSizeAttr(S, D, Attr);
4658 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004659 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4660 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4661 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4662 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4663 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004664 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004665 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004666 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4667 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4668 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4669 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4670 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004671 case AttributeList::AT_ownership_returns:
4672 case AttributeList::AT_ownership_takes:
4673 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004674 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004675 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4676 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4677 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4678 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4679 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4680 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4681 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004682
Sean Hunt8e083e72012-06-19 23:57:03 +00004683 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004684 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004685 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004686 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004687
Sean Hunt8e083e72012-06-19 23:57:03 +00004688 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004689 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4690
Fariborz Jahanian84101132012-09-07 23:46:23 +00004691 case AttributeList::AT_ObjCRequiresSuper:
4692 handleObjCRequiresSuperAttr(S, D, Attr); break;
4693
Sean Hunt8e083e72012-06-19 23:57:03 +00004694 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004695 handleNSBridgedAttr(S, scope, D, Attr); break;
4696
Sean Hunt8e083e72012-06-19 23:57:03 +00004697 case AttributeList::AT_CFAuditedTransfer:
4698 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004699 handleCFTransferAttr(S, D, Attr); break;
4700
Ted Kremenekb71368d2009-05-09 02:44:38 +00004701 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004702 case AttributeList::AT_CFConsumed:
4703 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4704 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004705 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004706
Sean Hunt8e083e72012-06-19 23:57:03 +00004707 case AttributeList::AT_NSReturnsAutoreleased:
4708 case AttributeList::AT_NSReturnsNotRetained:
4709 case AttributeList::AT_CFReturnsNotRetained:
4710 case AttributeList::AT_NSReturnsRetained:
4711 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004712 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004713
Tanya Lattner0df579e2012-07-09 22:06:01 +00004714 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004715 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004716 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004717
Sean Hunt8e083e72012-06-19 23:57:03 +00004718 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004719 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004720
Sean Hunt8e083e72012-06-19 23:57:03 +00004721 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4722 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4723 case AttributeList::AT_Unavailable:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004724 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4725 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004726 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004727 handleArcWeakrefUnavailableAttr (S, D, Attr);
4728 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004729 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004730 handleObjCRootClassAttr(S, D, Attr);
4731 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004732 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004733 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004734 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004735 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4736 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004737 handleReturnsTwiceAttr(S, D, Attr);
4738 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004739 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004740 case AttributeList::AT_Visibility:
4741 handleVisibilityAttr(S, D, Attr, false);
4742 break;
4743 case AttributeList::AT_TypeVisibility:
4744 handleVisibilityAttr(S, D, Attr, true);
4745 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004746 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004747 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004748 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4749 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4750 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4751 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004752 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004753 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004754 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004755 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004756 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004757 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004758 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004759 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004760 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4761 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4762 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4763 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4764 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4765 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4766 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4767 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4768 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004769 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004770 // Just ignore
4771 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004772 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004773 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004774 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004775 case AttributeList::AT_StdCall:
4776 case AttributeList::AT_CDecl:
4777 case AttributeList::AT_FastCall:
4778 case AttributeList::AT_ThisCall:
4779 case AttributeList::AT_Pascal:
4780 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004781 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004782 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004783 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004784 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004785 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004786 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004787 break;
John McCallc052dbb2012-05-22 21:28:12 +00004788
4789 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004790 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004791 handleMsStructAttr(S, D, Attr);
4792 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004793 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004794 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004795 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004796 case AttributeList::AT_SingleInheritance:
4797 case AttributeList::AT_MultipleInheritance:
4798 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004799 handleInheritanceAttr(S, D, Attr);
4800 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004801 case AttributeList::AT_Win64:
4802 case AttributeList::AT_Ptr32:
4803 case AttributeList::AT_Ptr64:
John McCallc052dbb2012-05-22 21:28:12 +00004804 handlePortabilityAttr(S, D, Attr);
4805 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004806 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004807 handleForceInlineAttr(S, D, Attr);
4808 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004809
4810 // Thread safety attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004811 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004812 handleGuardedVarAttr(S, D, Attr);
4813 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004814 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004815 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004816 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004817 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004818 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004819 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004820 case AttributeList::AT_NoAddressSafetyAnalysis:
Kostya Serebryany71efba02012-01-24 19:25:38 +00004821 handleNoAddressSafetyAttr(S, D, Attr);
4822 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004823 case AttributeList::AT_NoThreadSafetyAnalysis:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004824 handleNoThreadSafetyAttr(S, D, Attr);
4825 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004826 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004827 handleLockableAttr(S, D, Attr);
4828 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004829 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004830 handleGuardedByAttr(S, D, Attr);
4831 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004832 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004833 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004834 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004835 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004836 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004837 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004838 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004839 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004840 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004841 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004842 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004843 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004844 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004845 handleLockReturnedAttr(S, D, Attr);
4846 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004847 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004848 handleLocksExcludedAttr(S, D, Attr);
4849 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004850 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004851 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004852 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004853 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004854 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004855 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004856 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004857 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004858 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004859 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004860 handleUnlockFunAttr(S, D, Attr);
4861 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004862 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004863 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004864 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004865 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004866 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004867 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004868
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004869 // Type safety attributes.
4870 case AttributeList::AT_ArgumentWithTypeTag:
4871 handleArgumentWithTypeTagAttr(S, D, Attr);
4872 break;
4873 case AttributeList::AT_TypeTagForDatatype:
4874 handleTypeTagForDatatypeAttr(S, D, Attr);
4875 break;
4876
Chris Lattner803d0802008-06-29 00:43:07 +00004877 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004878 // Ask target about the attribute.
4879 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4880 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004881 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4882 diag::warn_unhandled_ms_attribute_ignored :
4883 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004884 break;
4885 }
4886}
4887
Peter Collingbourne60700392011-01-21 02:08:45 +00004888/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4889/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004890/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004891static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4892 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00004893 bool NonInheritable, bool Inheritable,
4894 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004895 if (Attr.isInvalid())
4896 return;
4897
Richard Smithcd8ab512013-01-17 01:30:42 +00004898 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4899 // instead.
4900 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4901 return;
4902
Peter Collingbourne60700392011-01-21 02:08:45 +00004903 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004904 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004905
4906 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004907 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004908}
4909
Chris Lattner803d0802008-06-29 00:43:07 +00004910/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4911/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004912void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004913 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004914 bool NonInheritable, bool Inheritable,
4915 bool IncludeCXX11Attributes) {
4916 for (const AttributeList* l = AttrList; l; l = l->getNext())
4917 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
4918 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004919
4920 // GCC accepts
4921 // static int a9 __attribute__((weakref));
4922 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004923 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004924 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004925 cast<NamedDecl>(D)->getNameAsString();
4926 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004927 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004928 }
4929}
4930
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004931// Annotation attributes are the only attributes allowed after an access
4932// specifier.
4933bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4934 const AttributeList *AttrList) {
4935 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004936 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004937 handleAnnotateAttr(*this, ASDecl, *l);
4938 } else {
4939 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4940 return true;
4941 }
4942 }
4943
4944 return false;
4945}
4946
John McCalle82247a2011-10-01 05:17:03 +00004947/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4948/// contains any decl attributes that we should warn about.
4949static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4950 for ( ; A; A = A->getNext()) {
4951 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004952 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004953 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4954
4955 if (A->getKind() == AttributeList::UnknownAttribute) {
4956 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4957 << A->getName() << A->getRange();
4958 } else {
4959 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4960 << A->getName() << A->getRange();
4961 }
4962 }
4963}
4964
4965/// checkUnusedDeclAttributes - Given a declarator which is not being
4966/// used to build a declaration, complain about any decl attributes
4967/// which might be lying around on it.
4968void Sema::checkUnusedDeclAttributes(Declarator &D) {
4969 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4970 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4971 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4972 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4973}
4974
Ryan Flynne25ff832009-07-30 03:15:39 +00004975/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004976/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004977NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4978 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004979 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004980 NamedDecl *NewD = 0;
4981 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004982 FunctionDecl *NewFD;
4983 // FIXME: Missing call to CheckFunctionDeclaration().
4984 // FIXME: Mangling?
4985 // FIXME: Is the qualifier info correct?
4986 // FIXME: Is the DeclContext correct?
4987 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4988 Loc, Loc, DeclarationName(II),
4989 FD->getType(), FD->getTypeSourceInfo(),
4990 SC_None, SC_None,
4991 false/*isInlineSpecified*/,
4992 FD->hasPrototype(),
4993 false/*isConstexprSpecified*/);
4994 NewD = NewFD;
4995
4996 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004997 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004998
4999 // Fake up parameter variables; they are declared as if this were
5000 // a typedef.
5001 QualType FDTy = FD->getType();
5002 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5003 SmallVector<ParmVarDecl*, 16> Params;
5004 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5005 AE = FT->arg_type_end(); AI != AE; ++AI) {
5006 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5007 Param->setScopeInfo(0, Params.size());
5008 Params.push_back(Param);
5009 }
David Blaikie4278c652011-09-21 18:16:56 +00005010 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005011 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005012 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5013 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005014 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005015 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00005016 VD->getStorageClass(),
5017 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00005018 if (VD->getQualifier()) {
5019 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005020 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005021 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005022 }
5023 return NewD;
5024}
5025
James Dennett1dfbd922012-06-14 21:40:34 +00005026/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005027/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005028void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005029 if (W.getUsed()) return; // only do this once
5030 W.setUsed(true);
5031 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5032 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005033 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005034 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5035 NDId->getName()));
5036 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005037 WeakTopLevelDecl.push_back(NewD);
5038 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5039 // to insert Decl at TU scope, sorry.
5040 DeclContext *SavedContext = CurContext;
5041 CurContext = Context.getTranslationUnitDecl();
5042 PushOnScopeChains(NewD, S);
5043 CurContext = SavedContext;
5044 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005045 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005046 }
5047}
5048
Chris Lattner0744e5f2008-06-29 00:23:49 +00005049/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5050/// it, apply them to D. This is a bit tricky because PD can have attributes
5051/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005052void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5053 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00005054 // It's valid to "forward-declare" #pragma weak, in which case we
5055 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00005056 if (Inheritable) {
5057 LoadExternalWeakUndeclaredIdentifiers();
5058 if (!WeakUndeclaredIdentifiers.empty()) {
5059 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
5060 if (IdentifierInfo *Id = ND->getIdentifier()) {
5061 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5062 = WeakUndeclaredIdentifiers.find(Id);
5063 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
5064 WeakInfo W = I->second;
5065 DeclApplyPragmaWeak(S, ND, W);
5066 WeakUndeclaredIdentifiers[Id] = W;
5067 }
John McCalld4aff0e2010-10-27 00:59:00 +00005068 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005069 }
5070 }
5071 }
5072
Chris Lattner0744e5f2008-06-29 00:23:49 +00005073 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005074 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005075 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005076
Chris Lattner0744e5f2008-06-29 00:23:49 +00005077 // Walk the declarator structure, applying decl attributes that were in a type
5078 // position to the decl itself. This handles cases like:
5079 // int *__attr__(x)** D;
5080 // when X is a decl attribute.
5081 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5082 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005083 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5084 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005085
Chris Lattner0744e5f2008-06-29 00:23:49 +00005086 // Finally, apply any attributes on the decl itself.
5087 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005088 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005089}
John McCall54abf7d2009-11-04 02:18:39 +00005090
John McCallf85e1932011-06-15 23:02:42 +00005091/// Is the given declaration allowed to use a forbidden type?
5092static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5093 // Private ivars are always okay. Unfortunately, people don't
5094 // always properly make their ivars private, even in system headers.
5095 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005096 // Function declarations in sys headers will be marked unavailable.
5097 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5098 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005099 return false;
5100
5101 // Require it to be declared in a system header.
5102 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5103}
5104
5105/// Handle a delayed forbidden-type diagnostic.
5106static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5107 Decl *decl) {
5108 if (decl && isForbiddenTypeAllowed(S, decl)) {
5109 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5110 "this system declaration uses an unsupported type"));
5111 return;
5112 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005113 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005114 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005115 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005116 // kind of forbidden type messages on unavailable functions.
5117 if (FD->hasAttr<UnavailableAttr>() &&
5118 diag.getForbiddenTypeDiagnostic() ==
5119 diag::err_arc_array_param_no_ownership) {
5120 diag.Triggered = true;
5121 return;
5122 }
5123 }
John McCallf85e1932011-06-15 23:02:42 +00005124
5125 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5126 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5127 diag.Triggered = true;
5128}
5129
John McCall92576642012-05-07 06:16:41 +00005130void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5131 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005132 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005133 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005134
John McCall92576642012-05-07 06:16:41 +00005135 // When delaying diagnostics to run in the context of a parsed
5136 // declaration, we only want to actually emit anything if parsing
5137 // succeeds.
5138 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005139
John McCall92576642012-05-07 06:16:41 +00005140 // We emit all the active diagnostics in this pool or any of its
5141 // parents. In general, we'll get one pool for the decl spec
5142 // and a child pool for each declarator; in a decl group like:
5143 // deprecated_typedef foo, *bar, baz();
5144 // only the declarator pops will be passed decls. This is correct;
5145 // we really do need to consider delayed diagnostics from the decl spec
5146 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005147 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005148 do {
John McCall13489672012-05-07 06:16:58 +00005149 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005150 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5151 // This const_cast is a bit lame. Really, Triggered should be mutable.
5152 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005153 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005154 continue;
5155
John McCalleee1d542011-02-14 07:13:47 +00005156 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005157 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005158 // Don't bother giving deprecation diagnostics if the decl is invalid.
5159 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005160 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005161 break;
5162
5163 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005164 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005165 break;
John McCallf85e1932011-06-15 23:02:42 +00005166
5167 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005168 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005169 break;
John McCall2f514482010-01-27 03:50:35 +00005170 }
5171 }
John McCall92576642012-05-07 06:16:41 +00005172 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005173}
5174
John McCall13489672012-05-07 06:16:58 +00005175/// Given a set of delayed diagnostics, re-emit them as if they had
5176/// been delayed in the current context instead of in the given pool.
5177/// Essentially, this just moves them to the current pool.
5178void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5179 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5180 assert(curPool && "re-emitting in undelayed context not supported");
5181 curPool->steal(pool);
5182}
5183
John McCall54abf7d2009-11-04 02:18:39 +00005184static bool isDeclDeprecated(Decl *D) {
5185 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005186 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005187 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005188 // A category implicitly has the availability of the interface.
5189 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5190 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005191 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5192 return false;
5193}
5194
Eli Friedmanc3b23082012-08-08 21:52:41 +00005195static void
5196DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5197 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005198 const ObjCInterfaceDecl *UnknownObjCClass,
5199 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005200 DeclarationName Name = D->getDeclName();
5201 if (!Message.empty()) {
5202 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5203 S.Diag(D->getLocation(),
5204 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5205 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005206 if (ObjCPropery)
5207 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5208 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005209 } else if (!UnknownObjCClass) {
5210 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5211 S.Diag(D->getLocation(),
5212 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5213 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005214 if (ObjCPropery)
5215 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5216 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005217 } else {
5218 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5219 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5220 }
5221}
5222
John McCall9c3087b2010-08-26 02:13:20 +00005223void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005224 Decl *Ctx) {
5225 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005226 return;
5227
John McCall2f514482010-01-27 03:50:35 +00005228 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005229 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5230 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005231 DD.getUnknownObjCClass(),
5232 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005233}
5234
Chris Lattner5f9e2722011-07-23 10:55:15 +00005235void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005236 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005237 const ObjCInterfaceDecl *UnknownObjCClass,
5238 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005239 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005240 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005241 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5242 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005243 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005244 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005245 return;
5246 }
5247
5248 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005249 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005250 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005251 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005252}