blob: 8530c8bd158aa3c118ee0eda975bd951fbdbbe21 [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"
Rafael Espindolad7a60ad2013-02-26 19:13:56 +000022#include "clang/AST/Mangle.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000023#include "clang/Basic/CharInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000024#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000025#include "clang/Basic/TargetInfo.h"
Benjamin Kramer1a343e22013-09-13 15:35:43 +000026#include "clang/Lex/Preprocessor.h"
John McCall19510852010-08-20 18:27:03 +000027#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000028#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000029#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000030#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000031#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000032using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000033using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000034
John McCall883cc2c2011-03-02 12:29:23 +000035/// These constants match the enumerated choices of
36/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000037enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000038 ExpectedFunction,
39 ExpectedUnion,
40 ExpectedVariableOrFunction,
41 ExpectedFunctionOrMethod,
42 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000043 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000044 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000045 ExpectedFunctionMethodOrParameter,
46 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000047 ExpectedVariable,
48 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000049 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000050 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000051 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000052 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000053 ExpectedTLSVar,
54 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000055 ExpectedVariableFieldOrTag,
Aaron Ballman37a89532013-07-18 14:56:42 +000056 ExpectedTypeOrNamespace,
57 ExpectedObjectiveCInterface
John McCall883cc2c2011-03-02 12:29:23 +000058};
59
Chris Lattnere5c5ee12008-06-29 00:16:31 +000060//===----------------------------------------------------------------------===//
61// Helper functions
62//===----------------------------------------------------------------------===//
63
Chandler Carruth87c44602011-07-01 23:49:12 +000064static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000065 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000067 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000068 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000069 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000070 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000071 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000072 Ty = decl->getUnderlyingType();
73 else
74 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000075
Chris Lattner6b6b5372008-06-26 18:38:35 +000076 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000077 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000078 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000079 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000080
John McCall183700f2009-09-21 23:43:11 +000081 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000082}
83
Daniel Dunbar35682492008-09-26 04:12:28 +000084// FIXME: We should provide an abstraction around a method or function
85// to provide the following bits of information.
86
Nuno Lopesd20254f2009-12-20 23:11:08 +000087/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000088/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000089static bool isFunction(const Decl *D) {
90 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000091}
92
93/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000094/// type (function or function-typed variable) or an Objective-C
95/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000096static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000097 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000098}
99
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000100/// isFunctionOrMethodOrBlock - Return true if the given decl has function
101/// type (function or function-typed variable) or an Objective-C
102/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000103static bool isFunctionOrMethodOrBlock(const Decl *D) {
104 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000105 return true;
106 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000107 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000108 QualType Ty = V->getType();
109 return Ty->isBlockPointerType();
110 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000111 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000112}
113
John McCall711c52b2011-01-05 12:14:39 +0000114/// Return true if the given decl has a declarator that should have
115/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000116static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000117 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000118 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
119 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000120}
121
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000122/// hasFunctionProto - Return true if the given decl has a argument
123/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000124/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000125static bool hasFunctionProto(const Decl *D) {
126 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000127 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000128 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000129 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000130 return true;
131 }
132}
133
134/// getFunctionOrMethodNumArgs - Return number of function or method
135/// arguments. It is an error to call this on a K&R function (use
136/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000137static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
138 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000139 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000140 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000141 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000142 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000143}
144
Chandler Carruth87c44602011-07-01 23:49:12 +0000145static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
146 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000147 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000148 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000149 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000150
Chandler Carruth87c44602011-07-01 23:49:12 +0000151 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000152}
153
Chandler Carruth87c44602011-07-01 23:49:12 +0000154static QualType getFunctionOrMethodResultType(const Decl *D) {
155 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000156 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000157 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000158}
159
Chandler Carruth87c44602011-07-01 23:49:12 +0000160static bool isFunctionOrMethodVariadic(const Decl *D) {
161 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000162 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000163 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000164 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000165 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000166 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000167 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000168 }
169}
170
Chandler Carruth87c44602011-07-01 23:49:12 +0000171static bool isInstanceMethod(const Decl *D) {
172 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000173 return MethodDecl->isInstance();
174 return false;
175}
176
Chris Lattner6b6b5372008-06-26 18:38:35 +0000177static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000178 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000179 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000180 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000181
John McCall506b57e2010-05-17 21:00:27 +0000182 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
183 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000184 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000185
John McCall506b57e2010-05-17 21:00:27 +0000186 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000187
Chris Lattner6b6b5372008-06-26 18:38:35 +0000188 // FIXME: Should we walk the chain of classes?
189 return ClsName == &Ctx.Idents.get("NSString") ||
190 ClsName == &Ctx.Idents.get("NSMutableString");
191}
192
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000193static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000194 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000195 if (!PT)
196 return false;
197
Ted Kremenek6217b802009-07-29 21:53:49 +0000198 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000199 if (!RT)
200 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000201
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000202 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000203 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000204 return false;
205
206 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
207}
208
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000209/// \brief Check if the attribute has exactly as many args as Num. May
210/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000211static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
212 unsigned int Num) {
213 if (Attr.getNumArgs() != Num) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +0000214 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
215 << Attr.getName() << Num;
Chandler Carruth1731e202011-07-11 23:30:35 +0000216 return false;
217 }
218
219 return true;
220}
221
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000222
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000223/// \brief Check if the attribute has at least as many args as Num. May
224/// output an error.
225static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
226 unsigned int Num) {
227 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000228 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
229 return false;
230 }
231
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000232 return true;
233}
234
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000235/// \brief Check if IdxExpr is a valid argument index for a function or
236/// instance method D. May output an error.
237///
238/// \returns true if IdxExpr is a valid index.
239static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
240 StringRef AttrName,
241 SourceLocation AttrLoc,
242 unsigned AttrArgNum,
243 const Expr *IdxExpr,
244 uint64_t &Idx)
245{
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000246 assert(isFunctionOrMethod(D));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000247
248 // In C++ the implicit 'this' function parameter also counts.
249 // Parameters are counted from one.
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000250 bool HP = hasFunctionProto(D);
251 bool HasImplicitThisParam = isInstanceMethod(D);
252 bool IV = HP && isFunctionOrMethodVariadic(D);
253 unsigned NumArgs = (HP ? getFunctionOrMethodNumArgs(D) : 0) +
254 HasImplicitThisParam;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000255
256 llvm::APSInt IdxInt;
257 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
258 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000259 std::string Name = std::string("'") + AttrName.str() + std::string("'");
260 S.Diag(AttrLoc, diag::err_attribute_argument_n_type) << Name.c_str()
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000261 << AttrArgNum << AANT_ArgumentIntegerConstant << IdxExpr->getSourceRange();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000262 return false;
263 }
264
265 Idx = IdxInt.getLimitedValue();
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000266 if (Idx < 1 || (!IV && Idx > NumArgs)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000267 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
268 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
269 return false;
270 }
271 Idx--; // Convert to zero-based.
272 if (HasImplicitThisParam) {
273 if (Idx == 0) {
274 S.Diag(AttrLoc,
275 diag::err_attribute_invalid_implicit_this_argument)
276 << AttrName << IdxExpr->getSourceRange();
277 return false;
278 }
279 --Idx;
280 }
281
282 return true;
283}
284
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000285///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000286/// \brief Check if passed in Decl is a field or potentially shared global var
287/// \return true if the Decl is a field or potentially shared global variable
288///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000289static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000290 if (isa<FieldDecl>(D))
291 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000292 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Richard Smith38afbc72013-04-13 02:43:54 +0000293 return vd->hasGlobalStorage() && !vd->getTLSKind();
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000294
295 return false;
296}
297
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000298/// \brief Check if the passed-in expression is of type int or bool.
299static bool isIntOrBool(Expr *Exp) {
300 QualType QT = Exp->getType();
301 return QT->isBooleanType() || QT->isIntegerType();
302}
303
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000304
305// Check to see if the type is a smart pointer of some kind. We assume
306// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000307static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
308 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
309 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000310 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000311 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000312
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000313 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
314 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000315 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000316 return false;
317
318 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000319}
320
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000321/// \brief Check if passed in Decl is a pointer type.
322/// Note that this function may produce an error message.
323/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000324static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
325 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000326 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000327 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000328 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000329 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000330
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000331 if (const RecordType *RT = QT->getAs<RecordType>()) {
332 // If it's an incomplete type, it could be a smart pointer; skip it.
333 // (We don't want to force template instantiation if we can avoid it,
334 // since that would alter the order in which templates are instantiated.)
335 if (RT->isIncompleteType())
336 return true;
337
338 if (threadSafetyCheckIsSmartPointer(S, RT))
339 return true;
340 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000341
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000342 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000343 << Attr.getName()->getName() << QT;
344 } else {
345 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
346 << Attr.getName();
347 }
348 return false;
349}
350
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000351/// \brief Checks that the passed in QualType either is of RecordType or points
352/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000353static const RecordType *getRecordType(QualType QT) {
354 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000355 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000356
357 // Now check if we point to record type.
358 if (const PointerType *PT = QT->getAs<PointerType>())
359 return PT->getPointeeType()->getAs<RecordType>();
360
361 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000362}
363
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000364
Jordy Rosefad5de92012-05-08 03:27:22 +0000365static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
366 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000367 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
368 if (RT->getDecl()->getAttr<LockableAttr>())
369 return true;
370 return false;
371}
372
373
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000374/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000375/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000376static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
377 QualType Ty) {
378 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000379
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000380 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000381 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000382 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000383 << Attr.getName() << Ty.getAsString();
384 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000385 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000386
Michael Hanf1aae3b2012-08-03 17:40:43 +0000387 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000388 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000389 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000390
391 // Allow smart pointers to be used as lockable objects.
392 // FIXME -- Check the type that the smart pointer points to.
393 if (threadSafetyCheckIsSmartPointer(S, RT))
394 return;
395
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000396 // Check if the type is lockable.
397 RecordDecl *RD = RT->getDecl();
398 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000399 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000400
401 // Else check if any base classes are lockable.
402 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
403 CXXBasePaths BPaths(false, false);
404 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
405 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000406 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000407
408 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
409 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000410}
411
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000412/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000413/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000414/// \param Sidx The attribute argument index to start checking with.
415/// \param ParamIdxOk Whether an argument can be indexing into a function
416/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000417static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000418 const AttributeList &Attr,
419 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000420 int Sidx = 0,
421 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000422 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Aaron Ballman624421f2013-08-31 01:11:41 +0000423 Expr *ArgExp = Attr.getArgAsExpr(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000424
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000425 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000426 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000427 Args.push_back(ArgExp);
428 continue;
429 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000430
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000431 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000432 if (StrLit->getLength() == 0 ||
Benjamin Kramerf37e4f22013-09-13 16:30:12 +0000433 (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000434 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000435 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000436 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000437 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000438 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000439
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000440 // We allow constant strings to be used as a placeholder for expressions
441 // that are not valid C++ syntax, but warn that they are ignored.
442 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
443 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000444 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000445 continue;
446 }
447
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000448 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000449
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000450 // A pointer to member expression of the form &MyClass::mu is treated
451 // specially -- we need to look at the type of the member.
452 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
453 if (UOp->getOpcode() == UO_AddrOf)
454 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
455 if (DRE->getDecl()->isCXXInstanceMember())
456 ArgTy = DRE->getDecl()->getType();
457
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000458 // First see if we can just cast to record type, or point to record type.
459 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000460
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000461 // Now check if we index into a record type function param.
462 if(!RT && ParamIdxOk) {
463 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000464 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
465 if(FD && IL) {
466 unsigned int NumParams = FD->getNumParams();
467 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000468 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
469 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
470 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000471 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
472 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000473 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000474 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000475 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476 }
477 }
478
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000479 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000480
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000481 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000482 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000483}
484
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000485//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000486// Attribute Implementations
487//===----------------------------------------------------------------------===//
488
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000489// FIXME: All this manual attribute parsing code is gross. At the
490// least add some helper functions to check most argument patterns (#
491// and types of args).
492
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000493enum ThreadAttributeDeclKind {
494 ThreadExpectedFieldOrGlobalVar,
495 ThreadExpectedFunctionOrMethod,
496 ThreadExpectedClassOrStruct
497};
498
Michael Hanf1aae3b2012-08-03 17:40:43 +0000499static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000500 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000501 // D must be either a member field or global (potentially shared) variable.
502 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000503 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
504 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000505 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000506 }
507
Michael Handc691572012-07-23 18:48:41 +0000508 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000509}
510
Michael Handc691572012-07-23 18:48:41 +0000511static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
512 if (!checkGuardedVarAttrCommon(S, D, Attr))
513 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000514
Michael Han51d8c522013-01-24 16:46:58 +0000515 D->addAttr(::new (S.Context)
516 GuardedVarAttr(Attr.getRange(), S.Context,
517 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000518}
519
Michael Hanf1aae3b2012-08-03 17:40:43 +0000520static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000521 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000522 if (!checkGuardedVarAttrCommon(S, D, Attr))
523 return;
524
525 if (!threadSafetyCheckIsPointer(S, D, Attr))
526 return;
527
Michael Han51d8c522013-01-24 16:46:58 +0000528 D->addAttr(::new (S.Context)
529 PtGuardedVarAttr(Attr.getRange(), S.Context,
530 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000531}
532
Michael Hanf1aae3b2012-08-03 17:40:43 +0000533static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
534 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000535 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000536 // D must be either a member field or global (potentially shared) variable.
537 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000538 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
539 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000540 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541 }
542
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000543 SmallVector<Expr*, 1> Args;
544 // check that all arguments are lockable objects
545 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
546 unsigned Size = Args.size();
547 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000548 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000549
Michael Handc691572012-07-23 18:48:41 +0000550 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000551
Michael Handc691572012-07-23 18:48:41 +0000552 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000553}
554
Michael Handc691572012-07-23 18:48:41 +0000555static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
556 Expr *Arg = 0;
557 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
558 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000559
Michael Handc691572012-07-23 18:48:41 +0000560 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
561}
562
Michael Hanf1aae3b2012-08-03 17:40:43 +0000563static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000564 const AttributeList &Attr) {
565 Expr *Arg = 0;
566 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
567 return;
568
569 if (!threadSafetyCheckIsPointer(S, D, Attr))
570 return;
571
572 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
573 S.Context, Arg));
574}
575
Michael Hanf1aae3b2012-08-03 17:40:43 +0000576static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000577 const AttributeList &Attr) {
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000578 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000579 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000580 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
581 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000582 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000583 }
584
Michael Handc691572012-07-23 18:48:41 +0000585 return true;
586}
587
588static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
589 if (!checkLockableAttrCommon(S, D, Attr))
590 return;
591
592 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
593}
594
Michael Hanf1aae3b2012-08-03 17:40:43 +0000595static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000596 const AttributeList &Attr) {
597 if (!checkLockableAttrCommon(S, D, Attr))
598 return;
599
Michael Han51d8c522013-01-24 16:46:58 +0000600 D->addAttr(::new (S.Context)
601 ScopedLockableAttr(Attr.getRange(), S.Context,
602 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000603}
604
Kostya Serebryany85aee962013-02-26 06:58:27 +0000605static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
606 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000607 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000608 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
609 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000610 return;
611 }
612
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000613 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000614 S.Context));
615}
616
Kostya Serebryany85aee962013-02-26 06:58:27 +0000617static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000618 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000619 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000620 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000621 << Attr.getName() << ExpectedFunctionOrMethod;
622 return;
623 }
624
Michael Han51d8c522013-01-24 16:46:58 +0000625 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000626 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
627 Attr.getAttributeSpellingListIndex()));
628}
629
630static void handleNoSanitizeMemory(Sema &S, Decl *D,
631 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000632 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
633 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
634 << Attr.getName() << ExpectedFunctionOrMethod;
635 return;
636 }
637
638 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
639 S.Context));
640}
641
642static void handleNoSanitizeThread(Sema &S, Decl *D,
643 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000644 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
645 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
646 << Attr.getName() << ExpectedFunctionOrMethod;
647 return;
648 }
649
650 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
651 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000652}
653
Michael Hanf1aae3b2012-08-03 17:40:43 +0000654static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
655 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000656 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000658 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000659
660 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000661 ValueDecl *VD = dyn_cast<ValueDecl>(D);
662 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000663 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
664 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000665 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000666 }
667
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000668 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000669 QualType QT = VD->getType();
670 if (!QT->isDependentType()) {
671 const RecordType *RT = getRecordType(QT);
672 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000673 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000674 << Attr.getName();
675 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 }
677 }
678
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000679 // Check that all arguments are lockable objects.
680 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000681 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000682 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000683
Michael Handc691572012-07-23 18:48:41 +0000684 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000685}
686
Michael Hanf1aae3b2012-08-03 17:40:43 +0000687static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000688 const AttributeList &Attr) {
689 SmallVector<Expr*, 1> Args;
690 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
691 return;
692
693 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000694 D->addAttr(::new (S.Context)
695 AcquiredAfterAttr(Attr.getRange(), S.Context,
696 StartArg, Args.size(),
697 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000698}
699
Michael Hanf1aae3b2012-08-03 17:40:43 +0000700static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000701 const AttributeList &Attr) {
702 SmallVector<Expr*, 1> Args;
703 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
704 return;
705
706 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000707 D->addAttr(::new (S.Context)
708 AcquiredBeforeAttr(Attr.getRange(), S.Context,
709 StartArg, Args.size(),
710 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000711}
712
Michael Hanf1aae3b2012-08-03 17:40:43 +0000713static bool checkLockFunAttrCommon(Sema &S, Decl *D,
714 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000715 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000716 // zero or more arguments ok
717
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000718 // check that the attribute is applied to a function
719 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000720 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
721 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000722 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000723 }
724
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000725 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000726 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000727
Michael Handc691572012-07-23 18:48:41 +0000728 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000729}
730
Michael Hanf1aae3b2012-08-03 17:40:43 +0000731static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000732 const AttributeList &Attr) {
733 SmallVector<Expr*, 1> Args;
734 if (!checkLockFunAttrCommon(S, D, Attr, Args))
735 return;
736
737 unsigned Size = Args.size();
738 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000739 D->addAttr(::new (S.Context)
740 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
741 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000742}
743
Michael Hanf1aae3b2012-08-03 17:40:43 +0000744static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000745 const AttributeList &Attr) {
746 SmallVector<Expr*, 1> Args;
747 if (!checkLockFunAttrCommon(S, D, Attr, Args))
748 return;
749
750 unsigned Size = Args.size();
751 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000752 D->addAttr(::new (S.Context)
753 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
754 StartArg, Size,
755 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000756}
757
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000758static void handleAssertSharedLockAttr(Sema &S, Decl *D,
759 const AttributeList &Attr) {
760 SmallVector<Expr*, 1> Args;
761 if (!checkLockFunAttrCommon(S, D, Attr, Args))
762 return;
763
764 unsigned Size = Args.size();
765 Expr **StartArg = Size == 0 ? 0 : &Args[0];
766 D->addAttr(::new (S.Context)
767 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
768 Attr.getAttributeSpellingListIndex()));
769}
770
771static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
772 const AttributeList &Attr) {
773 SmallVector<Expr*, 1> Args;
774 if (!checkLockFunAttrCommon(S, D, Attr, Args))
775 return;
776
777 unsigned Size = Args.size();
778 Expr **StartArg = Size == 0 ? 0 : &Args[0];
779 D->addAttr(::new (S.Context)
780 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
781 StartArg, Size,
782 Attr.getAttributeSpellingListIndex()));
783}
784
785
Michael Hanf1aae3b2012-08-03 17:40:43 +0000786static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
787 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000788 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000789 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000790 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000791
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000792 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000793 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
794 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000795 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000796 }
797
Aaron Ballman624421f2013-08-31 01:11:41 +0000798 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000799 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000800 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000801 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000802 }
803
804 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000805 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000806
Michael Handc691572012-07-23 18:48:41 +0000807 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000808}
809
Michael Hanf1aae3b2012-08-03 17:40:43 +0000810static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000811 const AttributeList &Attr) {
812 SmallVector<Expr*, 2> Args;
813 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
814 return;
815
Michael Han51d8c522013-01-24 16:46:58 +0000816 D->addAttr(::new (S.Context)
817 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000818 Attr.getArgAsExpr(0),
819 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000820 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000821}
822
Michael Hanf1aae3b2012-08-03 17:40:43 +0000823static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000824 const AttributeList &Attr) {
825 SmallVector<Expr*, 2> Args;
826 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
827 return;
828
Michael Han51d8c522013-01-24 16:46:58 +0000829 D->addAttr(::new (S.Context)
830 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000831 Attr.getArgAsExpr(0),
832 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000833 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000834}
835
Michael Hanf1aae3b2012-08-03 17:40:43 +0000836static bool checkLocksRequiredCommon(Sema &S, Decl *D,
837 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000838 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000839 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000840 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000841
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000842 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000843 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
844 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000845 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000846 }
847
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000848 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000849 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000850 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000851 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000852
Michael Handc691572012-07-23 18:48:41 +0000853 return true;
854}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000855
Michael Hanf1aae3b2012-08-03 17:40:43 +0000856static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000857 const AttributeList &Attr) {
858 SmallVector<Expr*, 1> Args;
859 if (!checkLocksRequiredCommon(S, D, Attr, Args))
860 return;
861
862 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000863 D->addAttr(::new (S.Context)
864 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
865 StartArg, Args.size(),
866 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000867}
868
Michael Hanf1aae3b2012-08-03 17:40:43 +0000869static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000870 const AttributeList &Attr) {
871 SmallVector<Expr*, 1> Args;
872 if (!checkLocksRequiredCommon(S, D, Attr, Args))
873 return;
874
875 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000876 D->addAttr(::new (S.Context)
877 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
878 StartArg, Args.size(),
879 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000880}
881
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000882static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000883 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000884 // zero or more arguments ok
885
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000886 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000887 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
888 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000889 return;
890 }
891
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000892 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000893 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000894 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000895 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000896 Expr **StartArg = Size == 0 ? 0 : &Args[0];
897
Michael Han51d8c522013-01-24 16:46:58 +0000898 D->addAttr(::new (S.Context)
899 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
900 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000901}
902
903static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000904 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000905 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000906 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
907 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000908 return;
909 }
910
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000911 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000912 SmallVector<Expr*, 1> Args;
913 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
914 unsigned Size = Args.size();
915 if (Size == 0)
916 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000917
Michael Han51d8c522013-01-24 16:46:58 +0000918 D->addAttr(::new (S.Context)
919 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
920 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000921}
922
923static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000924 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000925 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000926 return;
927
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000928 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000929 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
930 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000931 return;
932 }
933
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000934 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000935 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000936 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000937 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000938 if (Size == 0)
939 return;
940 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000941
Michael Han51d8c522013-01-24 16:46:58 +0000942 D->addAttr(::new (S.Context)
943 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
944 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000945}
946
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000947static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikiea33ab602013-09-06 01:28:43 +0000948 ConsumableAttr::ConsumedState DefaultState;
949
950 if (Attr.isArgIdent(0)) {
Aaron Ballmand0686072013-09-11 19:47:58 +0000951 IdentifierLoc *IL = Attr.getArgAsIdent(0);
952 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
953 DefaultState)) {
954 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
955 << Attr.getName() << IL->Ident;
David Blaikiea33ab602013-09-06 01:28:43 +0000956 return;
957 }
David Blaikiea33ab602013-09-06 01:28:43 +0000958 } else {
959 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
960 << Attr.getName() << AANT_ArgumentIdentifier;
961 return;
962 }
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000963
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000964 if (!isa<CXXRecordDecl>(D)) {
965 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
966 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000967 return;
968 }
969
970 D->addAttr(::new (S.Context)
David Blaikiea33ab602013-09-06 01:28:43 +0000971 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000972 Attr.getAttributeSpellingListIndex()));
973}
974
975static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
976 const AttributeList &Attr) {
977 ASTContext &CurrContext = S.getASTContext();
978 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
979
980 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
981 if (!RD->hasAttr<ConsumableAttr>()) {
982 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
983 RD->getNameAsString();
984
985 return false;
986 }
987 }
988
989 return true;
990}
991
992static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000993 if (!isa<CXXMethodDecl>(D)) {
994 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
995 Attr.getName() << ExpectedMethod;
996 return;
997 }
998
999 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1000 return;
1001
1002 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001003 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001004 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001005}
1006
1007static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1008 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001009 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001010 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1011 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001012 return;
1013 }
1014
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001015 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1016 return;
1017
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001018 D->addAttr(::new (S.Context)
1019 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001020 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001021}
1022
1023static void handleTestsConsumedAttr(Sema &S, Decl *D,
1024 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001025 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001026 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1027 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001028 return;
1029 }
1030
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001031 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1032 return;
1033
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001034 D->addAttr(::new (S.Context)
1035 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001036 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001037}
1038
1039static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1040 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001041 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001042 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1043 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001044 return;
1045 }
1046
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001047 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1048 return;
1049
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001050 D->addAttr(::new (S.Context)
1051 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001052 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001053}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001054
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001055static void handleReturnTypestateAttr(Sema &S, Decl *D,
1056 const AttributeList &Attr) {
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001057 ReturnTypestateAttr::ConsumedState ReturnState;
1058
1059 if (Attr.isArgIdent(0)) {
Aaron Ballmand0686072013-09-11 19:47:58 +00001060 IdentifierLoc *IL = Attr.getArgAsIdent(0);
1061 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1062 ReturnState)) {
1063 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported)
1064 << Attr.getName() << IL->Ident;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001065 return;
1066 }
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001067 } else {
1068 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1069 Attr.getName() << AANT_ArgumentIdentifier;
1070 return;
1071 }
1072
1073 if (!isa<FunctionDecl>(D)) {
1074 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1075 Attr.getName() << ExpectedFunction;
1076 return;
1077 }
1078
1079 // FIXME: This check is currently being done in the analysis. It can be
1080 // enabled here only after the parser propagates attributes at
1081 // template specialization definition, not declaration.
1082 //QualType ReturnType;
1083 //
1084 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1085 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1086 //
1087 //} else {
1088 //
1089 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1090 //}
1091 //
1092 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1093 //
1094 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1095 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1096 // ReturnType.getAsString();
1097 // return;
1098 //}
1099
1100 D->addAttr(::new (S.Context)
1101 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1102 Attr.getAttributeSpellingListIndex()));
1103}
1104
Chandler Carruth1b03c872011-07-02 00:01:44 +00001105static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1106 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001107 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1108 if (TD == 0) {
1109 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1110 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001111 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001112 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001113 }
Mike Stumpbf916502009-07-24 19:02:52 +00001114
Richard Smitha4fa9002013-01-13 02:11:23 +00001115 // Remember this typedef decl, we will need it later for diagnostics.
1116 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001117}
1118
Chandler Carruth1b03c872011-07-02 00:01:44 +00001119static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001120 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001121 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001122 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001123 // If the alignment is less than or equal to 8 bits, the packed attribute
1124 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001125 if (!FD->getType()->isDependentType() &&
1126 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001127 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001128 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001129 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001130 else
Michael Han51d8c522013-01-24 16:46:58 +00001131 FD->addAttr(::new (S.Context)
1132 PackedAttr(Attr.getRange(), S.Context,
1133 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001134 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001135 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001136}
1137
Chandler Carruth1b03c872011-07-02 00:01:44 +00001138static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001139 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001140 RD->addAttr(::new (S.Context)
1141 MsStructAttr(Attr.getRange(), S.Context,
1142 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001143 else
1144 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1145}
1146
Chandler Carruth1b03c872011-07-02 00:01:44 +00001147static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001148 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001149 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001150 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001151 D->addAttr(::new (S.Context)
1152 IBActionAttr(Attr.getRange(), S.Context,
1153 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001154 return;
1155 }
1156
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001157 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001158}
1159
Ted Kremenek2f041d02011-09-29 07:02:25 +00001160static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1161 // The IBOutlet/IBOutletCollection attributes only apply to instance
1162 // variables or properties of Objective-C classes. The outlet must also
1163 // have an object reference type.
1164 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1165 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001166 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001167 << Attr.getName() << VD->getType() << 0;
1168 return false;
1169 }
1170 }
1171 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1172 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001173 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001174 << Attr.getName() << PD->getType() << 1;
1175 return false;
1176 }
1177 }
1178 else {
1179 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1180 return false;
1181 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001182
Ted Kremenek2f041d02011-09-29 07:02:25 +00001183 return true;
1184}
1185
Chandler Carruth1b03c872011-07-02 00:01:44 +00001186static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek2f041d02011-09-29 07:02:25 +00001187 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001188 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001189
Michael Han51d8c522013-01-24 16:46:58 +00001190 D->addAttr(::new (S.Context)
1191 IBOutletAttr(Attr.getRange(), S.Context,
1192 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001193}
1194
Chandler Carruth1b03c872011-07-02 00:01:44 +00001195static void handleIBOutletCollection(Sema &S, Decl *D,
1196 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001197
1198 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001199 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001200 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1201 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001202 return;
1203 }
1204
Ted Kremenek2f041d02011-09-29 07:02:25 +00001205 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001206 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001207
Aaron Ballman624421f2013-08-31 01:11:41 +00001208 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1209 IdentifierInfo *II;
1210 SourceLocation ILS;
1211 if (IL) {
1212 II = IL->Ident;
1213 ILS = IL->Loc;
1214 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001215 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001216 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001217
John McCallb3d87482010-08-24 05:47:05 +00001218 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001219 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001220 if (!TypeRep) {
1221 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1222 return;
1223 }
John McCallb3d87482010-08-24 05:47:05 +00001224 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001225 // Diagnose use of non-object type in iboutletcollection attribute.
1226 // FIXME. Gnu attribute extension ignores use of builtin types in
1227 // attributes. So, __attribute__((iboutletcollection(char))) will be
1228 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001229 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001230 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1231 return;
1232 }
Michael Han51d8c522013-01-24 16:46:58 +00001233 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001234 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001235 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001236}
1237
Chandler Carruthd309c812011-07-01 23:49:16 +00001238static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001239 if (const RecordType *UT = T->getAsUnionType())
1240 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1241 RecordDecl *UD = UT->getDecl();
1242 for (RecordDecl::field_iterator it = UD->field_begin(),
1243 itend = UD->field_end(); it != itend; ++it) {
1244 QualType QT = it->getType();
1245 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1246 T = QT;
1247 return;
1248 }
1249 }
1250 }
1251}
1252
Nuno Lopes587de5b2012-05-24 00:22:00 +00001253static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001254 if (!isFunctionOrMethod(D)) {
1255 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001256 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001257 return;
1258 }
1259
Nuno Lopes587de5b2012-05-24 00:22:00 +00001260 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1261 return;
1262
Nuno Lopes587de5b2012-05-24 00:22:00 +00001263 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001264 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001265 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001266 uint64_t Idx;
1267 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1268 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001269 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001270
1271 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001272 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001273 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001274 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1275 << Attr.getName() << AANT_ArgumentIntegerConstant
1276 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001277 return;
1278 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001279 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001280 }
1281
1282 // check if the function returns a pointer
1283 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1284 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001285 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001286 }
1287
Michael Han51d8c522013-01-24 16:46:58 +00001288 D->addAttr(::new (S.Context)
1289 AllocSizeAttr(Attr.getRange(), S.Context,
1290 SizeArgs.data(), SizeArgs.size(),
1291 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001292}
1293
Chandler Carruth1b03c872011-07-02 00:01:44 +00001294static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001295 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1296 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001297 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001298 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001299 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001300 return;
1301 }
Mike Stumpbf916502009-07-24 19:02:52 +00001302
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001303 SmallVector<unsigned, 8> NonNullArgs;
1304 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001305 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001306 uint64_t Idx;
1307 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1308 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001309 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001310
1311 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001312 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001313 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001314
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001315 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001316 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001317 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001318 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001319 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001320 }
Mike Stumpbf916502009-07-24 19:02:52 +00001321
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001322 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001323 }
Mike Stumpbf916502009-07-24 19:02:52 +00001324
1325 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1326 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001327 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001328 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1329 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001330 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001331 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001332 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001333 }
Mike Stumpbf916502009-07-24 19:02:52 +00001334
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001335 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001336 if (NonNullArgs.empty()) {
1337 // Warn the trivial case only if attribute is not coming from a
1338 // macro instantiation.
1339 if (Attr.getLoc().isFileID())
1340 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001341 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001342 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001343 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001344
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001345 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001346 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001347 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001348 D->addAttr(::new (S.Context)
1349 NonNullAttr(Attr.getRange(), S.Context, start, size,
1350 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001351}
1352
Chandler Carruth1b03c872011-07-02 00:01:44 +00001353static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001354 // This attribute must be applied to a function declaration.
1355 // The first argument to the attribute must be a string,
1356 // the name of the resource, for example "malloc".
1357 // The following arguments must be argument indexes, the arguments must be
1358 // of integer type for Returns, otherwise of pointer type.
1359 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001360 // after being held. free() should be __attribute((ownership_takes)), whereas
1361 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001362
Aaron Ballman624421f2013-08-31 01:11:41 +00001363 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001364 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001365 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001366 return;
1367 }
1368 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001369 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001370 switch (AL.getKind()) {
1371 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001372 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001373 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001374 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1375 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001376 return;
1377 }
Jordy Rose2a479922010-08-12 08:54:03 +00001378 break;
1379 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001380 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001381 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001382 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1383 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001384 return;
1385 }
Jordy Rose2a479922010-08-12 08:54:03 +00001386 break;
1387 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001388 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001389 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001390 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001391 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001392 return;
1393 }
Jordy Rose2a479922010-08-12 08:54:03 +00001394 break;
1395 default:
1396 // This should never happen given how we are called.
1397 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001398 }
1399
Chandler Carruth87c44602011-07-01 23:49:12 +00001400 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001401 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1402 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403 return;
1404 }
1405
Aaron Ballman624421f2013-08-31 01:11:41 +00001406 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001407
1408 // Normalize the argument, __foo__ becomes foo.
1409 if (Module.startswith("__") && Module.endswith("__"))
1410 Module = Module.substr(2, Module.size() - 4);
1411
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001412
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001413 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001414 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1415 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001416 uint64_t Idx;
1417 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001418 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001419 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001420
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001421 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001422 case OwnershipAttr::Takes:
1423 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001424 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001425 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001426 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1427 // FIXME: Should also highlight argument in decl.
1428 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001429 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001430 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001431 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001432 continue;
1433 }
1434 break;
1435 }
Sean Huntcf807c42010-08-18 23:23:40 +00001436 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001437 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001438 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001439 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001440 llvm::APSInt ArgNum(32);
1441 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1442 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1443 S.Diag(AL.getLoc(), diag::err_ownership_type)
1444 << "ownership_returns" << "integer"
1445 << IdxExpr->getSourceRange();
1446 return;
1447 }
1448 }
1449 break;
1450 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001451 } // switch
1452
1453 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001454 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001455 i = D->specific_attr_begin<OwnershipAttr>(),
1456 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001457 i != e; ++i) {
1458 if ((*i)->getOwnKind() != K) {
1459 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1460 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001461 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001462 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1463 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001464 }
1465 }
1466 }
1467 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001468 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001469 }
1470
1471 unsigned* start = OwnershipArgs.data();
1472 unsigned size = OwnershipArgs.size();
1473 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001474
1475 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001476 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1477 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001478 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001479 }
Sean Huntcf807c42010-08-18 23:23:40 +00001480
Michael Han51d8c522013-01-24 16:46:58 +00001481 D->addAttr(::new (S.Context)
1482 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1483 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001484}
1485
Chandler Carruth1b03c872011-07-02 00:01:44 +00001486static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001487 // Check the attribute arguments.
1488 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001489 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1490 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001491 return;
1492 }
1493
Chandler Carruth87c44602011-07-01 23:49:12 +00001494 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001495 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001496 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001497 return;
1498 }
1499
Chandler Carruth87c44602011-07-01 23:49:12 +00001500 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001501
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001502 // gcc rejects
1503 // class c {
1504 // static int a __attribute__((weakref ("v2")));
1505 // static int b() __attribute__((weakref ("f3")));
1506 // };
1507 // and ignores the attributes of
1508 // void f(void) {
1509 // static int a __attribute__((weakref ("v2")));
1510 // }
1511 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001512 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001513 if (!Ctx->isFileContext()) {
1514 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001515 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001516 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001517 }
1518
1519 // The GCC manual says
1520 //
1521 // At present, a declaration to which `weakref' is attached can only
1522 // be `static'.
1523 //
1524 // It also says
1525 //
1526 // Without a TARGET,
1527 // given as an argument to `weakref' or to `alias', `weakref' is
1528 // equivalent to `weak'.
1529 //
1530 // gcc 4.4.1 will accept
1531 // int a7 __attribute__((weakref));
1532 // as
1533 // int a7 __attribute__((weak));
1534 // This looks like a bug in gcc. We reject that for now. We should revisit
1535 // it if this behaviour is actually used.
1536
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001537 // GCC rejects
1538 // static ((alias ("y"), weakref)).
1539 // Should we? How to check that weakref is before or after alias?
1540
Aaron Ballmanbe116e22013-09-09 23:40:31 +00001541 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1542 // of transforming it into an AliasAttr. The WeakRefAttr never uses the
1543 // StringRef parameter it was given anyway.
Aaron Ballman624421f2013-08-31 01:11:41 +00001544 if (Attr.isArgExpr(0)) {
1545 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001546 Arg = Arg->IgnoreParenCasts();
1547 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1548
Douglas Gregor5cee1192011-07-27 05:40:30 +00001549 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001550 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001551 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001552 return;
1553 }
1554 // GCC will accept anything as the argument of weakref. Should we
1555 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001556 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001557 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001558 }
1559
Michael Han51d8c522013-01-24 16:46:58 +00001560 D->addAttr(::new (S.Context)
1561 WeakRefAttr(Attr.getRange(), S.Context,
1562 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001563}
1564
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001565/// \brief Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
1566/// If not emit an error and return false. If the argument is an identifier it
1567/// will emit an error with a fixit hint and treat it as if it was a string
1568/// literal.
1569static bool checkStringLiteralArgument(Sema &S, StringRef &Str,
1570 const AttributeList &Attr,
1571 unsigned ArgNum,
1572 SourceLocation *ArgLocation = 0) {
1573 // Look for identifiers. If we have one emit a hint to fix it to a literal.
1574 if (Attr.isArgIdent(ArgNum)) {
1575 IdentifierLoc *Loc = Attr.getArgAsIdent(ArgNum);
1576 S.Diag(Loc->Loc, diag::err_attribute_argument_type)
1577 << Attr.getName() << AANT_ArgumentString
1578 << FixItHint::CreateInsertion(Loc->Loc, "\"")
1579 << FixItHint::CreateInsertion(S.PP.getLocForEndOfToken(Loc->Loc), "\"");
1580 Str = Loc->Ident->getName();
1581 if (ArgLocation)
1582 *ArgLocation = Loc->Loc;
1583 return true;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001584 }
Mike Stumpbf916502009-07-24 19:02:52 +00001585
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001586 // Now check for an actual string literal.
1587 Expr *ArgExpr = Attr.getArgAsExpr(ArgNum);
1588 StringLiteral *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
1589 if (ArgLocation)
1590 *ArgLocation = ArgExpr->getLocStart();
1591
1592 if (!Literal || !Literal->isAscii()) {
1593 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
1594 << Attr.getName() << AANT_ArgumentString;
1595 return false;
1596 }
1597
1598 Str = Literal->getString();
1599 return true;
1600}
1601
1602static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1603 StringRef Str;
1604 if (!checkStringLiteralArgument(S, Str, Attr, 0))
1605 return;
1606
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001607 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001608 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1609 return;
1610 }
1611
Chris Lattner6b6b5372008-06-26 18:38:35 +00001612 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001613
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001614 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str,
Michael Han51d8c522013-01-24 16:46:58 +00001615 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001616}
1617
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001618static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001619 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1620 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1621 << Attr.getName() << ExpectedFunctionOrMethod;
1622 return;
1623 }
1624
Michael Han51d8c522013-01-24 16:46:58 +00001625 D->addAttr(::new (S.Context)
1626 MinSizeAttr(Attr.getRange(), S.Context,
1627 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001628}
1629
Benjamin Krameree409a92012-05-12 21:10:52 +00001630static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001631 if (!isa<FunctionDecl>(D)) {
1632 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1633 << Attr.getName() << ExpectedFunction;
1634 return;
1635 }
1636
1637 if (D->hasAttr<HotAttr>()) {
1638 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1639 << Attr.getName() << "hot";
1640 return;
1641 }
1642
Michael Han51d8c522013-01-24 16:46:58 +00001643 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1644 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001645}
1646
1647static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001648 if (!isa<FunctionDecl>(D)) {
1649 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1650 << Attr.getName() << ExpectedFunction;
1651 return;
1652 }
1653
1654 if (D->hasAttr<ColdAttr>()) {
1655 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1656 << Attr.getName() << "cold";
1657 return;
1658 }
1659
Michael Han51d8c522013-01-24 16:46:58 +00001660 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1661 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001662}
1663
Chandler Carruth1b03c872011-07-02 00:01:44 +00001664static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001665 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001666 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001667 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001668 return;
1669 }
1670
Michael Han51d8c522013-01-24 16:46:58 +00001671 D->addAttr(::new (S.Context)
1672 NakedAttr(Attr.getRange(), S.Context,
1673 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001674}
1675
Chandler Carruth1b03c872011-07-02 00:01:44 +00001676static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1677 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001678 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001679 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001680 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001681 return;
1682 }
Mike Stumpbf916502009-07-24 19:02:52 +00001683
Michael Han51d8c522013-01-24 16:46:58 +00001684 D->addAttr(::new (S.Context)
1685 AlwaysInlineAttr(Attr.getRange(), S.Context,
1686 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001687}
1688
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001689static void handleTLSModelAttr(Sema &S, Decl *D,
1690 const AttributeList &Attr) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001691 StringRef Model;
1692 SourceLocation LiteralLoc;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001693 // Check that it is a string.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001694 if (!checkStringLiteralArgument(S, Model, Attr, 0, &LiteralLoc))
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001695 return;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001696
Richard Smith38afbc72013-04-13 02:43:54 +00001697 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001698 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1699 << Attr.getName() << ExpectedTLSVar;
1700 return;
1701 }
1702
1703 // Check that the value.
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001704 if (Model != "global-dynamic" && Model != "local-dynamic"
1705 && Model != "initial-exec" && Model != "local-exec") {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00001706 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001707 return;
1708 }
1709
Michael Han51d8c522013-01-24 16:46:58 +00001710 D->addAttr(::new (S.Context)
1711 TLSModelAttr(Attr.getRange(), S.Context, Model,
1712 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001713}
1714
Chandler Carruth1b03c872011-07-02 00:01:44 +00001715static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001716 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001717 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001718 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001719 D->addAttr(::new (S.Context)
1720 MallocAttr(Attr.getRange(), S.Context,
1721 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001722 return;
1723 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001724 }
1725
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001726 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001727}
1728
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00001730 D->addAttr(::new (S.Context)
1731 MayAliasAttr(Attr.getRange(), S.Context,
1732 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001733}
1734
Chandler Carruth1b03c872011-07-02 00:01:44 +00001735static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001736 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001737 D->addAttr(::new (S.Context)
1738 NoCommonAttr(Attr.getRange(), S.Context,
1739 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001740 else
1741 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001742 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001743}
1744
Chandler Carruth1b03c872011-07-02 00:01:44 +00001745static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001746 if (S.LangOpts.CPlusPlus) {
1747 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1748 return;
1749 }
1750
Chandler Carruth87c44602011-07-01 23:49:12 +00001751 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001752 D->addAttr(::new (S.Context)
1753 CommonAttr(Attr.getRange(), S.Context,
1754 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001755 else
1756 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001757 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001758}
1759
Chandler Carruth1b03c872011-07-02 00:01:44 +00001760static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001761 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001762
1763 if (S.CheckNoReturnAttr(attr)) return;
1764
Chandler Carruth87c44602011-07-01 23:49:12 +00001765 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001766 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001767 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001768 return;
1769 }
1770
Michael Han51d8c522013-01-24 16:46:58 +00001771 D->addAttr(::new (S.Context)
1772 NoReturnAttr(attr.getRange(), S.Context,
1773 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001774}
1775
1776bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001777 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001778 attr.setInvalid();
1779 return true;
1780 }
1781
1782 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001783}
1784
Chandler Carruth1b03c872011-07-02 00:01:44 +00001785static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1786 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001787
1788 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1789 // because 'analyzer_noreturn' does not impact the type.
Chandler Carruth87c44602011-07-01 23:49:12 +00001790 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1791 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001792 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1793 && !VD->getType()->isFunctionPointerType())) {
1794 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001795 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001796 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001797 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001798 return;
1799 }
1800 }
1801
Michael Han51d8c522013-01-24 16:46:58 +00001802 D->addAttr(::new (S.Context)
1803 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1804 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001805}
1806
Richard Smithcd8ab512013-01-17 01:30:42 +00001807static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1808 const AttributeList &Attr) {
1809 // C++11 [dcl.attr.noreturn]p1:
1810 // The attribute may be applied to the declarator-id in a function
1811 // declaration.
1812 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1813 if (!FD) {
1814 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1815 << Attr.getName() << ExpectedFunctionOrMethod;
1816 return;
1817 }
1818
Michael Han51d8c522013-01-24 16:46:58 +00001819 D->addAttr(::new (S.Context)
1820 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1821 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001822}
1823
John Thompson35cc9622010-08-09 21:53:52 +00001824// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001825static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001826/*
1827 Returning a Vector Class in Registers
1828
Eric Christopherf48f3672010-12-01 22:13:54 +00001829 According to the PPU ABI specifications, a class with a single member of
1830 vector type is returned in memory when used as the return value of a function.
1831 This results in inefficient code when implementing vector classes. To return
1832 the value in a single vector register, add the vecreturn attribute to the
1833 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001834
1835 Example:
1836
1837 struct Vector
1838 {
1839 __vector float xyzw;
1840 } __attribute__((vecreturn));
1841
1842 Vector Add(Vector lhs, Vector rhs)
1843 {
1844 Vector result;
1845 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1846 return result; // This will be returned in a register
1847 }
1848*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001849 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001850 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001851 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001852 return;
1853 }
1854
Chandler Carruth87c44602011-07-01 23:49:12 +00001855 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001856 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1857 return;
1858 }
1859
Chandler Carruth87c44602011-07-01 23:49:12 +00001860 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001861 int count = 0;
1862
1863 if (!isa<CXXRecordDecl>(record)) {
1864 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1865 return;
1866 }
1867
1868 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1869 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1870 return;
1871 }
1872
Eric Christopherf48f3672010-12-01 22:13:54 +00001873 for (RecordDecl::field_iterator iter = record->field_begin();
1874 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001875 if ((count == 1) || !iter->getType()->isVectorType()) {
1876 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1877 return;
1878 }
1879 count++;
1880 }
1881
Michael Han51d8c522013-01-24 16:46:58 +00001882 D->addAttr(::new (S.Context)
1883 VecReturnAttr(Attr.getRange(), S.Context,
1884 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001885}
1886
Richard Smith3a2b7a12013-01-28 22:42:45 +00001887static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1888 const AttributeList &Attr) {
1889 if (isa<ParmVarDecl>(D)) {
1890 // [[carries_dependency]] can only be applied to a parameter if it is a
1891 // parameter of a function declaration or lambda.
1892 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1893 S.Diag(Attr.getLoc(),
1894 diag::err_carries_dependency_param_not_function_decl);
1895 return;
1896 }
1897 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001898 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001899 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001900 return;
1901 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001902
1903 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1904 Attr.getRange(), S.Context,
1905 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001906}
1907
Chandler Carruth1b03c872011-07-02 00:01:44 +00001908static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001909 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001910 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001911 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001912 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001913 return;
1914 }
Mike Stumpbf916502009-07-24 19:02:52 +00001915
Michael Han51d8c522013-01-24 16:46:58 +00001916 D->addAttr(::new (S.Context)
1917 UnusedAttr(Attr.getRange(), S.Context,
1918 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001919}
1920
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001921static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1922 const AttributeList &Attr) {
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001923 if (!isa<FunctionDecl>(D)) {
1924 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1925 << Attr.getName() << ExpectedFunction;
1926 return;
1927 }
1928
Michael Han51d8c522013-01-24 16:46:58 +00001929 D->addAttr(::new (S.Context)
1930 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1931 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001932}
1933
Chandler Carruth1b03c872011-07-02 00:01:44 +00001934static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001935 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00001936 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001937 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1938 return;
1939 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001940 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001941 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001942 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001943 return;
1944 }
Mike Stumpbf916502009-07-24 19:02:52 +00001945
Michael Han51d8c522013-01-24 16:46:58 +00001946 D->addAttr(::new (S.Context)
1947 UsedAttr(Attr.getRange(), S.Context,
1948 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001949}
1950
Chandler Carruth1b03c872011-07-02 00:01:44 +00001951static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001952 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001953 if (Attr.getNumArgs() > 1) {
1954 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001955 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001956 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001957
1958 int priority = 65535; // FIXME: Do not hardcode such constants.
1959 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001960 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001961 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001962 if (E->isTypeDependent() || E->isValueDependent() ||
1963 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001964 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001965 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001966 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001967 return;
1968 }
1969 priority = Idx.getZExtValue();
1970 }
Mike Stumpbf916502009-07-24 19:02:52 +00001971
Chandler Carruth87c44602011-07-01 23:49:12 +00001972 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001973 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001974 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001975 return;
1976 }
1977
Michael Han51d8c522013-01-24 16:46:58 +00001978 D->addAttr(::new (S.Context)
1979 ConstructorAttr(Attr.getRange(), S.Context, priority,
1980 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001981}
1982
Chandler Carruth1b03c872011-07-02 00:01:44 +00001983static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001984 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001985 if (Attr.getNumArgs() > 1) {
1986 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001987 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001988 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001989
1990 int priority = 65535; // FIXME: Do not hardcode such constants.
1991 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001992 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001993 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001994 if (E->isTypeDependent() || E->isValueDependent() ||
1995 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001996 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001997 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001998 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001999 return;
2000 }
2001 priority = Idx.getZExtValue();
2002 }
Mike Stumpbf916502009-07-24 19:02:52 +00002003
Chandler Carruth87c44602011-07-01 23:49:12 +00002004 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002005 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002006 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002007 return;
2008 }
2009
Michael Han51d8c522013-01-24 16:46:58 +00002010 D->addAttr(::new (S.Context)
2011 DestructorAttr(Attr.getRange(), S.Context, priority,
2012 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002013}
2014
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002015template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002016static void handleAttrWithMessage(Sema &S, Decl *D,
2017 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002018 unsigned NumArgs = Attr.getNumArgs();
2019 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002020 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002021 return;
2022 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002023
2024 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002025 StringRef Str;
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002026 if (NumArgs == 1 && !checkStringLiteralArgument(S, Str, Attr, 0))
2027 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002028
Michael Han51d8c522013-01-24 16:46:58 +00002029 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2030 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002031}
2032
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002033static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2034 const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002035 D->addAttr(::new (S.Context)
2036 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2037 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002038}
2039
Patrick Beardb2f68202012-04-06 18:12:22 +00002040static void handleObjCRootClassAttr(Sema &S, Decl *D,
2041 const AttributeList &Attr) {
2042 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002043 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2044 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002045 return;
2046 }
2047
Michael Han51d8c522013-01-24 16:46:58 +00002048 D->addAttr(::new (S.Context)
2049 ObjCRootClassAttr(Attr.getRange(), S.Context,
2050 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002051}
2052
Michael Han51d8c522013-01-24 16:46:58 +00002053static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2054 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002055 if (!isa<ObjCInterfaceDecl>(D)) {
2056 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2057 return;
2058 }
2059
Michael Han51d8c522013-01-24 16:46:58 +00002060 D->addAttr(::new (S.Context)
2061 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2062 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002063}
2064
Jordy Rosefad5de92012-05-08 03:27:22 +00002065static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2066 IdentifierInfo *Platform,
2067 VersionTuple Introduced,
2068 VersionTuple Deprecated,
2069 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002070 StringRef PlatformName
2071 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2072 if (PlatformName.empty())
2073 PlatformName = Platform->getName();
2074
2075 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2076 // of these steps are needed).
2077 if (!Introduced.empty() && !Deprecated.empty() &&
2078 !(Introduced <= Deprecated)) {
2079 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2080 << 1 << PlatformName << Deprecated.getAsString()
2081 << 0 << Introduced.getAsString();
2082 return true;
2083 }
2084
2085 if (!Introduced.empty() && !Obsoleted.empty() &&
2086 !(Introduced <= Obsoleted)) {
2087 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2088 << 2 << PlatformName << Obsoleted.getAsString()
2089 << 0 << Introduced.getAsString();
2090 return true;
2091 }
2092
2093 if (!Deprecated.empty() && !Obsoleted.empty() &&
2094 !(Deprecated <= Obsoleted)) {
2095 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2096 << 2 << PlatformName << Obsoleted.getAsString()
2097 << 1 << Deprecated.getAsString();
2098 return true;
2099 }
2100
2101 return false;
2102}
2103
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002104/// \brief Check whether the two versions match.
2105///
2106/// If either version tuple is empty, then they are assumed to match. If
2107/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2108static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2109 bool BeforeIsOkay) {
2110 if (X.empty() || Y.empty())
2111 return true;
2112
2113 if (X == Y)
2114 return true;
2115
2116 if (BeforeIsOkay && X < Y)
2117 return true;
2118
2119 return false;
2120}
2121
Rafael Espindola51be6e32013-01-08 22:04:34 +00002122AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002123 IdentifierInfo *Platform,
2124 VersionTuple Introduced,
2125 VersionTuple Deprecated,
2126 VersionTuple Obsoleted,
2127 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002128 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002129 bool Override,
2130 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002131 VersionTuple MergedIntroduced = Introduced;
2132 VersionTuple MergedDeprecated = Deprecated;
2133 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002134 bool FoundAny = false;
2135
Rafael Espindola98ae8342012-05-10 02:50:16 +00002136 if (D->hasAttrs()) {
2137 AttrVec &Attrs = D->getAttrs();
2138 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2139 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2140 if (!OldAA) {
2141 ++i;
2142 continue;
2143 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002144
Rafael Espindola98ae8342012-05-10 02:50:16 +00002145 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2146 if (OldPlatform != Platform) {
2147 ++i;
2148 continue;
2149 }
2150
2151 FoundAny = true;
2152 VersionTuple OldIntroduced = OldAA->getIntroduced();
2153 VersionTuple OldDeprecated = OldAA->getDeprecated();
2154 VersionTuple OldObsoleted = OldAA->getObsoleted();
2155 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002156
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002157 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2158 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2159 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2160 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002161 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002162 if (Override) {
2163 int Which = -1;
2164 VersionTuple FirstVersion;
2165 VersionTuple SecondVersion;
2166 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2167 Which = 0;
2168 FirstVersion = OldIntroduced;
2169 SecondVersion = Introduced;
2170 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2171 Which = 1;
2172 FirstVersion = Deprecated;
2173 SecondVersion = OldDeprecated;
2174 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2175 Which = 2;
2176 FirstVersion = Obsoleted;
2177 SecondVersion = OldObsoleted;
2178 }
2179
2180 if (Which == -1) {
2181 Diag(OldAA->getLocation(),
2182 diag::warn_mismatched_availability_override_unavail)
2183 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2184 } else {
2185 Diag(OldAA->getLocation(),
2186 diag::warn_mismatched_availability_override)
2187 << Which
2188 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2189 << FirstVersion.getAsString() << SecondVersion.getAsString();
2190 }
2191 Diag(Range.getBegin(), diag::note_overridden_method);
2192 } else {
2193 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2194 Diag(Range.getBegin(), diag::note_previous_attribute);
2195 }
2196
Rafael Espindola98ae8342012-05-10 02:50:16 +00002197 Attrs.erase(Attrs.begin() + i);
2198 --e;
2199 continue;
2200 }
2201
2202 VersionTuple MergedIntroduced2 = MergedIntroduced;
2203 VersionTuple MergedDeprecated2 = MergedDeprecated;
2204 VersionTuple MergedObsoleted2 = MergedObsoleted;
2205
2206 if (MergedIntroduced2.empty())
2207 MergedIntroduced2 = OldIntroduced;
2208 if (MergedDeprecated2.empty())
2209 MergedDeprecated2 = OldDeprecated;
2210 if (MergedObsoleted2.empty())
2211 MergedObsoleted2 = OldObsoleted;
2212
2213 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2214 MergedIntroduced2, MergedDeprecated2,
2215 MergedObsoleted2)) {
2216 Attrs.erase(Attrs.begin() + i);
2217 --e;
2218 continue;
2219 }
2220
2221 MergedIntroduced = MergedIntroduced2;
2222 MergedDeprecated = MergedDeprecated2;
2223 MergedObsoleted = MergedObsoleted2;
2224 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002225 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002226 }
2227
2228 if (FoundAny &&
2229 MergedIntroduced == Introduced &&
2230 MergedDeprecated == Deprecated &&
2231 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002232 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002233
Ted Kremenekcb344392013-04-06 00:34:27 +00002234 // Only create a new attribute if !Override, but we want to do
2235 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002236 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002237 MergedDeprecated, MergedObsoleted) &&
2238 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002239 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2240 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002241 Obsoleted, IsUnavailable, Message,
2242 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002243 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002244 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002245}
2246
Chandler Carruth1b03c872011-07-02 00:01:44 +00002247static void handleAvailabilityAttr(Sema &S, Decl *D,
2248 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002249 if (!checkAttributeNumArgs(S, Attr, 1))
2250 return;
2251 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002252 unsigned Index = Attr.getAttributeSpellingListIndex();
2253
Aaron Ballman624421f2013-08-31 01:11:41 +00002254 IdentifierInfo *II = Platform->Ident;
2255 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2256 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2257 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002258
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002259 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2260 if (!ND) {
2261 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2262 return;
2263 }
2264
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002265 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2266 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2267 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002268 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002269 StringRef Str;
Benjamin Kramerc5617142013-09-13 17:31:48 +00002270 if (const StringLiteral *SE =
2271 dyn_cast_or_null<StringLiteral>(Attr.getMessageExpr()))
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002272 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002273
Aaron Ballman624421f2013-08-31 01:11:41 +00002274 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002275 Introduced.Version,
2276 Deprecated.Version,
2277 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002278 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002279 /*Override=*/false,
2280 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002281 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002282 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002283}
2284
John McCalld4c3d662013-02-20 01:54:26 +00002285template <class T>
2286static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2287 typename T::VisibilityType value,
2288 unsigned attrSpellingListIndex) {
2289 T *existingAttr = D->getAttr<T>();
2290 if (existingAttr) {
2291 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2292 if (existingValue == value)
2293 return NULL;
2294 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2295 S.Diag(range.getBegin(), diag::note_previous_attribute);
2296 D->dropAttr<T>();
2297 }
2298 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2299}
2300
Rafael Espindola599f1b72012-05-13 03:25:18 +00002301VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002302 VisibilityAttr::VisibilityType Vis,
2303 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002304 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2305 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002306}
2307
John McCalld4c3d662013-02-20 01:54:26 +00002308TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2309 TypeVisibilityAttr::VisibilityType Vis,
2310 unsigned AttrSpellingListIndex) {
2311 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2312 AttrSpellingListIndex);
2313}
2314
2315static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2316 bool isTypeVisibility) {
2317 // Visibility attributes don't mean anything on a typedef.
2318 if (isa<TypedefNameDecl>(D)) {
2319 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2320 << Attr.getName();
2321 return;
2322 }
2323
2324 // 'type_visibility' can only go on a type or namespace.
2325 if (isTypeVisibility &&
2326 !(isa<TagDecl>(D) ||
2327 isa<ObjCInterfaceDecl>(D) ||
2328 isa<NamespaceDecl>(D))) {
2329 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2330 << Attr.getName() << ExpectedTypeOrNamespace;
2331 return;
2332 }
2333
Benjamin Kramerae3a83f2013-09-09 15:08:57 +00002334 // Check that the argument is a string literal.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002335 StringRef TypeStr;
2336 SourceLocation LiteralLoc;
2337 if (!checkStringLiteralArgument(S, TypeStr, Attr, 0, &LiteralLoc))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002338 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002339
Sean Huntcf807c42010-08-18 23:23:40 +00002340 VisibilityAttr::VisibilityType type;
Aaron Ballmand0686072013-09-11 19:47:58 +00002341 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002342 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported)
Aaron Ballmand0686072013-09-11 19:47:58 +00002343 << Attr.getName() << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002344 return;
2345 }
Aaron Ballmand0686072013-09-11 19:47:58 +00002346
2347 // Complain about attempts to use protected visibility on targets
2348 // (like Darwin) that don't support it.
2349 if (type == VisibilityAttr::Protected &&
2350 !S.Context.getTargetInfo().hasProtectedVisibility()) {
2351 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2352 type = VisibilityAttr::Default;
2353 }
Mike Stumpbf916502009-07-24 19:02:52 +00002354
Michael Han51d8c522013-01-24 16:46:58 +00002355 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002356 clang::Attr *newAttr;
2357 if (isTypeVisibility) {
2358 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2359 (TypeVisibilityAttr::VisibilityType) type,
2360 Index);
2361 } else {
2362 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2363 }
2364 if (newAttr)
2365 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002366}
2367
Chandler Carruth1b03c872011-07-02 00:01:44 +00002368static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2369 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002370 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2371 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002372 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002373 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002374 return;
2375 }
2376
Aaron Ballman624421f2013-08-31 01:11:41 +00002377 if (!Attr.isArgIdent(0)) {
2378 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2379 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002380 return;
2381 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002382
Aaron Ballmand0686072013-09-11 19:47:58 +00002383 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2384 ObjCMethodFamilyAttr::FamilyKind F;
2385 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
2386 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << Attr.getName()
2387 << IL->Ident;
John McCalld5313b02011-03-02 11:33:24 +00002388 return;
2389 }
2390
Aaron Ballmand0686072013-09-11 19:47:58 +00002391 if (F == ObjCMethodFamilyAttr::OMF_init &&
John McCallf85e1932011-06-15 23:02:42 +00002392 !method->getResultType()->isObjCObjectPointerType()) {
2393 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2394 << method->getResultType();
2395 // Ignore the attribute.
2396 return;
2397 }
2398
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002399 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
Aaron Ballmand0686072013-09-11 19:47:58 +00002400 S.Context, F));
John McCalld5313b02011-03-02 11:33:24 +00002401}
2402
Chandler Carruth1b03c872011-07-02 00:01:44 +00002403static void handleObjCExceptionAttr(Sema &S, Decl *D,
2404 const AttributeList &Attr) {
Chris Lattner0db29ec2009-02-14 08:09:34 +00002405 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2406 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002407 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2408 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002409 return;
2410 }
Mike Stumpbf916502009-07-24 19:02:52 +00002411
Michael Han51d8c522013-01-24 16:46:58 +00002412 D->addAttr(::new (S.Context)
2413 ObjCExceptionAttr(Attr.getRange(), S.Context,
2414 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002415}
2416
Chandler Carruth1b03c872011-07-02 00:01:44 +00002417static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Richard Smith162e1c12011-04-15 14:24:37 +00002418 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002419 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002420 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002421 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2422 return;
2423 }
2424 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002425 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2426 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002427 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002428 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2429 return;
2430 }
2431 }
2432 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002433 // It is okay to include this attribute on properties, e.g.:
2434 //
2435 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2436 //
2437 // In this case it follows tradition and suppresses an error in the above
2438 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002439 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002440 }
Michael Han51d8c522013-01-24 16:46:58 +00002441 D->addAttr(::new (S.Context)
2442 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2443 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002444}
2445
Mike Stumpbf916502009-07-24 19:02:52 +00002446static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002447handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002448 if (!isa<FunctionDecl>(D)) {
2449 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2450 return;
2451 }
2452
Michael Han51d8c522013-01-24 16:46:58 +00002453 D->addAttr(::new (S.Context)
2454 OverloadableAttr(Attr.getRange(), S.Context,
2455 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002456}
2457
Chandler Carruth1b03c872011-07-02 00:01:44 +00002458static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002459 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002460 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002461 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002462 return;
2463 }
Mike Stumpbf916502009-07-24 19:02:52 +00002464
Aaron Ballman624421f2013-08-31 01:11:41 +00002465 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002466 BlocksAttr::BlockType type;
Aaron Ballmand0686072013-09-11 19:47:58 +00002467 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2468 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
2469 << Attr.getName() << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002470 return;
2471 }
Mike Stumpbf916502009-07-24 19:02:52 +00002472
Michael Han51d8c522013-01-24 16:46:58 +00002473 D->addAttr(::new (S.Context)
2474 BlocksAttr(Attr.getRange(), S.Context, type,
2475 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002476}
2477
Chandler Carruth1b03c872011-07-02 00:01:44 +00002478static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002479 // check the attribute arguments.
2480 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002481 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002482 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002483 }
2484
John McCall3323fad2011-09-09 07:56:05 +00002485 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002486 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002487 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002488 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002489 if (E->isTypeDependent() || E->isValueDependent() ||
2490 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002491 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002492 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002493 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002494 return;
2495 }
Mike Stumpbf916502009-07-24 19:02:52 +00002496
John McCall3323fad2011-09-09 07:56:05 +00002497 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002498 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2499 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002500 return;
2501 }
John McCall3323fad2011-09-09 07:56:05 +00002502
2503 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002504 }
2505
John McCall3323fad2011-09-09 07:56:05 +00002506 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002507 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002508 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002509 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002510 if (E->isTypeDependent() || E->isValueDependent() ||
2511 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002512 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002513 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002514 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002515 return;
2516 }
2517 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002518
John McCall3323fad2011-09-09 07:56:05 +00002519 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002520 // FIXME: This error message could be improved, it would be nice
2521 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002522 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2523 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002524 return;
2525 }
2526 }
2527
Chandler Carruth87c44602011-07-01 23:49:12 +00002528 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002529 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002530 if (isa<FunctionNoProtoType>(FT)) {
2531 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2532 return;
2533 }
Mike Stumpbf916502009-07-24 19:02:52 +00002534
Chris Lattner897cd902009-03-17 23:03:47 +00002535 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002536 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002537 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002538 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002539 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002540 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002541 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002542 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002543 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002544 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2545 if (!BD->isVariadic()) {
2546 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2547 return;
2548 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002549 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002550 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002551 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002552 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002553 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002554 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002555 int m = Ty->isFunctionPointerType() ? 0 : 1;
2556 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002557 return;
2558 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002559 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002560 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002561 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002562 return;
2563 }
Anders Carlsson77091822008-10-05 18:05:59 +00002564 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002565 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002566 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002567 return;
2568 }
Michael Han51d8c522013-01-24 16:46:58 +00002569 D->addAttr(::new (S.Context)
2570 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2571 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002572}
2573
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002574static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002575 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2576 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2577 else
2578 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2579}
2580
Chandler Carruth1b03c872011-07-02 00:01:44 +00002581static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002582 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002583 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002584 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002585 return;
2586 }
Mike Stumpbf916502009-07-24 19:02:52 +00002587
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002588 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2589 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2590 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002591 return;
2592 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002593 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2594 if (MD->getResultType()->isVoidType()) {
2595 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2596 << Attr.getName() << 1;
2597 return;
2598 }
2599
Michael Han51d8c522013-01-24 16:46:58 +00002600 D->addAttr(::new (S.Context)
2601 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2602 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002603}
2604
Chandler Carruth1b03c872011-07-02 00:01:44 +00002605static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002606 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002607 if (isa<CXXRecordDecl>(D)) {
2608 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2609 return;
2610 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002611 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2612 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002613 return;
2614 }
2615
Chandler Carruth87c44602011-07-01 23:49:12 +00002616 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002617
Michael Han51d8c522013-01-24 16:46:58 +00002618 nd->addAttr(::new (S.Context)
2619 WeakAttr(Attr.getRange(), S.Context,
2620 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002621}
2622
Chandler Carruth1b03c872011-07-02 00:01:44 +00002623static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002624 // weak_import only applies to variable & function declarations.
2625 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002626 if (!D->canBeWeakImported(isDef)) {
2627 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002628 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2629 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002630 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002631 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002632 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002633 // Nothing to warn about here.
2634 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002635 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002636 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002637
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002638 return;
2639 }
2640
Michael Han51d8c522013-01-24 16:46:58 +00002641 D->addAttr(::new (S.Context)
2642 WeakImportAttr(Attr.getRange(), S.Context,
2643 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002644}
2645
Tanya Lattner0df579e2012-07-09 22:06:01 +00002646// Handles reqd_work_group_size and work_group_size_hint.
2647static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002648 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002649 unsigned WGSize[3];
2650 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002651 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002652 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002653 if (E->isTypeDependent() || E->isValueDependent() ||
2654 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002655 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2656 << Attr.getName() << AANT_ArgumentIntegerConstant
2657 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002658 return;
2659 }
2660 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2661 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002662
2663 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2664 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2665 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2666 if (!(A->getXDim() == WGSize[0] &&
2667 A->getYDim() == WGSize[1] &&
2668 A->getZDim() == WGSize[2])) {
2669 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2670 Attr.getName();
2671 }
2672 }
2673
2674 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2675 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2676 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2677 if (!(A->getXDim() == WGSize[0] &&
2678 A->getYDim() == WGSize[1] &&
2679 A->getZDim() == WGSize[2])) {
2680 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2681 Attr.getName();
2682 }
2683 }
2684
2685 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2686 D->addAttr(::new (S.Context)
2687 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002688 WGSize[0], WGSize[1], WGSize[2],
2689 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002690 else
2691 D->addAttr(::new (S.Context)
2692 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002693 WGSize[0], WGSize[1], WGSize[2],
2694 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002695}
2696
Joey Gouly37453b92013-03-08 09:42:32 +00002697static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2698 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2699
Aaron Ballman624421f2013-08-31 01:11:41 +00002700 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002701 return;
2702
Aaron Ballman624421f2013-08-31 01:11:41 +00002703 if (!Attr.hasParsedType()) {
2704 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2705 << Attr.getName() << 1;
2706 return;
2707 }
2708
Joey Gouly37453b92013-03-08 09:42:32 +00002709 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2710
2711 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2712 (ParmType->isBooleanType() ||
2713 !ParmType->isIntegralType(S.getASTContext()))) {
2714 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2715 << ParmType;
2716 return;
2717 }
2718
2719 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2720 D->hasAttr<VecTypeHintAttr>()) {
2721 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2722 if (A->getTypeHint() != ParmType) {
2723 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2724 return;
2725 }
2726 }
2727
2728 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2729 ParmType, Attr.getLoc()));
2730}
2731
Rafael Espindola599f1b72012-05-13 03:25:18 +00002732SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002733 StringRef Name,
2734 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002735 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2736 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002737 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002738 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2739 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002740 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002741 }
Michael Han51d8c522013-01-24 16:46:58 +00002742 return ::new (Context) SectionAttr(Range, Context, Name,
2743 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002744}
2745
Chandler Carruth1b03c872011-07-02 00:01:44 +00002746static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002747 // Make sure that there is a string literal as the sections's single
2748 // argument.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002749 StringRef Str;
2750 SourceLocation LiteralLoc;
2751 if (!checkStringLiteralArgument(S, Str, Attr, 0, &LiteralLoc))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002752 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002753
Chris Lattner797c3c42009-08-10 19:03:04 +00002754 // If the target wants to validate the section specifier, make it happen.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002755 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002756 if (!Error.empty()) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002757 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002758 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002759 return;
2760 }
Mike Stump1eb44332009-09-09 15:08:12 +00002761
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002762 // This attribute cannot be applied to local variables.
2763 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002764 S.Diag(LiteralLoc, diag::err_attribute_section_local_variable);
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002765 return;
2766 }
Michael Han51d8c522013-01-24 16:46:58 +00002767
2768 unsigned Index = Attr.getAttributeSpellingListIndex();
Benjamin Kramer1a343e22013-09-13 15:35:43 +00002769 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), Str, Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002770 if (NewAttr)
2771 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002772}
2773
Chris Lattner6b6b5372008-06-26 18:38:35 +00002774
Chandler Carruth1b03c872011-07-02 00:01:44 +00002775static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002776 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002777 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002778 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002779 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002780 D->addAttr(::new (S.Context)
2781 NoThrowAttr(Attr.getRange(), S.Context,
2782 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002783 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002784}
2785
Chandler Carruth1b03c872011-07-02 00:01:44 +00002786static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002787 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002788 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002789 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002790 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002791 D->addAttr(::new (S.Context)
2792 ConstAttr(Attr.getRange(), S.Context,
2793 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002794 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002795}
2796
Chandler Carruth1b03c872011-07-02 00:01:44 +00002797static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002798 D->addAttr(::new (S.Context)
2799 PureAttr(Attr.getRange(), S.Context,
2800 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002801}
2802
Chandler Carruth1b03c872011-07-02 00:01:44 +00002803static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002804 VarDecl *VD = dyn_cast<VarDecl>(D);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002805 if (!VD || !VD->hasLocalStorage()) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002806 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002807 return;
2808 }
Mike Stumpbf916502009-07-24 19:02:52 +00002809
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002810 Expr *E = Attr.getArgAsExpr(0);
2811 SourceLocation Loc = E->getExprLoc();
2812 FunctionDecl *FD = 0;
2813 DeclarationNameInfo NI;
Aaron Ballman624421f2013-08-31 01:11:41 +00002814
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002815 // gcc only allows for simple identifiers. Since we support more than gcc, we
2816 // will warn the user.
2817 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
2818 if (DRE->hasQualifier())
2819 S.Diag(Loc, diag::warn_cleanup_ext);
2820 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
2821 NI = DRE->getNameInfo();
2822 if (!FD) {
2823 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
2824 << NI.getName();
2825 return;
2826 }
2827 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
2828 if (ULE->hasExplicitTemplateArgs())
2829 S.Diag(Loc, diag::warn_cleanup_ext);
Mike Stumpbf916502009-07-24 19:02:52 +00002830
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002831 // This will diagnose the case where the function cannot be found.
2832 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
2833 NI = ULE->getNameInfo();
2834 } else {
2835 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002836 return;
2837 }
2838
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002839 if (FD->getNumParams() != 1) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002840 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
2841 << NI.getName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002842 return;
2843 }
Mike Stumpbf916502009-07-24 19:02:52 +00002844
Anders Carlsson89941c12009-02-07 23:16:50 +00002845 // We're currently more strict than GCC about what function types we accept.
2846 // If this ever proves to be a problem it should be easy to fix.
2847 QualType Ty = S.Context.getPointerType(VD->getType());
2848 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002849 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2850 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballmanebaee6b2013-09-11 01:37:41 +00002851 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
2852 << NI.getName() << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00002853 return;
2854 }
Mike Stumpbf916502009-07-24 19:02:52 +00002855
Michael Han51d8c522013-01-24 16:46:58 +00002856 D->addAttr(::new (S.Context)
2857 CleanupAttr(Attr.getRange(), S.Context, FD,
2858 Attr.getAttributeSpellingListIndex()));
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002859}
2860
Mike Stumpbf916502009-07-24 19:02:52 +00002861/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002862/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002863static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002864 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002866 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002867 return;
2868 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002869
Aaron Ballman624421f2013-08-31 01:11:41 +00002870 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002871 uint64_t ArgIdx;
2872 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
2873 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002874 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002875
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002876 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002877 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002878
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002879 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2880 if (not_nsstring_type &&
2881 !isCFStringType(Ty, S.Context) &&
2882 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002883 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002884 // FIXME: Should highlight the actual expression that has the wrong type.
2885 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002886 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002887 << IdxExpr->getSourceRange();
2888 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002889 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002890 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002891 if (!isNSStringType(Ty, S.Context) &&
2892 !isCFStringType(Ty, S.Context) &&
2893 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002894 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002895 // FIXME: Should highlight the actual expression that has the wrong type.
2896 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002897 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002898 << IdxExpr->getSourceRange();
2899 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002900 }
2901
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002902 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
2903 // because that has corrected for the implicit this parameter, and is zero-
2904 // based. The attribute expects what the user wrote explicitly.
2905 llvm::APSInt Val;
2906 IdxExpr->EvaluateAsInt(Val, S.Context);
2907
Michael Han51d8c522013-01-24 16:46:58 +00002908 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002909 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00002910 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002911}
2912
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002913enum FormatAttrKind {
2914 CFStringFormat,
2915 NSStringFormat,
2916 StrftimeFormat,
2917 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002918 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002919 InvalidFormat
2920};
2921
2922/// getFormatAttrKind - Map from format attribute names to supported format
2923/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002924static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002925 return llvm::StringSwitch<FormatAttrKind>(Format)
2926 // Check for formats that get handled specially.
2927 .Case("NSString", NSStringFormat)
2928 .Case("CFString", CFStringFormat)
2929 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002930
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002931 // Otherwise, check for supported formats.
2932 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2933 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2934 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002935
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002936 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2937 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002938}
2939
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002940/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002941/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002942static void handleInitPriorityAttr(Sema &S, Decl *D,
2943 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002944 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002945 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2946 return;
2947 }
2948
Chandler Carruth87c44602011-07-01 23:49:12 +00002949 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002950 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2951 Attr.setInvalid();
2952 return;
2953 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002954 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002955 if (S.Context.getAsArrayType(T))
2956 T = S.Context.getBaseElementType(T);
2957 if (!T->getAs<RecordType>()) {
2958 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2959 Attr.setInvalid();
2960 return;
2961 }
2962
Aaron Ballman624421f2013-08-31 01:11:41 +00002963 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002964
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002965 llvm::APSInt priority(32);
2966 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2967 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002968 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2969 << Attr.getName() << AANT_ArgumentIntegerConstant
2970 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002971 Attr.setInvalid();
2972 return;
2973 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002974 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002975 if (prioritynum < 101 || prioritynum > 65535) {
2976 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2977 << priorityExpr->getSourceRange();
2978 Attr.setInvalid();
2979 return;
2980 }
Michael Han51d8c522013-01-24 16:46:58 +00002981 D->addAttr(::new (S.Context)
2982 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
2983 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002984}
2985
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00002986FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
2987 IdentifierInfo *Format, int FormatIdx,
2988 int FirstArg,
Michael Han51d8c522013-01-24 16:46:58 +00002989 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002990 // Check whether we already have an equivalent format attribute.
2991 for (specific_attr_iterator<FormatAttr>
2992 i = D->specific_attr_begin<FormatAttr>(),
2993 e = D->specific_attr_end<FormatAttr>();
2994 i != e ; ++i) {
2995 FormatAttr *f = *i;
2996 if (f->getType() == Format &&
2997 f->getFormatIdx() == FormatIdx &&
2998 f->getFirstArg() == FirstArg) {
2999 // If we don't have a valid location for this attribute, adopt the
3000 // location.
3001 if (f->getLocation().isInvalid())
3002 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003003 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003004 }
3005 }
3006
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003007 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3008 FirstArg, AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003009}
3010
Mike Stumpbf916502009-07-24 19:02:52 +00003011/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003012/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003013static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003014 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003015 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003016 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003017 return;
3018 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003019
Chandler Carruth87c44602011-07-01 23:49:12 +00003020 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003021 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003022 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003023 return;
3024 }
3025
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003026 // In C++ the implicit 'this' function parameter also counts, and they are
3027 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003028 bool HasImplicitThisParam = isInstanceMethod(D);
3029 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003030 unsigned FirstIdx = 1;
3031
Aaron Ballman624421f2013-08-31 01:11:41 +00003032 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3033 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003034
3035 // Normalize the argument, __foo__ becomes foo.
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003036 if (Format.startswith("__") && Format.endswith("__")) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003037 Format = Format.substr(2, Format.size() - 4);
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003038 // If we've modified the string name, we need a new identifier for it.
3039 II = &S.Context.Idents.get(Format);
3040 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003041
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003042 // Check for supported formats.
3043 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003044
3045 if (Kind == IgnoredFormat)
3046 return;
3047
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003048 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003049 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003050 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003051 return;
3052 }
3053
3054 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003055 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003056 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003057 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3058 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003059 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003060 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003061 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003062 return;
3063 }
3064
3065 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003066 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003067 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003068 return;
3069 }
3070
3071 // FIXME: Do we need to bounds check?
3072 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003073
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003074 if (HasImplicitThisParam) {
3075 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003076 S.Diag(Attr.getLoc(),
3077 diag::err_format_attribute_implicit_this_format_string)
3078 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003079 return;
3080 }
3081 ArgIdx--;
3082 }
Mike Stump1eb44332009-09-09 15:08:12 +00003083
Chris Lattner6b6b5372008-06-26 18:38:35 +00003084 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003085 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003086
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003087 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003088 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003089 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3090 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003091 return;
3092 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003093 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003094 // FIXME: do we need to check if the type is NSString*? What are the
3095 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003096 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003097 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003098 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3099 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003100 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003101 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003102 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003103 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003104 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003105 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3106 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003107 return;
3108 }
3109
3110 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003111 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003112 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003113 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3114 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003115 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003116 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003117 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003118 return;
3119 }
3120
3121 // check if the function is variadic if the 3rd argument non-zero
3122 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003123 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003124 ++NumArgs; // +1 for ...
3125 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003126 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003127 return;
3128 }
3129 }
3130
Chris Lattner3c73c412008-11-19 08:23:25 +00003131 // strftime requires FirstArg to be 0 because it doesn't read from any
3132 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003133 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003134 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003135 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3136 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003137 return;
3138 }
3139 // if 0 it disables parameter checking (to use with e.g. va_list)
3140 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003141 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003142 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003143 return;
3144 }
3145
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003146 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00003147 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003148 FirstArg.getZExtValue(),
3149 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003150 if (NewAttr)
3151 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003152}
3153
Chandler Carruth1b03c872011-07-02 00:01:44 +00003154static void handleTransparentUnionAttr(Sema &S, Decl *D,
3155 const AttributeList &Attr) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003156 // Try to find the underlying union declaration.
3157 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003158 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003159 if (TD && TD->getUnderlyingType()->isUnionType())
3160 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3161 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003162 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003163
3164 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003165 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003166 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003167 return;
3168 }
3169
John McCall5e1cdac2011-10-07 06:10:15 +00003170 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003171 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003172 diag::warn_transparent_union_attribute_not_definition);
3173 return;
3174 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003175
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003176 RecordDecl::field_iterator Field = RD->field_begin(),
3177 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003178 if (Field == FieldEnd) {
3179 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3180 return;
3181 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003182
David Blaikie581deb32012-06-06 20:45:41 +00003183 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003184 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003185 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003186 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003187 diag::warn_transparent_union_attribute_floating)
3188 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003189 return;
3190 }
3191
3192 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3193 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3194 for (; Field != FieldEnd; ++Field) {
3195 QualType FieldType = Field->getType();
3196 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3197 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3198 // Warn if we drop the attribute.
3199 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003200 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003201 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003202 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003203 diag::warn_transparent_union_attribute_field_size_align)
3204 << isSize << Field->getDeclName() << FieldBits;
3205 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003206 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003207 diag::note_transparent_union_first_field_size_align)
3208 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003209 return;
3210 }
3211 }
3212
Michael Han51d8c522013-01-24 16:46:58 +00003213 RD->addAttr(::new (S.Context)
3214 TransparentUnionAttr(Attr.getRange(), S.Context,
3215 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003216}
3217
Chandler Carruth1b03c872011-07-02 00:01:44 +00003218static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003219 // Make sure that there is a string literal as the annotation's single
3220 // argument.
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003221 StringRef Str;
3222 if (!checkStringLiteralArgument(S, Str, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003223 return;
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003224
3225 // Don't duplicate annotations that are already set.
3226 for (specific_attr_iterator<AnnotateAttr>
3227 i = D->specific_attr_begin<AnnotateAttr>(),
3228 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003229 if ((*i)->getAnnotation() == Str)
3230 return;
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003231 }
Michael Han51d8c522013-01-24 16:46:58 +00003232
3233 D->addAttr(::new (S.Context)
Benjamin Kramer1a343e22013-09-13 15:35:43 +00003234 AnnotateAttr(Attr.getRange(), S.Context, Str,
Michael Han51d8c522013-01-24 16:46:58 +00003235 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003236}
3237
Chandler Carruth1b03c872011-07-02 00:01:44 +00003238static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003239 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003240 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003241 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3242 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003243 return;
3244 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003245
Richard Smithbe507b62013-02-01 08:12:08 +00003246 if (Attr.getNumArgs() == 0) {
3247 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3248 true, 0, Attr.getAttributeSpellingListIndex()));
3249 return;
3250 }
3251
Aaron Ballman624421f2013-08-31 01:11:41 +00003252 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003253 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3254 S.Diag(Attr.getEllipsisLoc(),
3255 diag::err_pack_expansion_without_parameter_packs);
3256 return;
3257 }
3258
3259 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3260 return;
3261
3262 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3263 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003264}
3265
3266void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003267 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003268 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3269 SourceLocation AttrLoc = AttrRange.getBegin();
3270
Richard Smith4cd81c52013-01-29 09:02:09 +00003271 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003272 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003273 // C++11 [dcl.align]p1:
3274 // An alignment-specifier may be applied to a variable or to a class
3275 // data member, but it shall not be applied to a bit-field, a function
3276 // parameter, the formal parameter of a catch clause, or a variable
3277 // declared with the register storage class specifier. An
3278 // alignment-specifier may also be applied to the declaration of a class
3279 // or enumeration type.
3280 // C11 6.7.5/2:
3281 // An alignment attribute shall not be specified in a declaration of
3282 // a typedef, or a bit-field, or a function, or a parameter, or an
3283 // object declared with the register storage-class specifier.
3284 int DiagKind = -1;
3285 if (isa<ParmVarDecl>(D)) {
3286 DiagKind = 0;
3287 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3288 if (VD->getStorageClass() == SC_Register)
3289 DiagKind = 1;
3290 if (VD->isExceptionVariable())
3291 DiagKind = 2;
3292 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3293 if (FD->isBitField())
3294 DiagKind = 3;
3295 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003296 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3297 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003298 << (TmpAttr.isC11() ? ExpectedVariableOrField
3299 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003300 return;
3301 }
3302 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003303 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003304 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003305 return;
3306 }
3307 }
3308
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003309 if (E->isTypeDependent() || E->isValueDependent()) {
3310 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003311 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3312 AA->setPackExpansion(IsPackExpansion);
3313 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003314 return;
3315 }
Michael Hana31f65b2013-02-01 01:19:17 +00003316
Sean Huntcf807c42010-08-18 23:23:40 +00003317 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003318 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003319 ExprResult ICE
3320 = VerifyIntegerConstantExpression(E, &Alignment,
3321 diag::err_aligned_attribute_argument_not_int,
3322 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003323 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003324 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003325
3326 // C++11 [dcl.align]p2:
3327 // -- if the constant expression evaluates to zero, the alignment
3328 // specifier shall have no effect
3329 // C11 6.7.5p6:
3330 // An alignment specification of zero has no effect.
3331 if (!(TmpAttr.isAlignas() && !Alignment) &&
3332 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003333 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3334 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003335 return;
3336 }
Michael Hana31f65b2013-02-01 01:19:17 +00003337
Richard Smithbe507b62013-02-01 08:12:08 +00003338 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003339 // We've already verified it's a power of 2, now let's make sure it's
3340 // 8192 or less.
3341 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003342 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003343 << E->getSourceRange();
3344 return;
3345 }
3346 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003347
Richard Smithf6565a92013-02-22 08:32:16 +00003348 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3349 ICE.take(), SpellingListIndex);
3350 AA->setPackExpansion(IsPackExpansion);
3351 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003352}
3353
Michael Hana31f65b2013-02-01 01:19:17 +00003354void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003355 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003356 // FIXME: Cache the number on the Attr object if non-dependent?
3357 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003358 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3359 SpellingListIndex);
3360 AA->setPackExpansion(IsPackExpansion);
3361 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003362}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003363
Richard Smithbe507b62013-02-01 08:12:08 +00003364void Sema::CheckAlignasUnderalignment(Decl *D) {
3365 assert(D->hasAttrs() && "no attributes on decl");
3366
3367 QualType Ty;
3368 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3369 Ty = VD->getType();
3370 else
3371 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003372 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003373 return;
3374
3375 // C++11 [dcl.align]p5, C11 6.7.5/4:
3376 // The combined effect of all alignment attributes in a declaration shall
3377 // not specify an alignment that is less strict than the alignment that
3378 // would otherwise be required for the entity being declared.
3379 AlignedAttr *AlignasAttr = 0;
3380 unsigned Align = 0;
3381 for (specific_attr_iterator<AlignedAttr>
3382 I = D->specific_attr_begin<AlignedAttr>(),
3383 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3384 if (I->isAlignmentDependent())
3385 return;
3386 if (I->isAlignas())
3387 AlignasAttr = *I;
3388 Align = std::max(Align, I->getAlignment(Context));
3389 }
3390
3391 if (AlignasAttr && Align) {
3392 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3393 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3394 if (NaturalAlign > RequestedAlign)
3395 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3396 << Ty << (unsigned)NaturalAlign.getQuantity();
3397 }
3398}
3399
Chandler Carruthd309c812011-07-01 23:49:16 +00003400/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003401/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003402///
Mike Stumpbf916502009-07-24 19:02:52 +00003403/// Despite what would be logical, the mode attribute is a decl attribute, not a
3404/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3405/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003406static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003407 // This attribute isn't documented, but glibc uses it. It changes
3408 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003409 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003410 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3411 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003412 return;
3413 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003414
Aaron Ballman624421f2013-08-31 01:11:41 +00003415 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3416 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003417
3418 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003419 if (Str.startswith("__") && Str.endswith("__"))
3420 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003421
3422 unsigned DestWidth = 0;
3423 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003424 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003425 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003426 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003427 switch (Str[0]) {
3428 case 'Q': DestWidth = 8; break;
3429 case 'H': DestWidth = 16; break;
3430 case 'S': DestWidth = 32; break;
3431 case 'D': DestWidth = 64; break;
3432 case 'X': DestWidth = 96; break;
3433 case 'T': DestWidth = 128; break;
3434 }
3435 if (Str[1] == 'F') {
3436 IntegerMode = false;
3437 } else if (Str[1] == 'C') {
3438 IntegerMode = false;
3439 ComplexMode = true;
3440 } else if (Str[1] != 'I') {
3441 DestWidth = 0;
3442 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003443 break;
3444 case 4:
3445 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3446 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003447 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003448 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003449 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003450 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003451 break;
3452 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003453 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003454 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003455 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003456 case 11:
3457 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003458 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003459 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003460 }
3461
3462 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003463 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003464 OldTy = TD->getUnderlyingType();
3465 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3466 OldTy = VD->getType();
3467 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003468 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003469 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003470 return;
3471 }
Eli Friedman73397492009-03-03 06:41:03 +00003472
John McCall183700f2009-09-21 23:43:11 +00003473 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003474 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3475 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003476 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003477 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3478 } else if (ComplexMode) {
3479 if (!OldTy->isComplexType())
3480 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3481 } else {
3482 if (!OldTy->isFloatingType())
3483 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3484 }
3485
Mike Stump390b4cc2009-05-16 07:39:55 +00003486 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3487 // and friends, at least with glibc.
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003488 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3489 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003490 // FIXME: Make sure floating-point mappings are accurate
3491 // FIXME: Support XF and TF types
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003492 QualType NewTy;
3493 switch (DestWidth) {
3494 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003495 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003496 return;
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003497 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003498 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003499 return;
Stepan Dyatkovskiy8e366f02013-09-10 08:37:22 +00003500 case 8:
3501 if (!IntegerMode) {
3502 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3503 return;
3504 }
3505 if (OldTy->isSignedIntegerType())
3506 NewTy = S.Context.SignedCharTy;
3507 else
3508 NewTy = S.Context.UnsignedCharTy;
3509 break;
3510 case 16:
3511 if (!IntegerMode) {
3512 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3513 return;
3514 }
3515 if (OldTy->isSignedIntegerType())
3516 NewTy = S.Context.ShortTy;
3517 else
3518 NewTy = S.Context.UnsignedShortTy;
3519 break;
3520 case 32:
3521 if (!IntegerMode)
3522 NewTy = S.Context.FloatTy;
3523 else if (OldTy->isSignedIntegerType())
3524 NewTy = S.Context.IntTy;
3525 else
3526 NewTy = S.Context.UnsignedIntTy;
3527 break;
3528 case 64:
3529 if (!IntegerMode)
3530 NewTy = S.Context.DoubleTy;
3531 else if (OldTy->isSignedIntegerType())
3532 if (S.Context.getTargetInfo().getLongWidth() == 64)
3533 NewTy = S.Context.LongTy;
3534 else
3535 NewTy = S.Context.LongLongTy;
3536 else
3537 if (S.Context.getTargetInfo().getLongWidth() == 64)
3538 NewTy = S.Context.UnsignedLongTy;
3539 else
3540 NewTy = S.Context.UnsignedLongLongTy;
3541 break;
3542 case 96:
3543 NewTy = S.Context.LongDoubleTy;
3544 break;
3545 case 128:
3546 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3547 &llvm::APFloat::PPCDoubleDouble) {
3548 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3549 return;
3550 }
3551 if (IntegerMode) {
3552 if (OldTy->isSignedIntegerType())
3553 NewTy = S.Context.Int128Ty;
3554 else
3555 NewTy = S.Context.UnsignedInt128Ty;
3556 } else
3557 NewTy = S.Context.LongDoubleTy;
3558 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003559 }
3560
Eli Friedman73397492009-03-03 06:41:03 +00003561 if (ComplexMode) {
3562 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003563 }
3564
3565 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003566 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3567 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3568 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003569 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003570
3571 D->addAttr(::new (S.Context)
3572 ModeAttr(Attr.getRange(), S.Context, Name,
3573 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003574}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003575
Chandler Carruth1b03c872011-07-02 00:01:44 +00003576static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nick Lewycky78d1a102012-07-24 01:40:49 +00003577 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3578 if (!VD->hasGlobalStorage())
3579 S.Diag(Attr.getLoc(),
3580 diag::warn_attribute_requires_functions_or_static_globals)
3581 << Attr.getName();
3582 } else if (!isFunctionOrMethod(D)) {
3583 S.Diag(Attr.getLoc(),
3584 diag::warn_attribute_requires_functions_or_static_globals)
3585 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003586 return;
3587 }
Mike Stumpbf916502009-07-24 19:02:52 +00003588
Michael Han51d8c522013-01-24 16:46:58 +00003589 D->addAttr(::new (S.Context)
3590 NoDebugAttr(Attr.getRange(), S.Context,
3591 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003592}
3593
Chandler Carruth1b03c872011-07-02 00:01:44 +00003594static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003595 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003596 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003597 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003598 return;
3599 }
Mike Stumpbf916502009-07-24 19:02:52 +00003600
Michael Han51d8c522013-01-24 16:46:58 +00003601 D->addAttr(::new (S.Context)
3602 NoInlineAttr(Attr.getRange(), S.Context,
3603 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003604}
3605
Chandler Carruth1b03c872011-07-02 00:01:44 +00003606static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3607 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003608 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003609 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003610 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003611 return;
3612 }
3613
Michael Han51d8c522013-01-24 16:46:58 +00003614 D->addAttr(::new (S.Context)
3615 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3616 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003617}
3618
Chandler Carruth1b03c872011-07-02 00:01:44 +00003619static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003620 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003621 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003622 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003623 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003624 return;
3625 }
3626
Michael Han51d8c522013-01-24 16:46:58 +00003627 D->addAttr(::new (S.Context)
3628 CUDAConstantAttr(Attr.getRange(), S.Context,
3629 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003630 } else {
3631 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3632 }
3633}
3634
Chandler Carruth1b03c872011-07-02 00:01:44 +00003635static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003636 if (S.LangOpts.CUDA) {
3637 // check the attribute arguments.
3638 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003639 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3640 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003641 return;
3642 }
3643
Chandler Carruth87c44602011-07-01 23:49:12 +00003644 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003645 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003646 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003647 return;
3648 }
3649
Michael Han51d8c522013-01-24 16:46:58 +00003650 D->addAttr(::new (S.Context)
3651 CUDADeviceAttr(Attr.getRange(), S.Context,
3652 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003653 } else {
3654 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3655 }
3656}
3657
Chandler Carruth1b03c872011-07-02 00:01:44 +00003658static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003659 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003660 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003661 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003662 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003663 return;
3664 }
3665
Chandler Carruth87c44602011-07-01 23:49:12 +00003666 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003667 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003668 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003669 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003670 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3671 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003672 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003673 "void");
3674 } else {
3675 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3676 << FD->getType();
3677 }
3678 return;
3679 }
3680
Michael Han51d8c522013-01-24 16:46:58 +00003681 D->addAttr(::new (S.Context)
3682 CUDAGlobalAttr(Attr.getRange(), S.Context,
3683 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003684 } else {
3685 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3686 }
3687}
3688
Chandler Carruth1b03c872011-07-02 00:01:44 +00003689static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003690 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003691 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003692 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003693 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003694 return;
3695 }
3696
Michael Han51d8c522013-01-24 16:46:58 +00003697 D->addAttr(::new (S.Context)
3698 CUDAHostAttr(Attr.getRange(), S.Context,
3699 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003700 } else {
3701 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3702 }
3703}
3704
Chandler Carruth1b03c872011-07-02 00:01:44 +00003705static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003706 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003707 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003708 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003709 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003710 return;
3711 }
3712
Michael Han51d8c522013-01-24 16:46:58 +00003713 D->addAttr(::new (S.Context)
3714 CUDASharedAttr(Attr.getRange(), S.Context,
3715 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003716 } else {
3717 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3718 }
3719}
3720
Chandler Carruth1b03c872011-07-02 00:01:44 +00003721static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003722 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003723 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003724 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003725 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003726 return;
3727 }
Mike Stumpbf916502009-07-24 19:02:52 +00003728
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003729 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003730 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003731 return;
3732 }
Mike Stumpbf916502009-07-24 19:02:52 +00003733
Michael Han51d8c522013-01-24 16:46:58 +00003734 D->addAttr(::new (S.Context)
3735 GNUInlineAttr(Attr.getRange(), S.Context,
3736 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003737}
3738
Chandler Carruth1b03c872011-07-02 00:01:44 +00003739static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003740 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003741
Aaron Ballmanfff32482012-12-09 17:45:41 +00003742 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003743 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003744 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3745 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003746 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003747 return;
3748
Chandler Carruth87c44602011-07-01 23:49:12 +00003749 if (!isa<ObjCMethodDecl>(D)) {
3750 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3751 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003752 return;
3753 }
3754
Chandler Carruth87c44602011-07-01 23:49:12 +00003755 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003756 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003757 D->addAttr(::new (S.Context)
3758 FastCallAttr(Attr.getRange(), S.Context,
3759 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003760 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003761 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003762 D->addAttr(::new (S.Context)
3763 StdCallAttr(Attr.getRange(), S.Context,
3764 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003765 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003766 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003767 D->addAttr(::new (S.Context)
3768 ThisCallAttr(Attr.getRange(), S.Context,
3769 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003770 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003771 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003772 D->addAttr(::new (S.Context)
3773 CDeclAttr(Attr.getRange(), S.Context,
3774 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003775 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003776 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003777 D->addAttr(::new (S.Context)
3778 PascalAttr(Attr.getRange(), S.Context,
3779 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003780 return;
Charles Davise8519c32013-08-30 04:39:01 +00003781 case AttributeList::AT_MSABI:
3782 D->addAttr(::new (S.Context)
3783 MSABIAttr(Attr.getRange(), S.Context,
3784 Attr.getAttributeSpellingListIndex()));
3785 return;
3786 case AttributeList::AT_SysVABI:
3787 D->addAttr(::new (S.Context)
3788 SysVABIAttr(Attr.getRange(), S.Context,
3789 Attr.getAttributeSpellingListIndex()));
3790 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003791 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003792 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003793 switch (CC) {
3794 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003795 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003796 break;
3797 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003798 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003799 break;
3800 default:
3801 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003802 }
3803
Michael Han51d8c522013-01-24 16:46:58 +00003804 D->addAttr(::new (S.Context)
3805 PcsAttr(Attr.getRange(), S.Context, PCS,
3806 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003807 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003808 }
Derek Schuff263366f2012-10-16 22:30:41 +00003809 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003810 D->addAttr(::new (S.Context)
3811 PnaclCallAttr(Attr.getRange(), S.Context,
3812 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003813 return;
Guy Benyei38980082012-12-25 08:53:55 +00003814 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003815 D->addAttr(::new (S.Context)
3816 IntelOclBiccAttr(Attr.getRange(), S.Context,
3817 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003818 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003819
Abramo Bagnarae215f722010-04-30 13:10:51 +00003820 default:
3821 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003822 }
3823}
3824
Chandler Carruth1b03c872011-07-02 00:01:44 +00003825static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003826 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003827}
3828
Guy Benyei1db70402013-03-24 13:58:12 +00003829static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00003830 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00003831 llvm::APSInt ArgNum(32);
3832 if (E->isTypeDependent() || E->isValueDependent() ||
3833 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003834 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3835 << Attr.getName() << AANT_ArgumentIntegerConstant
3836 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00003837 return;
3838 }
3839
3840 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
3841 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
3842}
3843
Aaron Ballmanfff32482012-12-09 17:45:41 +00003844bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3845 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003846 if (attr.isInvalid())
3847 return true;
3848
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003849 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00003850 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00003851 attr.setInvalid();
3852 return true;
3853 }
3854
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003855 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3856 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003857 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003858 case AttributeList::AT_CDecl: CC = CC_C; break;
3859 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3860 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3861 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3862 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00003863 case AttributeList::AT_MSABI:
3864 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
3865 CC_X86_64Win64;
3866 break;
3867 case AttributeList::AT_SysVABI:
3868 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
3869 CC_C;
3870 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00003871 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00003872 StringLiteral *Str = 0;
3873 if (attr.isArgExpr(0))
3874 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
3875
Douglas Gregor5cee1192011-07-27 05:40:30 +00003876 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003877 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
3878 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003879 attr.setInvalid();
3880 return true;
3881 }
3882
Chris Lattner5f9e2722011-07-23 10:55:15 +00003883 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003884 if (StrRef == "aapcs") {
3885 CC = CC_AAPCS;
3886 break;
3887 } else if (StrRef == "aapcs-vfp") {
3888 CC = CC_AAPCS_VFP;
3889 break;
3890 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003891
3892 attr.setInvalid();
3893 Diag(attr.getLoc(), diag::err_invalid_pcs);
3894 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003895 }
Derek Schuff263366f2012-10-16 22:30:41 +00003896 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003897 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003898 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003899 }
3900
Aaron Ballman82bfa192012-10-02 14:26:08 +00003901 const TargetInfo &TI = Context.getTargetInfo();
3902 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3903 if (A == TargetInfo::CCCR_Warning) {
3904 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003905
3906 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3907 if (FD)
3908 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3909 TargetInfo::CCMT_NonMember;
3910 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003911 }
3912
John McCall711c52b2011-01-05 12:14:39 +00003913 return false;
3914}
3915
Chandler Carruth1b03c872011-07-02 00:01:44 +00003916static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003917 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003918
3919 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003920 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003921 return;
3922
Chandler Carruth87c44602011-07-01 23:49:12 +00003923 if (!isa<ObjCMethodDecl>(D)) {
3924 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3925 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003926 return;
3927 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003928
Michael Han51d8c522013-01-24 16:46:58 +00003929 D->addAttr(::new (S.Context)
3930 RegparmAttr(Attr.getRange(), S.Context, numParams,
3931 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003932}
3933
3934/// Checks a regparm attribute, returning true if it is ill-formed and
3935/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003936bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3937 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003938 return true;
3939
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003940 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003941 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003942 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003943 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003944
Aaron Ballman624421f2013-08-31 01:11:41 +00003945 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003946 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003947 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003948 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003949 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3950 << Attr.getName() << AANT_ArgumentIntegerConstant
3951 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003952 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003953 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003954 }
3955
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003956 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003957 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003958 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003959 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003960 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003961 }
3962
John McCall711c52b2011-01-05 12:14:39 +00003963 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003964 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003965 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003966 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003967 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003968 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003969 }
3970
John McCall711c52b2011-01-05 12:14:39 +00003971 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003972}
3973
Chandler Carruth1b03c872011-07-02 00:01:44 +00003974static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003975 if (S.LangOpts.CUDA) {
3976 // check the attribute arguments.
3977 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003978 // FIXME: 0 is not okay.
3979 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003980 return;
3981 }
3982
Chandler Carruth87c44602011-07-01 23:49:12 +00003983 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003984 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003985 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003986 return;
3987 }
3988
Aaron Ballman624421f2013-08-31 01:11:41 +00003989 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003990 llvm::APSInt MaxThreads(32);
3991 if (MaxThreadsExpr->isTypeDependent() ||
3992 MaxThreadsExpr->isValueDependent() ||
3993 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003994 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003995 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003996 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00003997 return;
3998 }
3999
4000 llvm::APSInt MinBlocks(32);
4001 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004002 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004003 if (MinBlocksExpr->isTypeDependent() ||
4004 MinBlocksExpr->isValueDependent() ||
4005 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004006 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004007 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004008 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004009 return;
4010 }
4011 }
4012
Michael Han51d8c522013-01-24 16:46:58 +00004013 D->addAttr(::new (S.Context)
4014 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4015 MaxThreads.getZExtValue(),
4016 MinBlocks.getZExtValue(),
4017 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004018 } else {
4019 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4020 }
4021}
4022
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004023static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4024 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004025 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004026 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004027 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004028 return;
4029 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004030
4031 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004032 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004033
Aaron Ballman624421f2013-08-31 01:11:41 +00004034 StringRef AttrName = Attr.getName()->getName();
4035 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004036
4037 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4038 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4039 << Attr.getName() << ExpectedFunctionOrMethod;
4040 return;
4041 }
4042
4043 uint64_t ArgumentIdx;
4044 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4045 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004046 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004047 return;
4048
4049 uint64_t TypeTagIdx;
4050 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4051 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004052 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004053 return;
4054
4055 bool IsPointer = (AttrName == "pointer_with_type_tag");
4056 if (IsPointer) {
4057 // Ensure that buffer has a pointer type.
4058 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4059 if (!BufferTy->isPointerType()) {
4060 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004061 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004062 }
4063 }
4064
Michael Han51d8c522013-01-24 16:46:58 +00004065 D->addAttr(::new (S.Context)
4066 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4067 ArgumentIdx, TypeTagIdx, IsPointer,
4068 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004069}
4070
4071static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4072 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004073 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004074 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004075 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004076 return;
4077 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004078
4079 if (!checkAttributeNumArgs(S, Attr, 1))
4080 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004081
Aaron Ballman624421f2013-08-31 01:11:41 +00004082 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004083 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4084
Michael Han51d8c522013-01-24 16:46:58 +00004085 D->addAttr(::new (S.Context)
4086 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4087 MatchingCType,
4088 Attr.getLayoutCompatible(),
4089 Attr.getMustBeNull(),
4090 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004091}
4092
Chris Lattner0744e5f2008-06-29 00:23:49 +00004093//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004094// Checker-specific attribute handlers.
4095//===----------------------------------------------------------------------===//
4096
John McCallc7ad3812011-01-25 03:31:58 +00004097static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004098 return type->isDependentType() ||
4099 type->isObjCObjectPointerType() ||
4100 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004101}
4102static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004103 return type->isDependentType() ||
4104 type->isPointerType() ||
4105 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004106}
4107
Chandler Carruth1b03c872011-07-02 00:01:44 +00004108static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004109 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004110 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004111 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004112 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004113 return;
4114 }
4115
4116 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004117 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004118 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4119 cf = false;
4120 } else {
4121 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4122 cf = true;
4123 }
4124
4125 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004126 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004127 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004128 return;
4129 }
4130
4131 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004132 param->addAttr(::new (S.Context)
4133 CFConsumedAttr(Attr.getRange(), S.Context,
4134 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004135 else
Michael Han51d8c522013-01-24 16:46:58 +00004136 param->addAttr(::new (S.Context)
4137 NSConsumedAttr(Attr.getRange(), S.Context,
4138 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004139}
4140
Chandler Carruth1b03c872011-07-02 00:01:44 +00004141static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4142 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004143 if (!isa<ObjCMethodDecl>(D)) {
4144 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004145 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004146 return;
4147 }
4148
Michael Han51d8c522013-01-24 16:46:58 +00004149 D->addAttr(::new (S.Context)
4150 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4151 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004152}
4153
Chandler Carruth1b03c872011-07-02 00:01:44 +00004154static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4155 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004156
John McCallc7ad3812011-01-25 03:31:58 +00004157 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004158
Chandler Carruth87c44602011-07-01 23:49:12 +00004159 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004160 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004161 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004162 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004163 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004164 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4165 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004166 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004167 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004168 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004169 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004170 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004171 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004172 return;
4173 }
Mike Stumpbf916502009-07-24 19:02:52 +00004174
John McCallc7ad3812011-01-25 03:31:58 +00004175 bool typeOK;
4176 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004177 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004178 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004179 case AttributeList::AT_NSReturnsAutoreleased:
4180 case AttributeList::AT_NSReturnsRetained:
4181 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004182 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4183 cf = false;
4184 break;
4185
Sean Hunt8e083e72012-06-19 23:57:03 +00004186 case AttributeList::AT_CFReturnsRetained:
4187 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004188 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4189 cf = true;
4190 break;
4191 }
4192
4193 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004194 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004195 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004196 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004197 }
Mike Stumpbf916502009-07-24 19:02:52 +00004198
Chandler Carruth87c44602011-07-01 23:49:12 +00004199 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004200 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004201 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004202 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004203 D->addAttr(::new (S.Context)
4204 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4205 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004206 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004207 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004208 D->addAttr(::new (S.Context)
4209 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4210 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004211 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004212 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004213 D->addAttr(::new (S.Context)
4214 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4215 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004216 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004217 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004218 D->addAttr(::new (S.Context)
4219 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4220 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004221 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004222 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004223 D->addAttr(::new (S.Context)
4224 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4225 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004226 return;
4227 };
4228}
4229
John McCalldc7c5ad2011-07-22 08:53:00 +00004230static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4231 const AttributeList &attr) {
4232 SourceLocation loc = attr.getLoc();
4233
4234 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4235
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004236 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004237 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004238 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004239 return;
4240 }
4241
4242 // Check that the method returns a normal pointer.
4243 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004244
4245 if (!resultType->isReferenceType() &&
4246 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004247 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4248 << SourceRange(loc)
4249 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4250
4251 // Drop the attribute.
4252 return;
4253 }
4254
Michael Han51d8c522013-01-24 16:46:58 +00004255 method->addAttr(::new (S.Context)
4256 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4257 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004258}
4259
Fariborz Jahanian84101132012-09-07 23:46:23 +00004260static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4261 const AttributeList &attr) {
4262 SourceLocation loc = attr.getLoc();
4263 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4264
4265 if (!method) {
4266 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4267 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4268 return;
4269 }
4270 DeclContext *DC = method->getDeclContext();
4271 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4272 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4273 << attr.getName() << 0;
4274 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4275 return;
4276 }
4277 if (method->getMethodFamily() == OMF_dealloc) {
4278 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4279 << attr.getName() << 1;
4280 return;
4281 }
4282
Michael Han51d8c522013-01-24 16:46:58 +00004283 method->addAttr(::new (S.Context)
4284 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4285 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004286}
4287
John McCall8dfac0b2011-09-30 05:12:12 +00004288/// Handle cf_audited_transfer and cf_unknown_transfer.
4289static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4290 if (!isa<FunctionDecl>(D)) {
4291 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004292 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004293 return;
4294 }
4295
Sean Hunt8e083e72012-06-19 23:57:03 +00004296 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004297
4298 // Check whether there's a conflicting attribute already present.
4299 Attr *Existing;
4300 if (IsAudited) {
4301 Existing = D->getAttr<CFUnknownTransferAttr>();
4302 } else {
4303 Existing = D->getAttr<CFAuditedTransferAttr>();
4304 }
4305 if (Existing) {
4306 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4307 << A.getName()
4308 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4309 << A.getRange() << Existing->getRange();
4310 return;
4311 }
4312
4313 // All clear; add the attribute.
4314 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004315 D->addAttr(::new (S.Context)
4316 CFAuditedTransferAttr(A.getRange(), S.Context,
4317 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004318 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004319 D->addAttr(::new (S.Context)
4320 CFUnknownTransferAttr(A.getRange(), S.Context,
4321 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004322 }
4323}
4324
John McCallfe98da02011-09-29 07:17:38 +00004325static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4326 const AttributeList &Attr) {
4327 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4328 if (!RD || RD->isUnion()) {
4329 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004330 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004331 }
4332
Aaron Ballman624421f2013-08-31 01:11:41 +00004333 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004334
4335 // In Objective-C, verify that the type names an Objective-C type.
4336 // We don't want to check this outside of ObjC because people sometimes
4337 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004338 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004339 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004340 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004341 Sema::LookupOrdinaryName);
4342 if (S.LookupName(R, Sc)) {
4343 NamedDecl *Target = R.getFoundDecl();
4344 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4345 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4346 S.Diag(Target->getLocStart(), diag::note_declared_at);
4347 }
4348 }
4349 }
4350
Michael Han51d8c522013-01-24 16:46:58 +00004351 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004352 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004353 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004354}
4355
Chandler Carruth1b03c872011-07-02 00:01:44 +00004356static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4357 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004358 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004359
Chandler Carruth87c44602011-07-01 23:49:12 +00004360 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004361 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004362}
4363
Chandler Carruth1b03c872011-07-02 00:01:44 +00004364static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4365 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004366 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004367 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004368 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004369 return;
4370 }
4371
Chandler Carruth87c44602011-07-01 23:49:12 +00004372 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004373 QualType type = vd->getType();
4374
4375 if (!type->isDependentType() &&
4376 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004377 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004378 << type;
4379 return;
4380 }
4381
4382 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4383
4384 // If we have no lifetime yet, check the lifetime we're presumably
4385 // going to infer.
4386 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4387 lifetime = type->getObjCARCImplicitLifetime();
4388
4389 switch (lifetime) {
4390 case Qualifiers::OCL_None:
4391 assert(type->isDependentType() &&
4392 "didn't infer lifetime for non-dependent type?");
4393 break;
4394
4395 case Qualifiers::OCL_Weak: // meaningful
4396 case Qualifiers::OCL_Strong: // meaningful
4397 break;
4398
4399 case Qualifiers::OCL_ExplicitNone:
4400 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004401 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004402 << (lifetime == Qualifiers::OCL_Autoreleasing);
4403 break;
4404 }
4405
Chandler Carruth87c44602011-07-01 23:49:12 +00004406 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004407 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4408 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004409}
4410
Francois Pichet11542142010-12-19 06:50:37 +00004411//===----------------------------------------------------------------------===//
4412// Microsoft specific attribute handlers.
4413//===----------------------------------------------------------------------===//
4414
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004415// Check if MS extensions or some other language extensions are enabled. If
4416// not, issue a diagnostic that the given attribute is unused.
4417static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4418 bool OtherExtension = false) {
4419 if (S.LangOpts.MicrosoftExt || OtherExtension)
4420 return true;
4421 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4422 return false;
4423}
4424
Chandler Carruth1b03c872011-07-02 00:01:44 +00004425static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004426 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4427 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004428
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004429 StringRef StrRef;
4430 SourceLocation LiteralLoc;
4431 if (!checkStringLiteralArgument(S, StrRef, Attr, 0, &LiteralLoc))
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004432 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004433
David Majnemerbb0ed292013-08-09 08:56:20 +00004434 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4435 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
David Majnemerbb0ed292013-08-09 08:56:20 +00004436 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4437 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004438
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004439 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004440 if (StrRef.size() != 36) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004441 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004442 return;
4443 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004444
David Majnemerbb0ed292013-08-09 08:56:20 +00004445 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004446 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004447 if (StrRef[i] != '-') {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004448 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Francois Pichetd3d3be92010-12-20 01:41:49 +00004449 return;
4450 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004451 } else if (!isHexDigit(StrRef[i])) {
Benjamin Kramer1a343e22013-09-13 15:35:43 +00004452 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004453 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004454 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004455 }
Francois Pichet11542142010-12-19 06:50:37 +00004456
David Majnemerbb0ed292013-08-09 08:56:20 +00004457 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4458 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004459}
4460
John McCallc052dbb2012-05-22 21:28:12 +00004461static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004462 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004463 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004464
4465 AttributeList::Kind Kind = Attr.getKind();
4466 if (Kind == AttributeList::AT_SingleInheritance)
4467 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004468 ::new (S.Context)
4469 SingleInheritanceAttr(Attr.getRange(), S.Context,
4470 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004471 else if (Kind == AttributeList::AT_MultipleInheritance)
4472 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004473 ::new (S.Context)
4474 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4475 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004476 else if (Kind == AttributeList::AT_VirtualInheritance)
4477 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004478 ::new (S.Context)
4479 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4480 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004481}
4482
4483static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004484 if (!checkMicrosoftExt(S, Attr))
4485 return;
4486
4487 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004488 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004489 D->addAttr(
4490 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4491 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004492}
4493
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004494static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004495 if (!checkMicrosoftExt(S, Attr))
4496 return;
4497 D->addAttr(::new (S.Context)
4498 ForceInlineAttr(Attr.getRange(), S.Context,
4499 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004500}
4501
Reid Klecknera7225342013-05-20 14:02:37 +00004502static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4503 if (!checkMicrosoftExt(S, Attr))
4504 return;
4505 // Check linkage after possibly merging declaratinos. See
4506 // checkAttributesAfterMerging().
4507 D->addAttr(::new (S.Context)
4508 SelectAnyAttr(Attr.getRange(), S.Context,
4509 Attr.getAttributeSpellingListIndex()));
4510}
4511
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004512/// Handles semantic checking for features that are common to all attributes,
4513/// such as checking whether a parameter was properly specified, or the correct
4514/// number of arguments were passed, etc.
4515static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
4516 const AttributeList &Attr) {
4517 // Several attributes carry different semantics than the parsing requires, so
4518 // those are opted out of the common handling.
4519 //
4520 // We also bail on unknown and ignored attributes because those are handled
4521 // as part of the target-specific handling logic.
4522 if (Attr.hasCustomParsing() ||
4523 Attr.getKind() == AttributeList::UnknownAttribute ||
4524 Attr.getKind() == AttributeList::IgnoredAttribute)
4525 return false;
4526
4527 // If there are no optional arguments, then checking for the argument count
4528 // is trivial.
4529 if (Attr.getMinArgs() == Attr.getMaxArgs() &&
4530 !checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
4531 return true;
4532 return false;
4533}
4534
Ted Kremenekb71368d2009-05-09 02:44:38 +00004535//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004536// Top Level Sema Entry Points
4537//===----------------------------------------------------------------------===//
4538
Richard Smith4a97b8e2013-08-29 00:47:48 +00004539/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4540/// the attribute applies to decls. If the attribute is a type attribute, just
4541/// silently ignore it if a GNU attribute.
4542static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4543 const AttributeList &Attr,
4544 bool IncludeCXX11Attributes) {
4545 if (Attr.isInvalid())
4546 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004547
Richard Smith4a97b8e2013-08-29 00:47:48 +00004548 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4549 // instead.
4550 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4551 return;
4552
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004553 if (handleCommonAttributeFeatures(S, scope, D, Attr))
4554 return;
4555
Chris Lattner803d0802008-06-29 00:43:07 +00004556 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004557 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4558 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4559 case AttributeList::AT_IBOutletCollection:
4560 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004561 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004562 case AttributeList::AT_ObjCGC:
4563 case AttributeList::AT_VectorSize:
4564 case AttributeList::AT_NeonVectorType:
4565 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004566 case AttributeList::AT_Ptr32:
4567 case AttributeList::AT_Ptr64:
4568 case AttributeList::AT_SPtr:
4569 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004570 // Ignore these, these are type attributes, handled by
4571 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004572 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004573 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4574 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4575 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4576 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004577 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004578 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004579 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004580 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004581 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4582 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4583 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004584 handleDependencyAttr(S, scope, D, Attr);
4585 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004586 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4587 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4588 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004589 case AttributeList::AT_CXX11NoReturn:
4590 handleCXX11NoReturnAttr(S, D, Attr);
4591 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004592 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004593 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004594 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004595 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4596 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004597 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004598 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004599 case AttributeList::AT_MinSize:
4600 handleMinSizeAttr(S, D, Attr);
4601 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004602 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4603 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4604 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004605 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4606 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004607 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4608 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004609 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004610 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004611 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4612 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004613 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004614 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4615 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004616 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004617 case AttributeList::AT_ownership_returns:
4618 case AttributeList::AT_ownership_takes:
4619 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004620 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004621 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4622 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4623 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4624 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4625 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4626 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4627 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004628
Sean Hunt8e083e72012-06-19 23:57:03 +00004629 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004630 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004631 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004632 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004633
Sean Hunt8e083e72012-06-19 23:57:03 +00004634 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004635 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4636
Fariborz Jahanian84101132012-09-07 23:46:23 +00004637 case AttributeList::AT_ObjCRequiresSuper:
4638 handleObjCRequiresSuperAttr(S, D, Attr); break;
4639
Sean Hunt8e083e72012-06-19 23:57:03 +00004640 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004641 handleNSBridgedAttr(S, scope, D, Attr); break;
4642
Sean Hunt8e083e72012-06-19 23:57:03 +00004643 case AttributeList::AT_CFAuditedTransfer:
4644 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004645 handleCFTransferAttr(S, D, Attr); break;
4646
Ted Kremenekb71368d2009-05-09 02:44:38 +00004647 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004648 case AttributeList::AT_CFConsumed:
4649 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4650 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004651 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004652
Sean Hunt8e083e72012-06-19 23:57:03 +00004653 case AttributeList::AT_NSReturnsAutoreleased:
4654 case AttributeList::AT_NSReturnsNotRetained:
4655 case AttributeList::AT_CFReturnsNotRetained:
4656 case AttributeList::AT_NSReturnsRetained:
4657 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004658 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004659
Tanya Lattner0df579e2012-07-09 22:06:01 +00004660 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004661 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004662 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004663
Joey Gouly37453b92013-03-08 09:42:32 +00004664 case AttributeList::AT_VecTypeHint:
4665 handleVecTypeHint(S, D, Attr); break;
4666
Sean Hunt8e083e72012-06-19 23:57:03 +00004667 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004668 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004669
Sean Hunt8e083e72012-06-19 23:57:03 +00004670 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4671 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4672 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004673 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004674 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004675 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004676 handleArcWeakrefUnavailableAttr (S, D, Attr);
4677 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004678 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004679 handleObjCRootClassAttr(S, D, Attr);
4680 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004681 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004682 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004683 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004684 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4685 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004686 handleReturnsTwiceAttr(S, D, Attr);
4687 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004688 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004689 case AttributeList::AT_Visibility:
4690 handleVisibilityAttr(S, D, Attr, false);
4691 break;
4692 case AttributeList::AT_TypeVisibility:
4693 handleVisibilityAttr(S, D, Attr, true);
4694 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004695 case AttributeList::AT_WarnUnused:
4696 handleWarnUnusedAttr(S, D, Attr);
4697 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004698 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004699 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004700 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4701 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4702 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4703 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004704 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004705 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004706 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004707 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004708 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004709 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004710 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004711 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004712 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4713 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4714 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4715 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4716 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4717 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4718 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4719 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4720 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004721 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004722 // Just ignore
4723 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004724 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004725 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004726 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004727 case AttributeList::AT_StdCall:
4728 case AttributeList::AT_CDecl:
4729 case AttributeList::AT_FastCall:
4730 case AttributeList::AT_ThisCall:
4731 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004732 case AttributeList::AT_MSABI:
4733 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004734 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004735 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004736 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004737 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004738 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004739 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004740 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004741 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004742 case AttributeList::AT_OpenCLImageAccess:
4743 handleOpenCLImageAccessAttr(S, D, Attr);
4744 break;
John McCallc052dbb2012-05-22 21:28:12 +00004745
4746 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004747 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004748 handleMsStructAttr(S, D, Attr);
4749 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004750 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004751 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004752 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004753 case AttributeList::AT_SingleInheritance:
4754 case AttributeList::AT_MultipleInheritance:
4755 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004756 handleInheritanceAttr(S, D, Attr);
4757 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004758 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004759 handlePortabilityAttr(S, D, Attr);
4760 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004761 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004762 handleForceInlineAttr(S, D, Attr);
4763 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004764 case AttributeList::AT_SelectAny:
4765 handleSelectAnyAttr(S, D, Attr);
4766 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004767
4768 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004769 case AttributeList::AT_AssertExclusiveLock:
4770 handleAssertExclusiveLockAttr(S, D, Attr);
4771 break;
4772 case AttributeList::AT_AssertSharedLock:
4773 handleAssertSharedLockAttr(S, D, Attr);
4774 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004775 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004776 handleGuardedVarAttr(S, D, Attr);
4777 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004778 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004779 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004780 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004781 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004782 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004783 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004784 case AttributeList::AT_NoSanitizeAddress:
4785 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004786 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004787 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004788 handleNoThreadSafetyAnalysis(S, D, Attr);
4789 break;
4790 case AttributeList::AT_NoSanitizeThread:
4791 handleNoSanitizeThread(S, D, Attr);
4792 break;
4793 case AttributeList::AT_NoSanitizeMemory:
4794 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004795 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004796 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004797 handleLockableAttr(S, D, Attr);
4798 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004799 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004800 handleGuardedByAttr(S, D, Attr);
4801 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004802 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004803 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004804 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004805 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004806 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004807 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004808 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004809 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004810 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004811 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004812 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004813 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004814 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004815 handleLockReturnedAttr(S, D, Attr);
4816 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004817 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004818 handleLocksExcludedAttr(S, D, Attr);
4819 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004820 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004821 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004822 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004823 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004824 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004825 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004826 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004827 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004828 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004829 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004830 handleUnlockFunAttr(S, D, Attr);
4831 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004832 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004833 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004834 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004835 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004836 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004837 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004838
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004839 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00004840 case AttributeList::AT_Consumable:
4841 handleConsumableAttr(S, D, Attr);
4842 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004843 case AttributeList::AT_Consumes:
4844 handleConsumesAttr(S, D, Attr);
4845 break;
4846 case AttributeList::AT_CallableWhenUnconsumed:
4847 handleCallableWhenUnconsumedAttr(S, D, Attr);
4848 break;
4849 case AttributeList::AT_TestsConsumed:
4850 handleTestsConsumedAttr(S, D, Attr);
4851 break;
4852 case AttributeList::AT_TestsUnconsumed:
4853 handleTestsUnconsumedAttr(S, D, Attr);
4854 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00004855 case AttributeList::AT_ReturnTypestate:
4856 handleReturnTypestateAttr(S, D, Attr);
4857 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004858
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004859 // Type safety attributes.
4860 case AttributeList::AT_ArgumentWithTypeTag:
4861 handleArgumentWithTypeTagAttr(S, D, Attr);
4862 break;
4863 case AttributeList::AT_TypeTagForDatatype:
4864 handleTypeTagForDatatypeAttr(S, D, Attr);
4865 break;
4866
Chris Lattner803d0802008-06-29 00:43:07 +00004867 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004868 // Ask target about the attribute.
4869 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4870 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004871 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4872 diag::warn_unhandled_ms_attribute_ignored :
4873 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004874 break;
4875 }
4876}
4877
4878/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4879/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004880void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004881 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004882 bool IncludeCXX11Attributes) {
4883 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00004884 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004885
4886 // GCC accepts
4887 // static int a9 __attribute__((weakref));
4888 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00004889 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004890 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004891 cast<NamedDecl>(D)->getNameAsString();
4892 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004893 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004894 }
4895}
4896
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004897// Annotation attributes are the only attributes allowed after an access
4898// specifier.
4899bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4900 const AttributeList *AttrList) {
4901 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004902 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004903 handleAnnotateAttr(*this, ASDecl, *l);
4904 } else {
4905 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4906 return true;
4907 }
4908 }
4909
4910 return false;
4911}
4912
John McCalle82247a2011-10-01 05:17:03 +00004913/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4914/// contains any decl attributes that we should warn about.
4915static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4916 for ( ; A; A = A->getNext()) {
4917 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004918 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004919 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4920
4921 if (A->getKind() == AttributeList::UnknownAttribute) {
4922 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4923 << A->getName() << A->getRange();
4924 } else {
4925 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4926 << A->getName() << A->getRange();
4927 }
4928 }
4929}
4930
4931/// checkUnusedDeclAttributes - Given a declarator which is not being
4932/// used to build a declaration, complain about any decl attributes
4933/// which might be lying around on it.
4934void Sema::checkUnusedDeclAttributes(Declarator &D) {
4935 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4936 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4937 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4938 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4939}
4940
Ryan Flynne25ff832009-07-30 03:15:39 +00004941/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004942/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004943NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4944 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004945 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004946 NamedDecl *NewD = 0;
4947 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004948 FunctionDecl *NewFD;
4949 // FIXME: Missing call to CheckFunctionDeclaration().
4950 // FIXME: Mangling?
4951 // FIXME: Is the qualifier info correct?
4952 // FIXME: Is the DeclContext correct?
4953 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4954 Loc, Loc, DeclarationName(II),
4955 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004956 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00004957 FD->hasPrototype(),
4958 false/*isConstexprSpecified*/);
4959 NewD = NewFD;
4960
4961 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004962 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004963
4964 // Fake up parameter variables; they are declared as if this were
4965 // a typedef.
4966 QualType FDTy = FD->getType();
4967 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4968 SmallVector<ParmVarDecl*, 16> Params;
4969 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4970 AE = FT->arg_type_end(); AI != AE; ++AI) {
4971 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4972 Param->setScopeInfo(0, Params.size());
4973 Params.push_back(Param);
4974 }
David Blaikie4278c652011-09-21 18:16:56 +00004975 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004976 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004977 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4978 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004979 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004980 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004981 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00004982 if (VD->getQualifier()) {
4983 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004984 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004985 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004986 }
4987 return NewD;
4988}
4989
James Dennett1dfbd922012-06-14 21:40:34 +00004990/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00004991/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004992void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004993 if (W.getUsed()) return; // only do this once
4994 W.setUsed(true);
4995 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4996 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004997 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004998 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4999 NDId->getName()));
5000 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005001 WeakTopLevelDecl.push_back(NewD);
5002 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5003 // to insert Decl at TU scope, sorry.
5004 DeclContext *SavedContext = CurContext;
5005 CurContext = Context.getTranslationUnitDecl();
5006 PushOnScopeChains(NewD, S);
5007 CurContext = SavedContext;
5008 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005009 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005010 }
5011}
5012
Rafael Espindola65611bf2013-03-02 21:41:48 +00005013void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5014 // It's valid to "forward-declare" #pragma weak, in which case we
5015 // have to do this.
5016 LoadExternalWeakUndeclaredIdentifiers();
5017 if (!WeakUndeclaredIdentifiers.empty()) {
5018 NamedDecl *ND = NULL;
5019 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5020 if (VD->isExternC())
5021 ND = VD;
5022 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5023 if (FD->isExternC())
5024 ND = FD;
5025 if (ND) {
5026 if (IdentifierInfo *Id = ND->getIdentifier()) {
5027 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5028 = WeakUndeclaredIdentifiers.find(Id);
5029 if (I != WeakUndeclaredIdentifiers.end()) {
5030 WeakInfo W = I->second;
5031 DeclApplyPragmaWeak(S, ND, W);
5032 WeakUndeclaredIdentifiers[Id] = W;
5033 }
5034 }
5035 }
5036 }
5037}
5038
Chris Lattner0744e5f2008-06-29 00:23:49 +00005039/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5040/// it, apply them to D. This is a bit tricky because PD can have attributes
5041/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005042void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005043 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005044 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005045 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005046
Chris Lattner0744e5f2008-06-29 00:23:49 +00005047 // Walk the declarator structure, applying decl attributes that were in a type
5048 // position to the decl itself. This handles cases like:
5049 // int *__attr__(x)** D;
5050 // when X is a decl attribute.
5051 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5052 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005053 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005054
Chris Lattner0744e5f2008-06-29 00:23:49 +00005055 // Finally, apply any attributes on the decl itself.
5056 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005057 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005058}
John McCall54abf7d2009-11-04 02:18:39 +00005059
John McCallf85e1932011-06-15 23:02:42 +00005060/// Is the given declaration allowed to use a forbidden type?
5061static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5062 // Private ivars are always okay. Unfortunately, people don't
5063 // always properly make their ivars private, even in system headers.
5064 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005065 // Function declarations in sys headers will be marked unavailable.
5066 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5067 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005068 return false;
5069
5070 // Require it to be declared in a system header.
5071 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5072}
5073
5074/// Handle a delayed forbidden-type diagnostic.
5075static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5076 Decl *decl) {
5077 if (decl && isForbiddenTypeAllowed(S, decl)) {
5078 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5079 "this system declaration uses an unsupported type"));
5080 return;
5081 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005082 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005083 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005084 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005085 // kind of forbidden type messages on unavailable functions.
5086 if (FD->hasAttr<UnavailableAttr>() &&
5087 diag.getForbiddenTypeDiagnostic() ==
5088 diag::err_arc_array_param_no_ownership) {
5089 diag.Triggered = true;
5090 return;
5091 }
5092 }
John McCallf85e1932011-06-15 23:02:42 +00005093
5094 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5095 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5096 diag.Triggered = true;
5097}
5098
John McCall92576642012-05-07 06:16:41 +00005099void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5100 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005101 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005102 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005103
John McCall92576642012-05-07 06:16:41 +00005104 // When delaying diagnostics to run in the context of a parsed
5105 // declaration, we only want to actually emit anything if parsing
5106 // succeeds.
5107 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005108
John McCall92576642012-05-07 06:16:41 +00005109 // We emit all the active diagnostics in this pool or any of its
5110 // parents. In general, we'll get one pool for the decl spec
5111 // and a child pool for each declarator; in a decl group like:
5112 // deprecated_typedef foo, *bar, baz();
5113 // only the declarator pops will be passed decls. This is correct;
5114 // we really do need to consider delayed diagnostics from the decl spec
5115 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005116 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005117 do {
John McCall13489672012-05-07 06:16:58 +00005118 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005119 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5120 // This const_cast is a bit lame. Really, Triggered should be mutable.
5121 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005122 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005123 continue;
5124
John McCalleee1d542011-02-14 07:13:47 +00005125 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005126 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005127 // Don't bother giving deprecation diagnostics if the decl is invalid.
5128 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005129 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005130 break;
5131
5132 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005133 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005134 break;
John McCallf85e1932011-06-15 23:02:42 +00005135
5136 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005137 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005138 break;
John McCall2f514482010-01-27 03:50:35 +00005139 }
5140 }
John McCall92576642012-05-07 06:16:41 +00005141 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005142}
5143
John McCall13489672012-05-07 06:16:58 +00005144/// Given a set of delayed diagnostics, re-emit them as if they had
5145/// been delayed in the current context instead of in the given pool.
5146/// Essentially, this just moves them to the current pool.
5147void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5148 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5149 assert(curPool && "re-emitting in undelayed context not supported");
5150 curPool->steal(pool);
5151}
5152
John McCall54abf7d2009-11-04 02:18:39 +00005153static bool isDeclDeprecated(Decl *D) {
5154 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005155 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005156 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005157 // A category implicitly has the availability of the interface.
5158 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5159 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005160 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5161 return false;
5162}
5163
Eli Friedmanc3b23082012-08-08 21:52:41 +00005164static void
5165DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5166 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005167 const ObjCInterfaceDecl *UnknownObjCClass,
5168 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005169 DeclarationName Name = D->getDeclName();
5170 if (!Message.empty()) {
5171 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5172 S.Diag(D->getLocation(),
5173 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5174 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005175 if (ObjCPropery)
5176 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5177 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005178 } else if (!UnknownObjCClass) {
5179 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5180 S.Diag(D->getLocation(),
5181 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5182 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005183 if (ObjCPropery)
5184 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5185 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005186 } else {
5187 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5188 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5189 }
5190}
5191
John McCall9c3087b2010-08-26 02:13:20 +00005192void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005193 Decl *Ctx) {
5194 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005195 return;
5196
John McCall2f514482010-01-27 03:50:35 +00005197 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005198 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5199 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005200 DD.getUnknownObjCClass(),
5201 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005202}
5203
Chris Lattner5f9e2722011-07-23 10:55:15 +00005204void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005205 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005206 const ObjCInterfaceDecl *UnknownObjCClass,
5207 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005208 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005209 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005210 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5211 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005212 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005213 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005214 return;
5215 }
5216
5217 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005218 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005219 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005220 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005221}