blob: 5eaf07324de511f21cc52daeea6453f252589f84 [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"
John McCall19510852010-08-20 18:27:03 +000026#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000027#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000028#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000029#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000030#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000031using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000032using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000033
John McCall883cc2c2011-03-02 12:29:23 +000034/// These constants match the enumerated choices of
35/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000036enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000037 ExpectedFunction,
38 ExpectedUnion,
39 ExpectedVariableOrFunction,
40 ExpectedFunctionOrMethod,
41 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000042 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000043 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000044 ExpectedFunctionMethodOrParameter,
45 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000046 ExpectedVariable,
47 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000048 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000049 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000050 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000051 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000052 ExpectedTLSVar,
53 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000054 ExpectedVariableFieldOrTag,
Aaron Ballman37a89532013-07-18 14:56:42 +000055 ExpectedTypeOrNamespace,
56 ExpectedObjectiveCInterface
John McCall883cc2c2011-03-02 12:29:23 +000057};
58
Chris Lattnere5c5ee12008-06-29 00:16:31 +000059//===----------------------------------------------------------------------===//
60// Helper functions
61//===----------------------------------------------------------------------===//
62
Chandler Carruth87c44602011-07-01 23:49:12 +000063static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000064 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000065 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000066 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000067 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000068 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000069 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000070 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000071 Ty = decl->getUnderlyingType();
72 else
73 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000074
Chris Lattner6b6b5372008-06-26 18:38:35 +000075 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000076 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000077 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000078 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000079
John McCall183700f2009-09-21 23:43:11 +000080 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000081}
82
Daniel Dunbar35682492008-09-26 04:12:28 +000083// FIXME: We should provide an abstraction around a method or function
84// to provide the following bits of information.
85
Nuno Lopesd20254f2009-12-20 23:11:08 +000086/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000087/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000088static bool isFunction(const Decl *D) {
89 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000090}
91
92/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000093/// type (function or function-typed variable) or an Objective-C
94/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000095static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000096 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000097}
98
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000099/// isFunctionOrMethodOrBlock - Return true if the given decl has function
100/// type (function or function-typed variable) or an Objective-C
101/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000102static bool isFunctionOrMethodOrBlock(const Decl *D) {
103 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000104 return true;
105 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000106 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000107 QualType Ty = V->getType();
108 return Ty->isBlockPointerType();
109 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000110 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000111}
112
John McCall711c52b2011-01-05 12:14:39 +0000113/// Return true if the given decl has a declarator that should have
114/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000115static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000116 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000117 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
118 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000119}
120
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000121/// hasFunctionProto - Return true if the given decl has a argument
122/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000123/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000124static bool hasFunctionProto(const Decl *D) {
125 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000126 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000127 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000128 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000129 return true;
130 }
131}
132
133/// getFunctionOrMethodNumArgs - Return number of function or method
134/// arguments. It is an error to call this on a K&R function (use
135/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000136static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
137 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000138 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000139 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000140 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000141 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000142}
143
Chandler Carruth87c44602011-07-01 23:49:12 +0000144static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
145 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000146 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000147 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000148 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000149
Chandler Carruth87c44602011-07-01 23:49:12 +0000150 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000151}
152
Chandler Carruth87c44602011-07-01 23:49:12 +0000153static QualType getFunctionOrMethodResultType(const Decl *D) {
154 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000155 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000156 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000157}
158
Chandler Carruth87c44602011-07-01 23:49:12 +0000159static bool isFunctionOrMethodVariadic(const Decl *D) {
160 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000161 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000162 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000163 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000164 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000165 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000166 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000167 }
168}
169
Chandler Carruth87c44602011-07-01 23:49:12 +0000170static bool isInstanceMethod(const Decl *D) {
171 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000172 return MethodDecl->isInstance();
173 return false;
174}
175
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000177 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000178 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000179 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000180
John McCall506b57e2010-05-17 21:00:27 +0000181 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
182 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000183 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000184
John McCall506b57e2010-05-17 21:00:27 +0000185 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000186
Chris Lattner6b6b5372008-06-26 18:38:35 +0000187 // FIXME: Should we walk the chain of classes?
188 return ClsName == &Ctx.Idents.get("NSString") ||
189 ClsName == &Ctx.Idents.get("NSMutableString");
190}
191
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000193 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000194 if (!PT)
195 return false;
196
Ted Kremenek6217b802009-07-29 21:53:49 +0000197 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000198 if (!RT)
199 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000200
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000201 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000202 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000203 return false;
204
205 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
206}
207
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000208/// \brief Check if the attribute has exactly as many args as Num. May
209/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000210static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
211 unsigned int Num) {
212 if (Attr.getNumArgs() != Num) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +0000213 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
214 << Attr.getName() << Num;
Chandler Carruth1731e202011-07-11 23:30:35 +0000215 return false;
216 }
217
218 return true;
219}
220
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000221
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000222/// \brief Check if the attribute has at least as many args as Num. May
223/// output an error.
224static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
225 unsigned int Num) {
226 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000227 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
228 return false;
229 }
230
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000231 return true;
232}
233
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000234/// \brief Check if IdxExpr is a valid argument index for a function or
235/// instance method D. May output an error.
236///
237/// \returns true if IdxExpr is a valid index.
238static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
239 StringRef AttrName,
240 SourceLocation AttrLoc,
241 unsigned AttrArgNum,
242 const Expr *IdxExpr,
243 uint64_t &Idx)
244{
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000245 assert(isFunctionOrMethod(D));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000246
247 // In C++ the implicit 'this' function parameter also counts.
248 // Parameters are counted from one.
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000249 bool HP = hasFunctionProto(D);
250 bool HasImplicitThisParam = isInstanceMethod(D);
251 bool IV = HP && isFunctionOrMethodVariadic(D);
252 unsigned NumArgs = (HP ? getFunctionOrMethodNumArgs(D) : 0) +
253 HasImplicitThisParam;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000254
255 llvm::APSInt IdxInt;
256 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
257 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000258 std::string Name = std::string("'") + AttrName.str() + std::string("'");
259 S.Diag(AttrLoc, diag::err_attribute_argument_n_type) << Name.c_str()
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000260 << AttrArgNum << AANT_ArgumentIntegerConstant << IdxExpr->getSourceRange();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000261 return false;
262 }
263
264 Idx = IdxInt.getLimitedValue();
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000265 if (Idx < 1 || (!IV && Idx > NumArgs)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000266 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
267 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
268 return false;
269 }
270 Idx--; // Convert to zero-based.
271 if (HasImplicitThisParam) {
272 if (Idx == 0) {
273 S.Diag(AttrLoc,
274 diag::err_attribute_invalid_implicit_this_argument)
275 << AttrName << IdxExpr->getSourceRange();
276 return false;
277 }
278 --Idx;
279 }
280
281 return true;
282}
283
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000284///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000285/// \brief Check if passed in Decl is a field or potentially shared global var
286/// \return true if the Decl is a field or potentially shared global variable
287///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000288static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000289 if (isa<FieldDecl>(D))
290 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000291 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Richard Smith38afbc72013-04-13 02:43:54 +0000292 return vd->hasGlobalStorage() && !vd->getTLSKind();
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000293
294 return false;
295}
296
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000297/// \brief Check if the passed-in expression is of type int or bool.
298static bool isIntOrBool(Expr *Exp) {
299 QualType QT = Exp->getType();
300 return QT->isBooleanType() || QT->isIntegerType();
301}
302
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000303
304// Check to see if the type is a smart pointer of some kind. We assume
305// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000306static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
307 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
308 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000309 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000310 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000311
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000312 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
313 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000314 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000315 return false;
316
317 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000318}
319
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000320/// \brief Check if passed in Decl is a pointer type.
321/// Note that this function may produce an error message.
322/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000323static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
324 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000325 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000326 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000327 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000328 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000329
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000330 if (const RecordType *RT = QT->getAs<RecordType>()) {
331 // If it's an incomplete type, it could be a smart pointer; skip it.
332 // (We don't want to force template instantiation if we can avoid it,
333 // since that would alter the order in which templates are instantiated.)
334 if (RT->isIncompleteType())
335 return true;
336
337 if (threadSafetyCheckIsSmartPointer(S, RT))
338 return true;
339 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000340
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000341 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000342 << Attr.getName()->getName() << QT;
343 } else {
344 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
345 << Attr.getName();
346 }
347 return false;
348}
349
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000350/// \brief Checks that the passed in QualType either is of RecordType or points
351/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000352static const RecordType *getRecordType(QualType QT) {
353 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000354 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000355
356 // Now check if we point to record type.
357 if (const PointerType *PT = QT->getAs<PointerType>())
358 return PT->getPointeeType()->getAs<RecordType>();
359
360 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000361}
362
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000363
Jordy Rosefad5de92012-05-08 03:27:22 +0000364static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
365 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000366 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
367 if (RT->getDecl()->getAttr<LockableAttr>())
368 return true;
369 return false;
370}
371
372
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000373/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000374/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000375static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
376 QualType Ty) {
377 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000378
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000379 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000380 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000381 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000382 << Attr.getName() << Ty.getAsString();
383 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000384 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000385
Michael Hanf1aae3b2012-08-03 17:40:43 +0000386 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000387 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000388 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000389
390 // Allow smart pointers to be used as lockable objects.
391 // FIXME -- Check the type that the smart pointer points to.
392 if (threadSafetyCheckIsSmartPointer(S, RT))
393 return;
394
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000395 // Check if the type is lockable.
396 RecordDecl *RD = RT->getDecl();
397 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000398 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000399
400 // Else check if any base classes are lockable.
401 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
402 CXXBasePaths BPaths(false, false);
403 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
404 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000405 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000406
407 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
408 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000409}
410
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000411/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000412/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000413/// \param Sidx The attribute argument index to start checking with.
414/// \param ParamIdxOk Whether an argument can be indexing into a function
415/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000416static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000417 const AttributeList &Attr,
418 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000419 int Sidx = 0,
420 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000421 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Aaron Ballman624421f2013-08-31 01:11:41 +0000422 Expr *ArgExp = Attr.getArgAsExpr(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000423
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000424 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000425 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000426 Args.push_back(ArgExp);
427 continue;
428 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000429
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000430 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000431 if (StrLit->getLength() == 0 ||
432 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000433 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000434 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000435 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000436 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000437 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000438
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000439 // We allow constant strings to be used as a placeholder for expressions
440 // that are not valid C++ syntax, but warn that they are ignored.
441 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
442 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000443 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000444 continue;
445 }
446
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000447 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000448
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000449 // A pointer to member expression of the form &MyClass::mu is treated
450 // specially -- we need to look at the type of the member.
451 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
452 if (UOp->getOpcode() == UO_AddrOf)
453 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
454 if (DRE->getDecl()->isCXXInstanceMember())
455 ArgTy = DRE->getDecl()->getType();
456
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000457 // First see if we can just cast to record type, or point to record type.
458 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000459
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000460 // Now check if we index into a record type function param.
461 if(!RT && ParamIdxOk) {
462 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000463 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
464 if(FD && IL) {
465 unsigned int NumParams = FD->getNumParams();
466 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000467 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
468 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
469 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000470 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
471 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000472 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000473 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000474 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 }
476 }
477
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000478 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000479
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000480 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000481 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000482}
483
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000484//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000485// Attribute Implementations
486//===----------------------------------------------------------------------===//
487
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000488// FIXME: All this manual attribute parsing code is gross. At the
489// least add some helper functions to check most argument patterns (#
490// and types of args).
491
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000492enum ThreadAttributeDeclKind {
493 ThreadExpectedFieldOrGlobalVar,
494 ThreadExpectedFunctionOrMethod,
495 ThreadExpectedClassOrStruct
496};
497
Michael Hanf1aae3b2012-08-03 17:40:43 +0000498static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000499 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000500 // D must be either a member field or global (potentially shared) variable.
501 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000502 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
503 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000504 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000505 }
506
Michael Handc691572012-07-23 18:48:41 +0000507 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000508}
509
Michael Handc691572012-07-23 18:48:41 +0000510static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
511 if (!checkGuardedVarAttrCommon(S, D, Attr))
512 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000513
Michael Han51d8c522013-01-24 16:46:58 +0000514 D->addAttr(::new (S.Context)
515 GuardedVarAttr(Attr.getRange(), S.Context,
516 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000517}
518
Michael Hanf1aae3b2012-08-03 17:40:43 +0000519static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000520 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000521 if (!checkGuardedVarAttrCommon(S, D, Attr))
522 return;
523
524 if (!threadSafetyCheckIsPointer(S, D, Attr))
525 return;
526
Michael Han51d8c522013-01-24 16:46:58 +0000527 D->addAttr(::new (S.Context)
528 PtGuardedVarAttr(Attr.getRange(), S.Context,
529 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000530}
531
Michael Hanf1aae3b2012-08-03 17:40:43 +0000532static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
533 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000534 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000535 // D must be either a member field or global (potentially shared) variable.
536 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000537 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
538 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000539 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000540 }
541
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000542 SmallVector<Expr*, 1> Args;
543 // check that all arguments are lockable objects
544 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
545 unsigned Size = Args.size();
546 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000547 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000548
Michael Handc691572012-07-23 18:48:41 +0000549 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000550
Michael Handc691572012-07-23 18:48:41 +0000551 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000552}
553
Michael Handc691572012-07-23 18:48:41 +0000554static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
555 Expr *Arg = 0;
556 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
557 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000558
Michael Handc691572012-07-23 18:48:41 +0000559 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
560}
561
Michael Hanf1aae3b2012-08-03 17:40:43 +0000562static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000563 const AttributeList &Attr) {
564 Expr *Arg = 0;
565 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
566 return;
567
568 if (!threadSafetyCheckIsPointer(S, D, Attr))
569 return;
570
571 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
572 S.Context, Arg));
573}
574
Michael Hanf1aae3b2012-08-03 17:40:43 +0000575static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000576 const AttributeList &Attr) {
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000577 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000578 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000579 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
580 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000581 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000582 }
583
Michael Handc691572012-07-23 18:48:41 +0000584 return true;
585}
586
587static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
588 if (!checkLockableAttrCommon(S, D, Attr))
589 return;
590
591 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
592}
593
Michael Hanf1aae3b2012-08-03 17:40:43 +0000594static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000595 const AttributeList &Attr) {
596 if (!checkLockableAttrCommon(S, D, Attr))
597 return;
598
Michael Han51d8c522013-01-24 16:46:58 +0000599 D->addAttr(::new (S.Context)
600 ScopedLockableAttr(Attr.getRange(), S.Context,
601 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000602}
603
Kostya Serebryany85aee962013-02-26 06:58:27 +0000604static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
605 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000606 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000607 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
608 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000609 return;
610 }
611
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000612 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000613 S.Context));
614}
615
Kostya Serebryany85aee962013-02-26 06:58:27 +0000616static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000617 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000618 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000620 << Attr.getName() << ExpectedFunctionOrMethod;
621 return;
622 }
623
Michael Han51d8c522013-01-24 16:46:58 +0000624 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000625 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
626 Attr.getAttributeSpellingListIndex()));
627}
628
629static void handleNoSanitizeMemory(Sema &S, Decl *D,
630 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000631 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
632 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
633 << Attr.getName() << ExpectedFunctionOrMethod;
634 return;
635 }
636
637 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
638 S.Context));
639}
640
641static void handleNoSanitizeThread(Sema &S, Decl *D,
642 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000643 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
644 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
645 << Attr.getName() << ExpectedFunctionOrMethod;
646 return;
647 }
648
649 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
650 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000651}
652
Michael Hanf1aae3b2012-08-03 17:40:43 +0000653static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
654 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000655 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000656 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000657 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000658
659 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000660 ValueDecl *VD = dyn_cast<ValueDecl>(D);
661 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000662 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
663 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000664 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 }
666
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000667 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000668 QualType QT = VD->getType();
669 if (!QT->isDependentType()) {
670 const RecordType *RT = getRecordType(QT);
671 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000672 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000673 << Attr.getName();
674 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000675 }
676 }
677
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000678 // Check that all arguments are lockable objects.
679 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000680 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000681 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000682
Michael Handc691572012-07-23 18:48:41 +0000683 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000684}
685
Michael Hanf1aae3b2012-08-03 17:40:43 +0000686static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000687 const AttributeList &Attr) {
688 SmallVector<Expr*, 1> Args;
689 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
690 return;
691
692 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000693 D->addAttr(::new (S.Context)
694 AcquiredAfterAttr(Attr.getRange(), S.Context,
695 StartArg, Args.size(),
696 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000697}
698
Michael Hanf1aae3b2012-08-03 17:40:43 +0000699static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000700 const AttributeList &Attr) {
701 SmallVector<Expr*, 1> Args;
702 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
703 return;
704
705 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000706 D->addAttr(::new (S.Context)
707 AcquiredBeforeAttr(Attr.getRange(), S.Context,
708 StartArg, Args.size(),
709 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000710}
711
Michael Hanf1aae3b2012-08-03 17:40:43 +0000712static bool checkLockFunAttrCommon(Sema &S, Decl *D,
713 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000714 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000715 // zero or more arguments ok
716
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000717 // check that the attribute is applied to a function
718 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000719 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
720 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000721 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000722 }
723
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000724 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000725 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000726
Michael Handc691572012-07-23 18:48:41 +0000727 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000728}
729
Michael Hanf1aae3b2012-08-03 17:40:43 +0000730static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000731 const AttributeList &Attr) {
732 SmallVector<Expr*, 1> Args;
733 if (!checkLockFunAttrCommon(S, D, Attr, Args))
734 return;
735
736 unsigned Size = Args.size();
737 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000738 D->addAttr(::new (S.Context)
739 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
740 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000741}
742
Michael Hanf1aae3b2012-08-03 17:40:43 +0000743static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000744 const AttributeList &Attr) {
745 SmallVector<Expr*, 1> Args;
746 if (!checkLockFunAttrCommon(S, D, Attr, Args))
747 return;
748
749 unsigned Size = Args.size();
750 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000751 D->addAttr(::new (S.Context)
752 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
753 StartArg, Size,
754 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000755}
756
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000757static void handleAssertSharedLockAttr(Sema &S, Decl *D,
758 const AttributeList &Attr) {
759 SmallVector<Expr*, 1> Args;
760 if (!checkLockFunAttrCommon(S, D, Attr, Args))
761 return;
762
763 unsigned Size = Args.size();
764 Expr **StartArg = Size == 0 ? 0 : &Args[0];
765 D->addAttr(::new (S.Context)
766 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
767 Attr.getAttributeSpellingListIndex()));
768}
769
770static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
771 const AttributeList &Attr) {
772 SmallVector<Expr*, 1> Args;
773 if (!checkLockFunAttrCommon(S, D, Attr, Args))
774 return;
775
776 unsigned Size = Args.size();
777 Expr **StartArg = Size == 0 ? 0 : &Args[0];
778 D->addAttr(::new (S.Context)
779 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
780 StartArg, Size,
781 Attr.getAttributeSpellingListIndex()));
782}
783
784
Michael Hanf1aae3b2012-08-03 17:40:43 +0000785static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
786 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000787 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000788 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000789 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000790
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000791 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000792 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
793 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000794 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000795 }
796
Aaron Ballman624421f2013-08-31 01:11:41 +0000797 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000798 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000799 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000800 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000801 }
802
803 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000804 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000805
Michael Handc691572012-07-23 18:48:41 +0000806 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000807}
808
Michael Hanf1aae3b2012-08-03 17:40:43 +0000809static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000810 const AttributeList &Attr) {
811 SmallVector<Expr*, 2> Args;
812 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
813 return;
814
Michael Han51d8c522013-01-24 16:46:58 +0000815 D->addAttr(::new (S.Context)
816 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000817 Attr.getArgAsExpr(0),
818 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000819 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000820}
821
Michael Hanf1aae3b2012-08-03 17:40:43 +0000822static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000823 const AttributeList &Attr) {
824 SmallVector<Expr*, 2> Args;
825 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
826 return;
827
Michael Han51d8c522013-01-24 16:46:58 +0000828 D->addAttr(::new (S.Context)
829 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000830 Attr.getArgAsExpr(0),
831 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000832 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000833}
834
Michael Hanf1aae3b2012-08-03 17:40:43 +0000835static bool checkLocksRequiredCommon(Sema &S, Decl *D,
836 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000837 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000838 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000839 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000840
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000841 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000842 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
843 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000844 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000845 }
846
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000847 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000848 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000849 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000850 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000851
Michael Handc691572012-07-23 18:48:41 +0000852 return true;
853}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000854
Michael Hanf1aae3b2012-08-03 17:40:43 +0000855static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000856 const AttributeList &Attr) {
857 SmallVector<Expr*, 1> Args;
858 if (!checkLocksRequiredCommon(S, D, Attr, Args))
859 return;
860
861 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000862 D->addAttr(::new (S.Context)
863 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
864 StartArg, Args.size(),
865 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000866}
867
Michael Hanf1aae3b2012-08-03 17:40:43 +0000868static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000869 const AttributeList &Attr) {
870 SmallVector<Expr*, 1> Args;
871 if (!checkLocksRequiredCommon(S, D, Attr, Args))
872 return;
873
874 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000875 D->addAttr(::new (S.Context)
876 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
877 StartArg, Args.size(),
878 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000879}
880
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000881static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000882 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000883 // zero or more arguments ok
884
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000885 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000886 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
887 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000888 return;
889 }
890
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000891 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000892 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000893 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000894 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000895 Expr **StartArg = Size == 0 ? 0 : &Args[0];
896
Michael Han51d8c522013-01-24 16:46:58 +0000897 D->addAttr(::new (S.Context)
898 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
899 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000900}
901
902static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000903 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000904 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000905 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
906 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000907 return;
908 }
909
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000910 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000911 SmallVector<Expr*, 1> Args;
912 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
913 unsigned Size = Args.size();
914 if (Size == 0)
915 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000916
Michael Han51d8c522013-01-24 16:46:58 +0000917 D->addAttr(::new (S.Context)
918 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
919 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000920}
921
922static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000923 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000924 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000925 return;
926
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000927 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000928 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
929 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000930 return;
931 }
932
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000933 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000934 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000935 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000936 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000937 if (Size == 0)
938 return;
939 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000940
Michael Han51d8c522013-01-24 16:46:58 +0000941 D->addAttr(::new (S.Context)
942 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
943 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000944}
945
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000946static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikiea33ab602013-09-06 01:28:43 +0000947 ConsumableAttr::ConsumedState DefaultState;
948
949 if (Attr.isArgIdent(0)) {
950 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
951
952 if (Param == "unknown")
953 DefaultState = ConsumableAttr::Unknown;
954 else if (Param == "consumed")
955 DefaultState = ConsumableAttr::Consumed;
956 else if (Param == "unconsumed")
957 DefaultState = ConsumableAttr::Unconsumed;
958 else {
959 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
960 return;
961 }
962
963 } else {
964 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
965 << Attr.getName() << AANT_ArgumentIdentifier;
966 return;
967 }
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000968
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000969 if (!isa<CXXRecordDecl>(D)) {
970 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
971 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000972 return;
973 }
974
975 D->addAttr(::new (S.Context)
David Blaikiea33ab602013-09-06 01:28:43 +0000976 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000977 Attr.getAttributeSpellingListIndex()));
978}
979
980static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
981 const AttributeList &Attr) {
982 ASTContext &CurrContext = S.getASTContext();
983 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
984
985 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
986 if (!RD->hasAttr<ConsumableAttr>()) {
987 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
988 RD->getNameAsString();
989
990 return false;
991 }
992 }
993
994 return true;
995}
996
997static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000998 if (!isa<CXXMethodDecl>(D)) {
999 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1000 Attr.getName() << ExpectedMethod;
1001 return;
1002 }
1003
1004 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1005 return;
1006
1007 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001008 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001009 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001010}
1011
1012static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1013 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001014 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001015 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1016 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001017 return;
1018 }
1019
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001020 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1021 return;
1022
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001023 D->addAttr(::new (S.Context)
1024 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001025 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001026}
1027
1028static void handleTestsConsumedAttr(Sema &S, Decl *D,
1029 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001030 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001031 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1032 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001033 return;
1034 }
1035
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001036 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1037 return;
1038
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001039 D->addAttr(::new (S.Context)
1040 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001041 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001042}
1043
1044static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1045 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001046 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001047 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1048 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001049 return;
1050 }
1051
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001052 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1053 return;
1054
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001055 D->addAttr(::new (S.Context)
1056 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001057 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001058}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001059
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001060static void handleReturnTypestateAttr(Sema &S, Decl *D,
1061 const AttributeList &Attr) {
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001062 ReturnTypestateAttr::ConsumedState ReturnState;
1063
1064 if (Attr.isArgIdent(0)) {
1065 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
1066
1067 if (Param == "unknown") {
1068 ReturnState = ReturnTypestateAttr::Unknown;
1069 } else if (Param == "consumed") {
1070 ReturnState = ReturnTypestateAttr::Consumed;
1071 } else if (Param == "unconsumed") {
1072 ReturnState = ReturnTypestateAttr::Unconsumed;
1073 } else {
1074 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
1075 return;
1076 }
1077
1078 } else {
1079 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1080 Attr.getName() << AANT_ArgumentIdentifier;
1081 return;
1082 }
1083
1084 if (!isa<FunctionDecl>(D)) {
1085 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1086 Attr.getName() << ExpectedFunction;
1087 return;
1088 }
1089
1090 // FIXME: This check is currently being done in the analysis. It can be
1091 // enabled here only after the parser propagates attributes at
1092 // template specialization definition, not declaration.
1093 //QualType ReturnType;
1094 //
1095 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1096 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1097 //
1098 //} else {
1099 //
1100 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1101 //}
1102 //
1103 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1104 //
1105 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1106 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1107 // ReturnType.getAsString();
1108 // return;
1109 //}
1110
1111 D->addAttr(::new (S.Context)
1112 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1113 Attr.getAttributeSpellingListIndex()));
1114}
1115
Chandler Carruth1b03c872011-07-02 00:01:44 +00001116static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1117 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001118 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1119 if (TD == 0) {
1120 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1121 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001122 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001123 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001124 }
Mike Stumpbf916502009-07-24 19:02:52 +00001125
Richard Smitha4fa9002013-01-13 02:11:23 +00001126 // Remember this typedef decl, we will need it later for diagnostics.
1127 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001128}
1129
Chandler Carruth1b03c872011-07-02 00:01:44 +00001130static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001131 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001132 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001133 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001134 // If the alignment is less than or equal to 8 bits, the packed attribute
1135 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001136 if (!FD->getType()->isDependentType() &&
1137 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001138 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001139 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001140 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001141 else
Michael Han51d8c522013-01-24 16:46:58 +00001142 FD->addAttr(::new (S.Context)
1143 PackedAttr(Attr.getRange(), S.Context,
1144 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001145 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001146 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001147}
1148
Chandler Carruth1b03c872011-07-02 00:01:44 +00001149static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001150 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001151 RD->addAttr(::new (S.Context)
1152 MsStructAttr(Attr.getRange(), S.Context,
1153 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001154 else
1155 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1156}
1157
Chandler Carruth1b03c872011-07-02 00:01:44 +00001158static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001159 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001160 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001161 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001162 D->addAttr(::new (S.Context)
1163 IBActionAttr(Attr.getRange(), S.Context,
1164 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001165 return;
1166 }
1167
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001168 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001169}
1170
Ted Kremenek2f041d02011-09-29 07:02:25 +00001171static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1172 // The IBOutlet/IBOutletCollection attributes only apply to instance
1173 // variables or properties of Objective-C classes. The outlet must also
1174 // have an object reference type.
1175 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1176 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001177 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001178 << Attr.getName() << VD->getType() << 0;
1179 return false;
1180 }
1181 }
1182 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1183 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001184 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001185 << Attr.getName() << PD->getType() << 1;
1186 return false;
1187 }
1188 }
1189 else {
1190 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1191 return false;
1192 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001193
Ted Kremenek2f041d02011-09-29 07:02:25 +00001194 return true;
1195}
1196
Chandler Carruth1b03c872011-07-02 00:01:44 +00001197static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek2f041d02011-09-29 07:02:25 +00001198 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001199 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001200
Michael Han51d8c522013-01-24 16:46:58 +00001201 D->addAttr(::new (S.Context)
1202 IBOutletAttr(Attr.getRange(), S.Context,
1203 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001204}
1205
Chandler Carruth1b03c872011-07-02 00:01:44 +00001206static void handleIBOutletCollection(Sema &S, Decl *D,
1207 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001208
1209 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001210 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001211 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1212 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001213 return;
1214 }
1215
Ted Kremenek2f041d02011-09-29 07:02:25 +00001216 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001217 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001218
Aaron Ballman624421f2013-08-31 01:11:41 +00001219 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1220 IdentifierInfo *II;
1221 SourceLocation ILS;
1222 if (IL) {
1223 II = IL->Ident;
1224 ILS = IL->Loc;
1225 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001226 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001227 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001228
John McCallb3d87482010-08-24 05:47:05 +00001229 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001230 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001231 if (!TypeRep) {
1232 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1233 return;
1234 }
John McCallb3d87482010-08-24 05:47:05 +00001235 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001236 // Diagnose use of non-object type in iboutletcollection attribute.
1237 // FIXME. Gnu attribute extension ignores use of builtin types in
1238 // attributes. So, __attribute__((iboutletcollection(char))) will be
1239 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001240 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001241 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1242 return;
1243 }
Michael Han51d8c522013-01-24 16:46:58 +00001244 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001245 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001246 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001247}
1248
Chandler Carruthd309c812011-07-01 23:49:16 +00001249static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001250 if (const RecordType *UT = T->getAsUnionType())
1251 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1252 RecordDecl *UD = UT->getDecl();
1253 for (RecordDecl::field_iterator it = UD->field_begin(),
1254 itend = UD->field_end(); it != itend; ++it) {
1255 QualType QT = it->getType();
1256 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1257 T = QT;
1258 return;
1259 }
1260 }
1261 }
1262}
1263
Nuno Lopes587de5b2012-05-24 00:22:00 +00001264static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001265 if (!isFunctionOrMethod(D)) {
1266 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001267 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001268 return;
1269 }
1270
Nuno Lopes587de5b2012-05-24 00:22:00 +00001271 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1272 return;
1273
Nuno Lopes587de5b2012-05-24 00:22:00 +00001274 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001275 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001276 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001277 uint64_t Idx;
1278 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1279 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001280 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001281
1282 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001283 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001284 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001285 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1286 << Attr.getName() << AANT_ArgumentIntegerConstant
1287 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001288 return;
1289 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001290 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001291 }
1292
1293 // check if the function returns a pointer
1294 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1295 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001296 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001297 }
1298
Michael Han51d8c522013-01-24 16:46:58 +00001299 D->addAttr(::new (S.Context)
1300 AllocSizeAttr(Attr.getRange(), S.Context,
1301 SizeArgs.data(), SizeArgs.size(),
1302 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001303}
1304
Chandler Carruth1b03c872011-07-02 00:01:44 +00001305static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001306 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1307 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001308 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001309 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001310 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001311 return;
1312 }
Mike Stumpbf916502009-07-24 19:02:52 +00001313
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001314 SmallVector<unsigned, 8> NonNullArgs;
1315 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001316 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001317 uint64_t Idx;
1318 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1319 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001320 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001321
1322 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001323 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001324 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001325
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001326 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001327 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001328 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001329 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001330 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001331 }
Mike Stumpbf916502009-07-24 19:02:52 +00001332
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001333 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001334 }
Mike Stumpbf916502009-07-24 19:02:52 +00001335
1336 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1337 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001338 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001339 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1340 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001341 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001342 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001343 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001344 }
Mike Stumpbf916502009-07-24 19:02:52 +00001345
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001346 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001347 if (NonNullArgs.empty()) {
1348 // Warn the trivial case only if attribute is not coming from a
1349 // macro instantiation.
1350 if (Attr.getLoc().isFileID())
1351 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001352 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001353 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001354 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001355
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001356 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001357 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001358 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001359 D->addAttr(::new (S.Context)
1360 NonNullAttr(Attr.getRange(), S.Context, start, size,
1361 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001362}
1363
Chandler Carruth1b03c872011-07-02 00:01:44 +00001364static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001365 // This attribute must be applied to a function declaration.
1366 // The first argument to the attribute must be a string,
1367 // the name of the resource, for example "malloc".
1368 // The following arguments must be argument indexes, the arguments must be
1369 // of integer type for Returns, otherwise of pointer type.
1370 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001371 // after being held. free() should be __attribute((ownership_takes)), whereas
1372 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001373
Aaron Ballman624421f2013-08-31 01:11:41 +00001374 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001375 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001376 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001377 return;
1378 }
1379 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001380 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001381 switch (AL.getKind()) {
1382 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001383 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001384 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001385 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1386 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001387 return;
1388 }
Jordy Rose2a479922010-08-12 08:54:03 +00001389 break;
1390 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001391 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001392 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001393 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1394 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001395 return;
1396 }
Jordy Rose2a479922010-08-12 08:54:03 +00001397 break;
1398 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001399 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001400 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001401 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001402 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403 return;
1404 }
Jordy Rose2a479922010-08-12 08:54:03 +00001405 break;
1406 default:
1407 // This should never happen given how we are called.
1408 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001409 }
1410
Chandler Carruth87c44602011-07-01 23:49:12 +00001411 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001412 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1413 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001414 return;
1415 }
1416
Aaron Ballman624421f2013-08-31 01:11:41 +00001417 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001418
1419 // Normalize the argument, __foo__ becomes foo.
1420 if (Module.startswith("__") && Module.endswith("__"))
1421 Module = Module.substr(2, Module.size() - 4);
1422
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001423
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001424 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001425 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1426 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001427 uint64_t Idx;
1428 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001429 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001430 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001431
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001432 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001433 case OwnershipAttr::Takes:
1434 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001435 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001436 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001437 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1438 // FIXME: Should also highlight argument in decl.
1439 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001440 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001441 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001442 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001443 continue;
1444 }
1445 break;
1446 }
Sean Huntcf807c42010-08-18 23:23:40 +00001447 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001448 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001449 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001450 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001451 llvm::APSInt ArgNum(32);
1452 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1453 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1454 S.Diag(AL.getLoc(), diag::err_ownership_type)
1455 << "ownership_returns" << "integer"
1456 << IdxExpr->getSourceRange();
1457 return;
1458 }
1459 }
1460 break;
1461 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001462 } // switch
1463
1464 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001465 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001466 i = D->specific_attr_begin<OwnershipAttr>(),
1467 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001468 i != e; ++i) {
1469 if ((*i)->getOwnKind() != K) {
1470 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1471 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001472 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001473 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1474 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001475 }
1476 }
1477 }
1478 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001479 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001480 }
1481
1482 unsigned* start = OwnershipArgs.data();
1483 unsigned size = OwnershipArgs.size();
1484 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001485
1486 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001487 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1488 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001489 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001490 }
Sean Huntcf807c42010-08-18 23:23:40 +00001491
Michael Han51d8c522013-01-24 16:46:58 +00001492 D->addAttr(::new (S.Context)
1493 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1494 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001495}
1496
Chandler Carruth1b03c872011-07-02 00:01:44 +00001497static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001498 // Check the attribute arguments.
1499 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001500 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1501 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001502 return;
1503 }
1504
Chandler Carruth87c44602011-07-01 23:49:12 +00001505 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001506 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001507 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001508 return;
1509 }
1510
Chandler Carruth87c44602011-07-01 23:49:12 +00001511 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001512
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001513 // gcc rejects
1514 // class c {
1515 // static int a __attribute__((weakref ("v2")));
1516 // static int b() __attribute__((weakref ("f3")));
1517 // };
1518 // and ignores the attributes of
1519 // void f(void) {
1520 // static int a __attribute__((weakref ("v2")));
1521 // }
1522 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001523 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001524 if (!Ctx->isFileContext()) {
1525 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001526 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001527 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001528 }
1529
1530 // The GCC manual says
1531 //
1532 // At present, a declaration to which `weakref' is attached can only
1533 // be `static'.
1534 //
1535 // It also says
1536 //
1537 // Without a TARGET,
1538 // given as an argument to `weakref' or to `alias', `weakref' is
1539 // equivalent to `weak'.
1540 //
1541 // gcc 4.4.1 will accept
1542 // int a7 __attribute__((weakref));
1543 // as
1544 // int a7 __attribute__((weak));
1545 // This looks like a bug in gcc. We reject that for now. We should revisit
1546 // it if this behaviour is actually used.
1547
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001548 // GCC rejects
1549 // static ((alias ("y"), weakref)).
1550 // Should we? How to check that weakref is before or after alias?
1551
Aaron Ballmanbe116e22013-09-09 23:40:31 +00001552 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1553 // of transforming it into an AliasAttr. The WeakRefAttr never uses the
1554 // StringRef parameter it was given anyway.
Aaron Ballman624421f2013-08-31 01:11:41 +00001555 if (Attr.isArgExpr(0)) {
1556 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001557 Arg = Arg->IgnoreParenCasts();
1558 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1559
Douglas Gregor5cee1192011-07-27 05:40:30 +00001560 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001561 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001562 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001563 return;
1564 }
1565 // GCC will accept anything as the argument of weakref. Should we
1566 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001567 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001568 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001569 }
1570
Michael Han51d8c522013-01-24 16:46:58 +00001571 D->addAttr(::new (S.Context)
1572 WeakRefAttr(Attr.getRange(), S.Context,
1573 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001574}
1575
Chandler Carruth1b03c872011-07-02 00:01:44 +00001576static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001577 StringLiteral *Str = 0;
1578 if (Attr.isArgExpr(0))
1579 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00001580
Douglas Gregor5cee1192011-07-27 05:40:30 +00001581 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001582 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1583 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001584 return;
1585 }
Mike Stumpbf916502009-07-24 19:02:52 +00001586
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001587 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001588 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1589 return;
1590 }
1591
Chris Lattner6b6b5372008-06-26 18:38:35 +00001592 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001593
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001594 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001595 Str->getString(),
1596 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001597}
1598
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001599static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001600 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1601 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1602 << Attr.getName() << ExpectedFunctionOrMethod;
1603 return;
1604 }
1605
Michael Han51d8c522013-01-24 16:46:58 +00001606 D->addAttr(::new (S.Context)
1607 MinSizeAttr(Attr.getRange(), S.Context,
1608 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001609}
1610
Benjamin Krameree409a92012-05-12 21:10:52 +00001611static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001612 if (!isa<FunctionDecl>(D)) {
1613 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1614 << Attr.getName() << ExpectedFunction;
1615 return;
1616 }
1617
1618 if (D->hasAttr<HotAttr>()) {
1619 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1620 << Attr.getName() << "hot";
1621 return;
1622 }
1623
Michael Han51d8c522013-01-24 16:46:58 +00001624 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1625 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001626}
1627
1628static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001629 if (!isa<FunctionDecl>(D)) {
1630 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1631 << Attr.getName() << ExpectedFunction;
1632 return;
1633 }
1634
1635 if (D->hasAttr<ColdAttr>()) {
1636 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1637 << Attr.getName() << "cold";
1638 return;
1639 }
1640
Michael Han51d8c522013-01-24 16:46:58 +00001641 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1642 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001643}
1644
Chandler Carruth1b03c872011-07-02 00:01:44 +00001645static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001646 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001647 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001648 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001649 return;
1650 }
1651
Michael Han51d8c522013-01-24 16:46:58 +00001652 D->addAttr(::new (S.Context)
1653 NakedAttr(Attr.getRange(), S.Context,
1654 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001655}
1656
Chandler Carruth1b03c872011-07-02 00:01:44 +00001657static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1658 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001659 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001660 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001661 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001662 return;
1663 }
Mike Stumpbf916502009-07-24 19:02:52 +00001664
Michael Han51d8c522013-01-24 16:46:58 +00001665 D->addAttr(::new (S.Context)
1666 AlwaysInlineAttr(Attr.getRange(), S.Context,
1667 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001668}
1669
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001670static void handleTLSModelAttr(Sema &S, Decl *D,
1671 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001672 Expr *Arg = Attr.getArgAsExpr(0);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001673 Arg = Arg->IgnoreParenCasts();
1674 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1675
1676 // Check that it is a string.
1677 if (!Str) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001678 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1679 << Attr.getName() << AANT_ArgumentString;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001680 return;
1681 }
1682
Richard Smith38afbc72013-04-13 02:43:54 +00001683 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001684 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1685 << Attr.getName() << ExpectedTLSVar;
1686 return;
1687 }
1688
1689 // Check that the value.
1690 StringRef Model = Str->getString();
1691 if (Model != "global-dynamic" && Model != "local-dynamic"
1692 && Model != "initial-exec" && Model != "local-exec") {
1693 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1694 return;
1695 }
1696
Michael Han51d8c522013-01-24 16:46:58 +00001697 D->addAttr(::new (S.Context)
1698 TLSModelAttr(Attr.getRange(), S.Context, Model,
1699 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001700}
1701
Chandler Carruth1b03c872011-07-02 00:01:44 +00001702static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001703 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001704 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001705 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001706 D->addAttr(::new (S.Context)
1707 MallocAttr(Attr.getRange(), S.Context,
1708 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001709 return;
1710 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001711 }
1712
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001713 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001714}
1715
Chandler Carruth1b03c872011-07-02 00:01:44 +00001716static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00001717 D->addAttr(::new (S.Context)
1718 MayAliasAttr(Attr.getRange(), S.Context,
1719 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001720}
1721
Chandler Carruth1b03c872011-07-02 00:01:44 +00001722static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001723 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001724 D->addAttr(::new (S.Context)
1725 NoCommonAttr(Attr.getRange(), S.Context,
1726 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001727 else
1728 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001729 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001730}
1731
Chandler Carruth1b03c872011-07-02 00:01:44 +00001732static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001733 if (S.LangOpts.CPlusPlus) {
1734 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1735 return;
1736 }
1737
Chandler Carruth87c44602011-07-01 23:49:12 +00001738 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001739 D->addAttr(::new (S.Context)
1740 CommonAttr(Attr.getRange(), S.Context,
1741 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001742 else
1743 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001744 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001745}
1746
Chandler Carruth1b03c872011-07-02 00:01:44 +00001747static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001748 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001749
1750 if (S.CheckNoReturnAttr(attr)) return;
1751
Chandler Carruth87c44602011-07-01 23:49:12 +00001752 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001753 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001754 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001755 return;
1756 }
1757
Michael Han51d8c522013-01-24 16:46:58 +00001758 D->addAttr(::new (S.Context)
1759 NoReturnAttr(attr.getRange(), S.Context,
1760 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001761}
1762
1763bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001764 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001765 attr.setInvalid();
1766 return true;
1767 }
1768
1769 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001770}
1771
Chandler Carruth1b03c872011-07-02 00:01:44 +00001772static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1773 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001774
1775 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1776 // because 'analyzer_noreturn' does not impact the type.
Chandler Carruth87c44602011-07-01 23:49:12 +00001777 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1778 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001779 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1780 && !VD->getType()->isFunctionPointerType())) {
1781 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001782 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001783 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001784 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001785 return;
1786 }
1787 }
1788
Michael Han51d8c522013-01-24 16:46:58 +00001789 D->addAttr(::new (S.Context)
1790 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1791 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001792}
1793
Richard Smithcd8ab512013-01-17 01:30:42 +00001794static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1795 const AttributeList &Attr) {
1796 // C++11 [dcl.attr.noreturn]p1:
1797 // The attribute may be applied to the declarator-id in a function
1798 // declaration.
1799 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1800 if (!FD) {
1801 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1802 << Attr.getName() << ExpectedFunctionOrMethod;
1803 return;
1804 }
1805
Michael Han51d8c522013-01-24 16:46:58 +00001806 D->addAttr(::new (S.Context)
1807 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1808 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001809}
1810
John Thompson35cc9622010-08-09 21:53:52 +00001811// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001812static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001813/*
1814 Returning a Vector Class in Registers
1815
Eric Christopherf48f3672010-12-01 22:13:54 +00001816 According to the PPU ABI specifications, a class with a single member of
1817 vector type is returned in memory when used as the return value of a function.
1818 This results in inefficient code when implementing vector classes. To return
1819 the value in a single vector register, add the vecreturn attribute to the
1820 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001821
1822 Example:
1823
1824 struct Vector
1825 {
1826 __vector float xyzw;
1827 } __attribute__((vecreturn));
1828
1829 Vector Add(Vector lhs, Vector rhs)
1830 {
1831 Vector result;
1832 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1833 return result; // This will be returned in a register
1834 }
1835*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001836 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001837 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001838 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001839 return;
1840 }
1841
Chandler Carruth87c44602011-07-01 23:49:12 +00001842 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001843 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1844 return;
1845 }
1846
Chandler Carruth87c44602011-07-01 23:49:12 +00001847 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001848 int count = 0;
1849
1850 if (!isa<CXXRecordDecl>(record)) {
1851 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1852 return;
1853 }
1854
1855 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1856 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1857 return;
1858 }
1859
Eric Christopherf48f3672010-12-01 22:13:54 +00001860 for (RecordDecl::field_iterator iter = record->field_begin();
1861 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001862 if ((count == 1) || !iter->getType()->isVectorType()) {
1863 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1864 return;
1865 }
1866 count++;
1867 }
1868
Michael Han51d8c522013-01-24 16:46:58 +00001869 D->addAttr(::new (S.Context)
1870 VecReturnAttr(Attr.getRange(), S.Context,
1871 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001872}
1873
Richard Smith3a2b7a12013-01-28 22:42:45 +00001874static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1875 const AttributeList &Attr) {
1876 if (isa<ParmVarDecl>(D)) {
1877 // [[carries_dependency]] can only be applied to a parameter if it is a
1878 // parameter of a function declaration or lambda.
1879 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1880 S.Diag(Attr.getLoc(),
1881 diag::err_carries_dependency_param_not_function_decl);
1882 return;
1883 }
1884 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001885 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001886 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001887 return;
1888 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001889
1890 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1891 Attr.getRange(), S.Context,
1892 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001893}
1894
Chandler Carruth1b03c872011-07-02 00:01:44 +00001895static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001896 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001897 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001898 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001899 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001900 return;
1901 }
Mike Stumpbf916502009-07-24 19:02:52 +00001902
Michael Han51d8c522013-01-24 16:46:58 +00001903 D->addAttr(::new (S.Context)
1904 UnusedAttr(Attr.getRange(), S.Context,
1905 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001906}
1907
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001908static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1909 const AttributeList &Attr) {
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001910 if (!isa<FunctionDecl>(D)) {
1911 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1912 << Attr.getName() << ExpectedFunction;
1913 return;
1914 }
1915
Michael Han51d8c522013-01-24 16:46:58 +00001916 D->addAttr(::new (S.Context)
1917 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1918 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001919}
1920
Chandler Carruth1b03c872011-07-02 00:01:44 +00001921static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001922 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00001923 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001924 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1925 return;
1926 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001927 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001928 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001929 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001930 return;
1931 }
Mike Stumpbf916502009-07-24 19:02:52 +00001932
Michael Han51d8c522013-01-24 16:46:58 +00001933 D->addAttr(::new (S.Context)
1934 UsedAttr(Attr.getRange(), S.Context,
1935 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001936}
1937
Chandler Carruth1b03c872011-07-02 00:01:44 +00001938static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001939 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001940 if (Attr.getNumArgs() > 1) {
1941 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001942 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001943 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001944
1945 int priority = 65535; // FIXME: Do not hardcode such constants.
1946 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001947 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001948 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001949 if (E->isTypeDependent() || E->isValueDependent() ||
1950 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001951 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001952 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001953 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001954 return;
1955 }
1956 priority = Idx.getZExtValue();
1957 }
Mike Stumpbf916502009-07-24 19:02:52 +00001958
Chandler Carruth87c44602011-07-01 23:49:12 +00001959 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001960 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001961 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001962 return;
1963 }
1964
Michael Han51d8c522013-01-24 16:46:58 +00001965 D->addAttr(::new (S.Context)
1966 ConstructorAttr(Attr.getRange(), S.Context, priority,
1967 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001968}
1969
Chandler Carruth1b03c872011-07-02 00:01:44 +00001970static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001971 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001972 if (Attr.getNumArgs() > 1) {
1973 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001974 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001975 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001976
1977 int priority = 65535; // FIXME: Do not hardcode such constants.
1978 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001979 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001980 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001981 if (E->isTypeDependent() || E->isValueDependent() ||
1982 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001983 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001984 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001985 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001986 return;
1987 }
1988 priority = Idx.getZExtValue();
1989 }
Mike Stumpbf916502009-07-24 19:02:52 +00001990
Chandler Carruth87c44602011-07-01 23:49:12 +00001991 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001992 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001993 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001994 return;
1995 }
1996
Michael Han51d8c522013-01-24 16:46:58 +00001997 D->addAttr(::new (S.Context)
1998 DestructorAttr(Attr.getRange(), S.Context, priority,
1999 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002000}
2001
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002002template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002003static void handleAttrWithMessage(Sema &S, Decl *D,
2004 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002005 unsigned NumArgs = Attr.getNumArgs();
2006 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002007 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002008 return;
2009 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002010
2011 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002012 StringRef Str;
Aaron Ballman624421f2013-08-31 01:11:41 +00002013 if (Attr.isArgExpr(0)) {
2014 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002015 if (!SE) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002016 S.Diag(Attr.getArgAsExpr(0)->getLocStart(),
2017 diag::err_attribute_argument_type) << Attr.getName()
2018 << AANT_ArgumentString;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002019 return;
2020 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002021 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002022 }
Mike Stumpbf916502009-07-24 19:02:52 +00002023
Michael Han51d8c522013-01-24 16:46:58 +00002024 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2025 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002026}
2027
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002028static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2029 const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002030 D->addAttr(::new (S.Context)
2031 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2032 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002033}
2034
Patrick Beardb2f68202012-04-06 18:12:22 +00002035static void handleObjCRootClassAttr(Sema &S, Decl *D,
2036 const AttributeList &Attr) {
2037 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002038 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2039 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002040 return;
2041 }
2042
Michael Han51d8c522013-01-24 16:46:58 +00002043 D->addAttr(::new (S.Context)
2044 ObjCRootClassAttr(Attr.getRange(), S.Context,
2045 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002046}
2047
Michael Han51d8c522013-01-24 16:46:58 +00002048static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2049 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002050 if (!isa<ObjCInterfaceDecl>(D)) {
2051 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2052 return;
2053 }
2054
Michael Han51d8c522013-01-24 16:46:58 +00002055 D->addAttr(::new (S.Context)
2056 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2057 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002058}
2059
Jordy Rosefad5de92012-05-08 03:27:22 +00002060static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2061 IdentifierInfo *Platform,
2062 VersionTuple Introduced,
2063 VersionTuple Deprecated,
2064 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002065 StringRef PlatformName
2066 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2067 if (PlatformName.empty())
2068 PlatformName = Platform->getName();
2069
2070 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2071 // of these steps are needed).
2072 if (!Introduced.empty() && !Deprecated.empty() &&
2073 !(Introduced <= Deprecated)) {
2074 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2075 << 1 << PlatformName << Deprecated.getAsString()
2076 << 0 << Introduced.getAsString();
2077 return true;
2078 }
2079
2080 if (!Introduced.empty() && !Obsoleted.empty() &&
2081 !(Introduced <= Obsoleted)) {
2082 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2083 << 2 << PlatformName << Obsoleted.getAsString()
2084 << 0 << Introduced.getAsString();
2085 return true;
2086 }
2087
2088 if (!Deprecated.empty() && !Obsoleted.empty() &&
2089 !(Deprecated <= Obsoleted)) {
2090 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2091 << 2 << PlatformName << Obsoleted.getAsString()
2092 << 1 << Deprecated.getAsString();
2093 return true;
2094 }
2095
2096 return false;
2097}
2098
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002099/// \brief Check whether the two versions match.
2100///
2101/// If either version tuple is empty, then they are assumed to match. If
2102/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2103static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2104 bool BeforeIsOkay) {
2105 if (X.empty() || Y.empty())
2106 return true;
2107
2108 if (X == Y)
2109 return true;
2110
2111 if (BeforeIsOkay && X < Y)
2112 return true;
2113
2114 return false;
2115}
2116
Rafael Espindola51be6e32013-01-08 22:04:34 +00002117AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002118 IdentifierInfo *Platform,
2119 VersionTuple Introduced,
2120 VersionTuple Deprecated,
2121 VersionTuple Obsoleted,
2122 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002123 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002124 bool Override,
2125 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002126 VersionTuple MergedIntroduced = Introduced;
2127 VersionTuple MergedDeprecated = Deprecated;
2128 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002129 bool FoundAny = false;
2130
Rafael Espindola98ae8342012-05-10 02:50:16 +00002131 if (D->hasAttrs()) {
2132 AttrVec &Attrs = D->getAttrs();
2133 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2134 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2135 if (!OldAA) {
2136 ++i;
2137 continue;
2138 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002139
Rafael Espindola98ae8342012-05-10 02:50:16 +00002140 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2141 if (OldPlatform != Platform) {
2142 ++i;
2143 continue;
2144 }
2145
2146 FoundAny = true;
2147 VersionTuple OldIntroduced = OldAA->getIntroduced();
2148 VersionTuple OldDeprecated = OldAA->getDeprecated();
2149 VersionTuple OldObsoleted = OldAA->getObsoleted();
2150 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002151
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002152 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2153 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2154 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2155 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002156 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002157 if (Override) {
2158 int Which = -1;
2159 VersionTuple FirstVersion;
2160 VersionTuple SecondVersion;
2161 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2162 Which = 0;
2163 FirstVersion = OldIntroduced;
2164 SecondVersion = Introduced;
2165 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2166 Which = 1;
2167 FirstVersion = Deprecated;
2168 SecondVersion = OldDeprecated;
2169 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2170 Which = 2;
2171 FirstVersion = Obsoleted;
2172 SecondVersion = OldObsoleted;
2173 }
2174
2175 if (Which == -1) {
2176 Diag(OldAA->getLocation(),
2177 diag::warn_mismatched_availability_override_unavail)
2178 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2179 } else {
2180 Diag(OldAA->getLocation(),
2181 diag::warn_mismatched_availability_override)
2182 << Which
2183 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2184 << FirstVersion.getAsString() << SecondVersion.getAsString();
2185 }
2186 Diag(Range.getBegin(), diag::note_overridden_method);
2187 } else {
2188 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2189 Diag(Range.getBegin(), diag::note_previous_attribute);
2190 }
2191
Rafael Espindola98ae8342012-05-10 02:50:16 +00002192 Attrs.erase(Attrs.begin() + i);
2193 --e;
2194 continue;
2195 }
2196
2197 VersionTuple MergedIntroduced2 = MergedIntroduced;
2198 VersionTuple MergedDeprecated2 = MergedDeprecated;
2199 VersionTuple MergedObsoleted2 = MergedObsoleted;
2200
2201 if (MergedIntroduced2.empty())
2202 MergedIntroduced2 = OldIntroduced;
2203 if (MergedDeprecated2.empty())
2204 MergedDeprecated2 = OldDeprecated;
2205 if (MergedObsoleted2.empty())
2206 MergedObsoleted2 = OldObsoleted;
2207
2208 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2209 MergedIntroduced2, MergedDeprecated2,
2210 MergedObsoleted2)) {
2211 Attrs.erase(Attrs.begin() + i);
2212 --e;
2213 continue;
2214 }
2215
2216 MergedIntroduced = MergedIntroduced2;
2217 MergedDeprecated = MergedDeprecated2;
2218 MergedObsoleted = MergedObsoleted2;
2219 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002220 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002221 }
2222
2223 if (FoundAny &&
2224 MergedIntroduced == Introduced &&
2225 MergedDeprecated == Deprecated &&
2226 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002227 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002228
Ted Kremenekcb344392013-04-06 00:34:27 +00002229 // Only create a new attribute if !Override, but we want to do
2230 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002231 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002232 MergedDeprecated, MergedObsoleted) &&
2233 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002234 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2235 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002236 Obsoleted, IsUnavailable, Message,
2237 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002238 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002239 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002240}
2241
Chandler Carruth1b03c872011-07-02 00:01:44 +00002242static void handleAvailabilityAttr(Sema &S, Decl *D,
2243 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002244 if (!checkAttributeNumArgs(S, Attr, 1))
2245 return;
2246 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002247 unsigned Index = Attr.getAttributeSpellingListIndex();
2248
Aaron Ballman624421f2013-08-31 01:11:41 +00002249 IdentifierInfo *II = Platform->Ident;
2250 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2251 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2252 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002253
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002254 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2255 if (!ND) {
2256 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2257 return;
2258 }
2259
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002260 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2261 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2262 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002263 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002264 StringRef Str;
2265 const StringLiteral *SE =
2266 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2267 if (SE)
2268 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002269
Aaron Ballman624421f2013-08-31 01:11:41 +00002270 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002271 Introduced.Version,
2272 Deprecated.Version,
2273 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002274 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002275 /*Override=*/false,
2276 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002277 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002278 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002279}
2280
John McCalld4c3d662013-02-20 01:54:26 +00002281template <class T>
2282static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2283 typename T::VisibilityType value,
2284 unsigned attrSpellingListIndex) {
2285 T *existingAttr = D->getAttr<T>();
2286 if (existingAttr) {
2287 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2288 if (existingValue == value)
2289 return NULL;
2290 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2291 S.Diag(range.getBegin(), diag::note_previous_attribute);
2292 D->dropAttr<T>();
2293 }
2294 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2295}
2296
Rafael Espindola599f1b72012-05-13 03:25:18 +00002297VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002298 VisibilityAttr::VisibilityType Vis,
2299 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002300 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2301 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002302}
2303
John McCalld4c3d662013-02-20 01:54:26 +00002304TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2305 TypeVisibilityAttr::VisibilityType Vis,
2306 unsigned AttrSpellingListIndex) {
2307 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2308 AttrSpellingListIndex);
2309}
2310
2311static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2312 bool isTypeVisibility) {
2313 // Visibility attributes don't mean anything on a typedef.
2314 if (isa<TypedefNameDecl>(D)) {
2315 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2316 << Attr.getName();
2317 return;
2318 }
2319
2320 // 'type_visibility' can only go on a type or namespace.
2321 if (isTypeVisibility &&
2322 !(isa<TagDecl>(D) ||
2323 isa<ObjCInterfaceDecl>(D) ||
2324 isa<NamespaceDecl>(D))) {
2325 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2326 << Attr.getName() << ExpectedTypeOrNamespace;
2327 return;
2328 }
2329
Benjamin Kramerae3a83f2013-09-09 15:08:57 +00002330 // Check that the argument is a string literal.
2331 StringLiteral *Str = 0;
2332 if (Attr.isArgExpr(0))
2333 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00002334
Douglas Gregor5cee1192011-07-27 05:40:30 +00002335 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002336 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2337 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002338 return;
2339 }
Mike Stumpbf916502009-07-24 19:02:52 +00002340
Chris Lattner5f9e2722011-07-23 10:55:15 +00002341 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002342 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002343
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002344 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002345 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002346 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002347 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002348 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002349 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002350 else if (TypeStr == "protected") {
2351 // Complain about attempts to use protected visibility on targets
2352 // (like Darwin) that don't support it.
2353 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2354 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2355 type = VisibilityAttr::Default;
2356 } else {
2357 type = VisibilityAttr::Protected;
2358 }
2359 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002360 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002361 return;
2362 }
Mike Stumpbf916502009-07-24 19:02:52 +00002363
Michael Han51d8c522013-01-24 16:46:58 +00002364 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002365 clang::Attr *newAttr;
2366 if (isTypeVisibility) {
2367 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2368 (TypeVisibilityAttr::VisibilityType) type,
2369 Index);
2370 } else {
2371 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2372 }
2373 if (newAttr)
2374 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002375}
2376
Chandler Carruth1b03c872011-07-02 00:01:44 +00002377static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2378 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002379 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2380 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002381 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002382 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002383 return;
2384 }
2385
Aaron Ballman624421f2013-08-31 01:11:41 +00002386 if (!Attr.isArgIdent(0)) {
2387 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2388 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002389 return;
2390 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002391
Aaron Ballman624421f2013-08-31 01:11:41 +00002392 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2393
2394 StringRef param = IL->Ident->getName();
John McCalld5313b02011-03-02 11:33:24 +00002395 ObjCMethodFamilyAttr::FamilyKind family;
2396 if (param == "none")
2397 family = ObjCMethodFamilyAttr::OMF_None;
2398 else if (param == "alloc")
2399 family = ObjCMethodFamilyAttr::OMF_alloc;
2400 else if (param == "copy")
2401 family = ObjCMethodFamilyAttr::OMF_copy;
2402 else if (param == "init")
2403 family = ObjCMethodFamilyAttr::OMF_init;
2404 else if (param == "mutableCopy")
2405 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2406 else if (param == "new")
2407 family = ObjCMethodFamilyAttr::OMF_new;
2408 else {
2409 // Just warn and ignore it. This is future-proof against new
2410 // families being used in system headers.
Aaron Ballman624421f2013-08-31 01:11:41 +00002411 S.Diag(IL->Loc, diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002412 return;
2413 }
2414
John McCallf85e1932011-06-15 23:02:42 +00002415 if (family == ObjCMethodFamilyAttr::OMF_init &&
2416 !method->getResultType()->isObjCObjectPointerType()) {
2417 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2418 << method->getResultType();
2419 // Ignore the attribute.
2420 return;
2421 }
2422
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002423 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002424 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002425}
2426
Chandler Carruth1b03c872011-07-02 00:01:44 +00002427static void handleObjCExceptionAttr(Sema &S, Decl *D,
2428 const AttributeList &Attr) {
Chris Lattner0db29ec2009-02-14 08:09:34 +00002429 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2430 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002431 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2432 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002433 return;
2434 }
Mike Stumpbf916502009-07-24 19:02:52 +00002435
Michael Han51d8c522013-01-24 16:46:58 +00002436 D->addAttr(::new (S.Context)
2437 ObjCExceptionAttr(Attr.getRange(), S.Context,
2438 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002439}
2440
Chandler Carruth1b03c872011-07-02 00:01:44 +00002441static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Richard Smith162e1c12011-04-15 14:24:37 +00002442 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002443 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002444 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002445 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2446 return;
2447 }
2448 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002449 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2450 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002451 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002452 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2453 return;
2454 }
2455 }
2456 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002457 // It is okay to include this attribute on properties, e.g.:
2458 //
2459 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2460 //
2461 // In this case it follows tradition and suppresses an error in the above
2462 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002463 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002464 }
Michael Han51d8c522013-01-24 16:46:58 +00002465 D->addAttr(::new (S.Context)
2466 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2467 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002468}
2469
Mike Stumpbf916502009-07-24 19:02:52 +00002470static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002471handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002472 if (!isa<FunctionDecl>(D)) {
2473 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2474 return;
2475 }
2476
Michael Han51d8c522013-01-24 16:46:58 +00002477 D->addAttr(::new (S.Context)
2478 OverloadableAttr(Attr.getRange(), S.Context,
2479 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002480}
2481
Chandler Carruth1b03c872011-07-02 00:01:44 +00002482static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002483 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002484 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002485 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002486 return;
2487 }
Mike Stumpbf916502009-07-24 19:02:52 +00002488
Aaron Ballman624421f2013-08-31 01:11:41 +00002489 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002490 BlocksAttr::BlockType type;
Aaron Ballman624421f2013-08-31 01:11:41 +00002491 if (II->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002492 type = BlocksAttr::ByRef;
2493 else {
Aaron Ballman624421f2013-08-31 01:11:41 +00002494 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) << "blocks"
2495 << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002496 return;
2497 }
Mike Stumpbf916502009-07-24 19:02:52 +00002498
Michael Han51d8c522013-01-24 16:46:58 +00002499 D->addAttr(::new (S.Context)
2500 BlocksAttr(Attr.getRange(), S.Context, type,
2501 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002502}
2503
Chandler Carruth1b03c872011-07-02 00:01:44 +00002504static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002505 // check the attribute arguments.
2506 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002507 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002508 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002509 }
2510
John McCall3323fad2011-09-09 07:56:05 +00002511 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002512 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002513 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002514 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002515 if (E->isTypeDependent() || E->isValueDependent() ||
2516 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002517 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002518 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002519 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002520 return;
2521 }
Mike Stumpbf916502009-07-24 19:02:52 +00002522
John McCall3323fad2011-09-09 07:56:05 +00002523 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002524 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2525 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002526 return;
2527 }
John McCall3323fad2011-09-09 07:56:05 +00002528
2529 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002530 }
2531
John McCall3323fad2011-09-09 07:56:05 +00002532 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002533 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002534 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002535 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002536 if (E->isTypeDependent() || E->isValueDependent() ||
2537 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002538 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002539 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002540 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002541 return;
2542 }
2543 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002544
John McCall3323fad2011-09-09 07:56:05 +00002545 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002546 // FIXME: This error message could be improved, it would be nice
2547 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002548 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2549 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002550 return;
2551 }
2552 }
2553
Chandler Carruth87c44602011-07-01 23:49:12 +00002554 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002555 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002556 if (isa<FunctionNoProtoType>(FT)) {
2557 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2558 return;
2559 }
Mike Stumpbf916502009-07-24 19:02:52 +00002560
Chris Lattner897cd902009-03-17 23:03:47 +00002561 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002562 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002563 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002564 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002565 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002566 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002567 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002568 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002569 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002570 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2571 if (!BD->isVariadic()) {
2572 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2573 return;
2574 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002575 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002576 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002577 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002578 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002579 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002580 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002581 int m = Ty->isFunctionPointerType() ? 0 : 1;
2582 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002583 return;
2584 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002585 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002586 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002587 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002588 return;
2589 }
Anders Carlsson77091822008-10-05 18:05:59 +00002590 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002591 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002592 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002593 return;
2594 }
Michael Han51d8c522013-01-24 16:46:58 +00002595 D->addAttr(::new (S.Context)
2596 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2597 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002598}
2599
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002600static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002601 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2602 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2603 else
2604 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2605}
2606
Chandler Carruth1b03c872011-07-02 00:01:44 +00002607static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002608 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002609 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002610 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002611 return;
2612 }
Mike Stumpbf916502009-07-24 19:02:52 +00002613
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002614 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2615 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2616 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002617 return;
2618 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002619 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2620 if (MD->getResultType()->isVoidType()) {
2621 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2622 << Attr.getName() << 1;
2623 return;
2624 }
2625
Michael Han51d8c522013-01-24 16:46:58 +00002626 D->addAttr(::new (S.Context)
2627 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2628 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002629}
2630
Chandler Carruth1b03c872011-07-02 00:01:44 +00002631static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002632 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002633 if (isa<CXXRecordDecl>(D)) {
2634 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2635 return;
2636 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002637 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2638 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002639 return;
2640 }
2641
Chandler Carruth87c44602011-07-01 23:49:12 +00002642 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002643
Michael Han51d8c522013-01-24 16:46:58 +00002644 nd->addAttr(::new (S.Context)
2645 WeakAttr(Attr.getRange(), S.Context,
2646 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002647}
2648
Chandler Carruth1b03c872011-07-02 00:01:44 +00002649static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002650 // weak_import only applies to variable & function declarations.
2651 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002652 if (!D->canBeWeakImported(isDef)) {
2653 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002654 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2655 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002656 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002657 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002658 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002659 // Nothing to warn about here.
2660 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002661 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002662 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002663
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002664 return;
2665 }
2666
Michael Han51d8c522013-01-24 16:46:58 +00002667 D->addAttr(::new (S.Context)
2668 WeakImportAttr(Attr.getRange(), S.Context,
2669 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002670}
2671
Tanya Lattner0df579e2012-07-09 22:06:01 +00002672// Handles reqd_work_group_size and work_group_size_hint.
2673static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002674 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002675 unsigned WGSize[3];
2676 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002677 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002678 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002679 if (E->isTypeDependent() || E->isValueDependent() ||
2680 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002681 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2682 << Attr.getName() << AANT_ArgumentIntegerConstant
2683 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002684 return;
2685 }
2686 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2687 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002688
2689 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2690 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2691 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2692 if (!(A->getXDim() == WGSize[0] &&
2693 A->getYDim() == WGSize[1] &&
2694 A->getZDim() == WGSize[2])) {
2695 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2696 Attr.getName();
2697 }
2698 }
2699
2700 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2701 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2702 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2703 if (!(A->getXDim() == WGSize[0] &&
2704 A->getYDim() == WGSize[1] &&
2705 A->getZDim() == WGSize[2])) {
2706 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2707 Attr.getName();
2708 }
2709 }
2710
2711 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2712 D->addAttr(::new (S.Context)
2713 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002714 WGSize[0], WGSize[1], WGSize[2],
2715 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002716 else
2717 D->addAttr(::new (S.Context)
2718 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002719 WGSize[0], WGSize[1], WGSize[2],
2720 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002721}
2722
Joey Gouly37453b92013-03-08 09:42:32 +00002723static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2724 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2725
Aaron Ballman624421f2013-08-31 01:11:41 +00002726 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002727 return;
2728
Aaron Ballman624421f2013-08-31 01:11:41 +00002729 if (!Attr.hasParsedType()) {
2730 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2731 << Attr.getName() << 1;
2732 return;
2733 }
2734
Joey Gouly37453b92013-03-08 09:42:32 +00002735 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2736
2737 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2738 (ParmType->isBooleanType() ||
2739 !ParmType->isIntegralType(S.getASTContext()))) {
2740 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2741 << ParmType;
2742 return;
2743 }
2744
2745 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2746 D->hasAttr<VecTypeHintAttr>()) {
2747 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2748 if (A->getTypeHint() != ParmType) {
2749 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2750 return;
2751 }
2752 }
2753
2754 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2755 ParmType, Attr.getLoc()));
2756}
2757
Rafael Espindola599f1b72012-05-13 03:25:18 +00002758SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002759 StringRef Name,
2760 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002761 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2762 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002763 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002764 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2765 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002766 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002767 }
Michael Han51d8c522013-01-24 16:46:58 +00002768 return ::new (Context) SectionAttr(Range, Context, Name,
2769 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002770}
2771
Chandler Carruth1b03c872011-07-02 00:01:44 +00002772static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002773 // Make sure that there is a string literal as the sections's single
2774 // argument.
Aaron Ballman624421f2013-08-31 01:11:41 +00002775 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002776 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002777 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002778 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
2779 << Attr.getName() << AANT_ArgumentString;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002780 return;
2781 }
Mike Stump1eb44332009-09-09 15:08:12 +00002782
Chris Lattner797c3c42009-08-10 19:03:04 +00002783 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002784 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002785 if (!Error.empty()) {
2786 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2787 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002788 return;
2789 }
Mike Stump1eb44332009-09-09 15:08:12 +00002790
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002791 // This attribute cannot be applied to local variables.
2792 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2793 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2794 return;
2795 }
Michael Han51d8c522013-01-24 16:46:58 +00002796
2797 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002798 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002799 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002800 if (NewAttr)
2801 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002802}
2803
Chris Lattner6b6b5372008-06-26 18:38:35 +00002804
Chandler Carruth1b03c872011-07-02 00:01:44 +00002805static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002806 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002807 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002808 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002809 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002810 D->addAttr(::new (S.Context)
2811 NoThrowAttr(Attr.getRange(), S.Context,
2812 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002813 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002814}
2815
Chandler Carruth1b03c872011-07-02 00:01:44 +00002816static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002817 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002818 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002819 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002820 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002821 D->addAttr(::new (S.Context)
2822 ConstAttr(Attr.getRange(), S.Context,
2823 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002824 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002825}
2826
Chandler Carruth1b03c872011-07-02 00:01:44 +00002827static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002828 D->addAttr(::new (S.Context)
2829 PureAttr(Attr.getRange(), S.Context,
2830 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002831}
2832
Chandler Carruth1b03c872011-07-02 00:01:44 +00002833static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002834 if (!Attr.isArgIdent(0)) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002835 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2836 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002837 return;
2838 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002839
Chandler Carruth87c44602011-07-01 23:49:12 +00002840 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002841
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002842 if (!VD || !VD->hasLocalStorage()) {
2843 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2844 return;
2845 }
Mike Stumpbf916502009-07-24 19:02:52 +00002846
Aaron Ballman624421f2013-08-31 01:11:41 +00002847 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2848
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002849 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002850 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002851 NamedDecl *CleanupDecl
Aaron Ballman624421f2013-08-31 01:11:41 +00002852 = S.LookupSingleName(S.TUScope, IL->Ident, IL->Loc,
2853 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002854 if (!CleanupDecl) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002855 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_found) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002856 return;
2857 }
Mike Stumpbf916502009-07-24 19:02:52 +00002858
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002859 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2860 if (!FD) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002861 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_function) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002862 return;
2863 }
2864
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002865 if (FD->getNumParams() != 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002866 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
2867 << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002868 return;
2869 }
Mike Stumpbf916502009-07-24 19:02:52 +00002870
Anders Carlsson89941c12009-02-07 23:16:50 +00002871 // We're currently more strict than GCC about what function types we accept.
2872 // If this ever proves to be a problem it should be easy to fix.
2873 QualType Ty = S.Context.getPointerType(VD->getType());
2874 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002875 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2876 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002877 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2878 IL->Ident << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00002879 return;
2880 }
Mike Stumpbf916502009-07-24 19:02:52 +00002881
Michael Han51d8c522013-01-24 16:46:58 +00002882 D->addAttr(::new (S.Context)
2883 CleanupAttr(Attr.getRange(), S.Context, FD,
2884 Attr.getAttributeSpellingListIndex()));
Aaron Ballman624421f2013-08-31 01:11:41 +00002885 S.MarkFunctionReferenced(IL->Loc, FD);
2886 S.DiagnoseUseOfDecl(FD, IL->Loc);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002887}
2888
Mike Stumpbf916502009-07-24 19:02:52 +00002889/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002890/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002891static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002892 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002893 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002894 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002895 return;
2896 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002897
Aaron Ballman624421f2013-08-31 01:11:41 +00002898 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002899 uint64_t ArgIdx;
2900 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
2901 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002902 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002903
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002904 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002905 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002906
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002907 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2908 if (not_nsstring_type &&
2909 !isCFStringType(Ty, S.Context) &&
2910 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002911 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002912 // FIXME: Should highlight the actual expression that has the wrong type.
2913 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002914 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002915 << IdxExpr->getSourceRange();
2916 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002917 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002918 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002919 if (!isNSStringType(Ty, S.Context) &&
2920 !isCFStringType(Ty, S.Context) &&
2921 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002922 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002923 // FIXME: Should highlight the actual expression that has the wrong type.
2924 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002925 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002926 << IdxExpr->getSourceRange();
2927 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002928 }
2929
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002930 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
2931 // because that has corrected for the implicit this parameter, and is zero-
2932 // based. The attribute expects what the user wrote explicitly.
2933 llvm::APSInt Val;
2934 IdxExpr->EvaluateAsInt(Val, S.Context);
2935
Michael Han51d8c522013-01-24 16:46:58 +00002936 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002937 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00002938 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002939}
2940
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002941enum FormatAttrKind {
2942 CFStringFormat,
2943 NSStringFormat,
2944 StrftimeFormat,
2945 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002946 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002947 InvalidFormat
2948};
2949
2950/// getFormatAttrKind - Map from format attribute names to supported format
2951/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002952static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002953 return llvm::StringSwitch<FormatAttrKind>(Format)
2954 // Check for formats that get handled specially.
2955 .Case("NSString", NSStringFormat)
2956 .Case("CFString", CFStringFormat)
2957 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002958
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002959 // Otherwise, check for supported formats.
2960 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2961 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2962 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002963
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002964 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2965 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002966}
2967
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002968/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002969/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002970static void handleInitPriorityAttr(Sema &S, Decl *D,
2971 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002972 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002973 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2974 return;
2975 }
2976
Chandler Carruth87c44602011-07-01 23:49:12 +00002977 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002978 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2979 Attr.setInvalid();
2980 return;
2981 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002982 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002983 if (S.Context.getAsArrayType(T))
2984 T = S.Context.getBaseElementType(T);
2985 if (!T->getAs<RecordType>()) {
2986 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2987 Attr.setInvalid();
2988 return;
2989 }
2990
Aaron Ballman624421f2013-08-31 01:11:41 +00002991 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002992
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002993 llvm::APSInt priority(32);
2994 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2995 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002996 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2997 << Attr.getName() << AANT_ArgumentIntegerConstant
2998 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002999 Attr.setInvalid();
3000 return;
3001 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003002 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003003 if (prioritynum < 101 || prioritynum > 65535) {
3004 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3005 << priorityExpr->getSourceRange();
3006 Attr.setInvalid();
3007 return;
3008 }
Michael Han51d8c522013-01-24 16:46:58 +00003009 D->addAttr(::new (S.Context)
3010 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3011 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003012}
3013
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003014FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3015 IdentifierInfo *Format, int FormatIdx,
3016 int FirstArg,
Michael Han51d8c522013-01-24 16:46:58 +00003017 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003018 // Check whether we already have an equivalent format attribute.
3019 for (specific_attr_iterator<FormatAttr>
3020 i = D->specific_attr_begin<FormatAttr>(),
3021 e = D->specific_attr_end<FormatAttr>();
3022 i != e ; ++i) {
3023 FormatAttr *f = *i;
3024 if (f->getType() == Format &&
3025 f->getFormatIdx() == FormatIdx &&
3026 f->getFirstArg() == FirstArg) {
3027 // If we don't have a valid location for this attribute, adopt the
3028 // location.
3029 if (f->getLocation().isInvalid())
3030 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003031 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003032 }
3033 }
3034
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003035 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3036 FirstArg, AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003037}
3038
Mike Stumpbf916502009-07-24 19:02:52 +00003039/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003040/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003041static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003042 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003043 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003044 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003045 return;
3046 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003047
Chandler Carruth87c44602011-07-01 23:49:12 +00003048 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003049 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003050 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003051 return;
3052 }
3053
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003054 // In C++ the implicit 'this' function parameter also counts, and they are
3055 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003056 bool HasImplicitThisParam = isInstanceMethod(D);
3057 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003058 unsigned FirstIdx = 1;
3059
Aaron Ballman624421f2013-08-31 01:11:41 +00003060 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3061 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003062
3063 // Normalize the argument, __foo__ becomes foo.
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003064 if (Format.startswith("__") && Format.endswith("__")) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003065 Format = Format.substr(2, Format.size() - 4);
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003066 // If we've modified the string name, we need a new identifier for it.
3067 II = &S.Context.Idents.get(Format);
3068 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003069
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003070 // Check for supported formats.
3071 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003072
3073 if (Kind == IgnoredFormat)
3074 return;
3075
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003076 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003077 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003078 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003079 return;
3080 }
3081
3082 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003083 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003084 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003085 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3086 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003087 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003088 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003089 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003090 return;
3091 }
3092
3093 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003094 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003095 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003096 return;
3097 }
3098
3099 // FIXME: Do we need to bounds check?
3100 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003101
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003102 if (HasImplicitThisParam) {
3103 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003104 S.Diag(Attr.getLoc(),
3105 diag::err_format_attribute_implicit_this_format_string)
3106 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003107 return;
3108 }
3109 ArgIdx--;
3110 }
Mike Stump1eb44332009-09-09 15:08:12 +00003111
Chris Lattner6b6b5372008-06-26 18:38:35 +00003112 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003113 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003114
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003115 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003116 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003117 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3118 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003119 return;
3120 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003121 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003122 // FIXME: do we need to check if the type is NSString*? What are the
3123 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003124 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003125 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003126 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3127 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003128 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003129 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003130 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003131 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003132 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003133 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3134 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003135 return;
3136 }
3137
3138 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003139 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003140 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003141 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3142 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003143 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003144 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003145 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003146 return;
3147 }
3148
3149 // check if the function is variadic if the 3rd argument non-zero
3150 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003151 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003152 ++NumArgs; // +1 for ...
3153 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003154 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003155 return;
3156 }
3157 }
3158
Chris Lattner3c73c412008-11-19 08:23:25 +00003159 // strftime requires FirstArg to be 0 because it doesn't read from any
3160 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003161 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003162 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003163 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3164 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003165 return;
3166 }
3167 // if 0 it disables parameter checking (to use with e.g. va_list)
3168 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003169 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003170 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003171 return;
3172 }
3173
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003174 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00003175 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003176 FirstArg.getZExtValue(),
3177 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003178 if (NewAttr)
3179 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003180}
3181
Chandler Carruth1b03c872011-07-02 00:01:44 +00003182static void handleTransparentUnionAttr(Sema &S, Decl *D,
3183 const AttributeList &Attr) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003184 // Try to find the underlying union declaration.
3185 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003186 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003187 if (TD && TD->getUnderlyingType()->isUnionType())
3188 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3189 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003190 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003191
3192 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003193 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003194 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003195 return;
3196 }
3197
John McCall5e1cdac2011-10-07 06:10:15 +00003198 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003199 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003200 diag::warn_transparent_union_attribute_not_definition);
3201 return;
3202 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003203
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003204 RecordDecl::field_iterator Field = RD->field_begin(),
3205 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003206 if (Field == FieldEnd) {
3207 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3208 return;
3209 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003210
David Blaikie581deb32012-06-06 20:45:41 +00003211 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003212 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003213 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003214 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003215 diag::warn_transparent_union_attribute_floating)
3216 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003217 return;
3218 }
3219
3220 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3221 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3222 for (; Field != FieldEnd; ++Field) {
3223 QualType FieldType = Field->getType();
3224 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3225 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3226 // Warn if we drop the attribute.
3227 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003228 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003229 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003230 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003231 diag::warn_transparent_union_attribute_field_size_align)
3232 << isSize << Field->getDeclName() << FieldBits;
3233 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003234 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003235 diag::note_transparent_union_first_field_size_align)
3236 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003237 return;
3238 }
3239 }
3240
Michael Han51d8c522013-01-24 16:46:58 +00003241 RD->addAttr(::new (S.Context)
3242 TransparentUnionAttr(Attr.getRange(), S.Context,
3243 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003244}
3245
Chandler Carruth1b03c872011-07-02 00:01:44 +00003246static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003247 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003248 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003249
Chris Lattner6b6b5372008-06-26 18:38:35 +00003250 // Make sure that there is a string literal as the annotation's single
3251 // argument.
3252 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003253 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
3254 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003255 return;
3256 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003257
3258 // Don't duplicate annotations that are already set.
3259 for (specific_attr_iterator<AnnotateAttr>
3260 i = D->specific_attr_begin<AnnotateAttr>(),
3261 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3262 if ((*i)->getAnnotation() == SE->getString())
3263 return;
3264 }
Michael Han51d8c522013-01-24 16:46:58 +00003265
3266 D->addAttr(::new (S.Context)
3267 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3268 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003269}
3270
Chandler Carruth1b03c872011-07-02 00:01:44 +00003271static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003272 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003273 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003274 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3275 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003276 return;
3277 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003278
Richard Smithbe507b62013-02-01 08:12:08 +00003279 if (Attr.getNumArgs() == 0) {
3280 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3281 true, 0, Attr.getAttributeSpellingListIndex()));
3282 return;
3283 }
3284
Aaron Ballman624421f2013-08-31 01:11:41 +00003285 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003286 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3287 S.Diag(Attr.getEllipsisLoc(),
3288 diag::err_pack_expansion_without_parameter_packs);
3289 return;
3290 }
3291
3292 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3293 return;
3294
3295 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3296 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003297}
3298
3299void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003300 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003301 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3302 SourceLocation AttrLoc = AttrRange.getBegin();
3303
Richard Smith4cd81c52013-01-29 09:02:09 +00003304 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003305 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003306 // C++11 [dcl.align]p1:
3307 // An alignment-specifier may be applied to a variable or to a class
3308 // data member, but it shall not be applied to a bit-field, a function
3309 // parameter, the formal parameter of a catch clause, or a variable
3310 // declared with the register storage class specifier. An
3311 // alignment-specifier may also be applied to the declaration of a class
3312 // or enumeration type.
3313 // C11 6.7.5/2:
3314 // An alignment attribute shall not be specified in a declaration of
3315 // a typedef, or a bit-field, or a function, or a parameter, or an
3316 // object declared with the register storage-class specifier.
3317 int DiagKind = -1;
3318 if (isa<ParmVarDecl>(D)) {
3319 DiagKind = 0;
3320 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3321 if (VD->getStorageClass() == SC_Register)
3322 DiagKind = 1;
3323 if (VD->isExceptionVariable())
3324 DiagKind = 2;
3325 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3326 if (FD->isBitField())
3327 DiagKind = 3;
3328 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003329 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3330 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003331 << (TmpAttr.isC11() ? ExpectedVariableOrField
3332 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003333 return;
3334 }
3335 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003336 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003337 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003338 return;
3339 }
3340 }
3341
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003342 if (E->isTypeDependent() || E->isValueDependent()) {
3343 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003344 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3345 AA->setPackExpansion(IsPackExpansion);
3346 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003347 return;
3348 }
Michael Hana31f65b2013-02-01 01:19:17 +00003349
Sean Huntcf807c42010-08-18 23:23:40 +00003350 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003351 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003352 ExprResult ICE
3353 = VerifyIntegerConstantExpression(E, &Alignment,
3354 diag::err_aligned_attribute_argument_not_int,
3355 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003356 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003357 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003358
3359 // C++11 [dcl.align]p2:
3360 // -- if the constant expression evaluates to zero, the alignment
3361 // specifier shall have no effect
3362 // C11 6.7.5p6:
3363 // An alignment specification of zero has no effect.
3364 if (!(TmpAttr.isAlignas() && !Alignment) &&
3365 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003366 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3367 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003368 return;
3369 }
Michael Hana31f65b2013-02-01 01:19:17 +00003370
Richard Smithbe507b62013-02-01 08:12:08 +00003371 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003372 // We've already verified it's a power of 2, now let's make sure it's
3373 // 8192 or less.
3374 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003375 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003376 << E->getSourceRange();
3377 return;
3378 }
3379 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003380
Richard Smithf6565a92013-02-22 08:32:16 +00003381 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3382 ICE.take(), SpellingListIndex);
3383 AA->setPackExpansion(IsPackExpansion);
3384 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003385}
3386
Michael Hana31f65b2013-02-01 01:19:17 +00003387void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003388 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003389 // FIXME: Cache the number on the Attr object if non-dependent?
3390 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003391 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3392 SpellingListIndex);
3393 AA->setPackExpansion(IsPackExpansion);
3394 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003395}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003396
Richard Smithbe507b62013-02-01 08:12:08 +00003397void Sema::CheckAlignasUnderalignment(Decl *D) {
3398 assert(D->hasAttrs() && "no attributes on decl");
3399
3400 QualType Ty;
3401 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3402 Ty = VD->getType();
3403 else
3404 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003405 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003406 return;
3407
3408 // C++11 [dcl.align]p5, C11 6.7.5/4:
3409 // The combined effect of all alignment attributes in a declaration shall
3410 // not specify an alignment that is less strict than the alignment that
3411 // would otherwise be required for the entity being declared.
3412 AlignedAttr *AlignasAttr = 0;
3413 unsigned Align = 0;
3414 for (specific_attr_iterator<AlignedAttr>
3415 I = D->specific_attr_begin<AlignedAttr>(),
3416 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3417 if (I->isAlignmentDependent())
3418 return;
3419 if (I->isAlignas())
3420 AlignasAttr = *I;
3421 Align = std::max(Align, I->getAlignment(Context));
3422 }
3423
3424 if (AlignasAttr && Align) {
3425 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3426 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3427 if (NaturalAlign > RequestedAlign)
3428 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3429 << Ty << (unsigned)NaturalAlign.getQuantity();
3430 }
3431}
3432
Chandler Carruthd309c812011-07-01 23:49:16 +00003433/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003434/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003435///
Mike Stumpbf916502009-07-24 19:02:52 +00003436/// Despite what would be logical, the mode attribute is a decl attribute, not a
3437/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3438/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003439static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003440 // This attribute isn't documented, but glibc uses it. It changes
3441 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003442 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003443 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3444 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003445 return;
3446 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003447
Aaron Ballman624421f2013-08-31 01:11:41 +00003448 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3449 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003450
3451 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003452 if (Str.startswith("__") && Str.endswith("__"))
3453 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003454
3455 unsigned DestWidth = 0;
3456 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003457 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003458 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003459 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003460 switch (Str[0]) {
3461 case 'Q': DestWidth = 8; break;
3462 case 'H': DestWidth = 16; break;
3463 case 'S': DestWidth = 32; break;
3464 case 'D': DestWidth = 64; break;
3465 case 'X': DestWidth = 96; break;
3466 case 'T': DestWidth = 128; break;
3467 }
3468 if (Str[1] == 'F') {
3469 IntegerMode = false;
3470 } else if (Str[1] == 'C') {
3471 IntegerMode = false;
3472 ComplexMode = true;
3473 } else if (Str[1] != 'I') {
3474 DestWidth = 0;
3475 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003476 break;
3477 case 4:
3478 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3479 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003480 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003481 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003482 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003483 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003484 break;
3485 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003486 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003487 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003488 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003489 case 11:
3490 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003491 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003492 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003493 }
3494
3495 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003496 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003497 OldTy = TD->getUnderlyingType();
3498 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3499 OldTy = VD->getType();
3500 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003501 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003502 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003503 return;
3504 }
Eli Friedman73397492009-03-03 06:41:03 +00003505
John McCall183700f2009-09-21 23:43:11 +00003506 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003507 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3508 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003509 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003510 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3511 } else if (ComplexMode) {
3512 if (!OldTy->isComplexType())
3513 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3514 } else {
3515 if (!OldTy->isFloatingType())
3516 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3517 }
3518
Mike Stump390b4cc2009-05-16 07:39:55 +00003519 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3520 // and friends, at least with glibc.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003521 // FIXME: Make sure floating-point mappings are accurate
3522 // FIXME: Support XF and TF types
Stepan Dyatkovskiy9fd13792013-09-10 08:18:44 +00003523 if (!DestWidth) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003524 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003525 return;
Stepan Dyatkovskiy9fd13792013-09-10 08:18:44 +00003526 }
3527
3528 QualType NewTy;
3529
3530 if (IntegerMode)
3531 NewTy = S.Context.getIntTypeForBitwidth(DestWidth,
3532 OldTy->isSignedIntegerType());
3533 else
3534 NewTy = S.Context.getRealTypeForBitwidth(DestWidth);
3535
3536 if (NewTy.isNull()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003537 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003538 return;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003539 }
3540
Eli Friedman73397492009-03-03 06:41:03 +00003541 if (ComplexMode) {
3542 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003543 }
3544
3545 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003546 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3547 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3548 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003549 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003550
3551 D->addAttr(::new (S.Context)
3552 ModeAttr(Attr.getRange(), S.Context, Name,
3553 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003554}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003555
Chandler Carruth1b03c872011-07-02 00:01:44 +00003556static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nick Lewycky78d1a102012-07-24 01:40:49 +00003557 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3558 if (!VD->hasGlobalStorage())
3559 S.Diag(Attr.getLoc(),
3560 diag::warn_attribute_requires_functions_or_static_globals)
3561 << Attr.getName();
3562 } else if (!isFunctionOrMethod(D)) {
3563 S.Diag(Attr.getLoc(),
3564 diag::warn_attribute_requires_functions_or_static_globals)
3565 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003566 return;
3567 }
Mike Stumpbf916502009-07-24 19:02:52 +00003568
Michael Han51d8c522013-01-24 16:46:58 +00003569 D->addAttr(::new (S.Context)
3570 NoDebugAttr(Attr.getRange(), S.Context,
3571 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003572}
3573
Chandler Carruth1b03c872011-07-02 00:01:44 +00003574static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003575 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003576 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003577 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003578 return;
3579 }
Mike Stumpbf916502009-07-24 19:02:52 +00003580
Michael Han51d8c522013-01-24 16:46:58 +00003581 D->addAttr(::new (S.Context)
3582 NoInlineAttr(Attr.getRange(), S.Context,
3583 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003584}
3585
Chandler Carruth1b03c872011-07-02 00:01:44 +00003586static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3587 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003588 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003589 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003590 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003591 return;
3592 }
3593
Michael Han51d8c522013-01-24 16:46:58 +00003594 D->addAttr(::new (S.Context)
3595 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3596 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003597}
3598
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003600 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003601 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003602 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003603 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003604 return;
3605 }
3606
Michael Han51d8c522013-01-24 16:46:58 +00003607 D->addAttr(::new (S.Context)
3608 CUDAConstantAttr(Attr.getRange(), S.Context,
3609 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003610 } else {
3611 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3612 }
3613}
3614
Chandler Carruth1b03c872011-07-02 00:01:44 +00003615static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003616 if (S.LangOpts.CUDA) {
3617 // check the attribute arguments.
3618 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3620 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003621 return;
3622 }
3623
Chandler Carruth87c44602011-07-01 23:49:12 +00003624 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003625 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003626 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003627 return;
3628 }
3629
Michael Han51d8c522013-01-24 16:46:58 +00003630 D->addAttr(::new (S.Context)
3631 CUDADeviceAttr(Attr.getRange(), S.Context,
3632 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003633 } else {
3634 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3635 }
3636}
3637
Chandler Carruth1b03c872011-07-02 00:01:44 +00003638static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003639 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003640 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003641 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003642 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003643 return;
3644 }
3645
Chandler Carruth87c44602011-07-01 23:49:12 +00003646 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003647 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003648 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003649 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003650 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3651 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003652 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003653 "void");
3654 } else {
3655 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3656 << FD->getType();
3657 }
3658 return;
3659 }
3660
Michael Han51d8c522013-01-24 16:46:58 +00003661 D->addAttr(::new (S.Context)
3662 CUDAGlobalAttr(Attr.getRange(), S.Context,
3663 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003664 } else {
3665 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3666 }
3667}
3668
Chandler Carruth1b03c872011-07-02 00:01:44 +00003669static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003670 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003671 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003672 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003673 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003674 return;
3675 }
3676
Michael Han51d8c522013-01-24 16:46:58 +00003677 D->addAttr(::new (S.Context)
3678 CUDAHostAttr(Attr.getRange(), S.Context,
3679 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003680 } else {
3681 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3682 }
3683}
3684
Chandler Carruth1b03c872011-07-02 00:01:44 +00003685static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003686 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003687 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003688 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003689 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003690 return;
3691 }
3692
Michael Han51d8c522013-01-24 16:46:58 +00003693 D->addAttr(::new (S.Context)
3694 CUDASharedAttr(Attr.getRange(), S.Context,
3695 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003696 } else {
3697 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3698 }
3699}
3700
Chandler Carruth1b03c872011-07-02 00:01:44 +00003701static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003702 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003703 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003704 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003705 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003706 return;
3707 }
Mike Stumpbf916502009-07-24 19:02:52 +00003708
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003709 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003710 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003711 return;
3712 }
Mike Stumpbf916502009-07-24 19:02:52 +00003713
Michael Han51d8c522013-01-24 16:46:58 +00003714 D->addAttr(::new (S.Context)
3715 GNUInlineAttr(Attr.getRange(), S.Context,
3716 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003717}
3718
Chandler Carruth1b03c872011-07-02 00:01:44 +00003719static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003720 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003721
Aaron Ballmanfff32482012-12-09 17:45:41 +00003722 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003723 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003724 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3725 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003726 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003727 return;
3728
Chandler Carruth87c44602011-07-01 23:49:12 +00003729 if (!isa<ObjCMethodDecl>(D)) {
3730 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3731 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003732 return;
3733 }
3734
Chandler Carruth87c44602011-07-01 23:49:12 +00003735 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003736 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003737 D->addAttr(::new (S.Context)
3738 FastCallAttr(Attr.getRange(), S.Context,
3739 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003740 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003741 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003742 D->addAttr(::new (S.Context)
3743 StdCallAttr(Attr.getRange(), S.Context,
3744 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003745 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003746 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003747 D->addAttr(::new (S.Context)
3748 ThisCallAttr(Attr.getRange(), S.Context,
3749 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003750 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003751 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003752 D->addAttr(::new (S.Context)
3753 CDeclAttr(Attr.getRange(), S.Context,
3754 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003755 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003756 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003757 D->addAttr(::new (S.Context)
3758 PascalAttr(Attr.getRange(), S.Context,
3759 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003760 return;
Charles Davise8519c32013-08-30 04:39:01 +00003761 case AttributeList::AT_MSABI:
3762 D->addAttr(::new (S.Context)
3763 MSABIAttr(Attr.getRange(), S.Context,
3764 Attr.getAttributeSpellingListIndex()));
3765 return;
3766 case AttributeList::AT_SysVABI:
3767 D->addAttr(::new (S.Context)
3768 SysVABIAttr(Attr.getRange(), S.Context,
3769 Attr.getAttributeSpellingListIndex()));
3770 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003771 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003772 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003773 switch (CC) {
3774 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003775 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003776 break;
3777 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003778 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003779 break;
3780 default:
3781 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003782 }
3783
Michael Han51d8c522013-01-24 16:46:58 +00003784 D->addAttr(::new (S.Context)
3785 PcsAttr(Attr.getRange(), S.Context, PCS,
3786 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003787 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003788 }
Derek Schuff263366f2012-10-16 22:30:41 +00003789 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003790 D->addAttr(::new (S.Context)
3791 PnaclCallAttr(Attr.getRange(), S.Context,
3792 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003793 return;
Guy Benyei38980082012-12-25 08:53:55 +00003794 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003795 D->addAttr(::new (S.Context)
3796 IntelOclBiccAttr(Attr.getRange(), S.Context,
3797 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003798 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003799
Abramo Bagnarae215f722010-04-30 13:10:51 +00003800 default:
3801 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003802 }
3803}
3804
Chandler Carruth1b03c872011-07-02 00:01:44 +00003805static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003806 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003807}
3808
Guy Benyei1db70402013-03-24 13:58:12 +00003809static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00003810 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00003811 llvm::APSInt ArgNum(32);
3812 if (E->isTypeDependent() || E->isValueDependent() ||
3813 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003814 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3815 << Attr.getName() << AANT_ArgumentIntegerConstant
3816 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00003817 return;
3818 }
3819
3820 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
3821 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
3822}
3823
Aaron Ballmanfff32482012-12-09 17:45:41 +00003824bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3825 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003826 if (attr.isInvalid())
3827 return true;
3828
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003829 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00003830 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00003831 attr.setInvalid();
3832 return true;
3833 }
3834
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003835 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3836 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003837 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003838 case AttributeList::AT_CDecl: CC = CC_C; break;
3839 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3840 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3841 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3842 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00003843 case AttributeList::AT_MSABI:
3844 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
3845 CC_X86_64Win64;
3846 break;
3847 case AttributeList::AT_SysVABI:
3848 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
3849 CC_C;
3850 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00003851 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00003852 StringLiteral *Str = 0;
3853 if (attr.isArgExpr(0))
3854 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
3855
Douglas Gregor5cee1192011-07-27 05:40:30 +00003856 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003857 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
3858 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003859 attr.setInvalid();
3860 return true;
3861 }
3862
Chris Lattner5f9e2722011-07-23 10:55:15 +00003863 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003864 if (StrRef == "aapcs") {
3865 CC = CC_AAPCS;
3866 break;
3867 } else if (StrRef == "aapcs-vfp") {
3868 CC = CC_AAPCS_VFP;
3869 break;
3870 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003871
3872 attr.setInvalid();
3873 Diag(attr.getLoc(), diag::err_invalid_pcs);
3874 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003875 }
Derek Schuff263366f2012-10-16 22:30:41 +00003876 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003877 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003878 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003879 }
3880
Aaron Ballman82bfa192012-10-02 14:26:08 +00003881 const TargetInfo &TI = Context.getTargetInfo();
3882 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3883 if (A == TargetInfo::CCCR_Warning) {
3884 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003885
3886 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3887 if (FD)
3888 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3889 TargetInfo::CCMT_NonMember;
3890 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003891 }
3892
John McCall711c52b2011-01-05 12:14:39 +00003893 return false;
3894}
3895
Chandler Carruth1b03c872011-07-02 00:01:44 +00003896static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003897 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003898
3899 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003900 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003901 return;
3902
Chandler Carruth87c44602011-07-01 23:49:12 +00003903 if (!isa<ObjCMethodDecl>(D)) {
3904 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3905 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003906 return;
3907 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003908
Michael Han51d8c522013-01-24 16:46:58 +00003909 D->addAttr(::new (S.Context)
3910 RegparmAttr(Attr.getRange(), S.Context, numParams,
3911 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003912}
3913
3914/// Checks a regparm attribute, returning true if it is ill-formed and
3915/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003916bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3917 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003918 return true;
3919
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003920 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003921 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003922 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003923 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003924
Aaron Ballman624421f2013-08-31 01:11:41 +00003925 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003926 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003927 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003928 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003929 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3930 << Attr.getName() << AANT_ArgumentIntegerConstant
3931 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003932 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003933 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003934 }
3935
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003936 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003937 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003938 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003939 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003940 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003941 }
3942
John McCall711c52b2011-01-05 12:14:39 +00003943 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003944 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003945 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003946 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003947 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003948 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003949 }
3950
John McCall711c52b2011-01-05 12:14:39 +00003951 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003952}
3953
Chandler Carruth1b03c872011-07-02 00:01:44 +00003954static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003955 if (S.LangOpts.CUDA) {
3956 // check the attribute arguments.
3957 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003958 // FIXME: 0 is not okay.
3959 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003960 return;
3961 }
3962
Chandler Carruth87c44602011-07-01 23:49:12 +00003963 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003964 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003965 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003966 return;
3967 }
3968
Aaron Ballman624421f2013-08-31 01:11:41 +00003969 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003970 llvm::APSInt MaxThreads(32);
3971 if (MaxThreadsExpr->isTypeDependent() ||
3972 MaxThreadsExpr->isValueDependent() ||
3973 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003974 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003975 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003976 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00003977 return;
3978 }
3979
3980 llvm::APSInt MinBlocks(32);
3981 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003982 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003983 if (MinBlocksExpr->isTypeDependent() ||
3984 MinBlocksExpr->isValueDependent() ||
3985 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003986 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003987 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003988 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00003989 return;
3990 }
3991 }
3992
Michael Han51d8c522013-01-24 16:46:58 +00003993 D->addAttr(::new (S.Context)
3994 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
3995 MaxThreads.getZExtValue(),
3996 MinBlocks.getZExtValue(),
3997 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00003998 } else {
3999 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4000 }
4001}
4002
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004003static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4004 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004005 if (!Attr.isArgIdent(0)) {
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() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004008 return;
4009 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004010
4011 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004012 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004013
Aaron Ballman624421f2013-08-31 01:11:41 +00004014 StringRef AttrName = Attr.getName()->getName();
4015 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004016
4017 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4018 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4019 << Attr.getName() << ExpectedFunctionOrMethod;
4020 return;
4021 }
4022
4023 uint64_t ArgumentIdx;
4024 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4025 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004026 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004027 return;
4028
4029 uint64_t TypeTagIdx;
4030 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4031 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004032 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004033 return;
4034
4035 bool IsPointer = (AttrName == "pointer_with_type_tag");
4036 if (IsPointer) {
4037 // Ensure that buffer has a pointer type.
4038 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4039 if (!BufferTy->isPointerType()) {
4040 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004041 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004042 }
4043 }
4044
Michael Han51d8c522013-01-24 16:46:58 +00004045 D->addAttr(::new (S.Context)
4046 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4047 ArgumentIdx, TypeTagIdx, IsPointer,
4048 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004049}
4050
4051static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4052 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004053 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004054 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004055 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004056 return;
4057 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004058
4059 if (!checkAttributeNumArgs(S, Attr, 1))
4060 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004061
Aaron Ballman624421f2013-08-31 01:11:41 +00004062 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004063 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4064
Michael Han51d8c522013-01-24 16:46:58 +00004065 D->addAttr(::new (S.Context)
4066 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4067 MatchingCType,
4068 Attr.getLayoutCompatible(),
4069 Attr.getMustBeNull(),
4070 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004071}
4072
Chris Lattner0744e5f2008-06-29 00:23:49 +00004073//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004074// Checker-specific attribute handlers.
4075//===----------------------------------------------------------------------===//
4076
John McCallc7ad3812011-01-25 03:31:58 +00004077static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004078 return type->isDependentType() ||
4079 type->isObjCObjectPointerType() ||
4080 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004081}
4082static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004083 return type->isDependentType() ||
4084 type->isPointerType() ||
4085 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004086}
4087
Chandler Carruth1b03c872011-07-02 00:01:44 +00004088static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004089 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004090 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004091 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004092 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004093 return;
4094 }
4095
4096 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004097 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004098 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4099 cf = false;
4100 } else {
4101 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4102 cf = true;
4103 }
4104
4105 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004106 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004107 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004108 return;
4109 }
4110
4111 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004112 param->addAttr(::new (S.Context)
4113 CFConsumedAttr(Attr.getRange(), S.Context,
4114 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004115 else
Michael Han51d8c522013-01-24 16:46:58 +00004116 param->addAttr(::new (S.Context)
4117 NSConsumedAttr(Attr.getRange(), S.Context,
4118 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004119}
4120
Chandler Carruth1b03c872011-07-02 00:01:44 +00004121static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4122 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004123 if (!isa<ObjCMethodDecl>(D)) {
4124 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004125 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004126 return;
4127 }
4128
Michael Han51d8c522013-01-24 16:46:58 +00004129 D->addAttr(::new (S.Context)
4130 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4131 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004132}
4133
Chandler Carruth1b03c872011-07-02 00:01:44 +00004134static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4135 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004136
John McCallc7ad3812011-01-25 03:31:58 +00004137 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004138
Chandler Carruth87c44602011-07-01 23:49:12 +00004139 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004140 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004141 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004142 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004143 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004144 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4145 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004146 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004147 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004148 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004149 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004150 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004151 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004152 return;
4153 }
Mike Stumpbf916502009-07-24 19:02:52 +00004154
John McCallc7ad3812011-01-25 03:31:58 +00004155 bool typeOK;
4156 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004157 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004158 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004159 case AttributeList::AT_NSReturnsAutoreleased:
4160 case AttributeList::AT_NSReturnsRetained:
4161 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004162 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4163 cf = false;
4164 break;
4165
Sean Hunt8e083e72012-06-19 23:57:03 +00004166 case AttributeList::AT_CFReturnsRetained:
4167 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004168 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4169 cf = true;
4170 break;
4171 }
4172
4173 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004174 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004175 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004176 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004177 }
Mike Stumpbf916502009-07-24 19:02:52 +00004178
Chandler Carruth87c44602011-07-01 23:49:12 +00004179 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004180 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004181 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004182 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004183 D->addAttr(::new (S.Context)
4184 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4185 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004186 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004187 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004188 D->addAttr(::new (S.Context)
4189 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4190 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004191 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004192 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004193 D->addAttr(::new (S.Context)
4194 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4195 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004196 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004197 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004198 D->addAttr(::new (S.Context)
4199 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4200 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004201 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004202 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004203 D->addAttr(::new (S.Context)
4204 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4205 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004206 return;
4207 };
4208}
4209
John McCalldc7c5ad2011-07-22 08:53:00 +00004210static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4211 const AttributeList &attr) {
4212 SourceLocation loc = attr.getLoc();
4213
4214 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4215
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004216 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004217 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004218 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004219 return;
4220 }
4221
4222 // Check that the method returns a normal pointer.
4223 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004224
4225 if (!resultType->isReferenceType() &&
4226 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004227 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4228 << SourceRange(loc)
4229 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4230
4231 // Drop the attribute.
4232 return;
4233 }
4234
Michael Han51d8c522013-01-24 16:46:58 +00004235 method->addAttr(::new (S.Context)
4236 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4237 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004238}
4239
Fariborz Jahanian84101132012-09-07 23:46:23 +00004240static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4241 const AttributeList &attr) {
4242 SourceLocation loc = attr.getLoc();
4243 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4244
4245 if (!method) {
4246 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4247 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4248 return;
4249 }
4250 DeclContext *DC = method->getDeclContext();
4251 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4252 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4253 << attr.getName() << 0;
4254 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4255 return;
4256 }
4257 if (method->getMethodFamily() == OMF_dealloc) {
4258 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4259 << attr.getName() << 1;
4260 return;
4261 }
4262
Michael Han51d8c522013-01-24 16:46:58 +00004263 method->addAttr(::new (S.Context)
4264 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4265 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004266}
4267
John McCall8dfac0b2011-09-30 05:12:12 +00004268/// Handle cf_audited_transfer and cf_unknown_transfer.
4269static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4270 if (!isa<FunctionDecl>(D)) {
4271 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004272 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004273 return;
4274 }
4275
Sean Hunt8e083e72012-06-19 23:57:03 +00004276 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004277
4278 // Check whether there's a conflicting attribute already present.
4279 Attr *Existing;
4280 if (IsAudited) {
4281 Existing = D->getAttr<CFUnknownTransferAttr>();
4282 } else {
4283 Existing = D->getAttr<CFAuditedTransferAttr>();
4284 }
4285 if (Existing) {
4286 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4287 << A.getName()
4288 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4289 << A.getRange() << Existing->getRange();
4290 return;
4291 }
4292
4293 // All clear; add the attribute.
4294 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004295 D->addAttr(::new (S.Context)
4296 CFAuditedTransferAttr(A.getRange(), S.Context,
4297 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004298 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004299 D->addAttr(::new (S.Context)
4300 CFUnknownTransferAttr(A.getRange(), S.Context,
4301 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004302 }
4303}
4304
John McCallfe98da02011-09-29 07:17:38 +00004305static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4306 const AttributeList &Attr) {
4307 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4308 if (!RD || RD->isUnion()) {
4309 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004310 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004311 }
4312
Aaron Ballman624421f2013-08-31 01:11:41 +00004313 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004314
4315 // In Objective-C, verify that the type names an Objective-C type.
4316 // We don't want to check this outside of ObjC because people sometimes
4317 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004318 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004319 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004320 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004321 Sema::LookupOrdinaryName);
4322 if (S.LookupName(R, Sc)) {
4323 NamedDecl *Target = R.getFoundDecl();
4324 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4325 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4326 S.Diag(Target->getLocStart(), diag::note_declared_at);
4327 }
4328 }
4329 }
4330
Michael Han51d8c522013-01-24 16:46:58 +00004331 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004332 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004333 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004334}
4335
Chandler Carruth1b03c872011-07-02 00:01:44 +00004336static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4337 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004338 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004339
Chandler Carruth87c44602011-07-01 23:49:12 +00004340 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004341 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004342}
4343
Chandler Carruth1b03c872011-07-02 00:01:44 +00004344static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4345 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004346 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004347 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004348 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004349 return;
4350 }
4351
Chandler Carruth87c44602011-07-01 23:49:12 +00004352 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004353 QualType type = vd->getType();
4354
4355 if (!type->isDependentType() &&
4356 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004357 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004358 << type;
4359 return;
4360 }
4361
4362 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4363
4364 // If we have no lifetime yet, check the lifetime we're presumably
4365 // going to infer.
4366 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4367 lifetime = type->getObjCARCImplicitLifetime();
4368
4369 switch (lifetime) {
4370 case Qualifiers::OCL_None:
4371 assert(type->isDependentType() &&
4372 "didn't infer lifetime for non-dependent type?");
4373 break;
4374
4375 case Qualifiers::OCL_Weak: // meaningful
4376 case Qualifiers::OCL_Strong: // meaningful
4377 break;
4378
4379 case Qualifiers::OCL_ExplicitNone:
4380 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004381 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004382 << (lifetime == Qualifiers::OCL_Autoreleasing);
4383 break;
4384 }
4385
Chandler Carruth87c44602011-07-01 23:49:12 +00004386 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004387 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4388 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004389}
4390
Francois Pichet11542142010-12-19 06:50:37 +00004391//===----------------------------------------------------------------------===//
4392// Microsoft specific attribute handlers.
4393//===----------------------------------------------------------------------===//
4394
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004395// Check if MS extensions or some other language extensions are enabled. If
4396// not, issue a diagnostic that the given attribute is unused.
4397static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4398 bool OtherExtension = false) {
4399 if (S.LangOpts.MicrosoftExt || OtherExtension)
4400 return true;
4401 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4402 return false;
4403}
4404
Chandler Carruth1b03c872011-07-02 00:01:44 +00004405static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004406 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4407 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004408
Aaron Ballman624421f2013-08-31 01:11:41 +00004409 Expr *Arg = Attr.getArgAsExpr(0);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004410 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
4411 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004412 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4413 << Attr.getName() << AANT_ArgumentString;
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004414 return;
4415 }
Francois Pichetd3d3be92010-12-20 01:41:49 +00004416
David Majnemerbb0ed292013-08-09 08:56:20 +00004417 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4418 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004419 StringRef StrRef = Str->getString();
David Majnemerbb0ed292013-08-09 08:56:20 +00004420 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4421 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004422
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004423 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004424 if (StrRef.size() != 36) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004425 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4426 return;
4427 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004428
David Majnemerbb0ed292013-08-09 08:56:20 +00004429 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004430 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004431 if (StrRef[i] != '-') {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004432 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4433 return;
4434 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004435 } else if (!isHexDigit(StrRef[i])) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004436 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4437 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004438 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004439 }
Francois Pichet11542142010-12-19 06:50:37 +00004440
David Majnemerbb0ed292013-08-09 08:56:20 +00004441 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4442 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004443}
4444
John McCallc052dbb2012-05-22 21:28:12 +00004445static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004446 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004447 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004448
4449 AttributeList::Kind Kind = Attr.getKind();
4450 if (Kind == AttributeList::AT_SingleInheritance)
4451 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004452 ::new (S.Context)
4453 SingleInheritanceAttr(Attr.getRange(), S.Context,
4454 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004455 else if (Kind == AttributeList::AT_MultipleInheritance)
4456 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004457 ::new (S.Context)
4458 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4459 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004460 else if (Kind == AttributeList::AT_VirtualInheritance)
4461 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004462 ::new (S.Context)
4463 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4464 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004465}
4466
4467static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004468 if (!checkMicrosoftExt(S, Attr))
4469 return;
4470
4471 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004472 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004473 D->addAttr(
4474 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4475 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004476}
4477
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004478static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004479 if (!checkMicrosoftExt(S, Attr))
4480 return;
4481 D->addAttr(::new (S.Context)
4482 ForceInlineAttr(Attr.getRange(), S.Context,
4483 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004484}
4485
Reid Klecknera7225342013-05-20 14:02:37 +00004486static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4487 if (!checkMicrosoftExt(S, Attr))
4488 return;
4489 // Check linkage after possibly merging declaratinos. See
4490 // checkAttributesAfterMerging().
4491 D->addAttr(::new (S.Context)
4492 SelectAnyAttr(Attr.getRange(), S.Context,
4493 Attr.getAttributeSpellingListIndex()));
4494}
4495
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004496/// Handles semantic checking for features that are common to all attributes,
4497/// such as checking whether a parameter was properly specified, or the correct
4498/// number of arguments were passed, etc.
4499static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
4500 const AttributeList &Attr) {
4501 // Several attributes carry different semantics than the parsing requires, so
4502 // those are opted out of the common handling.
4503 //
4504 // We also bail on unknown and ignored attributes because those are handled
4505 // as part of the target-specific handling logic.
4506 if (Attr.hasCustomParsing() ||
4507 Attr.getKind() == AttributeList::UnknownAttribute ||
4508 Attr.getKind() == AttributeList::IgnoredAttribute)
4509 return false;
4510
4511 // If there are no optional arguments, then checking for the argument count
4512 // is trivial.
4513 if (Attr.getMinArgs() == Attr.getMaxArgs() &&
4514 !checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
4515 return true;
4516 return false;
4517}
4518
Ted Kremenekb71368d2009-05-09 02:44:38 +00004519//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004520// Top Level Sema Entry Points
4521//===----------------------------------------------------------------------===//
4522
Richard Smith4a97b8e2013-08-29 00:47:48 +00004523/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4524/// the attribute applies to decls. If the attribute is a type attribute, just
4525/// silently ignore it if a GNU attribute.
4526static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4527 const AttributeList &Attr,
4528 bool IncludeCXX11Attributes) {
4529 if (Attr.isInvalid())
4530 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004531
Richard Smith4a97b8e2013-08-29 00:47:48 +00004532 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4533 // instead.
4534 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4535 return;
4536
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004537 if (handleCommonAttributeFeatures(S, scope, D, Attr))
4538 return;
4539
Chris Lattner803d0802008-06-29 00:43:07 +00004540 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004541 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4542 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4543 case AttributeList::AT_IBOutletCollection:
4544 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004545 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004546 case AttributeList::AT_ObjCGC:
4547 case AttributeList::AT_VectorSize:
4548 case AttributeList::AT_NeonVectorType:
4549 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004550 case AttributeList::AT_Ptr32:
4551 case AttributeList::AT_Ptr64:
4552 case AttributeList::AT_SPtr:
4553 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004554 // Ignore these, these are type attributes, handled by
4555 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004556 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004557 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4558 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4559 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4560 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004561 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004562 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004563 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004564 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004565 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4566 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4567 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004568 handleDependencyAttr(S, scope, D, Attr);
4569 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004570 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4571 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4572 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004573 case AttributeList::AT_CXX11NoReturn:
4574 handleCXX11NoReturnAttr(S, D, Attr);
4575 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004576 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004577 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004578 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004579 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4580 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004581 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004582 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004583 case AttributeList::AT_MinSize:
4584 handleMinSizeAttr(S, D, Attr);
4585 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004586 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4587 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4588 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004589 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4590 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004591 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4592 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004593 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004594 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004595 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4596 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004597 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004598 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4599 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004600 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004601 case AttributeList::AT_ownership_returns:
4602 case AttributeList::AT_ownership_takes:
4603 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004604 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004605 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4606 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4607 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4608 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4609 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4610 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4611 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004612
Sean Hunt8e083e72012-06-19 23:57:03 +00004613 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004614 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004615 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004616 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004617
Sean Hunt8e083e72012-06-19 23:57:03 +00004618 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004619 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4620
Fariborz Jahanian84101132012-09-07 23:46:23 +00004621 case AttributeList::AT_ObjCRequiresSuper:
4622 handleObjCRequiresSuperAttr(S, D, Attr); break;
4623
Sean Hunt8e083e72012-06-19 23:57:03 +00004624 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004625 handleNSBridgedAttr(S, scope, D, Attr); break;
4626
Sean Hunt8e083e72012-06-19 23:57:03 +00004627 case AttributeList::AT_CFAuditedTransfer:
4628 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004629 handleCFTransferAttr(S, D, Attr); break;
4630
Ted Kremenekb71368d2009-05-09 02:44:38 +00004631 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004632 case AttributeList::AT_CFConsumed:
4633 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4634 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004635 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004636
Sean Hunt8e083e72012-06-19 23:57:03 +00004637 case AttributeList::AT_NSReturnsAutoreleased:
4638 case AttributeList::AT_NSReturnsNotRetained:
4639 case AttributeList::AT_CFReturnsNotRetained:
4640 case AttributeList::AT_NSReturnsRetained:
4641 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004642 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004643
Tanya Lattner0df579e2012-07-09 22:06:01 +00004644 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004645 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004646 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004647
Joey Gouly37453b92013-03-08 09:42:32 +00004648 case AttributeList::AT_VecTypeHint:
4649 handleVecTypeHint(S, D, Attr); break;
4650
Sean Hunt8e083e72012-06-19 23:57:03 +00004651 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004652 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004653
Sean Hunt8e083e72012-06-19 23:57:03 +00004654 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4655 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4656 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004657 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004658 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004659 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004660 handleArcWeakrefUnavailableAttr (S, D, Attr);
4661 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004662 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004663 handleObjCRootClassAttr(S, D, Attr);
4664 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004665 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004666 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004667 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004668 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4669 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004670 handleReturnsTwiceAttr(S, D, Attr);
4671 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004672 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004673 case AttributeList::AT_Visibility:
4674 handleVisibilityAttr(S, D, Attr, false);
4675 break;
4676 case AttributeList::AT_TypeVisibility:
4677 handleVisibilityAttr(S, D, Attr, true);
4678 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004679 case AttributeList::AT_WarnUnused:
4680 handleWarnUnusedAttr(S, D, Attr);
4681 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004682 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004683 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004684 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4685 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4686 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4687 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004688 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004689 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004690 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004691 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004692 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004693 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004694 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004695 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004696 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4697 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4698 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4699 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4700 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4701 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4702 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4703 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4704 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004705 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004706 // Just ignore
4707 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004708 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004709 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004710 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004711 case AttributeList::AT_StdCall:
4712 case AttributeList::AT_CDecl:
4713 case AttributeList::AT_FastCall:
4714 case AttributeList::AT_ThisCall:
4715 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004716 case AttributeList::AT_MSABI:
4717 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004718 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004719 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004720 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004721 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004722 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004723 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004724 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004725 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004726 case AttributeList::AT_OpenCLImageAccess:
4727 handleOpenCLImageAccessAttr(S, D, Attr);
4728 break;
John McCallc052dbb2012-05-22 21:28:12 +00004729
4730 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004731 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004732 handleMsStructAttr(S, D, Attr);
4733 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004734 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004735 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004736 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004737 case AttributeList::AT_SingleInheritance:
4738 case AttributeList::AT_MultipleInheritance:
4739 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004740 handleInheritanceAttr(S, D, Attr);
4741 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004742 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004743 handlePortabilityAttr(S, D, Attr);
4744 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004745 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004746 handleForceInlineAttr(S, D, Attr);
4747 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004748 case AttributeList::AT_SelectAny:
4749 handleSelectAnyAttr(S, D, Attr);
4750 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004751
4752 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004753 case AttributeList::AT_AssertExclusiveLock:
4754 handleAssertExclusiveLockAttr(S, D, Attr);
4755 break;
4756 case AttributeList::AT_AssertSharedLock:
4757 handleAssertSharedLockAttr(S, D, Attr);
4758 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004759 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004760 handleGuardedVarAttr(S, D, Attr);
4761 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004762 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004763 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004764 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004765 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004766 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004767 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004768 case AttributeList::AT_NoSanitizeAddress:
4769 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004770 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004771 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004772 handleNoThreadSafetyAnalysis(S, D, Attr);
4773 break;
4774 case AttributeList::AT_NoSanitizeThread:
4775 handleNoSanitizeThread(S, D, Attr);
4776 break;
4777 case AttributeList::AT_NoSanitizeMemory:
4778 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004779 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004780 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004781 handleLockableAttr(S, D, Attr);
4782 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004783 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004784 handleGuardedByAttr(S, D, Attr);
4785 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004786 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004787 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004788 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004789 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004790 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004791 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004792 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004793 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004794 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004795 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004796 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004797 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004798 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004799 handleLockReturnedAttr(S, D, Attr);
4800 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004801 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004802 handleLocksExcludedAttr(S, D, Attr);
4803 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004804 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004805 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004806 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004807 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004808 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004809 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004810 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004811 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004812 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004813 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004814 handleUnlockFunAttr(S, D, Attr);
4815 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004816 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004817 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004818 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004819 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004820 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004821 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004822
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004823 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00004824 case AttributeList::AT_Consumable:
4825 handleConsumableAttr(S, D, Attr);
4826 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004827 case AttributeList::AT_Consumes:
4828 handleConsumesAttr(S, D, Attr);
4829 break;
4830 case AttributeList::AT_CallableWhenUnconsumed:
4831 handleCallableWhenUnconsumedAttr(S, D, Attr);
4832 break;
4833 case AttributeList::AT_TestsConsumed:
4834 handleTestsConsumedAttr(S, D, Attr);
4835 break;
4836 case AttributeList::AT_TestsUnconsumed:
4837 handleTestsUnconsumedAttr(S, D, Attr);
4838 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00004839 case AttributeList::AT_ReturnTypestate:
4840 handleReturnTypestateAttr(S, D, Attr);
4841 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004842
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004843 // Type safety attributes.
4844 case AttributeList::AT_ArgumentWithTypeTag:
4845 handleArgumentWithTypeTagAttr(S, D, Attr);
4846 break;
4847 case AttributeList::AT_TypeTagForDatatype:
4848 handleTypeTagForDatatypeAttr(S, D, Attr);
4849 break;
4850
Chris Lattner803d0802008-06-29 00:43:07 +00004851 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004852 // Ask target about the attribute.
4853 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4854 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004855 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4856 diag::warn_unhandled_ms_attribute_ignored :
4857 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004858 break;
4859 }
4860}
4861
4862/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4863/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004864void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004865 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004866 bool IncludeCXX11Attributes) {
4867 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00004868 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004869
4870 // GCC accepts
4871 // static int a9 __attribute__((weakref));
4872 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00004873 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004874 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004875 cast<NamedDecl>(D)->getNameAsString();
4876 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004877 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004878 }
4879}
4880
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004881// Annotation attributes are the only attributes allowed after an access
4882// specifier.
4883bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4884 const AttributeList *AttrList) {
4885 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004886 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004887 handleAnnotateAttr(*this, ASDecl, *l);
4888 } else {
4889 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4890 return true;
4891 }
4892 }
4893
4894 return false;
4895}
4896
John McCalle82247a2011-10-01 05:17:03 +00004897/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4898/// contains any decl attributes that we should warn about.
4899static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4900 for ( ; A; A = A->getNext()) {
4901 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004902 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004903 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4904
4905 if (A->getKind() == AttributeList::UnknownAttribute) {
4906 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4907 << A->getName() << A->getRange();
4908 } else {
4909 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4910 << A->getName() << A->getRange();
4911 }
4912 }
4913}
4914
4915/// checkUnusedDeclAttributes - Given a declarator which is not being
4916/// used to build a declaration, complain about any decl attributes
4917/// which might be lying around on it.
4918void Sema::checkUnusedDeclAttributes(Declarator &D) {
4919 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4920 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4921 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4922 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4923}
4924
Ryan Flynne25ff832009-07-30 03:15:39 +00004925/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004926/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004927NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4928 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004929 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004930 NamedDecl *NewD = 0;
4931 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004932 FunctionDecl *NewFD;
4933 // FIXME: Missing call to CheckFunctionDeclaration().
4934 // FIXME: Mangling?
4935 // FIXME: Is the qualifier info correct?
4936 // FIXME: Is the DeclContext correct?
4937 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4938 Loc, Loc, DeclarationName(II),
4939 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004940 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00004941 FD->hasPrototype(),
4942 false/*isConstexprSpecified*/);
4943 NewD = NewFD;
4944
4945 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004946 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004947
4948 // Fake up parameter variables; they are declared as if this were
4949 // a typedef.
4950 QualType FDTy = FD->getType();
4951 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4952 SmallVector<ParmVarDecl*, 16> Params;
4953 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4954 AE = FT->arg_type_end(); AI != AE; ++AI) {
4955 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4956 Param->setScopeInfo(0, Params.size());
4957 Params.push_back(Param);
4958 }
David Blaikie4278c652011-09-21 18:16:56 +00004959 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004960 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004961 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4962 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004963 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004964 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004965 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00004966 if (VD->getQualifier()) {
4967 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004968 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004969 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004970 }
4971 return NewD;
4972}
4973
James Dennett1dfbd922012-06-14 21:40:34 +00004974/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00004975/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004976void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004977 if (W.getUsed()) return; // only do this once
4978 W.setUsed(true);
4979 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4980 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004981 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004982 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4983 NDId->getName()));
4984 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004985 WeakTopLevelDecl.push_back(NewD);
4986 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4987 // to insert Decl at TU scope, sorry.
4988 DeclContext *SavedContext = CurContext;
4989 CurContext = Context.getTranslationUnitDecl();
4990 PushOnScopeChains(NewD, S);
4991 CurContext = SavedContext;
4992 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00004993 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00004994 }
4995}
4996
Rafael Espindola65611bf2013-03-02 21:41:48 +00004997void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
4998 // It's valid to "forward-declare" #pragma weak, in which case we
4999 // have to do this.
5000 LoadExternalWeakUndeclaredIdentifiers();
5001 if (!WeakUndeclaredIdentifiers.empty()) {
5002 NamedDecl *ND = NULL;
5003 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5004 if (VD->isExternC())
5005 ND = VD;
5006 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5007 if (FD->isExternC())
5008 ND = FD;
5009 if (ND) {
5010 if (IdentifierInfo *Id = ND->getIdentifier()) {
5011 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5012 = WeakUndeclaredIdentifiers.find(Id);
5013 if (I != WeakUndeclaredIdentifiers.end()) {
5014 WeakInfo W = I->second;
5015 DeclApplyPragmaWeak(S, ND, W);
5016 WeakUndeclaredIdentifiers[Id] = W;
5017 }
5018 }
5019 }
5020 }
5021}
5022
Chris Lattner0744e5f2008-06-29 00:23:49 +00005023/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5024/// it, apply them to D. This is a bit tricky because PD can have attributes
5025/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005026void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005027 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005028 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005029 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005030
Chris Lattner0744e5f2008-06-29 00:23:49 +00005031 // Walk the declarator structure, applying decl attributes that were in a type
5032 // position to the decl itself. This handles cases like:
5033 // int *__attr__(x)** D;
5034 // when X is a decl attribute.
5035 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5036 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005037 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005038
Chris Lattner0744e5f2008-06-29 00:23:49 +00005039 // Finally, apply any attributes on the decl itself.
5040 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005041 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005042}
John McCall54abf7d2009-11-04 02:18:39 +00005043
John McCallf85e1932011-06-15 23:02:42 +00005044/// Is the given declaration allowed to use a forbidden type?
5045static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5046 // Private ivars are always okay. Unfortunately, people don't
5047 // always properly make their ivars private, even in system headers.
5048 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005049 // Function declarations in sys headers will be marked unavailable.
5050 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5051 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005052 return false;
5053
5054 // Require it to be declared in a system header.
5055 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5056}
5057
5058/// Handle a delayed forbidden-type diagnostic.
5059static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5060 Decl *decl) {
5061 if (decl && isForbiddenTypeAllowed(S, decl)) {
5062 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5063 "this system declaration uses an unsupported type"));
5064 return;
5065 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005066 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005067 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005068 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005069 // kind of forbidden type messages on unavailable functions.
5070 if (FD->hasAttr<UnavailableAttr>() &&
5071 diag.getForbiddenTypeDiagnostic() ==
5072 diag::err_arc_array_param_no_ownership) {
5073 diag.Triggered = true;
5074 return;
5075 }
5076 }
John McCallf85e1932011-06-15 23:02:42 +00005077
5078 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5079 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5080 diag.Triggered = true;
5081}
5082
John McCall92576642012-05-07 06:16:41 +00005083void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5084 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005085 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005086 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005087
John McCall92576642012-05-07 06:16:41 +00005088 // When delaying diagnostics to run in the context of a parsed
5089 // declaration, we only want to actually emit anything if parsing
5090 // succeeds.
5091 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005092
John McCall92576642012-05-07 06:16:41 +00005093 // We emit all the active diagnostics in this pool or any of its
5094 // parents. In general, we'll get one pool for the decl spec
5095 // and a child pool for each declarator; in a decl group like:
5096 // deprecated_typedef foo, *bar, baz();
5097 // only the declarator pops will be passed decls. This is correct;
5098 // we really do need to consider delayed diagnostics from the decl spec
5099 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005100 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005101 do {
John McCall13489672012-05-07 06:16:58 +00005102 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005103 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5104 // This const_cast is a bit lame. Really, Triggered should be mutable.
5105 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005106 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005107 continue;
5108
John McCalleee1d542011-02-14 07:13:47 +00005109 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005110 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005111 // Don't bother giving deprecation diagnostics if the decl is invalid.
5112 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005113 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005114 break;
5115
5116 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005117 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005118 break;
John McCallf85e1932011-06-15 23:02:42 +00005119
5120 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005121 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005122 break;
John McCall2f514482010-01-27 03:50:35 +00005123 }
5124 }
John McCall92576642012-05-07 06:16:41 +00005125 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005126}
5127
John McCall13489672012-05-07 06:16:58 +00005128/// Given a set of delayed diagnostics, re-emit them as if they had
5129/// been delayed in the current context instead of in the given pool.
5130/// Essentially, this just moves them to the current pool.
5131void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5132 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5133 assert(curPool && "re-emitting in undelayed context not supported");
5134 curPool->steal(pool);
5135}
5136
John McCall54abf7d2009-11-04 02:18:39 +00005137static bool isDeclDeprecated(Decl *D) {
5138 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005139 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005140 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005141 // A category implicitly has the availability of the interface.
5142 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5143 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005144 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5145 return false;
5146}
5147
Eli Friedmanc3b23082012-08-08 21:52:41 +00005148static void
5149DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5150 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005151 const ObjCInterfaceDecl *UnknownObjCClass,
5152 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005153 DeclarationName Name = D->getDeclName();
5154 if (!Message.empty()) {
5155 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5156 S.Diag(D->getLocation(),
5157 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5158 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005159 if (ObjCPropery)
5160 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5161 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005162 } else if (!UnknownObjCClass) {
5163 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5164 S.Diag(D->getLocation(),
5165 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5166 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005167 if (ObjCPropery)
5168 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5169 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005170 } else {
5171 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5172 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5173 }
5174}
5175
John McCall9c3087b2010-08-26 02:13:20 +00005176void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005177 Decl *Ctx) {
5178 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005179 return;
5180
John McCall2f514482010-01-27 03:50:35 +00005181 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005182 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5183 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005184 DD.getUnknownObjCClass(),
5185 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005186}
5187
Chris Lattner5f9e2722011-07-23 10:55:15 +00005188void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005189 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005190 const ObjCInterfaceDecl *UnknownObjCClass,
5191 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005192 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005193 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005194 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5195 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005196 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005197 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005198 return;
5199 }
5200
5201 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005202 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005203 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005204 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005205}