blob: d7f423fd32d9742ba4781f2052793fb3e2c8a433 [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
Kostya Serebryany85aee962013-02-26 06:58:27 +0000613static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
614 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000615 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 Serebryany85aee962013-02-26 06:58:27 +0000630static void handleNoSanitizeAddressAttr(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)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000638 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000639 << Attr.getName() << ExpectedFunctionOrMethod;
640 return;
641 }
642
Michael Han51d8c522013-01-24 16:46:58 +0000643 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000644 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
645 Attr.getAttributeSpellingListIndex()));
646}
647
648static void handleNoSanitizeMemory(Sema &S, Decl *D,
649 const AttributeList &Attr) {
650 assert(!Attr.isInvalid());
651
652 if (!checkAttributeNumArgs(S, Attr, 0))
653 return;
654
655 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
656 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
657 << Attr.getName() << ExpectedFunctionOrMethod;
658 return;
659 }
660
661 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
662 S.Context));
663}
664
665static void handleNoSanitizeThread(Sema &S, Decl *D,
666 const AttributeList &Attr) {
667 assert(!Attr.isInvalid());
668
669 if (!checkAttributeNumArgs(S, Attr, 0))
670 return;
671
672 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
673 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
674 << Attr.getName() << ExpectedFunctionOrMethod;
675 return;
676 }
677
678 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
679 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000680}
681
Michael Hanf1aae3b2012-08-03 17:40:43 +0000682static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
683 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000684 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000685 assert(!Attr.isInvalid());
686
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000687 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000688 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000689
690 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000691 ValueDecl *VD = dyn_cast<ValueDecl>(D);
692 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000693 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
694 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000695 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000696 }
697
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000698 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000699 QualType QT = VD->getType();
700 if (!QT->isDependentType()) {
701 const RecordType *RT = getRecordType(QT);
702 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000703 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000704 << Attr.getName();
705 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000706 }
707 }
708
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000709 // Check that all arguments are lockable objects.
710 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000711 if (Args.size() == 0)
712 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000713
Michael Handc691572012-07-23 18:48:41 +0000714 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000715}
716
Michael Hanf1aae3b2012-08-03 17:40:43 +0000717static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000718 const AttributeList &Attr) {
719 SmallVector<Expr*, 1> Args;
720 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
721 return;
722
723 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000724 D->addAttr(::new (S.Context)
725 AcquiredAfterAttr(Attr.getRange(), S.Context,
726 StartArg, Args.size(),
727 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000728}
729
Michael Hanf1aae3b2012-08-03 17:40:43 +0000730static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000731 const AttributeList &Attr) {
732 SmallVector<Expr*, 1> Args;
733 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
734 return;
735
736 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000737 D->addAttr(::new (S.Context)
738 AcquiredBeforeAttr(Attr.getRange(), S.Context,
739 StartArg, Args.size(),
740 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000741}
742
Michael Hanf1aae3b2012-08-03 17:40:43 +0000743static bool checkLockFunAttrCommon(Sema &S, Decl *D,
744 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000745 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000746 assert(!Attr.isInvalid());
747
748 // zero or more arguments ok
749
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000750 // check that the attribute is applied to a function
751 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000752 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
753 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000754 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000755 }
756
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000757 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000758 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000759
Michael Handc691572012-07-23 18:48:41 +0000760 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000761}
762
Michael Hanf1aae3b2012-08-03 17:40:43 +0000763static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000764 const AttributeList &Attr) {
765 SmallVector<Expr*, 1> Args;
766 if (!checkLockFunAttrCommon(S, D, Attr, Args))
767 return;
768
769 unsigned Size = Args.size();
770 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000771 D->addAttr(::new (S.Context)
772 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
773 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000774}
775
Michael Hanf1aae3b2012-08-03 17:40:43 +0000776static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000777 const AttributeList &Attr) {
778 SmallVector<Expr*, 1> Args;
779 if (!checkLockFunAttrCommon(S, D, Attr, Args))
780 return;
781
782 unsigned Size = Args.size();
783 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000784 D->addAttr(::new (S.Context)
785 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
786 StartArg, Size,
787 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000788}
789
Michael Hanf1aae3b2012-08-03 17:40:43 +0000790static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
791 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000792 SmallVector<Expr*, 2> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000793 assert(!Attr.isInvalid());
794
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000795 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000796 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000797
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000798 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000799 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
800 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000801 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000802 }
803
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000804 if (!isIntOrBool(Attr.getArg(0))) {
805 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
Michael Handc691572012-07-23 18:48:41 +0000806 << Attr.getName();
807 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000808 }
809
810 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000811 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000812
Michael Handc691572012-07-23 18:48:41 +0000813 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000814}
815
Michael Hanf1aae3b2012-08-03 17:40:43 +0000816static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000817 const AttributeList &Attr) {
818 SmallVector<Expr*, 2> Args;
819 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
820 return;
821
822 unsigned Size = Args.size();
823 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000824 D->addAttr(::new (S.Context)
825 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
826 Attr.getArg(0), StartArg, Size,
827 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000828}
829
Michael Hanf1aae3b2012-08-03 17:40:43 +0000830static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000831 const AttributeList &Attr) {
832 SmallVector<Expr*, 2> Args;
833 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
834 return;
835
836 unsigned Size = Args.size();
837 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000838 D->addAttr(::new (S.Context)
839 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
840 Attr.getArg(0), StartArg, Size,
841 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000842}
843
Michael Hanf1aae3b2012-08-03 17:40:43 +0000844static bool checkLocksRequiredCommon(Sema &S, Decl *D,
845 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000846 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000847 assert(!Attr.isInvalid());
848
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000849 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000850 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000851
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000852 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000853 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
854 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000855 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000856 }
857
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000858 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000859 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000860 if (Args.size() == 0)
861 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000862
Michael Handc691572012-07-23 18:48:41 +0000863 return true;
864}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000865
Michael Hanf1aae3b2012-08-03 17:40:43 +0000866static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000867 const AttributeList &Attr) {
868 SmallVector<Expr*, 1> Args;
869 if (!checkLocksRequiredCommon(S, D, Attr, Args))
870 return;
871
872 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000873 D->addAttr(::new (S.Context)
874 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
875 StartArg, Args.size(),
876 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000877}
878
Michael Hanf1aae3b2012-08-03 17:40:43 +0000879static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000880 const AttributeList &Attr) {
881 SmallVector<Expr*, 1> Args;
882 if (!checkLocksRequiredCommon(S, D, Attr, Args))
883 return;
884
885 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000886 D->addAttr(::new (S.Context)
887 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
888 StartArg, Args.size(),
889 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000890}
891
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000892static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000893 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000894 assert(!Attr.isInvalid());
895
896 // zero or more arguments ok
897
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000898 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000899 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
900 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000901 return;
902 }
903
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000904 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000905 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000906 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000907 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000908 Expr **StartArg = Size == 0 ? 0 : &Args[0];
909
Michael Han51d8c522013-01-24 16:46:58 +0000910 D->addAttr(::new (S.Context)
911 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
912 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000913}
914
915static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000916 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000917 assert(!Attr.isInvalid());
918
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000919 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000920 return;
921
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000922 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000923 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
924 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000925 return;
926 }
927
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000928 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000929 SmallVector<Expr*, 1> Args;
930 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
931 unsigned Size = Args.size();
932 if (Size == 0)
933 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000934
Michael Han51d8c522013-01-24 16:46:58 +0000935 D->addAttr(::new (S.Context)
936 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
937 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000938}
939
940static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000941 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000942 assert(!Attr.isInvalid());
943
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000944 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000945 return;
946
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000947 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000948 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
949 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000950 return;
951 }
952
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000953 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000954 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000955 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000956 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000957 if (Size == 0)
958 return;
959 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000960
Michael Han51d8c522013-01-24 16:46:58 +0000961 D->addAttr(::new (S.Context)
962 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
963 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000964}
965
966
Chandler Carruth1b03c872011-07-02 00:01:44 +0000967static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
968 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +0000969 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
970 if (TD == 0) {
971 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
972 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +0000973 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000974 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000975 }
Mike Stumpbf916502009-07-24 19:02:52 +0000976
Richard Smitha4fa9002013-01-13 02:11:23 +0000977 // Remember this typedef decl, we will need it later for diagnostics.
978 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000979}
980
Chandler Carruth1b03c872011-07-02 00:01:44 +0000981static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000982 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000983 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000984 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000985
Chandler Carruth87c44602011-07-01 23:49:12 +0000986 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000987 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000988 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000989 // If the alignment is less than or equal to 8 bits, the packed attribute
990 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +0000991 if (!FD->getType()->isDependentType() &&
992 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000993 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000994 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000995 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000996 else
Michael Han51d8c522013-01-24 16:46:58 +0000997 FD->addAttr(::new (S.Context)
998 PackedAttr(Attr.getRange(), S.Context,
999 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001000 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001001 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001002}
1003
Chandler Carruth1b03c872011-07-02 00:01:44 +00001004static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001005 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001006 RD->addAttr(::new (S.Context)
1007 MsStructAttr(Attr.getRange(), S.Context,
1008 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001009 else
1010 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1011}
1012
Chandler Carruth1b03c872011-07-02 00:01:44 +00001013static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +00001014 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001015 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +00001016 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001017
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001018 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001019 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001020 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001021 D->addAttr(::new (S.Context)
1022 IBActionAttr(Attr.getRange(), S.Context,
1023 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001024 return;
1025 }
1026
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001027 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001028}
1029
Ted Kremenek2f041d02011-09-29 07:02:25 +00001030static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1031 // The IBOutlet/IBOutletCollection attributes only apply to instance
1032 // variables or properties of Objective-C classes. The outlet must also
1033 // have an object reference type.
1034 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1035 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001036 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001037 << Attr.getName() << VD->getType() << 0;
1038 return false;
1039 }
1040 }
1041 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1042 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001043 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001044 << Attr.getName() << PD->getType() << 1;
1045 return false;
1046 }
1047 }
1048 else {
1049 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1050 return false;
1051 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001052
Ted Kremenek2f041d02011-09-29 07:02:25 +00001053 return true;
1054}
1055
Chandler Carruth1b03c872011-07-02 00:01:44 +00001056static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001057 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001058 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001059 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001060
1061 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001062 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001063
Michael Han51d8c522013-01-24 16:46:58 +00001064 D->addAttr(::new (S.Context)
1065 IBOutletAttr(Attr.getRange(), S.Context,
1066 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001067}
1068
Chandler Carruth1b03c872011-07-02 00:01:44 +00001069static void handleIBOutletCollection(Sema &S, Decl *D,
1070 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001071
1072 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001073 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001074 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1075 return;
1076 }
1077
Ted Kremenek2f041d02011-09-29 07:02:25 +00001078 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001079 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001080
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001081 IdentifierInfo *II = Attr.getParameterName();
1082 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001083 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001084
John McCallb3d87482010-08-24 05:47:05 +00001085 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001086 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001087 if (!TypeRep) {
1088 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1089 return;
1090 }
John McCallb3d87482010-08-24 05:47:05 +00001091 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001092 // Diagnose use of non-object type in iboutletcollection attribute.
1093 // FIXME. Gnu attribute extension ignores use of builtin types in
1094 // attributes. So, __attribute__((iboutletcollection(char))) will be
1095 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001096 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001097 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1098 return;
1099 }
Michael Han51d8c522013-01-24 16:46:58 +00001100 D->addAttr(::new (S.Context)
1101 IBOutletCollectionAttr(Attr.getRange(),S.Context,
1102 QT, Attr.getParameterLoc(),
1103 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001104}
1105
Chandler Carruthd309c812011-07-01 23:49:16 +00001106static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001107 if (const RecordType *UT = T->getAsUnionType())
1108 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1109 RecordDecl *UD = UT->getDecl();
1110 for (RecordDecl::field_iterator it = UD->field_begin(),
1111 itend = UD->field_end(); it != itend; ++it) {
1112 QualType QT = it->getType();
1113 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1114 T = QT;
1115 return;
1116 }
1117 }
1118 }
1119}
1120
Nuno Lopes587de5b2012-05-24 00:22:00 +00001121static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001122 if (!isFunctionOrMethod(D)) {
1123 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1124 << "alloc_size" << ExpectedFunctionOrMethod;
1125 return;
1126 }
1127
Nuno Lopes587de5b2012-05-24 00:22:00 +00001128 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1129 return;
1130
1131 // In C++ the implicit 'this' function parameter also counts, and they are
1132 // counted from one.
1133 bool HasImplicitThisParam = isInstanceMethod(D);
Argyrios Kyrtzidis28965bf2013-02-22 06:58:28 +00001134 unsigned NumArgs;
1135 if (hasFunctionProto(D))
1136 NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
1137 else
1138 NumArgs = 0;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001139
1140 SmallVector<unsigned, 8> SizeArgs;
1141
1142 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1143 E = Attr.arg_end(); I!=E; ++I) {
1144 // The argument must be an integer constant expression.
1145 Expr *Ex = *I;
1146 llvm::APSInt ArgNum;
1147 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1148 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
1149 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1150 << "alloc_size" << Ex->getSourceRange();
1151 return;
1152 }
1153
1154 uint64_t x = ArgNum.getZExtValue();
1155
1156 if (x < 1 || x > NumArgs) {
1157 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1158 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
1159 return;
1160 }
1161
1162 --x;
1163 if (HasImplicitThisParam) {
1164 if (x == 0) {
1165 S.Diag(Attr.getLoc(),
1166 diag::err_attribute_invalid_implicit_this_argument)
1167 << "alloc_size" << Ex->getSourceRange();
1168 return;
1169 }
1170 --x;
1171 }
1172
1173 // check if the function argument is of an integer type
1174 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
1175 if (!T->isIntegerType()) {
1176 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1177 << "alloc_size" << Ex->getSourceRange();
1178 return;
1179 }
1180
Nuno Lopes587de5b2012-05-24 00:22:00 +00001181 SizeArgs.push_back(x);
1182 }
1183
1184 // check if the function returns a pointer
1185 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1186 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1187 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
1188 }
1189
Michael Han51d8c522013-01-24 16:46:58 +00001190 D->addAttr(::new (S.Context)
1191 AllocSizeAttr(Attr.getRange(), S.Context,
1192 SizeArgs.data(), SizeArgs.size(),
1193 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001194}
1195
Chandler Carruth1b03c872011-07-02 00:01:44 +00001196static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001197 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1198 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001199 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001200 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001201 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001202 return;
1203 }
Mike Stumpbf916502009-07-24 19:02:52 +00001204
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001205 // In C++ the implicit 'this' function parameter also counts, and they are
1206 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001207 bool HasImplicitThisParam = isInstanceMethod(D);
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001208 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001209
1210 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001211 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001212
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001213 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1214 E = Attr.arg_end(); I != E; ++I) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001215 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001216 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001217 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001218 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1219 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001220 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1221 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001222 return;
1223 }
Mike Stumpbf916502009-07-24 19:02:52 +00001224
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001225 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001226
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001227 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001228 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001229 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001230 return;
1231 }
Mike Stumpbf916502009-07-24 19:02:52 +00001232
Ted Kremenek465172f2008-07-21 22:09:15 +00001233 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001234 if (HasImplicitThisParam) {
1235 if (x == 0) {
1236 S.Diag(Attr.getLoc(),
1237 diag::err_attribute_invalid_implicit_this_argument)
1238 << "nonnull" << Ex->getSourceRange();
1239 return;
1240 }
1241 --x;
1242 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001243
1244 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001245 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001246 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001247
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001248 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001249 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001250 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001251 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001252 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001253 }
Mike Stumpbf916502009-07-24 19:02:52 +00001254
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001255 NonNullArgs.push_back(x);
1256 }
Mike Stumpbf916502009-07-24 19:02:52 +00001257
1258 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1259 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001260 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001261 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1262 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001263 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001264 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001265 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001266 }
Mike Stumpbf916502009-07-24 19:02:52 +00001267
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001268 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001269 if (NonNullArgs.empty()) {
1270 // Warn the trivial case only if attribute is not coming from a
1271 // macro instantiation.
1272 if (Attr.getLoc().isFileID())
1273 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001274 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001275 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001276 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001277
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001278 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001279 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001280 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001281 D->addAttr(::new (S.Context)
1282 NonNullAttr(Attr.getRange(), S.Context, start, size,
1283 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001284}
1285
Chandler Carruth1b03c872011-07-02 00:01:44 +00001286static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001287 // This attribute must be applied to a function declaration.
1288 // The first argument to the attribute must be a string,
1289 // the name of the resource, for example "malloc".
1290 // The following arguments must be argument indexes, the arguments must be
1291 // of integer type for Returns, otherwise of pointer type.
1292 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001293 // after being held. free() should be __attribute((ownership_takes)), whereas
1294 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001295
1296 if (!AL.getParameterName()) {
1297 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1298 << AL.getName()->getName() << 1;
1299 return;
1300 }
1301 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001302 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001303 switch (AL.getKind()) {
1304 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001305 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001306 if (AL.getNumArgs() < 1) {
1307 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1308 return;
1309 }
Jordy Rose2a479922010-08-12 08:54:03 +00001310 break;
1311 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001312 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001313 if (AL.getNumArgs() < 1) {
1314 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1315 return;
1316 }
Jordy Rose2a479922010-08-12 08:54:03 +00001317 break;
1318 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001319 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001320 if (AL.getNumArgs() > 1) {
1321 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1322 << AL.getNumArgs() + 1;
1323 return;
1324 }
Jordy Rose2a479922010-08-12 08:54:03 +00001325 break;
1326 default:
1327 // This should never happen given how we are called.
1328 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001329 }
1330
Chandler Carruth87c44602011-07-01 23:49:12 +00001331 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001332 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1333 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001334 return;
1335 }
1336
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001337 // In C++ the implicit 'this' function parameter also counts, and they are
1338 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001339 bool HasImplicitThisParam = isInstanceMethod(D);
1340 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001341
Chris Lattner5f9e2722011-07-23 10:55:15 +00001342 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001343
1344 // Normalize the argument, __foo__ becomes foo.
1345 if (Module.startswith("__") && Module.endswith("__"))
1346 Module = Module.substr(2, Module.size() - 4);
1347
Chris Lattner5f9e2722011-07-23 10:55:15 +00001348 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001349
Jordy Rose2a479922010-08-12 08:54:03 +00001350 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1351 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001352
Peter Collingbourne7a730022010-11-23 20:45:58 +00001353 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001354 llvm::APSInt ArgNum(32);
1355 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1356 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1357 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1358 << AL.getName()->getName() << IdxExpr->getSourceRange();
1359 continue;
1360 }
1361
1362 unsigned x = (unsigned) ArgNum.getZExtValue();
1363
1364 if (x > NumArgs || x < 1) {
1365 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1366 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1367 continue;
1368 }
1369 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001370 if (HasImplicitThisParam) {
1371 if (x == 0) {
1372 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1373 << "ownership" << IdxExpr->getSourceRange();
1374 return;
1375 }
1376 --x;
1377 }
1378
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001379 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001380 case OwnershipAttr::Takes:
1381 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001382 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001383 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001384 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1385 // FIXME: Should also highlight argument in decl.
1386 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001387 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001388 << "pointer"
1389 << IdxExpr->getSourceRange();
1390 continue;
1391 }
1392 break;
1393 }
Sean Huntcf807c42010-08-18 23:23:40 +00001394 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001395 if (AL.getNumArgs() > 1) {
1396 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001397 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001398 llvm::APSInt ArgNum(32);
1399 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1400 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1401 S.Diag(AL.getLoc(), diag::err_ownership_type)
1402 << "ownership_returns" << "integer"
1403 << IdxExpr->getSourceRange();
1404 return;
1405 }
1406 }
1407 break;
1408 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001409 } // switch
1410
1411 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001412 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001413 i = D->specific_attr_begin<OwnershipAttr>(),
1414 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001415 i != e; ++i) {
1416 if ((*i)->getOwnKind() != K) {
1417 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1418 I!=E; ++I) {
1419 if (x == *I) {
1420 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1421 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001422 }
1423 }
1424 }
1425 }
1426 OwnershipArgs.push_back(x);
1427 }
1428
1429 unsigned* start = OwnershipArgs.data();
1430 unsigned size = OwnershipArgs.size();
1431 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001432
1433 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1434 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1435 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001436 }
Sean Huntcf807c42010-08-18 23:23:40 +00001437
Michael Han51d8c522013-01-24 16:46:58 +00001438 D->addAttr(::new (S.Context)
1439 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1440 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001441}
1442
Chandler Carruth1b03c872011-07-02 00:01:44 +00001443static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001444 // Check the attribute arguments.
1445 if (Attr.getNumArgs() > 1) {
1446 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1447 return;
1448 }
1449
Chandler Carruth87c44602011-07-01 23:49:12 +00001450 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001451 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001452 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001453 return;
1454 }
1455
Chandler Carruth87c44602011-07-01 23:49:12 +00001456 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001457
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001458 // gcc rejects
1459 // class c {
1460 // static int a __attribute__((weakref ("v2")));
1461 // static int b() __attribute__((weakref ("f3")));
1462 // };
1463 // and ignores the attributes of
1464 // void f(void) {
1465 // static int a __attribute__((weakref ("v2")));
1466 // }
1467 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001468 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001469 if (!Ctx->isFileContext()) {
1470 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001471 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001472 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001473 }
1474
1475 // The GCC manual says
1476 //
1477 // At present, a declaration to which `weakref' is attached can only
1478 // be `static'.
1479 //
1480 // It also says
1481 //
1482 // Without a TARGET,
1483 // given as an argument to `weakref' or to `alias', `weakref' is
1484 // equivalent to `weak'.
1485 //
1486 // gcc 4.4.1 will accept
1487 // int a7 __attribute__((weakref));
1488 // as
1489 // int a7 __attribute__((weak));
1490 // This looks like a bug in gcc. We reject that for now. We should revisit
1491 // it if this behaviour is actually used.
1492
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001493 // GCC rejects
1494 // static ((alias ("y"), weakref)).
1495 // Should we? How to check that weakref is before or after alias?
1496
1497 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001498 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001499 Arg = Arg->IgnoreParenCasts();
1500 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1501
Douglas Gregor5cee1192011-07-27 05:40:30 +00001502 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001503 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1504 << "weakref" << 1;
1505 return;
1506 }
1507 // GCC will accept anything as the argument of weakref. Should we
1508 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001509 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001510 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001511 }
1512
Michael Han51d8c522013-01-24 16:46:58 +00001513 D->addAttr(::new (S.Context)
1514 WeakRefAttr(Attr.getRange(), S.Context,
1515 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001516}
1517
Chandler Carruth1b03c872011-07-02 00:01:44 +00001518static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001519 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001520 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001521 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001522 return;
1523 }
Mike Stumpbf916502009-07-24 19:02:52 +00001524
Peter Collingbourne7a730022010-11-23 20:45:58 +00001525 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001526 Arg = Arg->IgnoreParenCasts();
1527 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001528
Douglas Gregor5cee1192011-07-27 05:40:30 +00001529 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001530 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001531 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001532 return;
1533 }
Mike Stumpbf916502009-07-24 19:02:52 +00001534
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001535 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001536 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1537 return;
1538 }
1539
Chris Lattner6b6b5372008-06-26 18:38:35 +00001540 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001541
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001542 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001543 Str->getString(),
1544 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001545}
1546
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001547static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1548 // Check the attribute arguments.
1549 if (!checkAttributeNumArgs(S, Attr, 0))
1550 return;
1551
1552 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1553 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1554 << Attr.getName() << ExpectedFunctionOrMethod;
1555 return;
1556 }
1557
Michael Han51d8c522013-01-24 16:46:58 +00001558 D->addAttr(::new (S.Context)
1559 MinSizeAttr(Attr.getRange(), S.Context,
1560 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001561}
1562
Benjamin Krameree409a92012-05-12 21:10:52 +00001563static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1564 // Check the attribute arguments.
1565 if (!checkAttributeNumArgs(S, Attr, 0))
1566 return;
1567
1568 if (!isa<FunctionDecl>(D)) {
1569 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1570 << Attr.getName() << ExpectedFunction;
1571 return;
1572 }
1573
1574 if (D->hasAttr<HotAttr>()) {
1575 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1576 << Attr.getName() << "hot";
1577 return;
1578 }
1579
Michael Han51d8c522013-01-24 16:46:58 +00001580 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1581 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001582}
1583
1584static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1585 // Check the attribute arguments.
1586 if (!checkAttributeNumArgs(S, Attr, 0))
1587 return;
1588
1589 if (!isa<FunctionDecl>(D)) {
1590 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1591 << Attr.getName() << ExpectedFunction;
1592 return;
1593 }
1594
1595 if (D->hasAttr<ColdAttr>()) {
1596 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1597 << Attr.getName() << "cold";
1598 return;
1599 }
1600
Michael Han51d8c522013-01-24 16:46:58 +00001601 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1602 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001603}
1604
Chandler Carruth1b03c872011-07-02 00:01:44 +00001605static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001606 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001607 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001608 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001609
Chandler Carruth87c44602011-07-01 23:49:12 +00001610 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001611 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001612 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001613 return;
1614 }
1615
Michael Han51d8c522013-01-24 16:46:58 +00001616 D->addAttr(::new (S.Context)
1617 NakedAttr(Attr.getRange(), S.Context,
1618 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001619}
1620
Chandler Carruth1b03c872011-07-02 00:01:44 +00001621static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1622 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001623 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001624 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001625 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1626 return;
1627 }
1628
Chandler Carruth87c44602011-07-01 23:49:12 +00001629 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001630 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001631 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001632 return;
1633 }
Mike Stumpbf916502009-07-24 19:02:52 +00001634
Michael Han51d8c522013-01-24 16:46:58 +00001635 D->addAttr(::new (S.Context)
1636 AlwaysInlineAttr(Attr.getRange(), S.Context,
1637 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001638}
1639
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001640static void handleTLSModelAttr(Sema &S, Decl *D,
1641 const AttributeList &Attr) {
1642 // Check the attribute arguments.
1643 if (Attr.getNumArgs() != 1) {
1644 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1645 return;
1646 }
1647
1648 Expr *Arg = Attr.getArg(0);
1649 Arg = Arg->IgnoreParenCasts();
1650 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1651
1652 // Check that it is a string.
1653 if (!Str) {
1654 S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model";
1655 return;
1656 }
1657
1658 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->isThreadSpecified()) {
1659 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1660 << Attr.getName() << ExpectedTLSVar;
1661 return;
1662 }
1663
1664 // Check that the value.
1665 StringRef Model = Str->getString();
1666 if (Model != "global-dynamic" && Model != "local-dynamic"
1667 && Model != "initial-exec" && Model != "local-exec") {
1668 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1669 return;
1670 }
1671
Michael Han51d8c522013-01-24 16:46:58 +00001672 D->addAttr(::new (S.Context)
1673 TLSModelAttr(Attr.getRange(), S.Context, Model,
1674 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001675}
1676
Chandler Carruth1b03c872011-07-02 00:01:44 +00001677static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001678 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001679 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001680 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1681 return;
1682 }
Mike Stump1eb44332009-09-09 15:08:12 +00001683
Chandler Carruth87c44602011-07-01 23:49:12 +00001684 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001685 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001686 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001687 D->addAttr(::new (S.Context)
1688 MallocAttr(Attr.getRange(), S.Context,
1689 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001690 return;
1691 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001692 }
1693
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001694 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001695}
1696
Chandler Carruth1b03c872011-07-02 00:01:44 +00001697static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001698 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001699 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001700 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001701
Michael Han51d8c522013-01-24 16:46:58 +00001702 D->addAttr(::new (S.Context)
1703 MayAliasAttr(Attr.getRange(), S.Context,
1704 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001705}
1706
Chandler Carruth1b03c872011-07-02 00:01:44 +00001707static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001708 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001709 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001710 D->addAttr(::new (S.Context)
1711 NoCommonAttr(Attr.getRange(), S.Context,
1712 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001713 else
1714 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001715 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001716}
1717
Chandler Carruth1b03c872011-07-02 00:01:44 +00001718static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001719 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001720 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001721 D->addAttr(::new (S.Context)
1722 CommonAttr(Attr.getRange(), S.Context,
1723 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001724 else
1725 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001726 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001727}
1728
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001730 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001731
1732 if (S.CheckNoReturnAttr(attr)) return;
1733
Chandler Carruth87c44602011-07-01 23:49:12 +00001734 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001735 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001736 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001737 return;
1738 }
1739
Michael Han51d8c522013-01-24 16:46:58 +00001740 D->addAttr(::new (S.Context)
1741 NoReturnAttr(attr.getRange(), S.Context,
1742 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001743}
1744
1745bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001746 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001747 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1748 attr.setInvalid();
1749 return true;
1750 }
1751
1752 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001753}
1754
Chandler Carruth1b03c872011-07-02 00:01:44 +00001755static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1756 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001757
1758 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1759 // because 'analyzer_noreturn' does not impact the type.
1760
Chandler Carruth1731e202011-07-11 23:30:35 +00001761 if(!checkAttributeNumArgs(S, Attr, 0))
1762 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001763
Chandler Carruth87c44602011-07-01 23:49:12 +00001764 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1765 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001766 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1767 && !VD->getType()->isFunctionPointerType())) {
1768 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001769 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001770 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001771 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001772 return;
1773 }
1774 }
1775
Michael Han51d8c522013-01-24 16:46:58 +00001776 D->addAttr(::new (S.Context)
1777 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1778 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001779}
1780
Richard Smithcd8ab512013-01-17 01:30:42 +00001781static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1782 const AttributeList &Attr) {
1783 // C++11 [dcl.attr.noreturn]p1:
1784 // The attribute may be applied to the declarator-id in a function
1785 // declaration.
1786 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1787 if (!FD) {
1788 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1789 << Attr.getName() << ExpectedFunctionOrMethod;
1790 return;
1791 }
1792
Michael Han51d8c522013-01-24 16:46:58 +00001793 D->addAttr(::new (S.Context)
1794 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1795 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001796}
1797
John Thompson35cc9622010-08-09 21:53:52 +00001798// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001799static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001800/*
1801 Returning a Vector Class in Registers
1802
Eric Christopherf48f3672010-12-01 22:13:54 +00001803 According to the PPU ABI specifications, a class with a single member of
1804 vector type is returned in memory when used as the return value of a function.
1805 This results in inefficient code when implementing vector classes. To return
1806 the value in a single vector register, add the vecreturn attribute to the
1807 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001808
1809 Example:
1810
1811 struct Vector
1812 {
1813 __vector float xyzw;
1814 } __attribute__((vecreturn));
1815
1816 Vector Add(Vector lhs, Vector rhs)
1817 {
1818 Vector result;
1819 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1820 return result; // This will be returned in a register
1821 }
1822*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001823 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001824 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001825 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001826 return;
1827 }
1828
Chandler Carruth87c44602011-07-01 23:49:12 +00001829 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001830 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1831 return;
1832 }
1833
Chandler Carruth87c44602011-07-01 23:49:12 +00001834 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001835 int count = 0;
1836
1837 if (!isa<CXXRecordDecl>(record)) {
1838 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1839 return;
1840 }
1841
1842 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1843 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1844 return;
1845 }
1846
Eric Christopherf48f3672010-12-01 22:13:54 +00001847 for (RecordDecl::field_iterator iter = record->field_begin();
1848 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001849 if ((count == 1) || !iter->getType()->isVectorType()) {
1850 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1851 return;
1852 }
1853 count++;
1854 }
1855
Michael Han51d8c522013-01-24 16:46:58 +00001856 D->addAttr(::new (S.Context)
1857 VecReturnAttr(Attr.getRange(), S.Context,
1858 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001859}
1860
Richard Smith3a2b7a12013-01-28 22:42:45 +00001861static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1862 const AttributeList &Attr) {
1863 if (isa<ParmVarDecl>(D)) {
1864 // [[carries_dependency]] can only be applied to a parameter if it is a
1865 // parameter of a function declaration or lambda.
1866 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1867 S.Diag(Attr.getLoc(),
1868 diag::err_carries_dependency_param_not_function_decl);
1869 return;
1870 }
1871 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001873 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001874 return;
1875 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001876
1877 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1878 Attr.getRange(), S.Context,
1879 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001880}
1881
Chandler Carruth1b03c872011-07-02 00:01:44 +00001882static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001883 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001884 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001885 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001886 return;
1887 }
Mike Stumpbf916502009-07-24 19:02:52 +00001888
Chandler Carruth87c44602011-07-01 23:49:12 +00001889 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001890 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001891 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001892 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001893 return;
1894 }
Mike Stumpbf916502009-07-24 19:02:52 +00001895
Michael Han51d8c522013-01-24 16:46:58 +00001896 D->addAttr(::new (S.Context)
1897 UnusedAttr(Attr.getRange(), S.Context,
1898 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001899}
1900
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001901static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1902 const AttributeList &Attr) {
1903 // check the attribute arguments.
1904 if (Attr.hasParameterOrArguments()) {
1905 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1906 return;
1907 }
1908
1909 if (!isa<FunctionDecl>(D)) {
1910 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1911 << Attr.getName() << ExpectedFunction;
1912 return;
1913 }
1914
Michael Han51d8c522013-01-24 16:46:58 +00001915 D->addAttr(::new (S.Context)
1916 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1917 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001918}
1919
Chandler Carruth1b03c872011-07-02 00:01:44 +00001920static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001921 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001922 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001923 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1924 return;
1925 }
Mike Stumpbf916502009-07-24 19:02:52 +00001926
Chandler Carruth87c44602011-07-01 23:49:12 +00001927 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001928 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001929 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1930 return;
1931 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001932 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001933 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001934 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001935 return;
1936 }
Mike Stumpbf916502009-07-24 19:02:52 +00001937
Michael Han51d8c522013-01-24 16:46:58 +00001938 D->addAttr(::new (S.Context)
1939 UsedAttr(Attr.getRange(), S.Context,
1940 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001941}
1942
Chandler Carruth1b03c872011-07-02 00:01:44 +00001943static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001944 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001945 if (Attr.getNumArgs() > 1) {
1946 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001947 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001948 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001949
1950 int priority = 65535; // FIXME: Do not hardcode such constants.
1951 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001952 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001953 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001954 if (E->isTypeDependent() || E->isValueDependent() ||
1955 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001956 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001957 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001958 return;
1959 }
1960 priority = Idx.getZExtValue();
1961 }
Mike Stumpbf916502009-07-24 19:02:52 +00001962
Chandler Carruth87c44602011-07-01 23:49:12 +00001963 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001964 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001965 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001966 return;
1967 }
1968
Michael Han51d8c522013-01-24 16:46:58 +00001969 D->addAttr(::new (S.Context)
1970 ConstructorAttr(Attr.getRange(), S.Context, priority,
1971 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001972}
1973
Chandler Carruth1b03c872011-07-02 00:01:44 +00001974static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001975 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001976 if (Attr.getNumArgs() > 1) {
1977 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001978 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001979 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001980
1981 int priority = 65535; // FIXME: Do not hardcode such constants.
1982 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001983 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001984 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001985 if (E->isTypeDependent() || E->isValueDependent() ||
1986 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001987 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001988 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001989 return;
1990 }
1991 priority = Idx.getZExtValue();
1992 }
Mike Stumpbf916502009-07-24 19:02:52 +00001993
Chandler Carruth87c44602011-07-01 23:49:12 +00001994 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001995 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001996 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001997 return;
1998 }
1999
Michael Han51d8c522013-01-24 16:46:58 +00002000 D->addAttr(::new (S.Context)
2001 DestructorAttr(Attr.getRange(), S.Context, priority,
2002 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002003}
2004
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002005template <typename AttrTy>
2006static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
2007 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002008 unsigned NumArgs = Attr.getNumArgs();
2009 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002010 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002011 return;
2012 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002013
2014 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002015 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00002016 if (NumArgs == 1) {
2017 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002018 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002019 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002020 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002021 return;
2022 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002023 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002024 }
Mike Stumpbf916502009-07-24 19:02:52 +00002025
Michael Han51d8c522013-01-24 16:46:58 +00002026 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2027 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002028}
2029
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002030static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2031 const AttributeList &Attr) {
2032 unsigned NumArgs = Attr.getNumArgs();
2033 if (NumArgs > 0) {
2034 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2035 return;
2036 }
2037
Michael Han51d8c522013-01-24 16:46:58 +00002038 D->addAttr(::new (S.Context)
2039 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2040 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002041}
2042
Patrick Beardb2f68202012-04-06 18:12:22 +00002043static void handleObjCRootClassAttr(Sema &S, Decl *D,
2044 const AttributeList &Attr) {
2045 if (!isa<ObjCInterfaceDecl>(D)) {
2046 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2047 return;
2048 }
2049
2050 unsigned NumArgs = Attr.getNumArgs();
2051 if (NumArgs > 0) {
2052 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2053 return;
2054 }
2055
Michael Han51d8c522013-01-24 16:46:58 +00002056 D->addAttr(::new (S.Context)
2057 ObjCRootClassAttr(Attr.getRange(), S.Context,
2058 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002059}
2060
Michael Han51d8c522013-01-24 16:46:58 +00002061static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2062 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002063 if (!isa<ObjCInterfaceDecl>(D)) {
2064 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2065 return;
2066 }
2067
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002068 unsigned NumArgs = Attr.getNumArgs();
2069 if (NumArgs > 0) {
2070 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2071 return;
2072 }
2073
Michael Han51d8c522013-01-24 16:46:58 +00002074 D->addAttr(::new (S.Context)
2075 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2076 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002077}
2078
Jordy Rosefad5de92012-05-08 03:27:22 +00002079static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2080 IdentifierInfo *Platform,
2081 VersionTuple Introduced,
2082 VersionTuple Deprecated,
2083 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002084 StringRef PlatformName
2085 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2086 if (PlatformName.empty())
2087 PlatformName = Platform->getName();
2088
2089 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2090 // of these steps are needed).
2091 if (!Introduced.empty() && !Deprecated.empty() &&
2092 !(Introduced <= Deprecated)) {
2093 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2094 << 1 << PlatformName << Deprecated.getAsString()
2095 << 0 << Introduced.getAsString();
2096 return true;
2097 }
2098
2099 if (!Introduced.empty() && !Obsoleted.empty() &&
2100 !(Introduced <= Obsoleted)) {
2101 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2102 << 2 << PlatformName << Obsoleted.getAsString()
2103 << 0 << Introduced.getAsString();
2104 return true;
2105 }
2106
2107 if (!Deprecated.empty() && !Obsoleted.empty() &&
2108 !(Deprecated <= Obsoleted)) {
2109 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2110 << 2 << PlatformName << Obsoleted.getAsString()
2111 << 1 << Deprecated.getAsString();
2112 return true;
2113 }
2114
2115 return false;
2116}
2117
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002118/// \brief Check whether the two versions match.
2119///
2120/// If either version tuple is empty, then they are assumed to match. If
2121/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2122static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2123 bool BeforeIsOkay) {
2124 if (X.empty() || Y.empty())
2125 return true;
2126
2127 if (X == Y)
2128 return true;
2129
2130 if (BeforeIsOkay && X < Y)
2131 return true;
2132
2133 return false;
2134}
2135
Rafael Espindola51be6e32013-01-08 22:04:34 +00002136AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002137 IdentifierInfo *Platform,
2138 VersionTuple Introduced,
2139 VersionTuple Deprecated,
2140 VersionTuple Obsoleted,
2141 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002142 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002143 bool Override,
2144 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002145 VersionTuple MergedIntroduced = Introduced;
2146 VersionTuple MergedDeprecated = Deprecated;
2147 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002148 bool FoundAny = false;
2149
Rafael Espindola98ae8342012-05-10 02:50:16 +00002150 if (D->hasAttrs()) {
2151 AttrVec &Attrs = D->getAttrs();
2152 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2153 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2154 if (!OldAA) {
2155 ++i;
2156 continue;
2157 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002158
Rafael Espindola98ae8342012-05-10 02:50:16 +00002159 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2160 if (OldPlatform != Platform) {
2161 ++i;
2162 continue;
2163 }
2164
2165 FoundAny = true;
2166 VersionTuple OldIntroduced = OldAA->getIntroduced();
2167 VersionTuple OldDeprecated = OldAA->getDeprecated();
2168 VersionTuple OldObsoleted = OldAA->getObsoleted();
2169 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002170
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002171 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2172 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2173 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2174 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002175 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002176 if (Override) {
2177 int Which = -1;
2178 VersionTuple FirstVersion;
2179 VersionTuple SecondVersion;
2180 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2181 Which = 0;
2182 FirstVersion = OldIntroduced;
2183 SecondVersion = Introduced;
2184 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2185 Which = 1;
2186 FirstVersion = Deprecated;
2187 SecondVersion = OldDeprecated;
2188 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2189 Which = 2;
2190 FirstVersion = Obsoleted;
2191 SecondVersion = OldObsoleted;
2192 }
2193
2194 if (Which == -1) {
2195 Diag(OldAA->getLocation(),
2196 diag::warn_mismatched_availability_override_unavail)
2197 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2198 } else {
2199 Diag(OldAA->getLocation(),
2200 diag::warn_mismatched_availability_override)
2201 << Which
2202 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2203 << FirstVersion.getAsString() << SecondVersion.getAsString();
2204 }
2205 Diag(Range.getBegin(), diag::note_overridden_method);
2206 } else {
2207 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2208 Diag(Range.getBegin(), diag::note_previous_attribute);
2209 }
2210
Rafael Espindola98ae8342012-05-10 02:50:16 +00002211 Attrs.erase(Attrs.begin() + i);
2212 --e;
2213 continue;
2214 }
2215
2216 VersionTuple MergedIntroduced2 = MergedIntroduced;
2217 VersionTuple MergedDeprecated2 = MergedDeprecated;
2218 VersionTuple MergedObsoleted2 = MergedObsoleted;
2219
2220 if (MergedIntroduced2.empty())
2221 MergedIntroduced2 = OldIntroduced;
2222 if (MergedDeprecated2.empty())
2223 MergedDeprecated2 = OldDeprecated;
2224 if (MergedObsoleted2.empty())
2225 MergedObsoleted2 = OldObsoleted;
2226
2227 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2228 MergedIntroduced2, MergedDeprecated2,
2229 MergedObsoleted2)) {
2230 Attrs.erase(Attrs.begin() + i);
2231 --e;
2232 continue;
2233 }
2234
2235 MergedIntroduced = MergedIntroduced2;
2236 MergedDeprecated = MergedDeprecated2;
2237 MergedObsoleted = MergedObsoleted2;
2238 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002239 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002240 }
2241
2242 if (FoundAny &&
2243 MergedIntroduced == Introduced &&
2244 MergedDeprecated == Deprecated &&
2245 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002246 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002247
Rafael Espindola98ae8342012-05-10 02:50:16 +00002248 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00002249 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002250 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2251 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002252 Obsoleted, IsUnavailable, Message,
2253 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002254 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002255 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002256}
2257
Chandler Carruth1b03c872011-07-02 00:01:44 +00002258static void handleAvailabilityAttr(Sema &S, Decl *D,
2259 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002260 IdentifierInfo *Platform = Attr.getParameterName();
2261 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002262 unsigned Index = Attr.getAttributeSpellingListIndex();
2263
Rafael Espindola3b294362012-05-06 19:56:25 +00002264 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002265 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2266 << Platform;
2267
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002268 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2269 if (!ND) {
2270 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2271 return;
2272 }
2273
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002274 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2275 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2276 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002277 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002278 StringRef Str;
2279 const StringLiteral *SE =
2280 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2281 if (SE)
2282 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002283
Rafael Espindola51be6e32013-01-08 22:04:34 +00002284 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002285 Platform,
2286 Introduced.Version,
2287 Deprecated.Version,
2288 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002289 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002290 /*Override=*/false,
2291 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002292 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002293 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002294}
2295
John McCalld4c3d662013-02-20 01:54:26 +00002296template <class T>
2297static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2298 typename T::VisibilityType value,
2299 unsigned attrSpellingListIndex) {
2300 T *existingAttr = D->getAttr<T>();
2301 if (existingAttr) {
2302 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2303 if (existingValue == value)
2304 return NULL;
2305 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2306 S.Diag(range.getBegin(), diag::note_previous_attribute);
2307 D->dropAttr<T>();
2308 }
2309 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2310}
2311
Rafael Espindola599f1b72012-05-13 03:25:18 +00002312VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002313 VisibilityAttr::VisibilityType Vis,
2314 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002315 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2316 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002317}
2318
John McCalld4c3d662013-02-20 01:54:26 +00002319TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2320 TypeVisibilityAttr::VisibilityType Vis,
2321 unsigned AttrSpellingListIndex) {
2322 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2323 AttrSpellingListIndex);
2324}
2325
2326static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2327 bool isTypeVisibility) {
2328 // Visibility attributes don't mean anything on a typedef.
2329 if (isa<TypedefNameDecl>(D)) {
2330 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2331 << Attr.getName();
2332 return;
2333 }
2334
2335 // 'type_visibility' can only go on a type or namespace.
2336 if (isTypeVisibility &&
2337 !(isa<TagDecl>(D) ||
2338 isa<ObjCInterfaceDecl>(D) ||
2339 isa<NamespaceDecl>(D))) {
2340 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2341 << Attr.getName() << ExpectedTypeOrNamespace;
2342 return;
2343 }
2344
Chris Lattner6b6b5372008-06-26 18:38:35 +00002345 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002346 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002347 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002348
Peter Collingbourne7a730022010-11-23 20:45:58 +00002349 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002350 Arg = Arg->IgnoreParenCasts();
2351 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002352
Douglas Gregor5cee1192011-07-27 05:40:30 +00002353 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002354 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld4c3d662013-02-20 01:54:26 +00002355 << (isTypeVisibility ? "type_visibility" : "visibility") << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002356 return;
2357 }
Mike Stumpbf916502009-07-24 19:02:52 +00002358
Chris Lattner5f9e2722011-07-23 10:55:15 +00002359 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002360 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002361
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002362 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002363 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002364 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002365 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002366 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002367 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002368 else if (TypeStr == "protected") {
2369 // Complain about attempts to use protected visibility on targets
2370 // (like Darwin) that don't support it.
2371 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2372 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2373 type = VisibilityAttr::Default;
2374 } else {
2375 type = VisibilityAttr::Protected;
2376 }
2377 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002378 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002379 return;
2380 }
Mike Stumpbf916502009-07-24 19:02:52 +00002381
Michael Han51d8c522013-01-24 16:46:58 +00002382 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002383 clang::Attr *newAttr;
2384 if (isTypeVisibility) {
2385 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2386 (TypeVisibilityAttr::VisibilityType) type,
2387 Index);
2388 } else {
2389 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2390 }
2391 if (newAttr)
2392 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002393}
2394
Chandler Carruth1b03c872011-07-02 00:01:44 +00002395static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2396 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002397 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2398 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002399 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002400 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002401 return;
2402 }
2403
Chandler Carruth87c44602011-07-01 23:49:12 +00002404 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2405 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2406 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002407 << "objc_method_family" << 1;
2408 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002409 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002410 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002411 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002412 return;
2413 }
2414
Chris Lattner5f9e2722011-07-23 10:55:15 +00002415 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002416 ObjCMethodFamilyAttr::FamilyKind family;
2417 if (param == "none")
2418 family = ObjCMethodFamilyAttr::OMF_None;
2419 else if (param == "alloc")
2420 family = ObjCMethodFamilyAttr::OMF_alloc;
2421 else if (param == "copy")
2422 family = ObjCMethodFamilyAttr::OMF_copy;
2423 else if (param == "init")
2424 family = ObjCMethodFamilyAttr::OMF_init;
2425 else if (param == "mutableCopy")
2426 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2427 else if (param == "new")
2428 family = ObjCMethodFamilyAttr::OMF_new;
2429 else {
2430 // Just warn and ignore it. This is future-proof against new
2431 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002432 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002433 return;
2434 }
2435
John McCallf85e1932011-06-15 23:02:42 +00002436 if (family == ObjCMethodFamilyAttr::OMF_init &&
2437 !method->getResultType()->isObjCObjectPointerType()) {
2438 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2439 << method->getResultType();
2440 // Ignore the attribute.
2441 return;
2442 }
2443
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002444 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002445 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002446}
2447
Chandler Carruth1b03c872011-07-02 00:01:44 +00002448static void handleObjCExceptionAttr(Sema &S, Decl *D,
2449 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002450 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002451 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002452
Chris Lattner0db29ec2009-02-14 08:09:34 +00002453 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2454 if (OCI == 0) {
2455 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2456 return;
2457 }
Mike Stumpbf916502009-07-24 19:02:52 +00002458
Michael Han51d8c522013-01-24 16:46:58 +00002459 D->addAttr(::new (S.Context)
2460 ObjCExceptionAttr(Attr.getRange(), S.Context,
2461 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002462}
2463
Chandler Carruth1b03c872011-07-02 00:01:44 +00002464static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002465 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002466 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002467 return;
2468 }
Richard Smith162e1c12011-04-15 14:24:37 +00002469 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002470 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002471 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002472 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2473 return;
2474 }
2475 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002476 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2477 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002478 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002479 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2480 return;
2481 }
2482 }
2483 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002484 // It is okay to include this attribute on properties, e.g.:
2485 //
2486 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2487 //
2488 // In this case it follows tradition and suppresses an error in the above
2489 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002490 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002491 }
Michael Han51d8c522013-01-24 16:46:58 +00002492 D->addAttr(::new (S.Context)
2493 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2494 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002495}
2496
Mike Stumpbf916502009-07-24 19:02:52 +00002497static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002498handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002499 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002500 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002501 return;
2502 }
2503
2504 if (!isa<FunctionDecl>(D)) {
2505 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2506 return;
2507 }
2508
Michael Han51d8c522013-01-24 16:46:58 +00002509 D->addAttr(::new (S.Context)
2510 OverloadableAttr(Attr.getRange(), S.Context,
2511 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002512}
2513
Chandler Carruth1b03c872011-07-02 00:01:44 +00002514static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002515 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002516 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002517 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002518 return;
2519 }
Mike Stumpbf916502009-07-24 19:02:52 +00002520
Steve Naroff9eae5762008-09-18 16:44:58 +00002521 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002522 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002523 return;
2524 }
Mike Stumpbf916502009-07-24 19:02:52 +00002525
Sean Huntcf807c42010-08-18 23:23:40 +00002526 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002527 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002528 type = BlocksAttr::ByRef;
2529 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002530 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002531 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002532 return;
2533 }
Mike Stumpbf916502009-07-24 19:02:52 +00002534
Michael Han51d8c522013-01-24 16:46:58 +00002535 D->addAttr(::new (S.Context)
2536 BlocksAttr(Attr.getRange(), S.Context, type,
2537 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002538}
2539
Chandler Carruth1b03c872011-07-02 00:01:44 +00002540static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002541 // check the attribute arguments.
2542 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002543 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002544 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002545 }
2546
John McCall3323fad2011-09-09 07:56:05 +00002547 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002548 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002549 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002550 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002551 if (E->isTypeDependent() || E->isValueDependent() ||
2552 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002553 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002554 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002555 return;
2556 }
Mike Stumpbf916502009-07-24 19:02:52 +00002557
John McCall3323fad2011-09-09 07:56:05 +00002558 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002559 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2560 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002561 return;
2562 }
John McCall3323fad2011-09-09 07:56:05 +00002563
2564 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002565 }
2566
John McCall3323fad2011-09-09 07:56:05 +00002567 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002568 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002569 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002570 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002571 if (E->isTypeDependent() || E->isValueDependent() ||
2572 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002573 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002574 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002575 return;
2576 }
2577 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002578
John McCall3323fad2011-09-09 07:56:05 +00002579 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002580 // FIXME: This error message could be improved, it would be nice
2581 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002582 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2583 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002584 return;
2585 }
2586 }
2587
Chandler Carruth87c44602011-07-01 23:49:12 +00002588 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002589 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002590 if (isa<FunctionNoProtoType>(FT)) {
2591 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2592 return;
2593 }
Mike Stumpbf916502009-07-24 19:02:52 +00002594
Chris Lattner897cd902009-03-17 23:03:47 +00002595 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002596 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002597 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002598 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002599 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002600 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002601 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002602 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002603 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002604 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2605 if (!BD->isVariadic()) {
2606 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2607 return;
2608 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002609 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002610 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002611 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002612 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002613 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002614 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002615 int m = Ty->isFunctionPointerType() ? 0 : 1;
2616 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002617 return;
2618 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002619 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002620 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002621 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002622 return;
2623 }
Anders Carlsson77091822008-10-05 18:05:59 +00002624 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002625 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002626 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002627 return;
2628 }
Michael Han51d8c522013-01-24 16:46:58 +00002629 D->addAttr(::new (S.Context)
2630 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2631 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002632}
2633
Chandler Carruth1b03c872011-07-02 00:01:44 +00002634static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002635 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002636 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002637 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002638
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002639 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002640 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002641 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002642 return;
2643 }
Mike Stumpbf916502009-07-24 19:02:52 +00002644
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002645 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2646 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2647 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002648 return;
2649 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002650 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2651 if (MD->getResultType()->isVoidType()) {
2652 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2653 << Attr.getName() << 1;
2654 return;
2655 }
2656
Michael Han51d8c522013-01-24 16:46:58 +00002657 D->addAttr(::new (S.Context)
2658 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2659 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002660}
2661
Chandler Carruth1b03c872011-07-02 00:01:44 +00002662static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002663 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002664 if (Attr.hasParameterOrArguments()) {
2665 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002666 return;
2667 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002668
Chandler Carruth87c44602011-07-01 23:49:12 +00002669 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002670 if (isa<CXXRecordDecl>(D)) {
2671 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2672 return;
2673 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002674 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2675 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002676 return;
2677 }
2678
Chandler Carruth87c44602011-07-01 23:49:12 +00002679 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002680
Michael Han51d8c522013-01-24 16:46:58 +00002681 nd->addAttr(::new (S.Context)
2682 WeakAttr(Attr.getRange(), S.Context,
2683 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002684}
2685
Chandler Carruth1b03c872011-07-02 00:01:44 +00002686static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002687 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002688 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002689 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002690
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002691
2692 // weak_import only applies to variable & function declarations.
2693 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002694 if (!D->canBeWeakImported(isDef)) {
2695 if (isDef)
2696 S.Diag(Attr.getLoc(),
2697 diag::warn_attribute_weak_import_invalid_on_definition)
2698 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002699 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002700 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002701 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002702 // Nothing to warn about here.
2703 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002704 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002705 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002706
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002707 return;
2708 }
2709
Michael Han51d8c522013-01-24 16:46:58 +00002710 D->addAttr(::new (S.Context)
2711 WeakImportAttr(Attr.getRange(), S.Context,
2712 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002713}
2714
Tanya Lattner0df579e2012-07-09 22:06:01 +00002715// Handles reqd_work_group_size and work_group_size_hint.
2716static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002717 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002718 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2719 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2720
Nate Begeman6f3d8382009-06-26 06:32:41 +00002721 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002722 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002723
2724 unsigned WGSize[3];
2725 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002726 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002727 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002728 if (E->isTypeDependent() || E->isValueDependent() ||
2729 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002730 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002731 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002732 return;
2733 }
2734 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2735 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002736
2737 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2738 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2739 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2740 if (!(A->getXDim() == WGSize[0] &&
2741 A->getYDim() == WGSize[1] &&
2742 A->getZDim() == WGSize[2])) {
2743 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2744 Attr.getName();
2745 }
2746 }
2747
2748 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2749 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2750 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2751 if (!(A->getXDim() == WGSize[0] &&
2752 A->getYDim() == WGSize[1] &&
2753 A->getZDim() == WGSize[2])) {
2754 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2755 Attr.getName();
2756 }
2757 }
2758
2759 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2760 D->addAttr(::new (S.Context)
2761 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002762 WGSize[0], WGSize[1], WGSize[2],
2763 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002764 else
2765 D->addAttr(::new (S.Context)
2766 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002767 WGSize[0], WGSize[1], WGSize[2],
2768 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002769}
2770
Rafael Espindola599f1b72012-05-13 03:25:18 +00002771SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002772 StringRef Name,
2773 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002774 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2775 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002776 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002777 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2778 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002779 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002780 }
Michael Han51d8c522013-01-24 16:46:58 +00002781 return ::new (Context) SectionAttr(Range, Context, Name,
2782 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002783}
2784
Chandler Carruth1b03c872011-07-02 00:01:44 +00002785static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002786 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002787 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002788 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002789
2790 // Make sure that there is a string literal as the sections's single
2791 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002792 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002793 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002794 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002795 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002796 return;
2797 }
Mike Stump1eb44332009-09-09 15:08:12 +00002798
Chris Lattner797c3c42009-08-10 19:03:04 +00002799 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002800 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002801 if (!Error.empty()) {
2802 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2803 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002804 return;
2805 }
Mike Stump1eb44332009-09-09 15:08:12 +00002806
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002807 // This attribute cannot be applied to local variables.
2808 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2809 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2810 return;
2811 }
Michael Han51d8c522013-01-24 16:46:58 +00002812
2813 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002814 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002815 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002816 if (NewAttr)
2817 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002818}
2819
Chris Lattner6b6b5372008-06-26 18:38:35 +00002820
Chandler Carruth1b03c872011-07-02 00:01:44 +00002821static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002822 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002823 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002824 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002825 return;
2826 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002827
Chandler Carruth87c44602011-07-01 23:49:12 +00002828 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002829 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002830 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002831 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002832 D->addAttr(::new (S.Context)
2833 NoThrowAttr(Attr.getRange(), S.Context,
2834 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002835 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002836}
2837
Chandler Carruth1b03c872011-07-02 00:01:44 +00002838static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002839 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002840 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002841 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002842 return;
2843 }
Mike Stumpbf916502009-07-24 19:02:52 +00002844
Chandler Carruth87c44602011-07-01 23:49:12 +00002845 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002846 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002847 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002848 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002849 D->addAttr(::new (S.Context)
2850 ConstAttr(Attr.getRange(), S.Context,
2851 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002852 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002853}
2854
Chandler Carruth1b03c872011-07-02 00:01:44 +00002855static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002856 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002857 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002858 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002859
Michael Han51d8c522013-01-24 16:46:58 +00002860 D->addAttr(::new (S.Context)
2861 PureAttr(Attr.getRange(), S.Context,
2862 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002863}
2864
Chandler Carruth1b03c872011-07-02 00:01:44 +00002865static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002866 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002867 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2868 return;
2869 }
Mike Stumpbf916502009-07-24 19:02:52 +00002870
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002871 if (Attr.getNumArgs() != 0) {
2872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2873 return;
2874 }
Mike Stumpbf916502009-07-24 19:02:52 +00002875
Chandler Carruth87c44602011-07-01 23:49:12 +00002876 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002877
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002878 if (!VD || !VD->hasLocalStorage()) {
2879 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2880 return;
2881 }
Mike Stumpbf916502009-07-24 19:02:52 +00002882
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002883 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002884 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002885 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002886 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2887 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002888 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002889 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002890 Attr.getParameterName();
2891 return;
2892 }
Mike Stumpbf916502009-07-24 19:02:52 +00002893
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002894 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2895 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002896 S.Diag(Attr.getParameterLoc(),
2897 diag::err_attribute_cleanup_arg_not_function)
2898 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002899 return;
2900 }
2901
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002902 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002903 S.Diag(Attr.getParameterLoc(),
2904 diag::err_attribute_cleanup_func_must_take_one_arg)
2905 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002906 return;
2907 }
Mike Stumpbf916502009-07-24 19:02:52 +00002908
Anders Carlsson89941c12009-02-07 23:16:50 +00002909 // We're currently more strict than GCC about what function types we accept.
2910 // If this ever proves to be a problem it should be easy to fix.
2911 QualType Ty = S.Context.getPointerType(VD->getType());
2912 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002913 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2914 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002915 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002916 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2917 Attr.getParameterName() << ParamTy << Ty;
2918 return;
2919 }
Mike Stumpbf916502009-07-24 19:02:52 +00002920
Michael Han51d8c522013-01-24 16:46:58 +00002921 D->addAttr(::new (S.Context)
2922 CleanupAttr(Attr.getRange(), S.Context, FD,
2923 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002924 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002925 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002926}
2927
Mike Stumpbf916502009-07-24 19:02:52 +00002928/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002929/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002930static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002931 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002932 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002933
Chandler Carruth87c44602011-07-01 23:49:12 +00002934 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002935 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002936 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002937 return;
2938 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002939
2940 // In C++ the implicit 'this' function parameter also counts, and they are
2941 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002942 bool HasImplicitThisParam = isInstanceMethod(D);
2943 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002944 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002945
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002946 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002947 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002948 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002949 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2950 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002951 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2952 << "format" << 2 << IdxExpr->getSourceRange();
2953 return;
2954 }
Mike Stumpbf916502009-07-24 19:02:52 +00002955
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002956 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2957 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2958 << "format" << 2 << IdxExpr->getSourceRange();
2959 return;
2960 }
Mike Stumpbf916502009-07-24 19:02:52 +00002961
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002962 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002963
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002964 if (HasImplicitThisParam) {
2965 if (ArgIdx == 0) {
2966 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2967 << "format_arg" << IdxExpr->getSourceRange();
2968 return;
2969 }
2970 ArgIdx--;
2971 }
2972
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002973 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002974 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002975
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002976 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2977 if (not_nsstring_type &&
2978 !isCFStringType(Ty, S.Context) &&
2979 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002980 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002981 // FIXME: Should highlight the actual expression that has the wrong type.
2982 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002983 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002984 << IdxExpr->getSourceRange();
2985 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002986 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002987 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002988 if (!isNSStringType(Ty, S.Context) &&
2989 !isCFStringType(Ty, S.Context) &&
2990 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002991 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002992 // FIXME: Should highlight the actual expression that has the wrong type.
2993 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002994 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002995 << IdxExpr->getSourceRange();
2996 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002997 }
2998
Michael Han51d8c522013-01-24 16:46:58 +00002999 D->addAttr(::new (S.Context)
3000 FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(),
3001 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003002}
3003
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003004enum FormatAttrKind {
3005 CFStringFormat,
3006 NSStringFormat,
3007 StrftimeFormat,
3008 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00003009 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003010 InvalidFormat
3011};
3012
3013/// getFormatAttrKind - Map from format attribute names to supported format
3014/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003015static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003016 return llvm::StringSwitch<FormatAttrKind>(Format)
3017 // Check for formats that get handled specially.
3018 .Case("NSString", NSStringFormat)
3019 .Case("CFString", CFStringFormat)
3020 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003021
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003022 // Otherwise, check for supported formats.
3023 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3024 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3025 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003026
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003027 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3028 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003029}
3030
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003031/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003032/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003033static void handleInitPriorityAttr(Sema &S, Decl *D,
3034 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003035 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003036 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3037 return;
3038 }
3039
Chandler Carruth87c44602011-07-01 23:49:12 +00003040 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003041 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3042 Attr.setInvalid();
3043 return;
3044 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003045 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003046 if (S.Context.getAsArrayType(T))
3047 T = S.Context.getBaseElementType(T);
3048 if (!T->getAs<RecordType>()) {
3049 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3050 Attr.setInvalid();
3051 return;
3052 }
3053
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003054 if (Attr.getNumArgs() != 1) {
3055 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3056 Attr.setInvalid();
3057 return;
3058 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00003059 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003060
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003061 llvm::APSInt priority(32);
3062 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3063 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
3064 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3065 << "init_priority" << priorityExpr->getSourceRange();
3066 Attr.setInvalid();
3067 return;
3068 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003069 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003070 if (prioritynum < 101 || prioritynum > 65535) {
3071 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3072 << priorityExpr->getSourceRange();
3073 Attr.setInvalid();
3074 return;
3075 }
Michael Han51d8c522013-01-24 16:46:58 +00003076 D->addAttr(::new (S.Context)
3077 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3078 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003079}
3080
Rafael Espindola599f1b72012-05-13 03:25:18 +00003081FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003082 int FormatIdx, int FirstArg,
3083 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003084 // Check whether we already have an equivalent format attribute.
3085 for (specific_attr_iterator<FormatAttr>
3086 i = D->specific_attr_begin<FormatAttr>(),
3087 e = D->specific_attr_end<FormatAttr>();
3088 i != e ; ++i) {
3089 FormatAttr *f = *i;
3090 if (f->getType() == Format &&
3091 f->getFormatIdx() == FormatIdx &&
3092 f->getFirstArg() == FirstArg) {
3093 // If we don't have a valid location for this attribute, adopt the
3094 // location.
3095 if (f->getLocation().isInvalid())
3096 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003097 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003098 }
3099 }
3100
Michael Han51d8c522013-01-24 16:46:58 +00003101 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3102 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003103}
3104
Mike Stumpbf916502009-07-24 19:02:52 +00003105/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003106/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003107static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003108
Chris Lattner545dd342008-06-28 23:36:30 +00003109 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003110 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00003111 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003112 return;
3113 }
3114
Chris Lattner545dd342008-06-28 23:36:30 +00003115 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003117 return;
3118 }
3119
Chandler Carruth87c44602011-07-01 23:49:12 +00003120 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003121 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003122 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003123 return;
3124 }
3125
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003126 // In C++ the implicit 'this' function parameter also counts, and they are
3127 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003128 bool HasImplicitThisParam = isInstanceMethod(D);
3129 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003130 unsigned FirstIdx = 1;
3131
Chris Lattner5f9e2722011-07-23 10:55:15 +00003132 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003133
3134 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003135 if (Format.startswith("__") && Format.endswith("__"))
3136 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003137
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003138 // Check for supported formats.
3139 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003140
3141 if (Kind == IgnoredFormat)
3142 return;
3143
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003144 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003145 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003146 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003147 return;
3148 }
3149
3150 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003151 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003152 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003153 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3154 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003155 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003156 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003157 return;
3158 }
3159
3160 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003161 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003162 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003163 return;
3164 }
3165
3166 // FIXME: Do we need to bounds check?
3167 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003168
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003169 if (HasImplicitThisParam) {
3170 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003171 S.Diag(Attr.getLoc(),
3172 diag::err_format_attribute_implicit_this_format_string)
3173 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003174 return;
3175 }
3176 ArgIdx--;
3177 }
Mike Stump1eb44332009-09-09 15:08:12 +00003178
Chris Lattner6b6b5372008-06-26 18:38:35 +00003179 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003180 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003181
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003182 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003183 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003184 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3185 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003186 return;
3187 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003188 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003189 // FIXME: do we need to check if the type is NSString*? What are the
3190 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003191 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003192 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003193 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3194 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003195 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003196 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003197 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003198 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003199 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003200 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3201 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003202 return;
3203 }
3204
3205 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003206 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003207 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003208 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3209 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003210 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003211 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003212 return;
3213 }
3214
3215 // check if the function is variadic if the 3rd argument non-zero
3216 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003217 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003218 ++NumArgs; // +1 for ...
3219 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003220 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003221 return;
3222 }
3223 }
3224
Chris Lattner3c73c412008-11-19 08:23:25 +00003225 // strftime requires FirstArg to be 0 because it doesn't read from any
3226 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003227 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003228 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003229 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3230 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003231 return;
3232 }
3233 // if 0 it disables parameter checking (to use with e.g. va_list)
3234 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003235 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003236 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003237 return;
3238 }
3239
Rafael Espindola599f1b72012-05-13 03:25:18 +00003240 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3241 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003242 FirstArg.getZExtValue(),
3243 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003244 if (NewAttr)
3245 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003246}
3247
Chandler Carruth1b03c872011-07-02 00:01:44 +00003248static void handleTransparentUnionAttr(Sema &S, Decl *D,
3249 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003250 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003251 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003252 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003253
Chris Lattner6b6b5372008-06-26 18:38:35 +00003254
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003255 // Try to find the underlying union declaration.
3256 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003257 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003258 if (TD && TD->getUnderlyingType()->isUnionType())
3259 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3260 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003261 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003262
3263 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003264 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003265 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003266 return;
3267 }
3268
John McCall5e1cdac2011-10-07 06:10:15 +00003269 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003270 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003271 diag::warn_transparent_union_attribute_not_definition);
3272 return;
3273 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003274
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003275 RecordDecl::field_iterator Field = RD->field_begin(),
3276 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003277 if (Field == FieldEnd) {
3278 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3279 return;
3280 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003281
David Blaikie581deb32012-06-06 20:45:41 +00003282 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003283 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003284 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003285 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003286 diag::warn_transparent_union_attribute_floating)
3287 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003288 return;
3289 }
3290
3291 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3292 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3293 for (; Field != FieldEnd; ++Field) {
3294 QualType FieldType = Field->getType();
3295 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3296 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3297 // Warn if we drop the attribute.
3298 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003299 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003300 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003301 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003302 diag::warn_transparent_union_attribute_field_size_align)
3303 << isSize << Field->getDeclName() << FieldBits;
3304 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003305 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003306 diag::note_transparent_union_first_field_size_align)
3307 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003308 return;
3309 }
3310 }
3311
Michael Han51d8c522013-01-24 16:46:58 +00003312 RD->addAttr(::new (S.Context)
3313 TransparentUnionAttr(Attr.getRange(), S.Context,
3314 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003315}
3316
Chandler Carruth1b03c872011-07-02 00:01:44 +00003317static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003318 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003319 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003320 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003321
Peter Collingbourne7a730022010-11-23 20:45:58 +00003322 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003323 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003324
Chris Lattner6b6b5372008-06-26 18:38:35 +00003325 // Make sure that there is a string literal as the annotation's single
3326 // argument.
3327 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00003328 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00003329 return;
3330 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003331
3332 // Don't duplicate annotations that are already set.
3333 for (specific_attr_iterator<AnnotateAttr>
3334 i = D->specific_attr_begin<AnnotateAttr>(),
3335 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3336 if ((*i)->getAnnotation() == SE->getString())
3337 return;
3338 }
Michael Han51d8c522013-01-24 16:46:58 +00003339
3340 D->addAttr(::new (S.Context)
3341 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3342 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003343}
3344
Chandler Carruth1b03c872011-07-02 00:01:44 +00003345static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003346 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003347 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003348 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003349 return;
3350 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003351
Richard Smithbe507b62013-02-01 08:12:08 +00003352 if (Attr.getNumArgs() == 0) {
3353 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3354 true, 0, Attr.getAttributeSpellingListIndex()));
3355 return;
3356 }
3357
Richard Smithf6565a92013-02-22 08:32:16 +00003358 Expr *E = Attr.getArg(0);
3359 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3360 S.Diag(Attr.getEllipsisLoc(),
3361 diag::err_pack_expansion_without_parameter_packs);
3362 return;
3363 }
3364
3365 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3366 return;
3367
3368 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3369 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003370}
3371
3372void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003373 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003374 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3375 SourceLocation AttrLoc = AttrRange.getBegin();
3376
Richard Smith4cd81c52013-01-29 09:02:09 +00003377 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003378 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003379 // C++11 [dcl.align]p1:
3380 // An alignment-specifier may be applied to a variable or to a class
3381 // data member, but it shall not be applied to a bit-field, a function
3382 // parameter, the formal parameter of a catch clause, or a variable
3383 // declared with the register storage class specifier. An
3384 // alignment-specifier may also be applied to the declaration of a class
3385 // or enumeration type.
3386 // C11 6.7.5/2:
3387 // An alignment attribute shall not be specified in a declaration of
3388 // a typedef, or a bit-field, or a function, or a parameter, or an
3389 // object declared with the register storage-class specifier.
3390 int DiagKind = -1;
3391 if (isa<ParmVarDecl>(D)) {
3392 DiagKind = 0;
3393 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3394 if (VD->getStorageClass() == SC_Register)
3395 DiagKind = 1;
3396 if (VD->isExceptionVariable())
3397 DiagKind = 2;
3398 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3399 if (FD->isBitField())
3400 DiagKind = 3;
3401 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003402 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3403 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003404 << (TmpAttr.isC11() ? ExpectedVariableOrField
3405 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003406 return;
3407 }
3408 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003409 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003410 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003411 return;
3412 }
3413 }
3414
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003415 if (E->isTypeDependent() || E->isValueDependent()) {
3416 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003417 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3418 AA->setPackExpansion(IsPackExpansion);
3419 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003420 return;
3421 }
Michael Hana31f65b2013-02-01 01:19:17 +00003422
Sean Huntcf807c42010-08-18 23:23:40 +00003423 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003424 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003425 ExprResult ICE
3426 = VerifyIntegerConstantExpression(E, &Alignment,
3427 diag::err_aligned_attribute_argument_not_int,
3428 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003429 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003430 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003431
3432 // C++11 [dcl.align]p2:
3433 // -- if the constant expression evaluates to zero, the alignment
3434 // specifier shall have no effect
3435 // C11 6.7.5p6:
3436 // An alignment specification of zero has no effect.
3437 if (!(TmpAttr.isAlignas() && !Alignment) &&
3438 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003439 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3440 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003441 return;
3442 }
Michael Hana31f65b2013-02-01 01:19:17 +00003443
Richard Smithbe507b62013-02-01 08:12:08 +00003444 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003445 // We've already verified it's a power of 2, now let's make sure it's
3446 // 8192 or less.
3447 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003448 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003449 << E->getSourceRange();
3450 return;
3451 }
3452 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003453
Richard Smithf6565a92013-02-22 08:32:16 +00003454 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3455 ICE.take(), SpellingListIndex);
3456 AA->setPackExpansion(IsPackExpansion);
3457 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003458}
3459
Michael Hana31f65b2013-02-01 01:19:17 +00003460void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003461 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003462 // FIXME: Cache the number on the Attr object if non-dependent?
3463 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003464 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3465 SpellingListIndex);
3466 AA->setPackExpansion(IsPackExpansion);
3467 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003468}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003469
Richard Smithbe507b62013-02-01 08:12:08 +00003470void Sema::CheckAlignasUnderalignment(Decl *D) {
3471 assert(D->hasAttrs() && "no attributes on decl");
3472
3473 QualType Ty;
3474 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3475 Ty = VD->getType();
3476 else
3477 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003478 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003479 return;
3480
3481 // C++11 [dcl.align]p5, C11 6.7.5/4:
3482 // The combined effect of all alignment attributes in a declaration shall
3483 // not specify an alignment that is less strict than the alignment that
3484 // would otherwise be required for the entity being declared.
3485 AlignedAttr *AlignasAttr = 0;
3486 unsigned Align = 0;
3487 for (specific_attr_iterator<AlignedAttr>
3488 I = D->specific_attr_begin<AlignedAttr>(),
3489 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3490 if (I->isAlignmentDependent())
3491 return;
3492 if (I->isAlignas())
3493 AlignasAttr = *I;
3494 Align = std::max(Align, I->getAlignment(Context));
3495 }
3496
3497 if (AlignasAttr && Align) {
3498 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3499 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3500 if (NaturalAlign > RequestedAlign)
3501 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3502 << Ty << (unsigned)NaturalAlign.getQuantity();
3503 }
3504}
3505
Chandler Carruthd309c812011-07-01 23:49:16 +00003506/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003507/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003508///
Mike Stumpbf916502009-07-24 19:02:52 +00003509/// Despite what would be logical, the mode attribute is a decl attribute, not a
3510/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3511/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003512static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003513 // This attribute isn't documented, but glibc uses it. It changes
3514 // the width of an int or unsigned int to the specified size.
3515
3516 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003517 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003518 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003519
Chris Lattnerfbf13472008-06-27 22:18:37 +00003520
3521 IdentifierInfo *Name = Attr.getParameterName();
3522 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003523 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003524 return;
3525 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003526
Chris Lattner5f9e2722011-07-23 10:55:15 +00003527 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003528
3529 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003530 if (Str.startswith("__") && Str.endswith("__"))
3531 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003532
3533 unsigned DestWidth = 0;
3534 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003535 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003536 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003537 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003538 switch (Str[0]) {
3539 case 'Q': DestWidth = 8; break;
3540 case 'H': DestWidth = 16; break;
3541 case 'S': DestWidth = 32; break;
3542 case 'D': DestWidth = 64; break;
3543 case 'X': DestWidth = 96; break;
3544 case 'T': DestWidth = 128; break;
3545 }
3546 if (Str[1] == 'F') {
3547 IntegerMode = false;
3548 } else if (Str[1] == 'C') {
3549 IntegerMode = false;
3550 ComplexMode = true;
3551 } else if (Str[1] != 'I') {
3552 DestWidth = 0;
3553 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003554 break;
3555 case 4:
3556 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3557 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003558 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003559 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003560 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003561 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003562 break;
3563 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003564 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003565 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003566 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003567 case 11:
3568 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003569 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003570 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003571 }
3572
3573 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003574 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003575 OldTy = TD->getUnderlyingType();
3576 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3577 OldTy = VD->getType();
3578 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003579 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003580 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003581 return;
3582 }
Eli Friedman73397492009-03-03 06:41:03 +00003583
John McCall183700f2009-09-21 23:43:11 +00003584 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003585 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3586 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003587 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003588 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3589 } else if (ComplexMode) {
3590 if (!OldTy->isComplexType())
3591 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3592 } else {
3593 if (!OldTy->isFloatingType())
3594 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3595 }
3596
Mike Stump390b4cc2009-05-16 07:39:55 +00003597 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3598 // and friends, at least with glibc.
3599 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3600 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003601 // FIXME: Make sure floating-point mappings are accurate
3602 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003603 QualType NewTy;
3604 switch (DestWidth) {
3605 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003606 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003607 return;
3608 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003609 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003610 return;
3611 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003612 if (!IntegerMode) {
3613 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3614 return;
3615 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003616 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003617 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003618 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003619 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003620 break;
3621 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003622 if (!IntegerMode) {
3623 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3624 return;
3625 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003626 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003627 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003628 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003629 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003630 break;
3631 case 32:
3632 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003633 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003634 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003635 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003636 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003637 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003638 break;
3639 case 64:
3640 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003641 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003642 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003643 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003644 NewTy = S.Context.LongTy;
3645 else
3646 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003647 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003648 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003649 NewTy = S.Context.UnsignedLongTy;
3650 else
3651 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003652 break;
Eli Friedman73397492009-03-03 06:41:03 +00003653 case 96:
3654 NewTy = S.Context.LongDoubleTy;
3655 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003656 case 128:
3657 if (!IntegerMode) {
3658 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3659 return;
3660 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003661 if (OldTy->isSignedIntegerType())
3662 NewTy = S.Context.Int128Ty;
3663 else
3664 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003665 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003666 }
3667
Eli Friedman73397492009-03-03 06:41:03 +00003668 if (ComplexMode) {
3669 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003670 }
3671
3672 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003673 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003674 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003675 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003676 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003677 cast<ValueDecl>(D)->setType(NewTy);
3678}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003679
Chandler Carruth1b03c872011-07-02 00:01:44 +00003680static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003681 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003682 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003683 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003684
Nick Lewycky78d1a102012-07-24 01:40:49 +00003685 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3686 if (!VD->hasGlobalStorage())
3687 S.Diag(Attr.getLoc(),
3688 diag::warn_attribute_requires_functions_or_static_globals)
3689 << Attr.getName();
3690 } else if (!isFunctionOrMethod(D)) {
3691 S.Diag(Attr.getLoc(),
3692 diag::warn_attribute_requires_functions_or_static_globals)
3693 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003694 return;
3695 }
Mike Stumpbf916502009-07-24 19:02:52 +00003696
Michael Han51d8c522013-01-24 16:46:58 +00003697 D->addAttr(::new (S.Context)
3698 NoDebugAttr(Attr.getRange(), S.Context,
3699 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003700}
3701
Chandler Carruth1b03c872011-07-02 00:01:44 +00003702static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003703 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003704 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003705 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003706
Mike Stumpbf916502009-07-24 19:02:52 +00003707
Chandler Carruth87c44602011-07-01 23:49:12 +00003708 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003709 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003710 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003711 return;
3712 }
Mike Stumpbf916502009-07-24 19:02:52 +00003713
Michael Han51d8c522013-01-24 16:46:58 +00003714 D->addAttr(::new (S.Context)
3715 NoInlineAttr(Attr.getRange(), S.Context,
3716 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003717}
3718
Chandler Carruth1b03c872011-07-02 00:01:44 +00003719static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3720 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003721 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003722 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003723 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003724
Chris Lattner7255a2d2010-06-22 00:03:40 +00003725
Chandler Carruth87c44602011-07-01 23:49:12 +00003726 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003727 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003728 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003729 return;
3730 }
3731
Michael Han51d8c522013-01-24 16:46:58 +00003732 D->addAttr(::new (S.Context)
3733 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3734 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003735}
3736
Chandler Carruth1b03c872011-07-02 00:01:44 +00003737static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003738 if (S.LangOpts.CUDA) {
3739 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003740 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003741 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3742 return;
3743 }
3744
Chandler Carruth87c44602011-07-01 23:49:12 +00003745 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003746 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003747 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003748 return;
3749 }
3750
Michael Han51d8c522013-01-24 16:46:58 +00003751 D->addAttr(::new (S.Context)
3752 CUDAConstantAttr(Attr.getRange(), S.Context,
3753 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003754 } else {
3755 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3756 }
3757}
3758
Chandler Carruth1b03c872011-07-02 00:01:44 +00003759static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003760 if (S.LangOpts.CUDA) {
3761 // check the attribute arguments.
3762 if (Attr.getNumArgs() != 0) {
3763 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3764 return;
3765 }
3766
Chandler Carruth87c44602011-07-01 23:49:12 +00003767 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003768 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003769 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003770 return;
3771 }
3772
Michael Han51d8c522013-01-24 16:46:58 +00003773 D->addAttr(::new (S.Context)
3774 CUDADeviceAttr(Attr.getRange(), S.Context,
3775 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003776 } else {
3777 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3778 }
3779}
3780
Chandler Carruth1b03c872011-07-02 00:01:44 +00003781static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003782 if (S.LangOpts.CUDA) {
3783 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003784 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003785 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003786
Chandler Carruth87c44602011-07-01 23:49:12 +00003787 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003788 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003789 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003790 return;
3791 }
3792
Chandler Carruth87c44602011-07-01 23:49:12 +00003793 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003794 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003795 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003796 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003797 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3798 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003799 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003800 "void");
3801 } else {
3802 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3803 << FD->getType();
3804 }
3805 return;
3806 }
3807
Michael Han51d8c522013-01-24 16:46:58 +00003808 D->addAttr(::new (S.Context)
3809 CUDAGlobalAttr(Attr.getRange(), S.Context,
3810 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003811 } else {
3812 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3813 }
3814}
3815
Chandler Carruth1b03c872011-07-02 00:01:44 +00003816static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003817 if (S.LangOpts.CUDA) {
3818 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003819 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003820 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003821
Peter Collingbourneced76712010-12-01 03:15:31 +00003822
Chandler Carruth87c44602011-07-01 23:49:12 +00003823 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003824 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003825 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003826 return;
3827 }
3828
Michael Han51d8c522013-01-24 16:46:58 +00003829 D->addAttr(::new (S.Context)
3830 CUDAHostAttr(Attr.getRange(), S.Context,
3831 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003832 } else {
3833 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3834 }
3835}
3836
Chandler Carruth1b03c872011-07-02 00:01:44 +00003837static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003838 if (S.LangOpts.CUDA) {
3839 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003840 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003841 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003842
Chandler Carruth87c44602011-07-01 23:49:12 +00003843 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003844 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003845 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003846 return;
3847 }
3848
Michael Han51d8c522013-01-24 16:46:58 +00003849 D->addAttr(::new (S.Context)
3850 CUDASharedAttr(Attr.getRange(), S.Context,
3851 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003852 } else {
3853 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3854 }
3855}
3856
Chandler Carruth1b03c872011-07-02 00:01:44 +00003857static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003858 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003859 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003860 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003861
Chandler Carruth87c44602011-07-01 23:49:12 +00003862 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003863 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003864 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003865 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003866 return;
3867 }
Mike Stumpbf916502009-07-24 19:02:52 +00003868
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003869 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003870 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003871 return;
3872 }
Mike Stumpbf916502009-07-24 19:02:52 +00003873
Michael Han51d8c522013-01-24 16:46:58 +00003874 D->addAttr(::new (S.Context)
3875 GNUInlineAttr(Attr.getRange(), S.Context,
3876 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003877}
3878
Chandler Carruth1b03c872011-07-02 00:01:44 +00003879static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003880 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003881
Aaron Ballmanfff32482012-12-09 17:45:41 +00003882 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003883 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003884 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3885 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003886 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003887 return;
3888
Chandler Carruth87c44602011-07-01 23:49:12 +00003889 if (!isa<ObjCMethodDecl>(D)) {
3890 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3891 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003892 return;
3893 }
3894
Chandler Carruth87c44602011-07-01 23:49:12 +00003895 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003896 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003897 D->addAttr(::new (S.Context)
3898 FastCallAttr(Attr.getRange(), S.Context,
3899 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003900 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003901 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003902 D->addAttr(::new (S.Context)
3903 StdCallAttr(Attr.getRange(), S.Context,
3904 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003905 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003906 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003907 D->addAttr(::new (S.Context)
3908 ThisCallAttr(Attr.getRange(), S.Context,
3909 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003910 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003911 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003912 D->addAttr(::new (S.Context)
3913 CDeclAttr(Attr.getRange(), S.Context,
3914 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003915 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003916 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003917 D->addAttr(::new (S.Context)
3918 PascalAttr(Attr.getRange(), S.Context,
3919 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003920 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003921 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003922 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003923 switch (CC) {
3924 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003925 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003926 break;
3927 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003928 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003929 break;
3930 default:
3931 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003932 }
3933
Michael Han51d8c522013-01-24 16:46:58 +00003934 D->addAttr(::new (S.Context)
3935 PcsAttr(Attr.getRange(), S.Context, PCS,
3936 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003937 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003938 }
Derek Schuff263366f2012-10-16 22:30:41 +00003939 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003940 D->addAttr(::new (S.Context)
3941 PnaclCallAttr(Attr.getRange(), S.Context,
3942 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003943 return;
Guy Benyei38980082012-12-25 08:53:55 +00003944 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003945 D->addAttr(::new (S.Context)
3946 IntelOclBiccAttr(Attr.getRange(), S.Context,
3947 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003948 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003949
Abramo Bagnarae215f722010-04-30 13:10:51 +00003950 default:
3951 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003952 }
3953}
3954
Chandler Carruth1b03c872011-07-02 00:01:44 +00003955static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003956 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003957 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003958}
3959
Aaron Ballmanfff32482012-12-09 17:45:41 +00003960bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3961 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003962 if (attr.isInvalid())
3963 return true;
3964
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003965 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3966 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
3967 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00003968 attr.setInvalid();
3969 return true;
3970 }
3971
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003972 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3973 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003974 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003975 case AttributeList::AT_CDecl: CC = CC_C; break;
3976 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3977 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3978 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3979 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3980 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003981 Expr *Arg = attr.getArg(0);
3982 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003983 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003984 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3985 << "pcs" << 1;
3986 attr.setInvalid();
3987 return true;
3988 }
3989
Chris Lattner5f9e2722011-07-23 10:55:15 +00003990 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003991 if (StrRef == "aapcs") {
3992 CC = CC_AAPCS;
3993 break;
3994 } else if (StrRef == "aapcs-vfp") {
3995 CC = CC_AAPCS_VFP;
3996 break;
3997 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003998
3999 attr.setInvalid();
4000 Diag(attr.getLoc(), diag::err_invalid_pcs);
4001 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004002 }
Derek Schuff263366f2012-10-16 22:30:41 +00004003 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00004004 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00004005 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00004006 }
4007
Aaron Ballman82bfa192012-10-02 14:26:08 +00004008 const TargetInfo &TI = Context.getTargetInfo();
4009 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
4010 if (A == TargetInfo::CCCR_Warning) {
4011 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00004012
4013 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
4014 if (FD)
4015 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
4016 TargetInfo::CCMT_NonMember;
4017 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00004018 }
4019
John McCall711c52b2011-01-05 12:14:39 +00004020 return false;
4021}
4022
Chandler Carruth1b03c872011-07-02 00:01:44 +00004023static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004024 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00004025
4026 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00004027 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00004028 return;
4029
Chandler Carruth87c44602011-07-01 23:49:12 +00004030 if (!isa<ObjCMethodDecl>(D)) {
4031 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4032 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004033 return;
4034 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004035
Michael Han51d8c522013-01-24 16:46:58 +00004036 D->addAttr(::new (S.Context)
4037 RegparmAttr(Attr.getRange(), S.Context, numParams,
4038 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004039}
4040
4041/// Checks a regparm attribute, returning true if it is ill-formed and
4042/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004043bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4044 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004045 return true;
4046
Chandler Carruth87c44602011-07-01 23:49:12 +00004047 if (Attr.getNumArgs() != 1) {
4048 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
4049 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004050 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004051 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004052
Chandler Carruth87c44602011-07-01 23:49:12 +00004053 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004054 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004055 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004056 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004057 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004058 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004059 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004060 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004061 }
4062
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004063 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004064 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004065 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004066 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004067 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004068 }
4069
John McCall711c52b2011-01-05 12:14:39 +00004070 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004071 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004072 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004073 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004074 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004075 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004076 }
4077
John McCall711c52b2011-01-05 12:14:39 +00004078 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004079}
4080
Chandler Carruth1b03c872011-07-02 00:01:44 +00004081static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004082 if (S.LangOpts.CUDA) {
4083 // check the attribute arguments.
4084 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004085 // FIXME: 0 is not okay.
4086 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004087 return;
4088 }
4089
Chandler Carruth87c44602011-07-01 23:49:12 +00004090 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004091 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004092 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004093 return;
4094 }
4095
4096 Expr *MaxThreadsExpr = Attr.getArg(0);
4097 llvm::APSInt MaxThreads(32);
4098 if (MaxThreadsExpr->isTypeDependent() ||
4099 MaxThreadsExpr->isValueDependent() ||
4100 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
4101 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4102 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
4103 return;
4104 }
4105
4106 llvm::APSInt MinBlocks(32);
4107 if (Attr.getNumArgs() > 1) {
4108 Expr *MinBlocksExpr = Attr.getArg(1);
4109 if (MinBlocksExpr->isTypeDependent() ||
4110 MinBlocksExpr->isValueDependent() ||
4111 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
4112 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4113 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
4114 return;
4115 }
4116 }
4117
Michael Han51d8c522013-01-24 16:46:58 +00004118 D->addAttr(::new (S.Context)
4119 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4120 MaxThreads.getZExtValue(),
4121 MinBlocks.getZExtValue(),
4122 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004123 } else {
4124 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4125 }
4126}
4127
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004128static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4129 const AttributeList &Attr) {
4130 StringRef AttrName = Attr.getName()->getName();
4131 if (!Attr.getParameterName()) {
4132 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4133 << Attr.getName() << /* arg num = */ 1;
4134 return;
4135 }
4136
4137 if (Attr.getNumArgs() != 2) {
4138 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4139 << /* required args = */ 3;
4140 return;
4141 }
4142
4143 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4144
4145 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4146 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4147 << Attr.getName() << ExpectedFunctionOrMethod;
4148 return;
4149 }
4150
4151 uint64_t ArgumentIdx;
4152 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4153 Attr.getLoc(), 2,
4154 Attr.getArg(0), ArgumentIdx))
4155 return;
4156
4157 uint64_t TypeTagIdx;
4158 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4159 Attr.getLoc(), 3,
4160 Attr.getArg(1), TypeTagIdx))
4161 return;
4162
4163 bool IsPointer = (AttrName == "pointer_with_type_tag");
4164 if (IsPointer) {
4165 // Ensure that buffer has a pointer type.
4166 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4167 if (!BufferTy->isPointerType()) {
4168 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
4169 << AttrName;
4170 }
4171 }
4172
Michael Han51d8c522013-01-24 16:46:58 +00004173 D->addAttr(::new (S.Context)
4174 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4175 ArgumentIdx, TypeTagIdx, IsPointer,
4176 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004177}
4178
4179static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4180 const AttributeList &Attr) {
4181 IdentifierInfo *PointerKind = Attr.getParameterName();
4182 if (!PointerKind) {
4183 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4184 << "type_tag_for_datatype" << 1;
4185 return;
4186 }
4187
4188 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4189
Michael Han51d8c522013-01-24 16:46:58 +00004190 D->addAttr(::new (S.Context)
4191 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4192 MatchingCType,
4193 Attr.getLayoutCompatible(),
4194 Attr.getMustBeNull(),
4195 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004196}
4197
Chris Lattner0744e5f2008-06-29 00:23:49 +00004198//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004199// Checker-specific attribute handlers.
4200//===----------------------------------------------------------------------===//
4201
John McCallc7ad3812011-01-25 03:31:58 +00004202static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004203 return type->isDependentType() ||
4204 type->isObjCObjectPointerType() ||
4205 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004206}
4207static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004208 return type->isDependentType() ||
4209 type->isPointerType() ||
4210 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004211}
4212
Chandler Carruth1b03c872011-07-02 00:01:44 +00004213static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004214 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004215 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004216 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004217 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004218 return;
4219 }
4220
4221 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004222 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004223 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4224 cf = false;
4225 } else {
4226 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4227 cf = true;
4228 }
4229
4230 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004231 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004232 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004233 return;
4234 }
4235
4236 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004237 param->addAttr(::new (S.Context)
4238 CFConsumedAttr(Attr.getRange(), S.Context,
4239 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004240 else
Michael Han51d8c522013-01-24 16:46:58 +00004241 param->addAttr(::new (S.Context)
4242 NSConsumedAttr(Attr.getRange(), S.Context,
4243 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004244}
4245
Chandler Carruth1b03c872011-07-02 00:01:44 +00004246static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4247 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004248 if (!isa<ObjCMethodDecl>(D)) {
4249 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004250 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004251 return;
4252 }
4253
Michael Han51d8c522013-01-24 16:46:58 +00004254 D->addAttr(::new (S.Context)
4255 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4256 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004257}
4258
Chandler Carruth1b03c872011-07-02 00:01:44 +00004259static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4260 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004261
John McCallc7ad3812011-01-25 03:31:58 +00004262 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004263
Chandler Carruth87c44602011-07-01 23:49:12 +00004264 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004265 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004266 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004267 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004268 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004269 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4270 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004271 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004272 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004273 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004274 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004275 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004276 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004277 return;
4278 }
Mike Stumpbf916502009-07-24 19:02:52 +00004279
John McCallc7ad3812011-01-25 03:31:58 +00004280 bool typeOK;
4281 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004282 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004283 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004284 case AttributeList::AT_NSReturnsAutoreleased:
4285 case AttributeList::AT_NSReturnsRetained:
4286 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004287 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4288 cf = false;
4289 break;
4290
Sean Hunt8e083e72012-06-19 23:57:03 +00004291 case AttributeList::AT_CFReturnsRetained:
4292 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004293 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4294 cf = true;
4295 break;
4296 }
4297
4298 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004299 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004300 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004301 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004302 }
Mike Stumpbf916502009-07-24 19:02:52 +00004303
Chandler Carruth87c44602011-07-01 23:49:12 +00004304 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004305 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004306 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004307 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004308 D->addAttr(::new (S.Context)
4309 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4310 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004311 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004312 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004313 D->addAttr(::new (S.Context)
4314 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4315 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004316 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004317 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004318 D->addAttr(::new (S.Context)
4319 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4320 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004321 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004322 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004323 D->addAttr(::new (S.Context)
4324 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4325 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004326 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004327 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004328 D->addAttr(::new (S.Context)
4329 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4330 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004331 return;
4332 };
4333}
4334
John McCalldc7c5ad2011-07-22 08:53:00 +00004335static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4336 const AttributeList &attr) {
4337 SourceLocation loc = attr.getLoc();
4338
4339 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4340
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004341 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004342 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004343 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004344 return;
4345 }
4346
4347 // Check that the method returns a normal pointer.
4348 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004349
4350 if (!resultType->isReferenceType() &&
4351 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004352 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4353 << SourceRange(loc)
4354 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4355
4356 // Drop the attribute.
4357 return;
4358 }
4359
Michael Han51d8c522013-01-24 16:46:58 +00004360 method->addAttr(::new (S.Context)
4361 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4362 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004363}
4364
Fariborz Jahanian84101132012-09-07 23:46:23 +00004365static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4366 const AttributeList &attr) {
4367 SourceLocation loc = attr.getLoc();
4368 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4369
4370 if (!method) {
4371 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4372 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4373 return;
4374 }
4375 DeclContext *DC = method->getDeclContext();
4376 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4377 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4378 << attr.getName() << 0;
4379 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4380 return;
4381 }
4382 if (method->getMethodFamily() == OMF_dealloc) {
4383 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4384 << attr.getName() << 1;
4385 return;
4386 }
4387
Michael Han51d8c522013-01-24 16:46:58 +00004388 method->addAttr(::new (S.Context)
4389 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4390 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004391}
4392
John McCall8dfac0b2011-09-30 05:12:12 +00004393/// Handle cf_audited_transfer and cf_unknown_transfer.
4394static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4395 if (!isa<FunctionDecl>(D)) {
4396 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004397 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004398 return;
4399 }
4400
Sean Hunt8e083e72012-06-19 23:57:03 +00004401 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004402
4403 // Check whether there's a conflicting attribute already present.
4404 Attr *Existing;
4405 if (IsAudited) {
4406 Existing = D->getAttr<CFUnknownTransferAttr>();
4407 } else {
4408 Existing = D->getAttr<CFAuditedTransferAttr>();
4409 }
4410 if (Existing) {
4411 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4412 << A.getName()
4413 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4414 << A.getRange() << Existing->getRange();
4415 return;
4416 }
4417
4418 // All clear; add the attribute.
4419 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004420 D->addAttr(::new (S.Context)
4421 CFAuditedTransferAttr(A.getRange(), S.Context,
4422 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004423 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004424 D->addAttr(::new (S.Context)
4425 CFUnknownTransferAttr(A.getRange(), S.Context,
4426 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004427 }
4428}
4429
John McCallfe98da02011-09-29 07:17:38 +00004430static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4431 const AttributeList &Attr) {
4432 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4433 if (!RD || RD->isUnion()) {
4434 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004435 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004436 }
4437
4438 IdentifierInfo *ParmName = Attr.getParameterName();
4439
4440 // In Objective-C, verify that the type names an Objective-C type.
4441 // We don't want to check this outside of ObjC because people sometimes
4442 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004443 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004444 // Check for an existing type with this name.
4445 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4446 Sema::LookupOrdinaryName);
4447 if (S.LookupName(R, Sc)) {
4448 NamedDecl *Target = R.getFoundDecl();
4449 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4450 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4451 S.Diag(Target->getLocStart(), diag::note_declared_at);
4452 }
4453 }
4454 }
4455
Michael Han51d8c522013-01-24 16:46:58 +00004456 D->addAttr(::new (S.Context)
4457 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4458 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004459}
4460
Chandler Carruth1b03c872011-07-02 00:01:44 +00004461static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4462 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004463 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004464
Chandler Carruth87c44602011-07-01 23:49:12 +00004465 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004466 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004467}
4468
Chandler Carruth1b03c872011-07-02 00:01:44 +00004469static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4470 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004471 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004472 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004473 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004474 return;
4475 }
4476
Chandler Carruth87c44602011-07-01 23:49:12 +00004477 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004478 QualType type = vd->getType();
4479
4480 if (!type->isDependentType() &&
4481 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004482 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004483 << type;
4484 return;
4485 }
4486
4487 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4488
4489 // If we have no lifetime yet, check the lifetime we're presumably
4490 // going to infer.
4491 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4492 lifetime = type->getObjCARCImplicitLifetime();
4493
4494 switch (lifetime) {
4495 case Qualifiers::OCL_None:
4496 assert(type->isDependentType() &&
4497 "didn't infer lifetime for non-dependent type?");
4498 break;
4499
4500 case Qualifiers::OCL_Weak: // meaningful
4501 case Qualifiers::OCL_Strong: // meaningful
4502 break;
4503
4504 case Qualifiers::OCL_ExplicitNone:
4505 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004506 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004507 << (lifetime == Qualifiers::OCL_Autoreleasing);
4508 break;
4509 }
4510
Chandler Carruth87c44602011-07-01 23:49:12 +00004511 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004512 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4513 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004514}
4515
Francois Pichet11542142010-12-19 06:50:37 +00004516//===----------------------------------------------------------------------===//
4517// Microsoft specific attribute handlers.
4518//===----------------------------------------------------------------------===//
4519
Chandler Carruth1b03c872011-07-02 00:01:44 +00004520static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004521 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00004522 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00004523 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00004524 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004525
Francois Pichet11542142010-12-19 06:50:37 +00004526 Expr *Arg = Attr.getArg(0);
4527 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004528 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004529 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
4530 << "uuid" << 1;
4531 return;
4532 }
4533
Chris Lattner5f9e2722011-07-23 10:55:15 +00004534 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004535
4536 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4537 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004538
Francois Pichetd3d3be92010-12-20 01:41:49 +00004539 // Validate GUID length.
4540 if (IsCurly && StrRef.size() != 38) {
4541 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4542 return;
4543 }
4544 if (!IsCurly && StrRef.size() != 36) {
4545 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4546 return;
4547 }
4548
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004549 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00004550 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00004551 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00004552 if (IsCurly) // Skip the optional '{'
4553 ++I;
4554
4555 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004556 if (i == 8 || i == 13 || i == 18 || i == 23) {
4557 if (*I != '-') {
4558 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4559 return;
4560 }
Jordan Rose3f6f51e2013-02-08 22:30:41 +00004561 } else if (!isHexDigit(*I)) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004562 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4563 return;
4564 }
4565 I++;
4566 }
Francois Pichet11542142010-12-19 06:50:37 +00004567
Michael Han51d8c522013-01-24 16:46:58 +00004568 D->addAttr(::new (S.Context)
4569 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4570 Attr.getAttributeSpellingListIndex()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00004571 } else
Francois Pichet11542142010-12-19 06:50:37 +00004572 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00004573}
4574
John McCallc052dbb2012-05-22 21:28:12 +00004575static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nico Weber7b89ab72012-11-07 21:31:36 +00004576 if (!S.LangOpts.MicrosoftExt) {
John McCallc052dbb2012-05-22 21:28:12 +00004577 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Nico Weber7b89ab72012-11-07 21:31:36 +00004578 return;
4579 }
4580
4581 AttributeList::Kind Kind = Attr.getKind();
4582 if (Kind == AttributeList::AT_SingleInheritance)
4583 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004584 ::new (S.Context)
4585 SingleInheritanceAttr(Attr.getRange(), S.Context,
4586 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004587 else if (Kind == AttributeList::AT_MultipleInheritance)
4588 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004589 ::new (S.Context)
4590 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4591 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004592 else if (Kind == AttributeList::AT_VirtualInheritance)
4593 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004594 ::new (S.Context)
4595 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4596 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004597}
4598
4599static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4600 if (S.LangOpts.MicrosoftExt) {
4601 AttributeList::Kind Kind = Attr.getKind();
Sean Hunt8e083e72012-06-19 23:57:03 +00004602 if (Kind == AttributeList::AT_Ptr32)
John McCallc052dbb2012-05-22 21:28:12 +00004603 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004604 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context,
4605 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004606 else if (Kind == AttributeList::AT_Ptr64)
John McCallc052dbb2012-05-22 21:28:12 +00004607 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004608 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context,
4609 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004610 else if (Kind == AttributeList::AT_Win64)
John McCallc052dbb2012-05-22 21:28:12 +00004611 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004612 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4613 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004614 } else
4615 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4616}
4617
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004618static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4619 if (S.LangOpts.MicrosoftExt)
Michael Han51d8c522013-01-24 16:46:58 +00004620 D->addAttr(::new (S.Context)
4621 ForceInlineAttr(Attr.getRange(), S.Context,
4622 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004623 else
4624 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4625}
4626
Ted Kremenekb71368d2009-05-09 02:44:38 +00004627//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004628// Top Level Sema Entry Points
4629//===----------------------------------------------------------------------===//
4630
Chandler Carruth1b03c872011-07-02 00:01:44 +00004631static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4632 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004633 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004634 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4635 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4636 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004637 default:
4638 break;
4639 }
4640}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004641
Chandler Carruth1b03c872011-07-02 00:01:44 +00004642static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4643 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004644 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004645 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4646 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4647 case AttributeList::AT_IBOutletCollection:
4648 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004649 case AttributeList::AT_AddressSpace:
4650 case AttributeList::AT_OpenCLImageAccess:
4651 case AttributeList::AT_ObjCGC:
4652 case AttributeList::AT_VectorSize:
4653 case AttributeList::AT_NeonVectorType:
4654 case AttributeList::AT_NeonPolyVectorType:
Mike Stumpbf916502009-07-24 19:02:52 +00004655 // Ignore these, these are type attributes, handled by
4656 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004657 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004658 case AttributeList::AT_CUDADevice:
4659 case AttributeList::AT_CUDAHost:
4660 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004661 // Ignore, this is a non-inheritable attribute, handled
4662 // by ProcessNonInheritableDeclAttr.
4663 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004664 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4665 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4666 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4667 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004668 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004669 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004670 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004671 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004672 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4673 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4674 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004675 handleDependencyAttr(S, scope, D, Attr);
4676 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004677 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4678 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4679 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004680 case AttributeList::AT_CXX11NoReturn:
4681 handleCXX11NoReturnAttr(S, D, Attr);
4682 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004683 case AttributeList::AT_Deprecated:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004684 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
4685 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004686 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4687 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004688 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004689 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004690 case AttributeList::AT_MinSize:
4691 handleMinSizeAttr(S, D, Attr);
4692 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004693 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4694 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4695 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4696 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4697 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004698 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004699 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004700 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4701 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4702 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4703 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4704 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004705 case AttributeList::AT_ownership_returns:
4706 case AttributeList::AT_ownership_takes:
4707 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004708 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004709 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4710 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4711 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4712 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4713 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4714 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4715 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004716
Sean Hunt8e083e72012-06-19 23:57:03 +00004717 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004718 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004719 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004720 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004721
Sean Hunt8e083e72012-06-19 23:57:03 +00004722 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004723 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4724
Fariborz Jahanian84101132012-09-07 23:46:23 +00004725 case AttributeList::AT_ObjCRequiresSuper:
4726 handleObjCRequiresSuperAttr(S, D, Attr); break;
4727
Sean Hunt8e083e72012-06-19 23:57:03 +00004728 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004729 handleNSBridgedAttr(S, scope, D, Attr); break;
4730
Sean Hunt8e083e72012-06-19 23:57:03 +00004731 case AttributeList::AT_CFAuditedTransfer:
4732 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004733 handleCFTransferAttr(S, D, Attr); break;
4734
Ted Kremenekb71368d2009-05-09 02:44:38 +00004735 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004736 case AttributeList::AT_CFConsumed:
4737 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4738 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004739 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004740
Sean Hunt8e083e72012-06-19 23:57:03 +00004741 case AttributeList::AT_NSReturnsAutoreleased:
4742 case AttributeList::AT_NSReturnsNotRetained:
4743 case AttributeList::AT_CFReturnsNotRetained:
4744 case AttributeList::AT_NSReturnsRetained:
4745 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004746 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004747
Tanya Lattner0df579e2012-07-09 22:06:01 +00004748 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004749 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004750 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004751
Sean Hunt8e083e72012-06-19 23:57:03 +00004752 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004753 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004754
Sean Hunt8e083e72012-06-19 23:57:03 +00004755 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4756 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4757 case AttributeList::AT_Unavailable:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004758 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4759 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004760 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004761 handleArcWeakrefUnavailableAttr (S, D, Attr);
4762 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004763 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004764 handleObjCRootClassAttr(S, D, Attr);
4765 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004766 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004767 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004768 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004769 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4770 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004771 handleReturnsTwiceAttr(S, D, Attr);
4772 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004773 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004774 case AttributeList::AT_Visibility:
4775 handleVisibilityAttr(S, D, Attr, false);
4776 break;
4777 case AttributeList::AT_TypeVisibility:
4778 handleVisibilityAttr(S, D, Attr, true);
4779 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004780 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004781 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004782 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4783 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4784 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4785 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004786 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004787 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004788 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004789 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004790 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004791 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004792 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004793 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004794 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4795 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4796 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4797 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4798 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4799 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4800 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4801 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4802 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004803 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004804 // Just ignore
4805 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004806 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004807 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004808 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004809 case AttributeList::AT_StdCall:
4810 case AttributeList::AT_CDecl:
4811 case AttributeList::AT_FastCall:
4812 case AttributeList::AT_ThisCall:
4813 case AttributeList::AT_Pascal:
4814 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004815 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004816 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004817 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004818 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004819 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004820 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004821 break;
John McCallc052dbb2012-05-22 21:28:12 +00004822
4823 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004824 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004825 handleMsStructAttr(S, D, Attr);
4826 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004827 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004828 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004829 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004830 case AttributeList::AT_SingleInheritance:
4831 case AttributeList::AT_MultipleInheritance:
4832 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004833 handleInheritanceAttr(S, D, Attr);
4834 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004835 case AttributeList::AT_Win64:
4836 case AttributeList::AT_Ptr32:
4837 case AttributeList::AT_Ptr64:
John McCallc052dbb2012-05-22 21:28:12 +00004838 handlePortabilityAttr(S, D, Attr);
4839 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004840 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004841 handleForceInlineAttr(S, D, Attr);
4842 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004843
4844 // Thread safety attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004845 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004846 handleGuardedVarAttr(S, D, Attr);
4847 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004848 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004849 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004850 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004851 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004852 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004853 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004854 case AttributeList::AT_NoSanitizeAddress:
4855 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004856 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004857 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004858 handleNoThreadSafetyAnalysis(S, D, Attr);
4859 break;
4860 case AttributeList::AT_NoSanitizeThread:
4861 handleNoSanitizeThread(S, D, Attr);
4862 break;
4863 case AttributeList::AT_NoSanitizeMemory:
4864 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004865 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004866 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004867 handleLockableAttr(S, D, Attr);
4868 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004869 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004870 handleGuardedByAttr(S, D, Attr);
4871 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004872 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004873 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004874 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004875 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004876 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004877 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004878 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004879 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004880 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004881 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004882 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004883 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004884 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004885 handleLockReturnedAttr(S, D, Attr);
4886 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004887 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004888 handleLocksExcludedAttr(S, D, Attr);
4889 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004890 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004891 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004892 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004893 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004894 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004895 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004896 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004897 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004898 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004899 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004900 handleUnlockFunAttr(S, D, Attr);
4901 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004902 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004903 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004904 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004905 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004906 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004907 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004908
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004909 // Type safety attributes.
4910 case AttributeList::AT_ArgumentWithTypeTag:
4911 handleArgumentWithTypeTagAttr(S, D, Attr);
4912 break;
4913 case AttributeList::AT_TypeTagForDatatype:
4914 handleTypeTagForDatatypeAttr(S, D, Attr);
4915 break;
4916
Chris Lattner803d0802008-06-29 00:43:07 +00004917 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004918 // Ask target about the attribute.
4919 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4920 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004921 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4922 diag::warn_unhandled_ms_attribute_ignored :
4923 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004924 break;
4925 }
4926}
4927
Peter Collingbourne60700392011-01-21 02:08:45 +00004928/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4929/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004930/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004931static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4932 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00004933 bool NonInheritable, bool Inheritable,
4934 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004935 if (Attr.isInvalid())
4936 return;
4937
Richard Smithcd8ab512013-01-17 01:30:42 +00004938 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4939 // instead.
4940 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4941 return;
4942
Peter Collingbourne60700392011-01-21 02:08:45 +00004943 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004944 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004945
4946 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004947 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004948}
4949
Chris Lattner803d0802008-06-29 00:43:07 +00004950/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4951/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004952void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004953 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004954 bool NonInheritable, bool Inheritable,
4955 bool IncludeCXX11Attributes) {
4956 for (const AttributeList* l = AttrList; l; l = l->getNext())
4957 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
4958 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004959
4960 // GCC accepts
4961 // static int a9 __attribute__((weakref));
4962 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004963 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004964 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004965 cast<NamedDecl>(D)->getNameAsString();
4966 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004967 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004968 }
4969}
4970
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004971// Annotation attributes are the only attributes allowed after an access
4972// specifier.
4973bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4974 const AttributeList *AttrList) {
4975 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004976 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004977 handleAnnotateAttr(*this, ASDecl, *l);
4978 } else {
4979 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4980 return true;
4981 }
4982 }
4983
4984 return false;
4985}
4986
John McCalle82247a2011-10-01 05:17:03 +00004987/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4988/// contains any decl attributes that we should warn about.
4989static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4990 for ( ; A; A = A->getNext()) {
4991 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004992 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004993 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4994
4995 if (A->getKind() == AttributeList::UnknownAttribute) {
4996 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4997 << A->getName() << A->getRange();
4998 } else {
4999 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
5000 << A->getName() << A->getRange();
5001 }
5002 }
5003}
5004
5005/// checkUnusedDeclAttributes - Given a declarator which is not being
5006/// used to build a declaration, complain about any decl attributes
5007/// which might be lying around on it.
5008void Sema::checkUnusedDeclAttributes(Declarator &D) {
5009 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
5010 ::checkUnusedDeclAttributes(*this, D.getAttributes());
5011 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
5012 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
5013}
5014
Ryan Flynne25ff832009-07-30 03:15:39 +00005015/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00005016/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00005017NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5018 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005019 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00005020 NamedDecl *NewD = 0;
5021 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00005022 FunctionDecl *NewFD;
5023 // FIXME: Missing call to CheckFunctionDeclaration().
5024 // FIXME: Mangling?
5025 // FIXME: Is the qualifier info correct?
5026 // FIXME: Is the DeclContext correct?
5027 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
5028 Loc, Loc, DeclarationName(II),
5029 FD->getType(), FD->getTypeSourceInfo(),
5030 SC_None, SC_None,
5031 false/*isInlineSpecified*/,
5032 FD->hasPrototype(),
5033 false/*isConstexprSpecified*/);
5034 NewD = NewFD;
5035
5036 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005037 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00005038
5039 // Fake up parameter variables; they are declared as if this were
5040 // a typedef.
5041 QualType FDTy = FD->getType();
5042 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5043 SmallVector<ParmVarDecl*, 16> Params;
5044 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5045 AE = FT->arg_type_end(); AI != AE; ++AI) {
5046 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5047 Param->setScopeInfo(0, Params.size());
5048 Params.push_back(Param);
5049 }
David Blaikie4278c652011-09-21 18:16:56 +00005050 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005051 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005052 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5053 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005054 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005055 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00005056 VD->getStorageClass(),
5057 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00005058 if (VD->getQualifier()) {
5059 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005060 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005061 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005062 }
5063 return NewD;
5064}
5065
James Dennett1dfbd922012-06-14 21:40:34 +00005066/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005067/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005068void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005069 if (W.getUsed()) return; // only do this once
5070 W.setUsed(true);
5071 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5072 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005073 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005074 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5075 NDId->getName()));
5076 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005077 WeakTopLevelDecl.push_back(NewD);
5078 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5079 // to insert Decl at TU scope, sorry.
5080 DeclContext *SavedContext = CurContext;
5081 CurContext = Context.getTranslationUnitDecl();
5082 PushOnScopeChains(NewD, S);
5083 CurContext = SavedContext;
5084 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005085 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005086 }
5087}
5088
Chris Lattner0744e5f2008-06-29 00:23:49 +00005089/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5090/// it, apply them to D. This is a bit tricky because PD can have attributes
5091/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005092void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5093 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00005094 // It's valid to "forward-declare" #pragma weak, in which case we
5095 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00005096 if (Inheritable) {
5097 LoadExternalWeakUndeclaredIdentifiers();
5098 if (!WeakUndeclaredIdentifiers.empty()) {
5099 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
5100 if (IdentifierInfo *Id = ND->getIdentifier()) {
5101 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5102 = WeakUndeclaredIdentifiers.find(Id);
5103 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
5104 WeakInfo W = I->second;
5105 DeclApplyPragmaWeak(S, ND, W);
5106 WeakUndeclaredIdentifiers[Id] = W;
5107 }
John McCalld4aff0e2010-10-27 00:59:00 +00005108 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005109 }
5110 }
5111 }
5112
Chris Lattner0744e5f2008-06-29 00:23:49 +00005113 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005114 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005115 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005116
Chris Lattner0744e5f2008-06-29 00:23:49 +00005117 // Walk the declarator structure, applying decl attributes that were in a type
5118 // position to the decl itself. This handles cases like:
5119 // int *__attr__(x)** D;
5120 // when X is a decl attribute.
5121 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5122 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005123 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5124 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005125
Chris Lattner0744e5f2008-06-29 00:23:49 +00005126 // Finally, apply any attributes on the decl itself.
5127 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005128 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005129}
John McCall54abf7d2009-11-04 02:18:39 +00005130
John McCallf85e1932011-06-15 23:02:42 +00005131/// Is the given declaration allowed to use a forbidden type?
5132static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5133 // Private ivars are always okay. Unfortunately, people don't
5134 // always properly make their ivars private, even in system headers.
5135 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005136 // Function declarations in sys headers will be marked unavailable.
5137 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5138 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005139 return false;
5140
5141 // Require it to be declared in a system header.
5142 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5143}
5144
5145/// Handle a delayed forbidden-type diagnostic.
5146static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5147 Decl *decl) {
5148 if (decl && isForbiddenTypeAllowed(S, decl)) {
5149 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5150 "this system declaration uses an unsupported type"));
5151 return;
5152 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005153 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005154 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005155 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005156 // kind of forbidden type messages on unavailable functions.
5157 if (FD->hasAttr<UnavailableAttr>() &&
5158 diag.getForbiddenTypeDiagnostic() ==
5159 diag::err_arc_array_param_no_ownership) {
5160 diag.Triggered = true;
5161 return;
5162 }
5163 }
John McCallf85e1932011-06-15 23:02:42 +00005164
5165 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5166 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5167 diag.Triggered = true;
5168}
5169
John McCall92576642012-05-07 06:16:41 +00005170void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5171 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005172 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005173 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005174
John McCall92576642012-05-07 06:16:41 +00005175 // When delaying diagnostics to run in the context of a parsed
5176 // declaration, we only want to actually emit anything if parsing
5177 // succeeds.
5178 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005179
John McCall92576642012-05-07 06:16:41 +00005180 // We emit all the active diagnostics in this pool or any of its
5181 // parents. In general, we'll get one pool for the decl spec
5182 // and a child pool for each declarator; in a decl group like:
5183 // deprecated_typedef foo, *bar, baz();
5184 // only the declarator pops will be passed decls. This is correct;
5185 // we really do need to consider delayed diagnostics from the decl spec
5186 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005187 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005188 do {
John McCall13489672012-05-07 06:16:58 +00005189 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005190 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5191 // This const_cast is a bit lame. Really, Triggered should be mutable.
5192 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005193 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005194 continue;
5195
John McCalleee1d542011-02-14 07:13:47 +00005196 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005197 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005198 // Don't bother giving deprecation diagnostics if the decl is invalid.
5199 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005200 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005201 break;
5202
5203 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005204 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005205 break;
John McCallf85e1932011-06-15 23:02:42 +00005206
5207 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005208 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005209 break;
John McCall2f514482010-01-27 03:50:35 +00005210 }
5211 }
John McCall92576642012-05-07 06:16:41 +00005212 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005213}
5214
John McCall13489672012-05-07 06:16:58 +00005215/// Given a set of delayed diagnostics, re-emit them as if they had
5216/// been delayed in the current context instead of in the given pool.
5217/// Essentially, this just moves them to the current pool.
5218void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5219 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5220 assert(curPool && "re-emitting in undelayed context not supported");
5221 curPool->steal(pool);
5222}
5223
John McCall54abf7d2009-11-04 02:18:39 +00005224static bool isDeclDeprecated(Decl *D) {
5225 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005226 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005227 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005228 // A category implicitly has the availability of the interface.
5229 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5230 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005231 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5232 return false;
5233}
5234
Eli Friedmanc3b23082012-08-08 21:52:41 +00005235static void
5236DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5237 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005238 const ObjCInterfaceDecl *UnknownObjCClass,
5239 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005240 DeclarationName Name = D->getDeclName();
5241 if (!Message.empty()) {
5242 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5243 S.Diag(D->getLocation(),
5244 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5245 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005246 if (ObjCPropery)
5247 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5248 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005249 } else if (!UnknownObjCClass) {
5250 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5251 S.Diag(D->getLocation(),
5252 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5253 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005254 if (ObjCPropery)
5255 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5256 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005257 } else {
5258 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5259 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5260 }
5261}
5262
John McCall9c3087b2010-08-26 02:13:20 +00005263void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005264 Decl *Ctx) {
5265 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005266 return;
5267
John McCall2f514482010-01-27 03:50:35 +00005268 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005269 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5270 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005271 DD.getUnknownObjCClass(),
5272 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005273}
5274
Chris Lattner5f9e2722011-07-23 10:55:15 +00005275void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005276 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005277 const ObjCInterfaceDecl *UnknownObjCClass,
5278 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005279 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005280 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005281 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5282 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005283 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005284 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005285 return;
5286 }
5287
5288 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005289 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005290 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005291 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005292}