blob: 0a6cee900b465b03913fd0a9d3e1d328046bd12c [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 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000501 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000502
503 // D must be either a member field or global (potentially shared) variable.
504 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000505 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
506 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000507 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000508 }
509
Michael Handc691572012-07-23 18:48:41 +0000510 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000511}
512
Michael Handc691572012-07-23 18:48:41 +0000513static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
514 if (!checkGuardedVarAttrCommon(S, D, Attr))
515 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000516
Michael Han51d8c522013-01-24 16:46:58 +0000517 D->addAttr(::new (S.Context)
518 GuardedVarAttr(Attr.getRange(), S.Context,
519 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000520}
521
Michael Hanf1aae3b2012-08-03 17:40:43 +0000522static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000523 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000524 if (!checkGuardedVarAttrCommon(S, D, Attr))
525 return;
526
527 if (!threadSafetyCheckIsPointer(S, D, Attr))
528 return;
529
Michael Han51d8c522013-01-24 16:46:58 +0000530 D->addAttr(::new (S.Context)
531 PtGuardedVarAttr(Attr.getRange(), S.Context,
532 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000533}
534
Michael Hanf1aae3b2012-08-03 17:40:43 +0000535static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
536 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000537 Expr* &Arg) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000538 if (!checkAttributeNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000539 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000540
541 // D must be either a member field or global (potentially shared) variable.
542 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000543 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
544 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000545 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000546 }
547
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000548 SmallVector<Expr*, 1> Args;
549 // check that all arguments are lockable objects
550 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
551 unsigned Size = Args.size();
552 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000553 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000554
Michael Handc691572012-07-23 18:48:41 +0000555 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000556
Michael Handc691572012-07-23 18:48:41 +0000557 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000558}
559
Michael Handc691572012-07-23 18:48:41 +0000560static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
561 Expr *Arg = 0;
562 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
563 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000564
Michael Handc691572012-07-23 18:48:41 +0000565 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
566}
567
Michael Hanf1aae3b2012-08-03 17:40:43 +0000568static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000569 const AttributeList &Attr) {
570 Expr *Arg = 0;
571 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
572 return;
573
574 if (!threadSafetyCheckIsPointer(S, D, Attr))
575 return;
576
577 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
578 S.Context, Arg));
579}
580
Michael Hanf1aae3b2012-08-03 17:40:43 +0000581static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000582 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000583 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000584 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000585
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000586 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000587 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000588 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
589 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000590 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000591 }
592
Michael Handc691572012-07-23 18:48:41 +0000593 return true;
594}
595
596static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
597 if (!checkLockableAttrCommon(S, D, Attr))
598 return;
599
600 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
601}
602
Michael Hanf1aae3b2012-08-03 17:40:43 +0000603static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000604 const AttributeList &Attr) {
605 if (!checkLockableAttrCommon(S, D, Attr))
606 return;
607
Michael Han51d8c522013-01-24 16:46:58 +0000608 D->addAttr(::new (S.Context)
609 ScopedLockableAttr(Attr.getRange(), S.Context,
610 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000611}
612
Kostya Serebryany85aee962013-02-26 06:58:27 +0000613static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
614 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000615 if (!checkAttributeNumArgs(S, Attr, 0))
616 return;
617
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000618 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000619 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
620 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000621 return;
622 }
623
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000624 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000625 S.Context));
626}
627
Kostya Serebryany85aee962013-02-26 06:58:27 +0000628static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000629 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000630 if (!checkAttributeNumArgs(S, Attr, 0))
631 return;
632
633 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000634 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000635 << Attr.getName() << ExpectedFunctionOrMethod;
636 return;
637 }
638
Michael Han51d8c522013-01-24 16:46:58 +0000639 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000640 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
641 Attr.getAttributeSpellingListIndex()));
642}
643
644static void handleNoSanitizeMemory(Sema &S, Decl *D,
645 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000646 if (!checkAttributeNumArgs(S, Attr, 0))
647 return;
648
649 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
650 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
651 << Attr.getName() << ExpectedFunctionOrMethod;
652 return;
653 }
654
655 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
656 S.Context));
657}
658
659static void handleNoSanitizeThread(Sema &S, Decl *D,
660 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000661 if (!checkAttributeNumArgs(S, Attr, 0))
662 return;
663
664 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
665 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
666 << Attr.getName() << ExpectedFunctionOrMethod;
667 return;
668 }
669
670 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
671 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000672}
673
Michael Hanf1aae3b2012-08-03 17:40:43 +0000674static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
675 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000676 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000677 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000678 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000679
680 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000681 ValueDecl *VD = dyn_cast<ValueDecl>(D);
682 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000683 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
684 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000685 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000686 }
687
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000688 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000689 QualType QT = VD->getType();
690 if (!QT->isDependentType()) {
691 const RecordType *RT = getRecordType(QT);
692 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000693 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000694 << Attr.getName();
695 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000696 }
697 }
698
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000699 // Check that all arguments are lockable objects.
700 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000701 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000702 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000703
Michael Handc691572012-07-23 18:48:41 +0000704 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000705}
706
Michael Hanf1aae3b2012-08-03 17:40:43 +0000707static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000708 const AttributeList &Attr) {
709 SmallVector<Expr*, 1> Args;
710 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
711 return;
712
713 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000714 D->addAttr(::new (S.Context)
715 AcquiredAfterAttr(Attr.getRange(), S.Context,
716 StartArg, Args.size(),
717 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000718}
719
Michael Hanf1aae3b2012-08-03 17:40:43 +0000720static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000721 const AttributeList &Attr) {
722 SmallVector<Expr*, 1> Args;
723 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
724 return;
725
726 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000727 D->addAttr(::new (S.Context)
728 AcquiredBeforeAttr(Attr.getRange(), S.Context,
729 StartArg, Args.size(),
730 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000731}
732
Michael Hanf1aae3b2012-08-03 17:40:43 +0000733static bool checkLockFunAttrCommon(Sema &S, Decl *D,
734 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000735 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000736 // zero or more arguments ok
737
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000738 // check that the attribute is applied to a function
739 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000740 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
741 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000742 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000743 }
744
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000745 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000746 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000747
Michael Handc691572012-07-23 18:48:41 +0000748 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000749}
750
Michael Hanf1aae3b2012-08-03 17:40:43 +0000751static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000752 const AttributeList &Attr) {
753 SmallVector<Expr*, 1> Args;
754 if (!checkLockFunAttrCommon(S, D, Attr, Args))
755 return;
756
757 unsigned Size = Args.size();
758 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000759 D->addAttr(::new (S.Context)
760 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
761 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000762}
763
Michael Hanf1aae3b2012-08-03 17:40:43 +0000764static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000765 const AttributeList &Attr) {
766 SmallVector<Expr*, 1> Args;
767 if (!checkLockFunAttrCommon(S, D, Attr, Args))
768 return;
769
770 unsigned Size = Args.size();
771 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000772 D->addAttr(::new (S.Context)
773 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
774 StartArg, Size,
775 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000776}
777
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000778static void handleAssertSharedLockAttr(Sema &S, Decl *D,
779 const AttributeList &Attr) {
780 SmallVector<Expr*, 1> Args;
781 if (!checkLockFunAttrCommon(S, D, Attr, Args))
782 return;
783
784 unsigned Size = Args.size();
785 Expr **StartArg = Size == 0 ? 0 : &Args[0];
786 D->addAttr(::new (S.Context)
787 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
788 Attr.getAttributeSpellingListIndex()));
789}
790
791static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
792 const AttributeList &Attr) {
793 SmallVector<Expr*, 1> Args;
794 if (!checkLockFunAttrCommon(S, D, Attr, Args))
795 return;
796
797 unsigned Size = Args.size();
798 Expr **StartArg = Size == 0 ? 0 : &Args[0];
799 D->addAttr(::new (S.Context)
800 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
801 StartArg, Size,
802 Attr.getAttributeSpellingListIndex()));
803}
804
805
Michael Hanf1aae3b2012-08-03 17:40:43 +0000806static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
807 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000808 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000809 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000810 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000811
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000812 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000813 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
814 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000815 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000816 }
817
Aaron Ballman624421f2013-08-31 01:11:41 +0000818 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000819 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000820 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000821 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000822 }
823
824 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000825 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000826
Michael Handc691572012-07-23 18:48:41 +0000827 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000828}
829
Michael Hanf1aae3b2012-08-03 17:40:43 +0000830static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000831 const AttributeList &Attr) {
832 SmallVector<Expr*, 2> Args;
833 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
834 return;
835
Michael Han51d8c522013-01-24 16:46:58 +0000836 D->addAttr(::new (S.Context)
837 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000838 Attr.getArgAsExpr(0),
839 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000840 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000841}
842
Michael Hanf1aae3b2012-08-03 17:40:43 +0000843static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000844 const AttributeList &Attr) {
845 SmallVector<Expr*, 2> Args;
846 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
847 return;
848
Michael Han51d8c522013-01-24 16:46:58 +0000849 D->addAttr(::new (S.Context)
850 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000851 Attr.getArgAsExpr(0),
852 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000853 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000854}
855
Michael Hanf1aae3b2012-08-03 17:40:43 +0000856static bool checkLocksRequiredCommon(Sema &S, Decl *D,
857 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000858 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000859 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000860 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000861
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000862 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000863 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
864 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000865 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000866 }
867
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000868 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000869 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000870 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000871 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000872
Michael Handc691572012-07-23 18:48:41 +0000873 return true;
874}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000875
Michael Hanf1aae3b2012-08-03 17:40:43 +0000876static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000877 const AttributeList &Attr) {
878 SmallVector<Expr*, 1> Args;
879 if (!checkLocksRequiredCommon(S, D, Attr, Args))
880 return;
881
882 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000883 D->addAttr(::new (S.Context)
884 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
885 StartArg, Args.size(),
886 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000887}
888
Michael Hanf1aae3b2012-08-03 17:40:43 +0000889static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000890 const AttributeList &Attr) {
891 SmallVector<Expr*, 1> Args;
892 if (!checkLocksRequiredCommon(S, D, Attr, Args))
893 return;
894
895 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000896 D->addAttr(::new (S.Context)
897 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
898 StartArg, Args.size(),
899 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000900}
901
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000902static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000903 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000904 // zero or more arguments ok
905
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000906 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000907 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
908 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000909 return;
910 }
911
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000912 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000913 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000914 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000915 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000916 Expr **StartArg = Size == 0 ? 0 : &Args[0];
917
Michael Han51d8c522013-01-24 16:46:58 +0000918 D->addAttr(::new (S.Context)
919 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
920 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000921}
922
923static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000924 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000925 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000926 return;
927
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000928 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000929 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
930 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000931 return;
932 }
933
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000934 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000935 SmallVector<Expr*, 1> Args;
936 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
937 unsigned Size = Args.size();
938 if (Size == 0)
939 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000940
Michael Han51d8c522013-01-24 16:46:58 +0000941 D->addAttr(::new (S.Context)
942 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
943 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000944}
945
946static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000947 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000948 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000949 return;
950
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000951 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000952 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
953 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000954 return;
955 }
956
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000957 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000958 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000959 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000960 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000961 if (Size == 0)
962 return;
963 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000964
Michael Han51d8c522013-01-24 16:46:58 +0000965 D->addAttr(::new (S.Context)
966 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
967 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000968}
969
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000970static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikiea33ab602013-09-06 01:28:43 +0000971 if (!checkAttributeNumArgs(S, Attr, 1))
972 return;
973
974 ConsumableAttr::ConsumedState DefaultState;
975
976 if (Attr.isArgIdent(0)) {
977 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
978
979 if (Param == "unknown")
980 DefaultState = ConsumableAttr::Unknown;
981 else if (Param == "consumed")
982 DefaultState = ConsumableAttr::Consumed;
983 else if (Param == "unconsumed")
984 DefaultState = ConsumableAttr::Unconsumed;
985 else {
986 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
987 return;
988 }
989
990 } else {
991 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
992 << Attr.getName() << AANT_ArgumentIdentifier;
993 return;
994 }
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000995
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000996 if (!isa<CXXRecordDecl>(D)) {
997 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
998 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000999 return;
1000 }
1001
1002 D->addAttr(::new (S.Context)
David Blaikiea33ab602013-09-06 01:28:43 +00001003 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001004 Attr.getAttributeSpellingListIndex()));
1005}
1006
1007static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
1008 const AttributeList &Attr) {
1009 ASTContext &CurrContext = S.getASTContext();
1010 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
1011
1012 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
1013 if (!RD->hasAttr<ConsumableAttr>()) {
1014 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
1015 RD->getNameAsString();
1016
1017 return false;
1018 }
1019 }
1020
1021 return true;
1022}
1023
1024static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1025 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1026
1027 if (!isa<CXXMethodDecl>(D)) {
1028 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1029 Attr.getName() << ExpectedMethod;
1030 return;
1031 }
1032
1033 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1034 return;
1035
1036 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001037 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001038 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001039}
1040
1041static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1042 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001043 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1044
1045 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001046 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1047 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001048 return;
1049 }
1050
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001051 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1052 return;
1053
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001054 D->addAttr(::new (S.Context)
1055 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001056 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001057}
1058
1059static void handleTestsConsumedAttr(Sema &S, Decl *D,
1060 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001061 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1062
1063 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001064 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1065 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001066 return;
1067 }
1068
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001069 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1070 return;
1071
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001072 D->addAttr(::new (S.Context)
1073 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001074 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001075}
1076
1077static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1078 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001079 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1080
1081 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001082 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1083 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001084 return;
1085 }
1086
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001087 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1088 return;
1089
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001090 D->addAttr(::new (S.Context)
1091 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001092 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001093}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001094
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001095static void handleReturnTypestateAttr(Sema &S, Decl *D,
1096 const AttributeList &Attr) {
1097 if (!checkAttributeNumArgs(S, Attr, 1)) return;
1098
1099 ReturnTypestateAttr::ConsumedState ReturnState;
1100
1101 if (Attr.isArgIdent(0)) {
1102 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
1103
1104 if (Param == "unknown") {
1105 ReturnState = ReturnTypestateAttr::Unknown;
1106 } else if (Param == "consumed") {
1107 ReturnState = ReturnTypestateAttr::Consumed;
1108 } else if (Param == "unconsumed") {
1109 ReturnState = ReturnTypestateAttr::Unconsumed;
1110 } else {
1111 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
1112 return;
1113 }
1114
1115 } else {
1116 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1117 Attr.getName() << AANT_ArgumentIdentifier;
1118 return;
1119 }
1120
1121 if (!isa<FunctionDecl>(D)) {
1122 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1123 Attr.getName() << ExpectedFunction;
1124 return;
1125 }
1126
1127 // FIXME: This check is currently being done in the analysis. It can be
1128 // enabled here only after the parser propagates attributes at
1129 // template specialization definition, not declaration.
1130 //QualType ReturnType;
1131 //
1132 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1133 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1134 //
1135 //} else {
1136 //
1137 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1138 //}
1139 //
1140 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1141 //
1142 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1143 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1144 // ReturnType.getAsString();
1145 // return;
1146 //}
1147
1148 D->addAttr(::new (S.Context)
1149 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1150 Attr.getAttributeSpellingListIndex()));
1151}
1152
Chandler Carruth1b03c872011-07-02 00:01:44 +00001153static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1154 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001155 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1156 if (TD == 0) {
1157 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1158 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001159 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001160 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001161 }
Mike Stumpbf916502009-07-24 19:02:52 +00001162
Richard Smitha4fa9002013-01-13 02:11:23 +00001163 // Remember this typedef decl, we will need it later for diagnostics.
1164 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001165}
1166
Chandler Carruth1b03c872011-07-02 00:01:44 +00001167static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001168 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001169 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001170 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001171
Chandler Carruth87c44602011-07-01 23:49:12 +00001172 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001173 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001174 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001175 // If the alignment is less than or equal to 8 bits, the packed attribute
1176 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001177 if (!FD->getType()->isDependentType() &&
1178 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001179 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001180 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001181 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001182 else
Michael Han51d8c522013-01-24 16:46:58 +00001183 FD->addAttr(::new (S.Context)
1184 PackedAttr(Attr.getRange(), S.Context,
1185 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001186 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001187 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001188}
1189
Chandler Carruth1b03c872011-07-02 00:01:44 +00001190static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001191 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001192 RD->addAttr(::new (S.Context)
1193 MsStructAttr(Attr.getRange(), S.Context,
1194 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001195 else
1196 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1197}
1198
Chandler Carruth1b03c872011-07-02 00:01:44 +00001199static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +00001200 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001201 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +00001202 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001203
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001204 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001205 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001206 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001207 D->addAttr(::new (S.Context)
1208 IBActionAttr(Attr.getRange(), S.Context,
1209 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001210 return;
1211 }
1212
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001213 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001214}
1215
Ted Kremenek2f041d02011-09-29 07:02:25 +00001216static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1217 // The IBOutlet/IBOutletCollection attributes only apply to instance
1218 // variables or properties of Objective-C classes. The outlet must also
1219 // have an object reference type.
1220 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1221 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001222 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001223 << Attr.getName() << VD->getType() << 0;
1224 return false;
1225 }
1226 }
1227 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1228 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001229 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001230 << Attr.getName() << PD->getType() << 1;
1231 return false;
1232 }
1233 }
1234 else {
1235 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1236 return false;
1237 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001238
Ted Kremenek2f041d02011-09-29 07:02:25 +00001239 return true;
1240}
1241
Chandler Carruth1b03c872011-07-02 00:01:44 +00001242static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001243 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001244 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001245 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001246
1247 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001248 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001249
Michael Han51d8c522013-01-24 16:46:58 +00001250 D->addAttr(::new (S.Context)
1251 IBOutletAttr(Attr.getRange(), S.Context,
1252 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001253}
1254
Chandler Carruth1b03c872011-07-02 00:01:44 +00001255static void handleIBOutletCollection(Sema &S, Decl *D,
1256 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001257
1258 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001259 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001260 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1261 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001262 return;
1263 }
1264
Ted Kremenek2f041d02011-09-29 07:02:25 +00001265 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001266 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001267
Aaron Ballman624421f2013-08-31 01:11:41 +00001268 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1269 IdentifierInfo *II;
1270 SourceLocation ILS;
1271 if (IL) {
1272 II = IL->Ident;
1273 ILS = IL->Loc;
1274 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001275 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001276 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001277
John McCallb3d87482010-08-24 05:47:05 +00001278 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001279 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001280 if (!TypeRep) {
1281 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1282 return;
1283 }
John McCallb3d87482010-08-24 05:47:05 +00001284 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001285 // Diagnose use of non-object type in iboutletcollection attribute.
1286 // FIXME. Gnu attribute extension ignores use of builtin types in
1287 // attributes. So, __attribute__((iboutletcollection(char))) will be
1288 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001289 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001290 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1291 return;
1292 }
Michael Han51d8c522013-01-24 16:46:58 +00001293 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001294 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001295 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001296}
1297
Chandler Carruthd309c812011-07-01 23:49:16 +00001298static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001299 if (const RecordType *UT = T->getAsUnionType())
1300 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1301 RecordDecl *UD = UT->getDecl();
1302 for (RecordDecl::field_iterator it = UD->field_begin(),
1303 itend = UD->field_end(); it != itend; ++it) {
1304 QualType QT = it->getType();
1305 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1306 T = QT;
1307 return;
1308 }
1309 }
1310 }
1311}
1312
Nuno Lopes587de5b2012-05-24 00:22:00 +00001313static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001314 if (!isFunctionOrMethod(D)) {
1315 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001316 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001317 return;
1318 }
1319
Nuno Lopes587de5b2012-05-24 00:22:00 +00001320 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1321 return;
1322
Nuno Lopes587de5b2012-05-24 00:22:00 +00001323 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001324 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001325 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001326 uint64_t Idx;
1327 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1328 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001329 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001330
1331 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001332 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001333 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001334 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1335 << Attr.getName() << AANT_ArgumentIntegerConstant
1336 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001337 return;
1338 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001339 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001340 }
1341
1342 // check if the function returns a pointer
1343 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1344 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001345 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001346 }
1347
Michael Han51d8c522013-01-24 16:46:58 +00001348 D->addAttr(::new (S.Context)
1349 AllocSizeAttr(Attr.getRange(), S.Context,
1350 SizeArgs.data(), SizeArgs.size(),
1351 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001352}
1353
Chandler Carruth1b03c872011-07-02 00:01:44 +00001354static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001355 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1356 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001357 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001358 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001359 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001360 return;
1361 }
Mike Stumpbf916502009-07-24 19:02:52 +00001362
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001363 SmallVector<unsigned, 8> NonNullArgs;
1364 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001365 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001366 uint64_t Idx;
1367 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1368 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001369 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001370
1371 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001372 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001373 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001374
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001375 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001376 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001377 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001378 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001379 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001380 }
Mike Stumpbf916502009-07-24 19:02:52 +00001381
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001382 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001383 }
Mike Stumpbf916502009-07-24 19:02:52 +00001384
1385 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1386 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001387 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001388 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1389 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001390 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001391 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001392 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001393 }
Mike Stumpbf916502009-07-24 19:02:52 +00001394
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001395 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001396 if (NonNullArgs.empty()) {
1397 // Warn the trivial case only if attribute is not coming from a
1398 // macro instantiation.
1399 if (Attr.getLoc().isFileID())
1400 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001401 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001402 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001403 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001404
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001405 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001406 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001407 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001408 D->addAttr(::new (S.Context)
1409 NonNullAttr(Attr.getRange(), S.Context, start, size,
1410 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001411}
1412
Chandler Carruth1b03c872011-07-02 00:01:44 +00001413static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001414 // This attribute must be applied to a function declaration.
1415 // The first argument to the attribute must be a string,
1416 // the name of the resource, for example "malloc".
1417 // The following arguments must be argument indexes, the arguments must be
1418 // of integer type for Returns, otherwise of pointer type.
1419 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001420 // after being held. free() should be __attribute((ownership_takes)), whereas
1421 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001422
Aaron Ballman624421f2013-08-31 01:11:41 +00001423 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001424 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001425 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001426 return;
1427 }
1428 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001429 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001430 switch (AL.getKind()) {
1431 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001432 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001433 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001434 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1435 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001436 return;
1437 }
Jordy Rose2a479922010-08-12 08:54:03 +00001438 break;
1439 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001440 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001441 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001442 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1443 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001444 return;
1445 }
Jordy Rose2a479922010-08-12 08:54:03 +00001446 break;
1447 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001448 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001449 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001450 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001451 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001452 return;
1453 }
Jordy Rose2a479922010-08-12 08:54:03 +00001454 break;
1455 default:
1456 // This should never happen given how we are called.
1457 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001458 }
1459
Chandler Carruth87c44602011-07-01 23:49:12 +00001460 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001461 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1462 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001463 return;
1464 }
1465
Aaron Ballman624421f2013-08-31 01:11:41 +00001466 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001467
1468 // Normalize the argument, __foo__ becomes foo.
1469 if (Module.startswith("__") && Module.endswith("__"))
1470 Module = Module.substr(2, Module.size() - 4);
1471
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001472
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001473 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001474 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1475 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001476 uint64_t Idx;
1477 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001478 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001479 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001480
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001481 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001482 case OwnershipAttr::Takes:
1483 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001484 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001485 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001486 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1487 // FIXME: Should also highlight argument in decl.
1488 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001489 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001490 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001491 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001492 continue;
1493 }
1494 break;
1495 }
Sean Huntcf807c42010-08-18 23:23:40 +00001496 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001497 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001498 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001499 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001500 llvm::APSInt ArgNum(32);
1501 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1502 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1503 S.Diag(AL.getLoc(), diag::err_ownership_type)
1504 << "ownership_returns" << "integer"
1505 << IdxExpr->getSourceRange();
1506 return;
1507 }
1508 }
1509 break;
1510 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001511 } // switch
1512
1513 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001514 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001515 i = D->specific_attr_begin<OwnershipAttr>(),
1516 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001517 i != e; ++i) {
1518 if ((*i)->getOwnKind() != K) {
1519 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1520 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001521 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001522 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1523 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001524 }
1525 }
1526 }
1527 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001528 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001529 }
1530
1531 unsigned* start = OwnershipArgs.data();
1532 unsigned size = OwnershipArgs.size();
1533 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001534
1535 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001536 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1537 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001538 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001539 }
Sean Huntcf807c42010-08-18 23:23:40 +00001540
Michael Han51d8c522013-01-24 16:46:58 +00001541 D->addAttr(::new (S.Context)
1542 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1543 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001544}
1545
Chandler Carruth1b03c872011-07-02 00:01:44 +00001546static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001547 // Check the attribute arguments.
1548 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001549 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1550 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001551 return;
1552 }
1553
Chandler Carruth87c44602011-07-01 23:49:12 +00001554 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001555 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001556 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001557 return;
1558 }
1559
Chandler Carruth87c44602011-07-01 23:49:12 +00001560 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001561
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001562 // gcc rejects
1563 // class c {
1564 // static int a __attribute__((weakref ("v2")));
1565 // static int b() __attribute__((weakref ("f3")));
1566 // };
1567 // and ignores the attributes of
1568 // void f(void) {
1569 // static int a __attribute__((weakref ("v2")));
1570 // }
1571 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001572 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001573 if (!Ctx->isFileContext()) {
1574 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001575 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001576 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001577 }
1578
1579 // The GCC manual says
1580 //
1581 // At present, a declaration to which `weakref' is attached can only
1582 // be `static'.
1583 //
1584 // It also says
1585 //
1586 // Without a TARGET,
1587 // given as an argument to `weakref' or to `alias', `weakref' is
1588 // equivalent to `weak'.
1589 //
1590 // gcc 4.4.1 will accept
1591 // int a7 __attribute__((weakref));
1592 // as
1593 // int a7 __attribute__((weak));
1594 // This looks like a bug in gcc. We reject that for now. We should revisit
1595 // it if this behaviour is actually used.
1596
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001597 // GCC rejects
1598 // static ((alias ("y"), weakref)).
1599 // Should we? How to check that weakref is before or after alias?
1600
Aaron Ballman624421f2013-08-31 01:11:41 +00001601 if (Attr.isArgExpr(0)) {
1602 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001603 Arg = Arg->IgnoreParenCasts();
1604 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1605
Douglas Gregor5cee1192011-07-27 05:40:30 +00001606 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001607 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001608 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001609 return;
1610 }
1611 // GCC will accept anything as the argument of weakref. Should we
1612 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001613 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001614 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001615 }
1616
Michael Han51d8c522013-01-24 16:46:58 +00001617 D->addAttr(::new (S.Context)
1618 WeakRefAttr(Attr.getRange(), S.Context,
1619 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001620}
1621
Chandler Carruth1b03c872011-07-02 00:01:44 +00001622static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001623 // check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001624 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001625 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001626
Aaron Ballman624421f2013-08-31 01:11:41 +00001627 StringLiteral *Str = 0;
1628 if (Attr.isArgExpr(0))
1629 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00001630
Douglas Gregor5cee1192011-07-27 05:40:30 +00001631 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001632 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1633 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001634 return;
1635 }
Mike Stumpbf916502009-07-24 19:02:52 +00001636
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001637 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001638 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1639 return;
1640 }
1641
Chris Lattner6b6b5372008-06-26 18:38:35 +00001642 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001643
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001644 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001645 Str->getString(),
1646 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001647}
1648
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001649static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1650 // Check the attribute arguments.
1651 if (!checkAttributeNumArgs(S, Attr, 0))
1652 return;
1653
1654 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1655 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1656 << Attr.getName() << ExpectedFunctionOrMethod;
1657 return;
1658 }
1659
Michael Han51d8c522013-01-24 16:46:58 +00001660 D->addAttr(::new (S.Context)
1661 MinSizeAttr(Attr.getRange(), S.Context,
1662 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001663}
1664
Benjamin Krameree409a92012-05-12 21:10:52 +00001665static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1666 // Check the attribute arguments.
1667 if (!checkAttributeNumArgs(S, Attr, 0))
1668 return;
1669
1670 if (!isa<FunctionDecl>(D)) {
1671 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1672 << Attr.getName() << ExpectedFunction;
1673 return;
1674 }
1675
1676 if (D->hasAttr<HotAttr>()) {
1677 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1678 << Attr.getName() << "hot";
1679 return;
1680 }
1681
Michael Han51d8c522013-01-24 16:46:58 +00001682 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1683 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001684}
1685
1686static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1687 // Check the attribute arguments.
1688 if (!checkAttributeNumArgs(S, Attr, 0))
1689 return;
1690
1691 if (!isa<FunctionDecl>(D)) {
1692 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1693 << Attr.getName() << ExpectedFunction;
1694 return;
1695 }
1696
1697 if (D->hasAttr<ColdAttr>()) {
1698 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1699 << Attr.getName() << "cold";
1700 return;
1701 }
1702
Michael Han51d8c522013-01-24 16:46:58 +00001703 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1704 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001705}
1706
Chandler Carruth1b03c872011-07-02 00:01:44 +00001707static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001708 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001709 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001710 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001711
Chandler Carruth87c44602011-07-01 23:49:12 +00001712 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001713 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001714 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001715 return;
1716 }
1717
Michael Han51d8c522013-01-24 16:46:58 +00001718 D->addAttr(::new (S.Context)
1719 NakedAttr(Attr.getRange(), S.Context,
1720 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001721}
1722
Chandler Carruth1b03c872011-07-02 00:01:44 +00001723static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1724 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001725 // Check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001726 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001727 return;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001728
Chandler Carruth87c44602011-07-01 23:49:12 +00001729 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001730 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001731 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001732 return;
1733 }
Mike Stumpbf916502009-07-24 19:02:52 +00001734
Michael Han51d8c522013-01-24 16:46:58 +00001735 D->addAttr(::new (S.Context)
1736 AlwaysInlineAttr(Attr.getRange(), S.Context,
1737 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001738}
1739
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001740static void handleTLSModelAttr(Sema &S, Decl *D,
1741 const AttributeList &Attr) {
1742 // Check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001743 if (!checkAttributeNumArgs(S, Attr, 1))
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001744 return;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001745
Aaron Ballman624421f2013-08-31 01:11:41 +00001746 Expr *Arg = Attr.getArgAsExpr(0);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001747 Arg = Arg->IgnoreParenCasts();
1748 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1749
1750 // Check that it is a string.
1751 if (!Str) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001752 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1753 << Attr.getName() << AANT_ArgumentString;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001754 return;
1755 }
1756
Richard Smith38afbc72013-04-13 02:43:54 +00001757 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001758 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1759 << Attr.getName() << ExpectedTLSVar;
1760 return;
1761 }
1762
1763 // Check that the value.
1764 StringRef Model = Str->getString();
1765 if (Model != "global-dynamic" && Model != "local-dynamic"
1766 && Model != "initial-exec" && Model != "local-exec") {
1767 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1768 return;
1769 }
1770
Michael Han51d8c522013-01-24 16:46:58 +00001771 D->addAttr(::new (S.Context)
1772 TLSModelAttr(Attr.getRange(), S.Context, Model,
1773 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001774}
1775
Chandler Carruth1b03c872011-07-02 00:01:44 +00001776static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001777 // Check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001778 if (!checkAttributeNumArgs(S, Attr, 0))
Ryan Flynn76168e22009-08-09 20:07:29 +00001779 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001780
Chandler Carruth87c44602011-07-01 23:49:12 +00001781 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001782 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001783 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001784 D->addAttr(::new (S.Context)
1785 MallocAttr(Attr.getRange(), S.Context,
1786 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001787 return;
1788 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001789 }
1790
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001791 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001792}
1793
Chandler Carruth1b03c872011-07-02 00:01:44 +00001794static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001795 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001796 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001797 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001798
Michael Han51d8c522013-01-24 16:46:58 +00001799 D->addAttr(::new (S.Context)
1800 MayAliasAttr(Attr.getRange(), S.Context,
1801 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001802}
1803
Chandler Carruth1b03c872011-07-02 00:01:44 +00001804static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001805 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001806 D->addAttr(::new (S.Context)
1807 NoCommonAttr(Attr.getRange(), S.Context,
1808 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001809 else
1810 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001811 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001812}
1813
Chandler Carruth1b03c872011-07-02 00:01:44 +00001814static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001815 if (S.LangOpts.CPlusPlus) {
1816 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1817 return;
1818 }
1819
Chandler Carruth87c44602011-07-01 23:49:12 +00001820 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001821 D->addAttr(::new (S.Context)
1822 CommonAttr(Attr.getRange(), S.Context,
1823 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001824 else
1825 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001826 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001827}
1828
Chandler Carruth1b03c872011-07-02 00:01:44 +00001829static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001830 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001831
1832 if (S.CheckNoReturnAttr(attr)) return;
1833
Chandler Carruth87c44602011-07-01 23:49:12 +00001834 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001835 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001836 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001837 return;
1838 }
1839
Michael Han51d8c522013-01-24 16:46:58 +00001840 D->addAttr(::new (S.Context)
1841 NoReturnAttr(attr.getRange(), S.Context,
1842 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001843}
1844
1845bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001846 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001847 attr.setInvalid();
1848 return true;
1849 }
1850
1851 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001852}
1853
Chandler Carruth1b03c872011-07-02 00:01:44 +00001854static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1855 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001856
1857 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1858 // because 'analyzer_noreturn' does not impact the type.
1859
Chandler Carruth1731e202011-07-11 23:30:35 +00001860 if(!checkAttributeNumArgs(S, Attr, 0))
1861 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001862
Chandler Carruth87c44602011-07-01 23:49:12 +00001863 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1864 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001865 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1866 && !VD->getType()->isFunctionPointerType())) {
1867 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001868 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001869 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001870 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001871 return;
1872 }
1873 }
1874
Michael Han51d8c522013-01-24 16:46:58 +00001875 D->addAttr(::new (S.Context)
1876 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1877 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001878}
1879
Richard Smithcd8ab512013-01-17 01:30:42 +00001880static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1881 const AttributeList &Attr) {
1882 // C++11 [dcl.attr.noreturn]p1:
1883 // The attribute may be applied to the declarator-id in a function
1884 // declaration.
1885 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1886 if (!FD) {
1887 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1888 << Attr.getName() << ExpectedFunctionOrMethod;
1889 return;
1890 }
1891
Michael Han51d8c522013-01-24 16:46:58 +00001892 D->addAttr(::new (S.Context)
1893 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1894 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001895}
1896
John Thompson35cc9622010-08-09 21:53:52 +00001897// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001898static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001899/*
1900 Returning a Vector Class in Registers
1901
Eric Christopherf48f3672010-12-01 22:13:54 +00001902 According to the PPU ABI specifications, a class with a single member of
1903 vector type is returned in memory when used as the return value of a function.
1904 This results in inefficient code when implementing vector classes. To return
1905 the value in a single vector register, add the vecreturn attribute to the
1906 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001907
1908 Example:
1909
1910 struct Vector
1911 {
1912 __vector float xyzw;
1913 } __attribute__((vecreturn));
1914
1915 Vector Add(Vector lhs, Vector rhs)
1916 {
1917 Vector result;
1918 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1919 return result; // This will be returned in a register
1920 }
1921*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001922 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001923 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001924 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001925 return;
1926 }
1927
Chandler Carruth87c44602011-07-01 23:49:12 +00001928 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001929 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1930 return;
1931 }
1932
Chandler Carruth87c44602011-07-01 23:49:12 +00001933 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001934 int count = 0;
1935
1936 if (!isa<CXXRecordDecl>(record)) {
1937 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1938 return;
1939 }
1940
1941 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1942 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1943 return;
1944 }
1945
Eric Christopherf48f3672010-12-01 22:13:54 +00001946 for (RecordDecl::field_iterator iter = record->field_begin();
1947 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001948 if ((count == 1) || !iter->getType()->isVectorType()) {
1949 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1950 return;
1951 }
1952 count++;
1953 }
1954
Michael Han51d8c522013-01-24 16:46:58 +00001955 D->addAttr(::new (S.Context)
1956 VecReturnAttr(Attr.getRange(), S.Context,
1957 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001958}
1959
Richard Smith3a2b7a12013-01-28 22:42:45 +00001960static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1961 const AttributeList &Attr) {
1962 if (isa<ParmVarDecl>(D)) {
1963 // [[carries_dependency]] can only be applied to a parameter if it is a
1964 // parameter of a function declaration or lambda.
1965 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1966 S.Diag(Attr.getLoc(),
1967 diag::err_carries_dependency_param_not_function_decl);
1968 return;
1969 }
1970 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001971 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001972 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001973 return;
1974 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001975
1976 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1977 Attr.getRange(), S.Context,
1978 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001979}
1980
Chandler Carruth1b03c872011-07-02 00:01:44 +00001981static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001982 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001983 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek73798892008-07-25 04:39:19 +00001984 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001985
Chandler Carruth87c44602011-07-01 23:49:12 +00001986 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001987 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001988 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001989 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001990 return;
1991 }
Mike Stumpbf916502009-07-24 19:02:52 +00001992
Michael Han51d8c522013-01-24 16:46:58 +00001993 D->addAttr(::new (S.Context)
1994 UnusedAttr(Attr.getRange(), S.Context,
1995 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001996}
1997
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001998static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1999 const AttributeList &Attr) {
2000 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00002001 if (!checkAttributeNumArgs(S, Attr, 0))
Rafael Espindolaf87cced2011-10-03 14:59:42 +00002002 return;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00002003
2004 if (!isa<FunctionDecl>(D)) {
2005 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2006 << Attr.getName() << ExpectedFunction;
2007 return;
2008 }
2009
Michael Han51d8c522013-01-24 16:46:58 +00002010 D->addAttr(::new (S.Context)
2011 ReturnsTwiceAttr(Attr.getRange(), S.Context,
2012 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00002013}
2014
Chandler Carruth1b03c872011-07-02 00:01:44 +00002015static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002016 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00002017 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002018 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002019
Chandler Carruth87c44602011-07-01 23:49:12 +00002020 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00002021 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002022 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
2023 return;
2024 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002025 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002026 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002027 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002028 return;
2029 }
Mike Stumpbf916502009-07-24 19:02:52 +00002030
Michael Han51d8c522013-01-24 16:46:58 +00002031 D->addAttr(::new (S.Context)
2032 UsedAttr(Attr.getRange(), S.Context,
2033 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002034}
2035
Chandler Carruth1b03c872011-07-02 00:01:44 +00002036static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002037 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00002038 if (Attr.getNumArgs() > 1) {
2039 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002040 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002041 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002042
2043 int priority = 65535; // FIXME: Do not hardcode such constants.
2044 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002045 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002046 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002047 if (E->isTypeDependent() || E->isValueDependent() ||
2048 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002049 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002050 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002051 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002052 return;
2053 }
2054 priority = Idx.getZExtValue();
2055 }
Mike Stumpbf916502009-07-24 19:02:52 +00002056
Chandler Carruth87c44602011-07-01 23:49:12 +00002057 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002058 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002059 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002060 return;
2061 }
2062
Michael Han51d8c522013-01-24 16:46:58 +00002063 D->addAttr(::new (S.Context)
2064 ConstructorAttr(Attr.getRange(), S.Context, priority,
2065 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002066}
2067
Chandler Carruth1b03c872011-07-02 00:01:44 +00002068static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002069 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00002070 if (Attr.getNumArgs() > 1) {
2071 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002072 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002073 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002074
2075 int priority = 65535; // FIXME: Do not hardcode such constants.
2076 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002077 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002078 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002079 if (E->isTypeDependent() || E->isValueDependent() ||
2080 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002081 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002082 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002083 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002084 return;
2085 }
2086 priority = Idx.getZExtValue();
2087 }
Mike Stumpbf916502009-07-24 19:02:52 +00002088
Chandler Carruth87c44602011-07-01 23:49:12 +00002089 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002090 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002091 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002092 return;
2093 }
2094
Michael Han51d8c522013-01-24 16:46:58 +00002095 D->addAttr(::new (S.Context)
2096 DestructorAttr(Attr.getRange(), S.Context, priority,
2097 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002098}
2099
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002100template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002101static void handleAttrWithMessage(Sema &S, Decl *D,
2102 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002103 unsigned NumArgs = Attr.getNumArgs();
2104 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002105 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002106 return;
2107 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002108
2109 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002110 StringRef Str;
Aaron Ballman624421f2013-08-31 01:11:41 +00002111 if (Attr.isArgExpr(0)) {
2112 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002113 if (!SE) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002114 S.Diag(Attr.getArgAsExpr(0)->getLocStart(),
2115 diag::err_attribute_argument_type) << Attr.getName()
2116 << AANT_ArgumentString;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002117 return;
2118 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002119 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002120 }
Mike Stumpbf916502009-07-24 19:02:52 +00002121
Michael Han51d8c522013-01-24 16:46:58 +00002122 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2123 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002124}
2125
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002126static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2127 const AttributeList &Attr) {
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002128 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002129 return;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002130
Michael Han51d8c522013-01-24 16:46:58 +00002131 D->addAttr(::new (S.Context)
2132 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2133 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002134}
2135
Patrick Beardb2f68202012-04-06 18:12:22 +00002136static void handleObjCRootClassAttr(Sema &S, Decl *D,
2137 const AttributeList &Attr) {
2138 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002139 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2140 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002141 return;
2142 }
2143
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002144 if (!checkAttributeNumArgs(S, Attr, 0))
Patrick Beardb2f68202012-04-06 18:12:22 +00002145 return;
Patrick Beardb2f68202012-04-06 18:12:22 +00002146
Michael Han51d8c522013-01-24 16:46:58 +00002147 D->addAttr(::new (S.Context)
2148 ObjCRootClassAttr(Attr.getRange(), S.Context,
2149 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002150}
2151
Michael Han51d8c522013-01-24 16:46:58 +00002152static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2153 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002154 if (!isa<ObjCInterfaceDecl>(D)) {
2155 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2156 return;
2157 }
2158
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002159 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002160 return;
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002161
Michael Han51d8c522013-01-24 16:46:58 +00002162 D->addAttr(::new (S.Context)
2163 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2164 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002165}
2166
Jordy Rosefad5de92012-05-08 03:27:22 +00002167static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2168 IdentifierInfo *Platform,
2169 VersionTuple Introduced,
2170 VersionTuple Deprecated,
2171 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002172 StringRef PlatformName
2173 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2174 if (PlatformName.empty())
2175 PlatformName = Platform->getName();
2176
2177 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2178 // of these steps are needed).
2179 if (!Introduced.empty() && !Deprecated.empty() &&
2180 !(Introduced <= Deprecated)) {
2181 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2182 << 1 << PlatformName << Deprecated.getAsString()
2183 << 0 << Introduced.getAsString();
2184 return true;
2185 }
2186
2187 if (!Introduced.empty() && !Obsoleted.empty() &&
2188 !(Introduced <= Obsoleted)) {
2189 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2190 << 2 << PlatformName << Obsoleted.getAsString()
2191 << 0 << Introduced.getAsString();
2192 return true;
2193 }
2194
2195 if (!Deprecated.empty() && !Obsoleted.empty() &&
2196 !(Deprecated <= Obsoleted)) {
2197 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2198 << 2 << PlatformName << Obsoleted.getAsString()
2199 << 1 << Deprecated.getAsString();
2200 return true;
2201 }
2202
2203 return false;
2204}
2205
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002206/// \brief Check whether the two versions match.
2207///
2208/// If either version tuple is empty, then they are assumed to match. If
2209/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2210static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2211 bool BeforeIsOkay) {
2212 if (X.empty() || Y.empty())
2213 return true;
2214
2215 if (X == Y)
2216 return true;
2217
2218 if (BeforeIsOkay && X < Y)
2219 return true;
2220
2221 return false;
2222}
2223
Rafael Espindola51be6e32013-01-08 22:04:34 +00002224AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002225 IdentifierInfo *Platform,
2226 VersionTuple Introduced,
2227 VersionTuple Deprecated,
2228 VersionTuple Obsoleted,
2229 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002230 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002231 bool Override,
2232 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002233 VersionTuple MergedIntroduced = Introduced;
2234 VersionTuple MergedDeprecated = Deprecated;
2235 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002236 bool FoundAny = false;
2237
Rafael Espindola98ae8342012-05-10 02:50:16 +00002238 if (D->hasAttrs()) {
2239 AttrVec &Attrs = D->getAttrs();
2240 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2241 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2242 if (!OldAA) {
2243 ++i;
2244 continue;
2245 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002246
Rafael Espindola98ae8342012-05-10 02:50:16 +00002247 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2248 if (OldPlatform != Platform) {
2249 ++i;
2250 continue;
2251 }
2252
2253 FoundAny = true;
2254 VersionTuple OldIntroduced = OldAA->getIntroduced();
2255 VersionTuple OldDeprecated = OldAA->getDeprecated();
2256 VersionTuple OldObsoleted = OldAA->getObsoleted();
2257 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002258
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002259 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2260 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2261 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2262 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002263 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002264 if (Override) {
2265 int Which = -1;
2266 VersionTuple FirstVersion;
2267 VersionTuple SecondVersion;
2268 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2269 Which = 0;
2270 FirstVersion = OldIntroduced;
2271 SecondVersion = Introduced;
2272 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2273 Which = 1;
2274 FirstVersion = Deprecated;
2275 SecondVersion = OldDeprecated;
2276 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2277 Which = 2;
2278 FirstVersion = Obsoleted;
2279 SecondVersion = OldObsoleted;
2280 }
2281
2282 if (Which == -1) {
2283 Diag(OldAA->getLocation(),
2284 diag::warn_mismatched_availability_override_unavail)
2285 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2286 } else {
2287 Diag(OldAA->getLocation(),
2288 diag::warn_mismatched_availability_override)
2289 << Which
2290 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2291 << FirstVersion.getAsString() << SecondVersion.getAsString();
2292 }
2293 Diag(Range.getBegin(), diag::note_overridden_method);
2294 } else {
2295 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2296 Diag(Range.getBegin(), diag::note_previous_attribute);
2297 }
2298
Rafael Espindola98ae8342012-05-10 02:50:16 +00002299 Attrs.erase(Attrs.begin() + i);
2300 --e;
2301 continue;
2302 }
2303
2304 VersionTuple MergedIntroduced2 = MergedIntroduced;
2305 VersionTuple MergedDeprecated2 = MergedDeprecated;
2306 VersionTuple MergedObsoleted2 = MergedObsoleted;
2307
2308 if (MergedIntroduced2.empty())
2309 MergedIntroduced2 = OldIntroduced;
2310 if (MergedDeprecated2.empty())
2311 MergedDeprecated2 = OldDeprecated;
2312 if (MergedObsoleted2.empty())
2313 MergedObsoleted2 = OldObsoleted;
2314
2315 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2316 MergedIntroduced2, MergedDeprecated2,
2317 MergedObsoleted2)) {
2318 Attrs.erase(Attrs.begin() + i);
2319 --e;
2320 continue;
2321 }
2322
2323 MergedIntroduced = MergedIntroduced2;
2324 MergedDeprecated = MergedDeprecated2;
2325 MergedObsoleted = MergedObsoleted2;
2326 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002327 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002328 }
2329
2330 if (FoundAny &&
2331 MergedIntroduced == Introduced &&
2332 MergedDeprecated == Deprecated &&
2333 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002334 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002335
Ted Kremenekcb344392013-04-06 00:34:27 +00002336 // Only create a new attribute if !Override, but we want to do
2337 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002338 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002339 MergedDeprecated, MergedObsoleted) &&
2340 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002341 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2342 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002343 Obsoleted, IsUnavailable, Message,
2344 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002345 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002346 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002347}
2348
Chandler Carruth1b03c872011-07-02 00:01:44 +00002349static void handleAvailabilityAttr(Sema &S, Decl *D,
2350 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002351 if (!checkAttributeNumArgs(S, Attr, 1))
2352 return;
2353 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002354 unsigned Index = Attr.getAttributeSpellingListIndex();
2355
Aaron Ballman624421f2013-08-31 01:11:41 +00002356 IdentifierInfo *II = Platform->Ident;
2357 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2358 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2359 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002360
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002361 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2362 if (!ND) {
2363 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2364 return;
2365 }
2366
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002367 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2368 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2369 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002370 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002371 StringRef Str;
2372 const StringLiteral *SE =
2373 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2374 if (SE)
2375 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002376
Aaron Ballman624421f2013-08-31 01:11:41 +00002377 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002378 Introduced.Version,
2379 Deprecated.Version,
2380 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002381 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002382 /*Override=*/false,
2383 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002384 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002385 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002386}
2387
John McCalld4c3d662013-02-20 01:54:26 +00002388template <class T>
2389static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2390 typename T::VisibilityType value,
2391 unsigned attrSpellingListIndex) {
2392 T *existingAttr = D->getAttr<T>();
2393 if (existingAttr) {
2394 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2395 if (existingValue == value)
2396 return NULL;
2397 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2398 S.Diag(range.getBegin(), diag::note_previous_attribute);
2399 D->dropAttr<T>();
2400 }
2401 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2402}
2403
Rafael Espindola599f1b72012-05-13 03:25:18 +00002404VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002405 VisibilityAttr::VisibilityType Vis,
2406 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002407 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2408 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002409}
2410
John McCalld4c3d662013-02-20 01:54:26 +00002411TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2412 TypeVisibilityAttr::VisibilityType Vis,
2413 unsigned AttrSpellingListIndex) {
2414 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2415 AttrSpellingListIndex);
2416}
2417
2418static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2419 bool isTypeVisibility) {
2420 // Visibility attributes don't mean anything on a typedef.
2421 if (isa<TypedefNameDecl>(D)) {
2422 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2423 << Attr.getName();
2424 return;
2425 }
2426
2427 // 'type_visibility' can only go on a type or namespace.
2428 if (isTypeVisibility &&
2429 !(isa<TagDecl>(D) ||
2430 isa<ObjCInterfaceDecl>(D) ||
2431 isa<NamespaceDecl>(D))) {
2432 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2433 << Attr.getName() << ExpectedTypeOrNamespace;
2434 return;
2435 }
2436
Chris Lattner6b6b5372008-06-26 18:38:35 +00002437 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002438 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002439 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002440
Benjamin Kramerae3a83f2013-09-09 15:08:57 +00002441 // Check that the argument is a string literal.
2442 StringLiteral *Str = 0;
2443 if (Attr.isArgExpr(0))
2444 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00002445
Douglas Gregor5cee1192011-07-27 05:40:30 +00002446 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002447 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2448 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002449 return;
2450 }
Mike Stumpbf916502009-07-24 19:02:52 +00002451
Chris Lattner5f9e2722011-07-23 10:55:15 +00002452 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002453 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002454
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002455 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002456 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002457 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002458 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002459 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002460 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002461 else if (TypeStr == "protected") {
2462 // Complain about attempts to use protected visibility on targets
2463 // (like Darwin) that don't support it.
2464 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2465 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2466 type = VisibilityAttr::Default;
2467 } else {
2468 type = VisibilityAttr::Protected;
2469 }
2470 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002471 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002472 return;
2473 }
Mike Stumpbf916502009-07-24 19:02:52 +00002474
Michael Han51d8c522013-01-24 16:46:58 +00002475 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002476 clang::Attr *newAttr;
2477 if (isTypeVisibility) {
2478 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2479 (TypeVisibilityAttr::VisibilityType) type,
2480 Index);
2481 } else {
2482 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2483 }
2484 if (newAttr)
2485 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002486}
2487
Chandler Carruth1b03c872011-07-02 00:01:44 +00002488static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2489 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002490 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2491 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002492 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002493 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002494 return;
2495 }
2496
Aaron Ballman624421f2013-08-31 01:11:41 +00002497 if (!Attr.isArgIdent(0)) {
2498 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2499 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002500 return;
2501 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002502
2503 if (!checkAttributeNumArgs(S, Attr, 1))
2504 return;
John McCalld5313b02011-03-02 11:33:24 +00002505
Aaron Ballman624421f2013-08-31 01:11:41 +00002506 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2507
2508 StringRef param = IL->Ident->getName();
John McCalld5313b02011-03-02 11:33:24 +00002509 ObjCMethodFamilyAttr::FamilyKind family;
2510 if (param == "none")
2511 family = ObjCMethodFamilyAttr::OMF_None;
2512 else if (param == "alloc")
2513 family = ObjCMethodFamilyAttr::OMF_alloc;
2514 else if (param == "copy")
2515 family = ObjCMethodFamilyAttr::OMF_copy;
2516 else if (param == "init")
2517 family = ObjCMethodFamilyAttr::OMF_init;
2518 else if (param == "mutableCopy")
2519 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2520 else if (param == "new")
2521 family = ObjCMethodFamilyAttr::OMF_new;
2522 else {
2523 // Just warn and ignore it. This is future-proof against new
2524 // families being used in system headers.
Aaron Ballman624421f2013-08-31 01:11:41 +00002525 S.Diag(IL->Loc, diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002526 return;
2527 }
2528
John McCallf85e1932011-06-15 23:02:42 +00002529 if (family == ObjCMethodFamilyAttr::OMF_init &&
2530 !method->getResultType()->isObjCObjectPointerType()) {
2531 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2532 << method->getResultType();
2533 // Ignore the attribute.
2534 return;
2535 }
2536
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002537 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002538 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002539}
2540
Chandler Carruth1b03c872011-07-02 00:01:44 +00002541static void handleObjCExceptionAttr(Sema &S, Decl *D,
2542 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002543 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002544 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002545
Chris Lattner0db29ec2009-02-14 08:09:34 +00002546 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2547 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002548 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2549 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002550 return;
2551 }
Mike Stumpbf916502009-07-24 19:02:52 +00002552
Michael Han51d8c522013-01-24 16:46:58 +00002553 D->addAttr(::new (S.Context)
2554 ObjCExceptionAttr(Attr.getRange(), S.Context,
2555 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002556}
2557
Chandler Carruth1b03c872011-07-02 00:01:44 +00002558static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002559 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002560 return;
Richard Smith162e1c12011-04-15 14:24:37 +00002561 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002562 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002563 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002564 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2565 return;
2566 }
2567 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002568 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2569 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002570 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002571 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2572 return;
2573 }
2574 }
2575 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002576 // It is okay to include this attribute on properties, e.g.:
2577 //
2578 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2579 //
2580 // In this case it follows tradition and suppresses an error in the above
2581 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002582 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002583 }
Michael Han51d8c522013-01-24 16:46:58 +00002584 D->addAttr(::new (S.Context)
2585 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2586 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002587}
2588
Mike Stumpbf916502009-07-24 19:02:52 +00002589static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002590handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002591 if (!checkAttributeNumArgs(S, Attr, 0))
Douglas Gregorf9201e02009-02-11 23:02:49 +00002592 return;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002593
2594 if (!isa<FunctionDecl>(D)) {
2595 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2596 return;
2597 }
2598
Michael Han51d8c522013-01-24 16:46:58 +00002599 D->addAttr(::new (S.Context)
2600 OverloadableAttr(Attr.getRange(), S.Context,
2601 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002602}
2603
Chandler Carruth1b03c872011-07-02 00:01:44 +00002604static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002605 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002606 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002607 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002608 return;
2609 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002610
2611 if (!checkAttributeNumArgs(S, Attr, 1))
Steve Naroff9eae5762008-09-18 16:44:58 +00002612 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002613
Aaron Ballman624421f2013-08-31 01:11:41 +00002614 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002615 BlocksAttr::BlockType type;
Aaron Ballman624421f2013-08-31 01:11:41 +00002616 if (II->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002617 type = BlocksAttr::ByRef;
2618 else {
Aaron Ballman624421f2013-08-31 01:11:41 +00002619 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) << "blocks"
2620 << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002621 return;
2622 }
Mike Stumpbf916502009-07-24 19:02:52 +00002623
Michael Han51d8c522013-01-24 16:46:58 +00002624 D->addAttr(::new (S.Context)
2625 BlocksAttr(Attr.getRange(), S.Context, type,
2626 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002627}
2628
Chandler Carruth1b03c872011-07-02 00:01:44 +00002629static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002630 // check the attribute arguments.
2631 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002632 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002633 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002634 }
2635
John McCall3323fad2011-09-09 07:56:05 +00002636 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002637 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002638 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002639 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002640 if (E->isTypeDependent() || E->isValueDependent() ||
2641 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002642 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002643 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002644 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002645 return;
2646 }
Mike Stumpbf916502009-07-24 19:02:52 +00002647
John McCall3323fad2011-09-09 07:56:05 +00002648 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002649 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2650 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002651 return;
2652 }
John McCall3323fad2011-09-09 07:56:05 +00002653
2654 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002655 }
2656
John McCall3323fad2011-09-09 07:56:05 +00002657 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002658 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002659 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002660 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002661 if (E->isTypeDependent() || E->isValueDependent() ||
2662 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002663 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002664 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002665 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002666 return;
2667 }
2668 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002669
John McCall3323fad2011-09-09 07:56:05 +00002670 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002671 // FIXME: This error message could be improved, it would be nice
2672 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002673 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2674 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002675 return;
2676 }
2677 }
2678
Chandler Carruth87c44602011-07-01 23:49:12 +00002679 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002680 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002681 if (isa<FunctionNoProtoType>(FT)) {
2682 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2683 return;
2684 }
Mike Stumpbf916502009-07-24 19:02:52 +00002685
Chris Lattner897cd902009-03-17 23:03:47 +00002686 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002687 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002688 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002689 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002690 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002691 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002692 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002693 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002694 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002695 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2696 if (!BD->isVariadic()) {
2697 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2698 return;
2699 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002700 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002701 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002702 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002703 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002704 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002705 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002706 int m = Ty->isFunctionPointerType() ? 0 : 1;
2707 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002708 return;
2709 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002710 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002711 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002712 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002713 return;
2714 }
Anders Carlsson77091822008-10-05 18:05:59 +00002715 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002716 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002717 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002718 return;
2719 }
Michael Han51d8c522013-01-24 16:46:58 +00002720 D->addAttr(::new (S.Context)
2721 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2722 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002723}
2724
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002725static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2726 // Check the attribute arguments.
2727 if (!checkAttributeNumArgs(S, Attr, 0))
2728 return;
2729
2730 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2731 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2732 else
2733 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2734}
2735
Chandler Carruth1b03c872011-07-02 00:01:44 +00002736static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002737 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002738 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002739 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002740
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002741 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002742 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002743 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002744 return;
2745 }
Mike Stumpbf916502009-07-24 19:02:52 +00002746
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002747 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2748 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2749 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002750 return;
2751 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002752 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2753 if (MD->getResultType()->isVoidType()) {
2754 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2755 << Attr.getName() << 1;
2756 return;
2757 }
2758
Michael Han51d8c522013-01-24 16:46:58 +00002759 D->addAttr(::new (S.Context)
2760 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2761 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002762}
2763
Chandler Carruth1b03c872011-07-02 00:01:44 +00002764static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002765 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00002766 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002767 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002768
Chandler Carruth87c44602011-07-01 23:49:12 +00002769 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002770 if (isa<CXXRecordDecl>(D)) {
2771 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2772 return;
2773 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002774 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2775 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002776 return;
2777 }
2778
Chandler Carruth87c44602011-07-01 23:49:12 +00002779 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002780
Michael Han51d8c522013-01-24 16:46:58 +00002781 nd->addAttr(::new (S.Context)
2782 WeakAttr(Attr.getRange(), S.Context,
2783 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002784}
2785
Chandler Carruth1b03c872011-07-02 00:01:44 +00002786static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002787 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002788 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002789 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002790
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002791
2792 // weak_import only applies to variable & function declarations.
2793 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002794 if (!D->canBeWeakImported(isDef)) {
2795 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002796 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2797 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002798 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002799 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002800 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002801 // Nothing to warn about here.
2802 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002803 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002804 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002805
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002806 return;
2807 }
2808
Michael Han51d8c522013-01-24 16:46:58 +00002809 D->addAttr(::new (S.Context)
2810 WeakImportAttr(Attr.getRange(), S.Context,
2811 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002812}
2813
Tanya Lattner0df579e2012-07-09 22:06:01 +00002814// Handles reqd_work_group_size and work_group_size_hint.
2815static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002816 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002817 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2818 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2819
Nate Begeman6f3d8382009-06-26 06:32:41 +00002820 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002821 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002822
2823 unsigned WGSize[3];
2824 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002825 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002826 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002827 if (E->isTypeDependent() || E->isValueDependent() ||
2828 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002829 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2830 << Attr.getName() << AANT_ArgumentIntegerConstant
2831 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002832 return;
2833 }
2834 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2835 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002836
2837 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2838 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2839 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2840 if (!(A->getXDim() == WGSize[0] &&
2841 A->getYDim() == WGSize[1] &&
2842 A->getZDim() == WGSize[2])) {
2843 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2844 Attr.getName();
2845 }
2846 }
2847
2848 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2849 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2850 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2851 if (!(A->getXDim() == WGSize[0] &&
2852 A->getYDim() == WGSize[1] &&
2853 A->getZDim() == WGSize[2])) {
2854 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2855 Attr.getName();
2856 }
2857 }
2858
2859 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2860 D->addAttr(::new (S.Context)
2861 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002862 WGSize[0], WGSize[1], WGSize[2],
2863 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002864 else
2865 D->addAttr(::new (S.Context)
2866 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002867 WGSize[0], WGSize[1], WGSize[2],
2868 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002869}
2870
Joey Gouly37453b92013-03-08 09:42:32 +00002871static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2872 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2873
Aaron Ballman624421f2013-08-31 01:11:41 +00002874 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002875 return;
2876
Aaron Ballman624421f2013-08-31 01:11:41 +00002877 if (!Attr.hasParsedType()) {
2878 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2879 << Attr.getName() << 1;
2880 return;
2881 }
2882
Joey Gouly37453b92013-03-08 09:42:32 +00002883 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2884
2885 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2886 (ParmType->isBooleanType() ||
2887 !ParmType->isIntegralType(S.getASTContext()))) {
2888 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2889 << ParmType;
2890 return;
2891 }
2892
2893 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2894 D->hasAttr<VecTypeHintAttr>()) {
2895 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2896 if (A->getTypeHint() != ParmType) {
2897 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2898 return;
2899 }
2900 }
2901
2902 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2903 ParmType, Attr.getLoc()));
2904}
2905
Rafael Espindola599f1b72012-05-13 03:25:18 +00002906SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002907 StringRef Name,
2908 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002909 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2910 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002911 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002912 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2913 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002914 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002915 }
Michael Han51d8c522013-01-24 16:46:58 +00002916 return ::new (Context) SectionAttr(Range, Context, Name,
2917 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002918}
2919
Chandler Carruth1b03c872011-07-02 00:01:44 +00002920static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002921 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002922 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002923 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002924
2925 // Make sure that there is a string literal as the sections's single
2926 // argument.
Aaron Ballman624421f2013-08-31 01:11:41 +00002927 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002928 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002929 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002930 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
2931 << Attr.getName() << AANT_ArgumentString;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002932 return;
2933 }
Mike Stump1eb44332009-09-09 15:08:12 +00002934
Chris Lattner797c3c42009-08-10 19:03:04 +00002935 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002936 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002937 if (!Error.empty()) {
2938 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2939 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002940 return;
2941 }
Mike Stump1eb44332009-09-09 15:08:12 +00002942
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002943 // This attribute cannot be applied to local variables.
2944 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2945 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2946 return;
2947 }
Michael Han51d8c522013-01-24 16:46:58 +00002948
2949 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002950 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002951 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002952 if (NewAttr)
2953 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002954}
2955
Chris Lattner6b6b5372008-06-26 18:38:35 +00002956
Chandler Carruth1b03c872011-07-02 00:01:44 +00002957static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002958 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002959 return;
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002960
Chandler Carruth87c44602011-07-01 23:49:12 +00002961 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002962 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002963 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002964 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002965 D->addAttr(::new (S.Context)
2966 NoThrowAttr(Attr.getRange(), S.Context,
2967 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002968 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002969}
2970
Chandler Carruth1b03c872011-07-02 00:01:44 +00002971static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002972 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002973 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002974
Chandler Carruth87c44602011-07-01 23:49:12 +00002975 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002976 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002977 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002978 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002979 D->addAttr(::new (S.Context)
2980 ConstAttr(Attr.getRange(), S.Context,
2981 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002982 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002983}
2984
Chandler Carruth1b03c872011-07-02 00:01:44 +00002985static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002986 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002987 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002988 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002989
Michael Han51d8c522013-01-24 16:46:58 +00002990 D->addAttr(::new (S.Context)
2991 PureAttr(Attr.getRange(), S.Context,
2992 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002993}
2994
Chandler Carruth1b03c872011-07-02 00:01:44 +00002995static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002996 if (!Attr.isArgIdent(0)) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002997 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2998 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002999 return;
3000 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003001
3002 if (!checkAttributeNumArgs(S, Attr, 1))
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003003 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003004
Chandler Carruth87c44602011-07-01 23:49:12 +00003005 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00003006
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003007 if (!VD || !VD->hasLocalStorage()) {
3008 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
3009 return;
3010 }
Mike Stumpbf916502009-07-24 19:02:52 +00003011
Aaron Ballman624421f2013-08-31 01:11:41 +00003012 IdentifierLoc *IL = Attr.getArgAsIdent(0);
3013
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003014 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00003015 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00003016 NamedDecl *CleanupDecl
Aaron Ballman624421f2013-08-31 01:11:41 +00003017 = S.LookupSingleName(S.TUScope, IL->Ident, IL->Loc,
3018 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003019 if (!CleanupDecl) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003020 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_found) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003021 return;
3022 }
Mike Stumpbf916502009-07-24 19:02:52 +00003023
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003024 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
3025 if (!FD) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003026 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_function) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003027 return;
3028 }
3029
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003030 if (FD->getNumParams() != 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003031 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3032 << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003033 return;
3034 }
Mike Stumpbf916502009-07-24 19:02:52 +00003035
Anders Carlsson89941c12009-02-07 23:16:50 +00003036 // We're currently more strict than GCC about what function types we accept.
3037 // If this ever proves to be a problem it should be easy to fix.
3038 QualType Ty = S.Context.getPointerType(VD->getType());
3039 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00003040 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3041 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003042 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) <<
3043 IL->Ident << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00003044 return;
3045 }
Mike Stumpbf916502009-07-24 19:02:52 +00003046
Michael Han51d8c522013-01-24 16:46:58 +00003047 D->addAttr(::new (S.Context)
3048 CleanupAttr(Attr.getRange(), S.Context, FD,
3049 Attr.getAttributeSpellingListIndex()));
Aaron Ballman624421f2013-08-31 01:11:41 +00003050 S.MarkFunctionReferenced(IL->Loc, FD);
3051 S.DiagnoseUseOfDecl(FD, IL->Loc);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003052}
3053
Mike Stumpbf916502009-07-24 19:02:52 +00003054/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003055/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003056static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00003057 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003058 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003059
Chandler Carruth87c44602011-07-01 23:49:12 +00003060 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003061 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003062 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003063 return;
3064 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003065
Aaron Ballman624421f2013-08-31 01:11:41 +00003066 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003067 uint64_t ArgIdx;
3068 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
3069 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003070 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003071
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003072 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003073 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00003074
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003075 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
3076 if (not_nsstring_type &&
3077 !isCFStringType(Ty, S.Context) &&
3078 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003079 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003080 // FIXME: Should highlight the actual expression that has the wrong type.
3081 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003082 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003083 << IdxExpr->getSourceRange();
3084 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003085 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003086 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003087 if (!isNSStringType(Ty, S.Context) &&
3088 !isCFStringType(Ty, S.Context) &&
3089 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003090 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003091 // FIXME: Should highlight the actual expression that has the wrong type.
3092 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003093 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003094 << IdxExpr->getSourceRange();
3095 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003096 }
3097
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003098 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
3099 // because that has corrected for the implicit this parameter, and is zero-
3100 // based. The attribute expects what the user wrote explicitly.
3101 llvm::APSInt Val;
3102 IdxExpr->EvaluateAsInt(Val, S.Context);
3103
Michael Han51d8c522013-01-24 16:46:58 +00003104 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003105 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003106 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003107}
3108
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003109enum FormatAttrKind {
3110 CFStringFormat,
3111 NSStringFormat,
3112 StrftimeFormat,
3113 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00003114 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003115 InvalidFormat
3116};
3117
3118/// getFormatAttrKind - Map from format attribute names to supported format
3119/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003120static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003121 return llvm::StringSwitch<FormatAttrKind>(Format)
3122 // Check for formats that get handled specially.
3123 .Case("NSString", NSStringFormat)
3124 .Case("CFString", CFStringFormat)
3125 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003126
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003127 // Otherwise, check for supported formats.
3128 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3129 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3130 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003131
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003132 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3133 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003134}
3135
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003136/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003137/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003138static void handleInitPriorityAttr(Sema &S, Decl *D,
3139 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003140 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003141 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3142 return;
3143 }
3144
Chandler Carruth87c44602011-07-01 23:49:12 +00003145 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003146 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3147 Attr.setInvalid();
3148 return;
3149 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003150 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003151 if (S.Context.getAsArrayType(T))
3152 T = S.Context.getBaseElementType(T);
3153 if (!T->getAs<RecordType>()) {
3154 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3155 Attr.setInvalid();
3156 return;
3157 }
3158
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003159 if (!checkAttributeNumArgs(S, Attr, 1)) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003160 Attr.setInvalid();
3161 return;
3162 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003163 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003164
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003165 llvm::APSInt priority(32);
3166 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3167 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003168 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3169 << Attr.getName() << AANT_ArgumentIntegerConstant
3170 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003171 Attr.setInvalid();
3172 return;
3173 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003174 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003175 if (prioritynum < 101 || prioritynum > 65535) {
3176 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3177 << priorityExpr->getSourceRange();
3178 Attr.setInvalid();
3179 return;
3180 }
Michael Han51d8c522013-01-24 16:46:58 +00003181 D->addAttr(::new (S.Context)
3182 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3183 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003184}
3185
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003186FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3187 IdentifierInfo *Format, int FormatIdx,
3188 int FirstArg,
Michael Han51d8c522013-01-24 16:46:58 +00003189 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003190 // Check whether we already have an equivalent format attribute.
3191 for (specific_attr_iterator<FormatAttr>
3192 i = D->specific_attr_begin<FormatAttr>(),
3193 e = D->specific_attr_end<FormatAttr>();
3194 i != e ; ++i) {
3195 FormatAttr *f = *i;
3196 if (f->getType() == Format &&
3197 f->getFormatIdx() == FormatIdx &&
3198 f->getFirstArg() == FirstArg) {
3199 // If we don't have a valid location for this attribute, adopt the
3200 // location.
3201 if (f->getLocation().isInvalid())
3202 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003203 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003204 }
3205 }
3206
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003207 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3208 FirstArg, AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003209}
3210
Mike Stumpbf916502009-07-24 19:02:52 +00003211/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003212/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003213static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003214 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003215 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003216 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003217 return;
3218 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003219
3220 if (!checkAttributeNumArgs(S, Attr, 3))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003221 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003222
Chandler Carruth87c44602011-07-01 23:49:12 +00003223 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003224 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003225 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003226 return;
3227 }
3228
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003229 // In C++ the implicit 'this' function parameter also counts, and they are
3230 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003231 bool HasImplicitThisParam = isInstanceMethod(D);
3232 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003233 unsigned FirstIdx = 1;
3234
Aaron Ballman624421f2013-08-31 01:11:41 +00003235 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3236 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003237
3238 // Normalize the argument, __foo__ becomes foo.
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003239 if (Format.startswith("__") && Format.endswith("__")) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003240 Format = Format.substr(2, Format.size() - 4);
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003241 // If we've modified the string name, we need a new identifier for it.
3242 II = &S.Context.Idents.get(Format);
3243 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003244
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003245 // Check for supported formats.
3246 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003247
3248 if (Kind == IgnoredFormat)
3249 return;
3250
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003251 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003252 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003253 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003254 return;
3255 }
3256
3257 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003258 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003259 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003260 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3261 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003262 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003263 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003264 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003265 return;
3266 }
3267
3268 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003269 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003270 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003271 return;
3272 }
3273
3274 // FIXME: Do we need to bounds check?
3275 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003276
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003277 if (HasImplicitThisParam) {
3278 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003279 S.Diag(Attr.getLoc(),
3280 diag::err_format_attribute_implicit_this_format_string)
3281 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003282 return;
3283 }
3284 ArgIdx--;
3285 }
Mike Stump1eb44332009-09-09 15:08:12 +00003286
Chris Lattner6b6b5372008-06-26 18:38:35 +00003287 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003288 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003289
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003290 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003291 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003292 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3293 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003294 return;
3295 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003296 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003297 // FIXME: do we need to check if the type is NSString*? What are the
3298 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003299 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003300 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003301 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3302 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003303 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003304 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003305 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003306 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003307 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003308 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3309 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003310 return;
3311 }
3312
3313 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003314 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003315 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003316 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3317 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003318 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003319 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003320 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003321 return;
3322 }
3323
3324 // check if the function is variadic if the 3rd argument non-zero
3325 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003326 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003327 ++NumArgs; // +1 for ...
3328 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003329 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003330 return;
3331 }
3332 }
3333
Chris Lattner3c73c412008-11-19 08:23:25 +00003334 // strftime requires FirstArg to be 0 because it doesn't read from any
3335 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003336 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003337 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003338 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3339 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003340 return;
3341 }
3342 // if 0 it disables parameter checking (to use with e.g. va_list)
3343 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003344 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003345 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003346 return;
3347 }
3348
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003349 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00003350 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003351 FirstArg.getZExtValue(),
3352 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003353 if (NewAttr)
3354 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003355}
3356
Chandler Carruth1b03c872011-07-02 00:01:44 +00003357static void handleTransparentUnionAttr(Sema &S, Decl *D,
3358 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003359 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003360 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003361 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003362
Chris Lattner6b6b5372008-06-26 18:38:35 +00003363
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003364 // Try to find the underlying union declaration.
3365 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003366 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003367 if (TD && TD->getUnderlyingType()->isUnionType())
3368 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3369 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003370 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003371
3372 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003373 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003374 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003375 return;
3376 }
3377
John McCall5e1cdac2011-10-07 06:10:15 +00003378 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003379 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003380 diag::warn_transparent_union_attribute_not_definition);
3381 return;
3382 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003383
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003384 RecordDecl::field_iterator Field = RD->field_begin(),
3385 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003386 if (Field == FieldEnd) {
3387 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3388 return;
3389 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003390
David Blaikie581deb32012-06-06 20:45:41 +00003391 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003392 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003393 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003394 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003395 diag::warn_transparent_union_attribute_floating)
3396 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003397 return;
3398 }
3399
3400 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3401 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3402 for (; Field != FieldEnd; ++Field) {
3403 QualType FieldType = Field->getType();
3404 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3405 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3406 // Warn if we drop the attribute.
3407 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003408 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003409 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003410 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003411 diag::warn_transparent_union_attribute_field_size_align)
3412 << isSize << Field->getDeclName() << FieldBits;
3413 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003414 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003415 diag::note_transparent_union_first_field_size_align)
3416 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003417 return;
3418 }
3419 }
3420
Michael Han51d8c522013-01-24 16:46:58 +00003421 RD->addAttr(::new (S.Context)
3422 TransparentUnionAttr(Attr.getRange(), S.Context,
3423 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003424}
3425
Chandler Carruth1b03c872011-07-02 00:01:44 +00003426static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003427 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003428 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003429 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003430
Aaron Ballman624421f2013-08-31 01:11:41 +00003431 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003432 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003433
Chris Lattner6b6b5372008-06-26 18:38:35 +00003434 // Make sure that there is a string literal as the annotation's single
3435 // argument.
3436 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003437 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
3438 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003439 return;
3440 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003441
3442 // Don't duplicate annotations that are already set.
3443 for (specific_attr_iterator<AnnotateAttr>
3444 i = D->specific_attr_begin<AnnotateAttr>(),
3445 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3446 if ((*i)->getAnnotation() == SE->getString())
3447 return;
3448 }
Michael Han51d8c522013-01-24 16:46:58 +00003449
3450 D->addAttr(::new (S.Context)
3451 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3452 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003453}
3454
Chandler Carruth1b03c872011-07-02 00:01:44 +00003455static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003456 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003457 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003458 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3459 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003460 return;
3461 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003462
Richard Smithbe507b62013-02-01 08:12:08 +00003463 if (Attr.getNumArgs() == 0) {
3464 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3465 true, 0, Attr.getAttributeSpellingListIndex()));
3466 return;
3467 }
3468
Aaron Ballman624421f2013-08-31 01:11:41 +00003469 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003470 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3471 S.Diag(Attr.getEllipsisLoc(),
3472 diag::err_pack_expansion_without_parameter_packs);
3473 return;
3474 }
3475
3476 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3477 return;
3478
3479 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3480 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003481}
3482
3483void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003484 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003485 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3486 SourceLocation AttrLoc = AttrRange.getBegin();
3487
Richard Smith4cd81c52013-01-29 09:02:09 +00003488 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003489 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003490 // C++11 [dcl.align]p1:
3491 // An alignment-specifier may be applied to a variable or to a class
3492 // data member, but it shall not be applied to a bit-field, a function
3493 // parameter, the formal parameter of a catch clause, or a variable
3494 // declared with the register storage class specifier. An
3495 // alignment-specifier may also be applied to the declaration of a class
3496 // or enumeration type.
3497 // C11 6.7.5/2:
3498 // An alignment attribute shall not be specified in a declaration of
3499 // a typedef, or a bit-field, or a function, or a parameter, or an
3500 // object declared with the register storage-class specifier.
3501 int DiagKind = -1;
3502 if (isa<ParmVarDecl>(D)) {
3503 DiagKind = 0;
3504 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3505 if (VD->getStorageClass() == SC_Register)
3506 DiagKind = 1;
3507 if (VD->isExceptionVariable())
3508 DiagKind = 2;
3509 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3510 if (FD->isBitField())
3511 DiagKind = 3;
3512 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003513 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3514 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003515 << (TmpAttr.isC11() ? ExpectedVariableOrField
3516 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003517 return;
3518 }
3519 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003520 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003521 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003522 return;
3523 }
3524 }
3525
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003526 if (E->isTypeDependent() || E->isValueDependent()) {
3527 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003528 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3529 AA->setPackExpansion(IsPackExpansion);
3530 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003531 return;
3532 }
Michael Hana31f65b2013-02-01 01:19:17 +00003533
Sean Huntcf807c42010-08-18 23:23:40 +00003534 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003535 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003536 ExprResult ICE
3537 = VerifyIntegerConstantExpression(E, &Alignment,
3538 diag::err_aligned_attribute_argument_not_int,
3539 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003540 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003541 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003542
3543 // C++11 [dcl.align]p2:
3544 // -- if the constant expression evaluates to zero, the alignment
3545 // specifier shall have no effect
3546 // C11 6.7.5p6:
3547 // An alignment specification of zero has no effect.
3548 if (!(TmpAttr.isAlignas() && !Alignment) &&
3549 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003550 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3551 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003552 return;
3553 }
Michael Hana31f65b2013-02-01 01:19:17 +00003554
Richard Smithbe507b62013-02-01 08:12:08 +00003555 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003556 // We've already verified it's a power of 2, now let's make sure it's
3557 // 8192 or less.
3558 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003559 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003560 << E->getSourceRange();
3561 return;
3562 }
3563 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003564
Richard Smithf6565a92013-02-22 08:32:16 +00003565 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3566 ICE.take(), SpellingListIndex);
3567 AA->setPackExpansion(IsPackExpansion);
3568 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003569}
3570
Michael Hana31f65b2013-02-01 01:19:17 +00003571void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003572 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003573 // FIXME: Cache the number on the Attr object if non-dependent?
3574 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003575 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3576 SpellingListIndex);
3577 AA->setPackExpansion(IsPackExpansion);
3578 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003579}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003580
Richard Smithbe507b62013-02-01 08:12:08 +00003581void Sema::CheckAlignasUnderalignment(Decl *D) {
3582 assert(D->hasAttrs() && "no attributes on decl");
3583
3584 QualType Ty;
3585 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3586 Ty = VD->getType();
3587 else
3588 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003589 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003590 return;
3591
3592 // C++11 [dcl.align]p5, C11 6.7.5/4:
3593 // The combined effect of all alignment attributes in a declaration shall
3594 // not specify an alignment that is less strict than the alignment that
3595 // would otherwise be required for the entity being declared.
3596 AlignedAttr *AlignasAttr = 0;
3597 unsigned Align = 0;
3598 for (specific_attr_iterator<AlignedAttr>
3599 I = D->specific_attr_begin<AlignedAttr>(),
3600 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3601 if (I->isAlignmentDependent())
3602 return;
3603 if (I->isAlignas())
3604 AlignasAttr = *I;
3605 Align = std::max(Align, I->getAlignment(Context));
3606 }
3607
3608 if (AlignasAttr && Align) {
3609 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3610 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3611 if (NaturalAlign > RequestedAlign)
3612 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3613 << Ty << (unsigned)NaturalAlign.getQuantity();
3614 }
3615}
3616
Chandler Carruthd309c812011-07-01 23:49:16 +00003617/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003618/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003619///
Mike Stumpbf916502009-07-24 19:02:52 +00003620/// Despite what would be logical, the mode attribute is a decl attribute, not a
3621/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3622/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003623static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003624 // This attribute isn't documented, but glibc uses it. It changes
3625 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003626 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003627 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3628 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003629 return;
3630 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003631
3632 if (!checkAttributeNumArgs(S, Attr, 1))
3633 return;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003634
Aaron Ballman624421f2013-08-31 01:11:41 +00003635 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3636 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003637
3638 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003639 if (Str.startswith("__") && Str.endswith("__"))
3640 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003641
3642 unsigned DestWidth = 0;
3643 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003644 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003645 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003646 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003647 switch (Str[0]) {
3648 case 'Q': DestWidth = 8; break;
3649 case 'H': DestWidth = 16; break;
3650 case 'S': DestWidth = 32; break;
3651 case 'D': DestWidth = 64; break;
3652 case 'X': DestWidth = 96; break;
3653 case 'T': DestWidth = 128; break;
3654 }
3655 if (Str[1] == 'F') {
3656 IntegerMode = false;
3657 } else if (Str[1] == 'C') {
3658 IntegerMode = false;
3659 ComplexMode = true;
3660 } else if (Str[1] != 'I') {
3661 DestWidth = 0;
3662 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003663 break;
3664 case 4:
3665 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3666 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003667 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003668 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003669 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003670 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003671 break;
3672 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003673 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003674 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003675 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003676 case 11:
3677 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003678 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003679 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003680 }
3681
3682 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003683 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003684 OldTy = TD->getUnderlyingType();
3685 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3686 OldTy = VD->getType();
3687 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003688 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003689 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003690 return;
3691 }
Eli Friedman73397492009-03-03 06:41:03 +00003692
John McCall183700f2009-09-21 23:43:11 +00003693 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003694 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3695 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003696 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003697 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3698 } else if (ComplexMode) {
3699 if (!OldTy->isComplexType())
3700 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3701 } else {
3702 if (!OldTy->isFloatingType())
3703 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3704 }
3705
Mike Stump390b4cc2009-05-16 07:39:55 +00003706 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3707 // and friends, at least with glibc.
3708 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3709 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003710 // FIXME: Make sure floating-point mappings are accurate
3711 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003712 QualType NewTy;
3713 switch (DestWidth) {
3714 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003715 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003716 return;
3717 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003718 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003719 return;
3720 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003721 if (!IntegerMode) {
3722 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3723 return;
3724 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003725 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003726 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003727 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003728 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003729 break;
3730 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003731 if (!IntegerMode) {
3732 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3733 return;
3734 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003735 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003736 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003737 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003738 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003739 break;
3740 case 32:
3741 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003742 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003743 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003744 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003745 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003746 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003747 break;
3748 case 64:
3749 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003750 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003751 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003752 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003753 NewTy = S.Context.LongTy;
3754 else
3755 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003756 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003757 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003758 NewTy = S.Context.UnsignedLongTy;
3759 else
3760 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003761 break;
Eli Friedman73397492009-03-03 06:41:03 +00003762 case 96:
3763 NewTy = S.Context.LongDoubleTy;
3764 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003765 case 128:
Roman Divacky19645542013-07-03 21:08:41 +00003766 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3767 &llvm::APFloat::PPCDoubleDouble) {
Eli Friedmanf98aba32009-02-13 02:31:07 +00003768 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3769 return;
3770 }
Roman Divackyf0d14cb2013-07-03 20:48:06 +00003771 if (IntegerMode) {
3772 if (OldTy->isSignedIntegerType())
3773 NewTy = S.Context.Int128Ty;
3774 else
3775 NewTy = S.Context.UnsignedInt128Ty;
3776 } else
3777 NewTy = S.Context.LongDoubleTy;
Eli Friedman73397492009-03-03 06:41:03 +00003778 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003779 }
3780
Eli Friedman73397492009-03-03 06:41:03 +00003781 if (ComplexMode) {
3782 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003783 }
3784
3785 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003786 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3787 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3788 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003789 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003790
3791 D->addAttr(::new (S.Context)
3792 ModeAttr(Attr.getRange(), S.Context, Name,
3793 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003794}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003795
Chandler Carruth1b03c872011-07-02 00:01:44 +00003796static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003797 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003798 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003799 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003800
Nick Lewycky78d1a102012-07-24 01:40:49 +00003801 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3802 if (!VD->hasGlobalStorage())
3803 S.Diag(Attr.getLoc(),
3804 diag::warn_attribute_requires_functions_or_static_globals)
3805 << Attr.getName();
3806 } else if (!isFunctionOrMethod(D)) {
3807 S.Diag(Attr.getLoc(),
3808 diag::warn_attribute_requires_functions_or_static_globals)
3809 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003810 return;
3811 }
Mike Stumpbf916502009-07-24 19:02:52 +00003812
Michael Han51d8c522013-01-24 16:46:58 +00003813 D->addAttr(::new (S.Context)
3814 NoDebugAttr(Attr.getRange(), S.Context,
3815 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003816}
3817
Chandler Carruth1b03c872011-07-02 00:01:44 +00003818static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003819 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003820 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003821 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003822
Mike Stumpbf916502009-07-24 19:02:52 +00003823
Chandler Carruth87c44602011-07-01 23:49:12 +00003824 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003825 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003826 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003827 return;
3828 }
Mike Stumpbf916502009-07-24 19:02:52 +00003829
Michael Han51d8c522013-01-24 16:46:58 +00003830 D->addAttr(::new (S.Context)
3831 NoInlineAttr(Attr.getRange(), S.Context,
3832 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003833}
3834
Chandler Carruth1b03c872011-07-02 00:01:44 +00003835static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3836 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003837 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003838 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003839 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003840
Chris Lattner7255a2d2010-06-22 00:03:40 +00003841
Chandler Carruth87c44602011-07-01 23:49:12 +00003842 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003843 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003844 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003845 return;
3846 }
3847
Michael Han51d8c522013-01-24 16:46:58 +00003848 D->addAttr(::new (S.Context)
3849 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3850 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003851}
3852
Chandler Carruth1b03c872011-07-02 00:01:44 +00003853static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003854 if (S.LangOpts.CUDA) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003855 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003856 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003857
Chandler Carruth87c44602011-07-01 23:49:12 +00003858 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003859 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003860 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003861 return;
3862 }
3863
Michael Han51d8c522013-01-24 16:46:58 +00003864 D->addAttr(::new (S.Context)
3865 CUDAConstantAttr(Attr.getRange(), S.Context,
3866 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003867 } else {
3868 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3869 }
3870}
3871
Chandler Carruth1b03c872011-07-02 00:01:44 +00003872static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003873 if (S.LangOpts.CUDA) {
3874 // check the attribute arguments.
3875 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003876 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3877 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003878 return;
3879 }
3880
Chandler Carruth87c44602011-07-01 23:49:12 +00003881 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003882 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003883 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003884 return;
3885 }
3886
Michael Han51d8c522013-01-24 16:46:58 +00003887 D->addAttr(::new (S.Context)
3888 CUDADeviceAttr(Attr.getRange(), S.Context,
3889 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003890 } else {
3891 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3892 }
3893}
3894
Chandler Carruth1b03c872011-07-02 00:01:44 +00003895static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003896 if (S.LangOpts.CUDA) {
3897 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003898 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003899 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003900
Chandler Carruth87c44602011-07-01 23:49:12 +00003901 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003902 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003903 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003904 return;
3905 }
3906
Chandler Carruth87c44602011-07-01 23:49:12 +00003907 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003908 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003909 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003910 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003911 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3912 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003913 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003914 "void");
3915 } else {
3916 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3917 << FD->getType();
3918 }
3919 return;
3920 }
3921
Michael Han51d8c522013-01-24 16:46:58 +00003922 D->addAttr(::new (S.Context)
3923 CUDAGlobalAttr(Attr.getRange(), S.Context,
3924 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003925 } else {
3926 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3927 }
3928}
3929
Chandler Carruth1b03c872011-07-02 00:01:44 +00003930static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003931 if (S.LangOpts.CUDA) {
3932 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003933 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003934 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003935
Peter Collingbourneced76712010-12-01 03:15:31 +00003936
Chandler Carruth87c44602011-07-01 23:49:12 +00003937 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003938 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003939 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003940 return;
3941 }
3942
Michael Han51d8c522013-01-24 16:46:58 +00003943 D->addAttr(::new (S.Context)
3944 CUDAHostAttr(Attr.getRange(), S.Context,
3945 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003946 } else {
3947 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3948 }
3949}
3950
Chandler Carruth1b03c872011-07-02 00:01:44 +00003951static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003952 if (S.LangOpts.CUDA) {
3953 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003954 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003955 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003956
Chandler Carruth87c44602011-07-01 23:49:12 +00003957 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003958 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003959 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003960 return;
3961 }
3962
Michael Han51d8c522013-01-24 16:46:58 +00003963 D->addAttr(::new (S.Context)
3964 CUDASharedAttr(Attr.getRange(), S.Context,
3965 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003966 } else {
3967 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3968 }
3969}
3970
Chandler Carruth1b03c872011-07-02 00:01:44 +00003971static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003972 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003973 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003974 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003975
Chandler Carruth87c44602011-07-01 23:49:12 +00003976 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003977 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003978 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003979 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003980 return;
3981 }
Mike Stumpbf916502009-07-24 19:02:52 +00003982
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003983 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003984 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003985 return;
3986 }
Mike Stumpbf916502009-07-24 19:02:52 +00003987
Michael Han51d8c522013-01-24 16:46:58 +00003988 D->addAttr(::new (S.Context)
3989 GNUInlineAttr(Attr.getRange(), S.Context,
3990 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003991}
3992
Chandler Carruth1b03c872011-07-02 00:01:44 +00003993static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003994 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003995
Aaron Ballmanfff32482012-12-09 17:45:41 +00003996 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003997 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003998 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3999 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00004000 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00004001 return;
4002
Chandler Carruth87c44602011-07-01 23:49:12 +00004003 if (!isa<ObjCMethodDecl>(D)) {
4004 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4005 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00004006 return;
4007 }
4008
Chandler Carruth87c44602011-07-01 23:49:12 +00004009 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004010 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00004011 D->addAttr(::new (S.Context)
4012 FastCallAttr(Attr.getRange(), S.Context,
4013 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00004014 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004015 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00004016 D->addAttr(::new (S.Context)
4017 StdCallAttr(Attr.getRange(), S.Context,
4018 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00004019 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004020 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00004021 D->addAttr(::new (S.Context)
4022 ThisCallAttr(Attr.getRange(), S.Context,
4023 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00004024 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004025 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00004026 D->addAttr(::new (S.Context)
4027 CDeclAttr(Attr.getRange(), S.Context,
4028 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00004029 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004030 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00004031 D->addAttr(::new (S.Context)
4032 PascalAttr(Attr.getRange(), S.Context,
4033 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00004034 return;
Charles Davise8519c32013-08-30 04:39:01 +00004035 case AttributeList::AT_MSABI:
4036 D->addAttr(::new (S.Context)
4037 MSABIAttr(Attr.getRange(), S.Context,
4038 Attr.getAttributeSpellingListIndex()));
4039 return;
4040 case AttributeList::AT_SysVABI:
4041 D->addAttr(::new (S.Context)
4042 SysVABIAttr(Attr.getRange(), S.Context,
4043 Attr.getAttributeSpellingListIndex()));
4044 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004045 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004046 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004047 switch (CC) {
4048 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004049 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004050 break;
4051 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004052 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004053 break;
4054 default:
4055 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004056 }
4057
Michael Han51d8c522013-01-24 16:46:58 +00004058 D->addAttr(::new (S.Context)
4059 PcsAttr(Attr.getRange(), S.Context, PCS,
4060 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00004061 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004062 }
Derek Schuff263366f2012-10-16 22:30:41 +00004063 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00004064 D->addAttr(::new (S.Context)
4065 PnaclCallAttr(Attr.getRange(), S.Context,
4066 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00004067 return;
Guy Benyei38980082012-12-25 08:53:55 +00004068 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00004069 D->addAttr(::new (S.Context)
4070 IntelOclBiccAttr(Attr.getRange(), S.Context,
4071 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00004072 return;
Derek Schuff263366f2012-10-16 22:30:41 +00004073
Abramo Bagnarae215f722010-04-30 13:10:51 +00004074 default:
4075 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00004076 }
4077}
4078
Chandler Carruth1b03c872011-07-02 00:01:44 +00004079static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004080 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00004081}
4082
Guy Benyei1db70402013-03-24 13:58:12 +00004083static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00004084 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00004085 llvm::APSInt ArgNum(32);
4086 if (E->isTypeDependent() || E->isValueDependent() ||
4087 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00004088 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4089 << Attr.getName() << AANT_ArgumentIntegerConstant
4090 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00004091 return;
4092 }
4093
4094 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
4095 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
4096}
4097
Aaron Ballmanfff32482012-12-09 17:45:41 +00004098bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
4099 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00004100 if (attr.isInvalid())
4101 return true;
4102
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004103 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00004104 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00004105 attr.setInvalid();
4106 return true;
4107 }
4108
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004109 // TODO: diagnose uses of these conventions on the wrong target. Or, better
4110 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00004111 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004112 case AttributeList::AT_CDecl: CC = CC_C; break;
4113 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
4114 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
4115 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
4116 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00004117 case AttributeList::AT_MSABI:
4118 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
4119 CC_X86_64Win64;
4120 break;
4121 case AttributeList::AT_SysVABI:
4122 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4123 CC_C;
4124 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004125 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00004126 StringLiteral *Str = 0;
4127 if (attr.isArgExpr(0))
4128 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
4129
Douglas Gregor5cee1192011-07-27 05:40:30 +00004130 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004131 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
4132 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004133 attr.setInvalid();
4134 return true;
4135 }
4136
Chris Lattner5f9e2722011-07-23 10:55:15 +00004137 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004138 if (StrRef == "aapcs") {
4139 CC = CC_AAPCS;
4140 break;
4141 } else if (StrRef == "aapcs-vfp") {
4142 CC = CC_AAPCS_VFP;
4143 break;
4144 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004145
4146 attr.setInvalid();
4147 Diag(attr.getLoc(), diag::err_invalid_pcs);
4148 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004149 }
Derek Schuff263366f2012-10-16 22:30:41 +00004150 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00004151 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00004152 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00004153 }
4154
Aaron Ballman82bfa192012-10-02 14:26:08 +00004155 const TargetInfo &TI = Context.getTargetInfo();
4156 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
4157 if (A == TargetInfo::CCCR_Warning) {
4158 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00004159
4160 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
4161 if (FD)
4162 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
4163 TargetInfo::CCMT_NonMember;
4164 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00004165 }
4166
John McCall711c52b2011-01-05 12:14:39 +00004167 return false;
4168}
4169
Chandler Carruth1b03c872011-07-02 00:01:44 +00004170static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004171 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00004172
4173 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00004174 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00004175 return;
4176
Chandler Carruth87c44602011-07-01 23:49:12 +00004177 if (!isa<ObjCMethodDecl>(D)) {
4178 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4179 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004180 return;
4181 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004182
Michael Han51d8c522013-01-24 16:46:58 +00004183 D->addAttr(::new (S.Context)
4184 RegparmAttr(Attr.getRange(), S.Context, numParams,
4185 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004186}
4187
4188/// Checks a regparm attribute, returning true if it is ill-formed and
4189/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004190bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4191 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004192 return true;
4193
Aaron Ballmanffa9d572013-07-18 18:01:48 +00004194 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004195 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004196 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004197 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004198
Aaron Ballman624421f2013-08-31 01:11:41 +00004199 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004200 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004201 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004202 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00004203 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4204 << Attr.getName() << AANT_ArgumentIntegerConstant
4205 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004206 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004207 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004208 }
4209
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004210 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004211 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004212 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004213 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004214 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004215 }
4216
John McCall711c52b2011-01-05 12:14:39 +00004217 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004218 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004219 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004220 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004221 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004222 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004223 }
4224
John McCall711c52b2011-01-05 12:14:39 +00004225 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004226}
4227
Chandler Carruth1b03c872011-07-02 00:01:44 +00004228static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004229 if (S.LangOpts.CUDA) {
4230 // check the attribute arguments.
4231 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004232 // FIXME: 0 is not okay.
4233 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004234 return;
4235 }
4236
Chandler Carruth87c44602011-07-01 23:49:12 +00004237 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004238 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004239 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004240 return;
4241 }
4242
Aaron Ballman624421f2013-08-31 01:11:41 +00004243 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004244 llvm::APSInt MaxThreads(32);
4245 if (MaxThreadsExpr->isTypeDependent() ||
4246 MaxThreadsExpr->isValueDependent() ||
4247 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004248 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004249 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004250 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004251 return;
4252 }
4253
4254 llvm::APSInt MinBlocks(32);
4255 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004256 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004257 if (MinBlocksExpr->isTypeDependent() ||
4258 MinBlocksExpr->isValueDependent() ||
4259 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004260 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004261 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004262 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004263 return;
4264 }
4265 }
4266
Michael Han51d8c522013-01-24 16:46:58 +00004267 D->addAttr(::new (S.Context)
4268 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4269 MaxThreads.getZExtValue(),
4270 MinBlocks.getZExtValue(),
4271 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004272 } else {
4273 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4274 }
4275}
4276
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004277static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4278 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004279 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004280 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004281 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004282 return;
4283 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004284
4285 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004286 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004287
Aaron Ballman624421f2013-08-31 01:11:41 +00004288 StringRef AttrName = Attr.getName()->getName();
4289 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004290
4291 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4292 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4293 << Attr.getName() << ExpectedFunctionOrMethod;
4294 return;
4295 }
4296
4297 uint64_t ArgumentIdx;
4298 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4299 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004300 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004301 return;
4302
4303 uint64_t TypeTagIdx;
4304 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4305 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004306 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004307 return;
4308
4309 bool IsPointer = (AttrName == "pointer_with_type_tag");
4310 if (IsPointer) {
4311 // Ensure that buffer has a pointer type.
4312 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4313 if (!BufferTy->isPointerType()) {
4314 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004315 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004316 }
4317 }
4318
Michael Han51d8c522013-01-24 16:46:58 +00004319 D->addAttr(::new (S.Context)
4320 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4321 ArgumentIdx, TypeTagIdx, IsPointer,
4322 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004323}
4324
4325static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4326 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004327 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004328 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004329 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004330 return;
4331 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004332
4333 if (!checkAttributeNumArgs(S, Attr, 1))
4334 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004335
Aaron Ballman624421f2013-08-31 01:11:41 +00004336 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004337 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4338
Michael Han51d8c522013-01-24 16:46:58 +00004339 D->addAttr(::new (S.Context)
4340 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4341 MatchingCType,
4342 Attr.getLayoutCompatible(),
4343 Attr.getMustBeNull(),
4344 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004345}
4346
Chris Lattner0744e5f2008-06-29 00:23:49 +00004347//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004348// Checker-specific attribute handlers.
4349//===----------------------------------------------------------------------===//
4350
John McCallc7ad3812011-01-25 03:31:58 +00004351static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004352 return type->isDependentType() ||
4353 type->isObjCObjectPointerType() ||
4354 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004355}
4356static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004357 return type->isDependentType() ||
4358 type->isPointerType() ||
4359 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004360}
4361
Chandler Carruth1b03c872011-07-02 00:01:44 +00004362static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004363 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004364 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004365 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004366 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004367 return;
4368 }
4369
4370 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004371 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004372 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4373 cf = false;
4374 } else {
4375 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4376 cf = true;
4377 }
4378
4379 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004380 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004381 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004382 return;
4383 }
4384
4385 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004386 param->addAttr(::new (S.Context)
4387 CFConsumedAttr(Attr.getRange(), S.Context,
4388 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004389 else
Michael Han51d8c522013-01-24 16:46:58 +00004390 param->addAttr(::new (S.Context)
4391 NSConsumedAttr(Attr.getRange(), S.Context,
4392 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004393}
4394
Chandler Carruth1b03c872011-07-02 00:01:44 +00004395static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4396 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004397 if (!isa<ObjCMethodDecl>(D)) {
4398 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004399 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004400 return;
4401 }
4402
Michael Han51d8c522013-01-24 16:46:58 +00004403 D->addAttr(::new (S.Context)
4404 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4405 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004406}
4407
Chandler Carruth1b03c872011-07-02 00:01:44 +00004408static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4409 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004410
John McCallc7ad3812011-01-25 03:31:58 +00004411 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004412
Chandler Carruth87c44602011-07-01 23:49:12 +00004413 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004414 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004415 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004416 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004417 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004418 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4419 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004420 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004421 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004422 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004423 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004424 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004425 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004426 return;
4427 }
Mike Stumpbf916502009-07-24 19:02:52 +00004428
John McCallc7ad3812011-01-25 03:31:58 +00004429 bool typeOK;
4430 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004431 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004432 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004433 case AttributeList::AT_NSReturnsAutoreleased:
4434 case AttributeList::AT_NSReturnsRetained:
4435 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004436 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4437 cf = false;
4438 break;
4439
Sean Hunt8e083e72012-06-19 23:57:03 +00004440 case AttributeList::AT_CFReturnsRetained:
4441 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004442 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4443 cf = true;
4444 break;
4445 }
4446
4447 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004448 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004449 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004450 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004451 }
Mike Stumpbf916502009-07-24 19:02:52 +00004452
Chandler Carruth87c44602011-07-01 23:49:12 +00004453 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004454 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004455 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004456 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004457 D->addAttr(::new (S.Context)
4458 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4459 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004460 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004461 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004462 D->addAttr(::new (S.Context)
4463 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4464 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004465 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004466 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004467 D->addAttr(::new (S.Context)
4468 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4469 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004470 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004471 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004472 D->addAttr(::new (S.Context)
4473 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4474 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004475 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004476 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004477 D->addAttr(::new (S.Context)
4478 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4479 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004480 return;
4481 };
4482}
4483
John McCalldc7c5ad2011-07-22 08:53:00 +00004484static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4485 const AttributeList &attr) {
4486 SourceLocation loc = attr.getLoc();
4487
4488 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4489
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004490 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004491 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004492 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004493 return;
4494 }
4495
4496 // Check that the method returns a normal pointer.
4497 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004498
4499 if (!resultType->isReferenceType() &&
4500 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004501 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4502 << SourceRange(loc)
4503 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4504
4505 // Drop the attribute.
4506 return;
4507 }
4508
Michael Han51d8c522013-01-24 16:46:58 +00004509 method->addAttr(::new (S.Context)
4510 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4511 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004512}
4513
Fariborz Jahanian84101132012-09-07 23:46:23 +00004514static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4515 const AttributeList &attr) {
4516 SourceLocation loc = attr.getLoc();
4517 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4518
4519 if (!method) {
4520 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4521 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4522 return;
4523 }
4524 DeclContext *DC = method->getDeclContext();
4525 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4526 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4527 << attr.getName() << 0;
4528 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4529 return;
4530 }
4531 if (method->getMethodFamily() == OMF_dealloc) {
4532 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4533 << attr.getName() << 1;
4534 return;
4535 }
4536
Michael Han51d8c522013-01-24 16:46:58 +00004537 method->addAttr(::new (S.Context)
4538 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4539 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004540}
4541
John McCall8dfac0b2011-09-30 05:12:12 +00004542/// Handle cf_audited_transfer and cf_unknown_transfer.
4543static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4544 if (!isa<FunctionDecl>(D)) {
4545 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004546 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004547 return;
4548 }
4549
Sean Hunt8e083e72012-06-19 23:57:03 +00004550 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004551
4552 // Check whether there's a conflicting attribute already present.
4553 Attr *Existing;
4554 if (IsAudited) {
4555 Existing = D->getAttr<CFUnknownTransferAttr>();
4556 } else {
4557 Existing = D->getAttr<CFAuditedTransferAttr>();
4558 }
4559 if (Existing) {
4560 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4561 << A.getName()
4562 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4563 << A.getRange() << Existing->getRange();
4564 return;
4565 }
4566
4567 // All clear; add the attribute.
4568 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004569 D->addAttr(::new (S.Context)
4570 CFAuditedTransferAttr(A.getRange(), S.Context,
4571 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004572 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004573 D->addAttr(::new (S.Context)
4574 CFUnknownTransferAttr(A.getRange(), S.Context,
4575 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004576 }
4577}
4578
John McCallfe98da02011-09-29 07:17:38 +00004579static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4580 const AttributeList &Attr) {
4581 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4582 if (!RD || RD->isUnion()) {
4583 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004584 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004585 }
4586
Aaron Ballman624421f2013-08-31 01:11:41 +00004587 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004588
4589 // In Objective-C, verify that the type names an Objective-C type.
4590 // We don't want to check this outside of ObjC because people sometimes
4591 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004592 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004593 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004594 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004595 Sema::LookupOrdinaryName);
4596 if (S.LookupName(R, Sc)) {
4597 NamedDecl *Target = R.getFoundDecl();
4598 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4599 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4600 S.Diag(Target->getLocStart(), diag::note_declared_at);
4601 }
4602 }
4603 }
4604
Michael Han51d8c522013-01-24 16:46:58 +00004605 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004606 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004607 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004608}
4609
Chandler Carruth1b03c872011-07-02 00:01:44 +00004610static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4611 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004612 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004613
Chandler Carruth87c44602011-07-01 23:49:12 +00004614 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004615 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004616}
4617
Chandler Carruth1b03c872011-07-02 00:01:44 +00004618static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4619 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004620 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004621 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004622 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004623 return;
4624 }
4625
Chandler Carruth87c44602011-07-01 23:49:12 +00004626 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004627 QualType type = vd->getType();
4628
4629 if (!type->isDependentType() &&
4630 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004631 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004632 << type;
4633 return;
4634 }
4635
4636 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4637
4638 // If we have no lifetime yet, check the lifetime we're presumably
4639 // going to infer.
4640 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4641 lifetime = type->getObjCARCImplicitLifetime();
4642
4643 switch (lifetime) {
4644 case Qualifiers::OCL_None:
4645 assert(type->isDependentType() &&
4646 "didn't infer lifetime for non-dependent type?");
4647 break;
4648
4649 case Qualifiers::OCL_Weak: // meaningful
4650 case Qualifiers::OCL_Strong: // meaningful
4651 break;
4652
4653 case Qualifiers::OCL_ExplicitNone:
4654 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004655 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004656 << (lifetime == Qualifiers::OCL_Autoreleasing);
4657 break;
4658 }
4659
Chandler Carruth87c44602011-07-01 23:49:12 +00004660 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004661 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4662 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004663}
4664
Francois Pichet11542142010-12-19 06:50:37 +00004665//===----------------------------------------------------------------------===//
4666// Microsoft specific attribute handlers.
4667//===----------------------------------------------------------------------===//
4668
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004669// Check if MS extensions or some other language extensions are enabled. If
4670// not, issue a diagnostic that the given attribute is unused.
4671static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4672 bool OtherExtension = false) {
4673 if (S.LangOpts.MicrosoftExt || OtherExtension)
4674 return true;
4675 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4676 return false;
4677}
4678
Chandler Carruth1b03c872011-07-02 00:01:44 +00004679static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004680 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4681 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004682
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004683 // check the attribute arguments.
4684 if (!checkAttributeNumArgs(S, Attr, 1))
4685 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004686
Aaron Ballman624421f2013-08-31 01:11:41 +00004687 Expr *Arg = Attr.getArgAsExpr(0);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004688 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
4689 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004690 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4691 << Attr.getName() << AANT_ArgumentString;
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004692 return;
4693 }
Francois Pichetd3d3be92010-12-20 01:41:49 +00004694
David Majnemerbb0ed292013-08-09 08:56:20 +00004695 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4696 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004697 StringRef StrRef = Str->getString();
David Majnemerbb0ed292013-08-09 08:56:20 +00004698 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4699 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004700
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004701 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004702 if (StrRef.size() != 36) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004703 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4704 return;
4705 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004706
David Majnemerbb0ed292013-08-09 08:56:20 +00004707 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004708 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004709 if (StrRef[i] != '-') {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004710 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4711 return;
4712 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004713 } else if (!isHexDigit(StrRef[i])) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004714 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4715 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004716 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004717 }
Francois Pichet11542142010-12-19 06:50:37 +00004718
David Majnemerbb0ed292013-08-09 08:56:20 +00004719 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4720 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004721}
4722
John McCallc052dbb2012-05-22 21:28:12 +00004723static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004724 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004725 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004726
4727 AttributeList::Kind Kind = Attr.getKind();
4728 if (Kind == AttributeList::AT_SingleInheritance)
4729 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004730 ::new (S.Context)
4731 SingleInheritanceAttr(Attr.getRange(), S.Context,
4732 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004733 else if (Kind == AttributeList::AT_MultipleInheritance)
4734 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004735 ::new (S.Context)
4736 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4737 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004738 else if (Kind == AttributeList::AT_VirtualInheritance)
4739 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004740 ::new (S.Context)
4741 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4742 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004743}
4744
4745static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004746 if (!checkMicrosoftExt(S, Attr))
4747 return;
4748
4749 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004750 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004751 D->addAttr(
4752 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4753 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004754}
4755
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004756static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004757 if (!checkMicrosoftExt(S, Attr))
4758 return;
4759 D->addAttr(::new (S.Context)
4760 ForceInlineAttr(Attr.getRange(), S.Context,
4761 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004762}
4763
Reid Klecknera7225342013-05-20 14:02:37 +00004764static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4765 if (!checkMicrosoftExt(S, Attr))
4766 return;
4767 // Check linkage after possibly merging declaratinos. See
4768 // checkAttributesAfterMerging().
4769 D->addAttr(::new (S.Context)
4770 SelectAnyAttr(Attr.getRange(), S.Context,
4771 Attr.getAttributeSpellingListIndex()));
4772}
4773
Ted Kremenekb71368d2009-05-09 02:44:38 +00004774//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004775// Top Level Sema Entry Points
4776//===----------------------------------------------------------------------===//
4777
Richard Smith4a97b8e2013-08-29 00:47:48 +00004778/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4779/// the attribute applies to decls. If the attribute is a type attribute, just
4780/// silently ignore it if a GNU attribute.
4781static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4782 const AttributeList &Attr,
4783 bool IncludeCXX11Attributes) {
4784 if (Attr.isInvalid())
4785 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004786
Richard Smith4a97b8e2013-08-29 00:47:48 +00004787 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4788 // instead.
4789 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4790 return;
4791
Chris Lattner803d0802008-06-29 00:43:07 +00004792 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004793 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4794 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4795 case AttributeList::AT_IBOutletCollection:
4796 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004797 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004798 case AttributeList::AT_ObjCGC:
4799 case AttributeList::AT_VectorSize:
4800 case AttributeList::AT_NeonVectorType:
4801 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004802 case AttributeList::AT_Ptr32:
4803 case AttributeList::AT_Ptr64:
4804 case AttributeList::AT_SPtr:
4805 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004806 // Ignore these, these are type attributes, handled by
4807 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004808 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004809 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4810 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4811 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4812 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004813 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004814 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004815 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004816 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004817 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4818 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4819 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004820 handleDependencyAttr(S, scope, D, Attr);
4821 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004822 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4823 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4824 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004825 case AttributeList::AT_CXX11NoReturn:
4826 handleCXX11NoReturnAttr(S, D, Attr);
4827 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004828 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004829 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004830 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004831 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4832 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004833 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004834 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004835 case AttributeList::AT_MinSize:
4836 handleMinSizeAttr(S, D, Attr);
4837 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004838 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4839 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4840 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004841 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4842 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004843 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4844 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004845 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004846 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004847 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4848 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004849 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004850 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4851 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004852 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004853 case AttributeList::AT_ownership_returns:
4854 case AttributeList::AT_ownership_takes:
4855 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004856 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004857 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4858 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4859 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4860 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4861 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4862 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4863 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004864
Sean Hunt8e083e72012-06-19 23:57:03 +00004865 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004866 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004867 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004868 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004869
Sean Hunt8e083e72012-06-19 23:57:03 +00004870 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004871 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4872
Fariborz Jahanian84101132012-09-07 23:46:23 +00004873 case AttributeList::AT_ObjCRequiresSuper:
4874 handleObjCRequiresSuperAttr(S, D, Attr); break;
4875
Sean Hunt8e083e72012-06-19 23:57:03 +00004876 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004877 handleNSBridgedAttr(S, scope, D, Attr); break;
4878
Sean Hunt8e083e72012-06-19 23:57:03 +00004879 case AttributeList::AT_CFAuditedTransfer:
4880 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004881 handleCFTransferAttr(S, D, Attr); break;
4882
Ted Kremenekb71368d2009-05-09 02:44:38 +00004883 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004884 case AttributeList::AT_CFConsumed:
4885 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4886 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004887 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004888
Sean Hunt8e083e72012-06-19 23:57:03 +00004889 case AttributeList::AT_NSReturnsAutoreleased:
4890 case AttributeList::AT_NSReturnsNotRetained:
4891 case AttributeList::AT_CFReturnsNotRetained:
4892 case AttributeList::AT_NSReturnsRetained:
4893 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004894 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004895
Tanya Lattner0df579e2012-07-09 22:06:01 +00004896 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004897 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004898 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004899
Joey Gouly37453b92013-03-08 09:42:32 +00004900 case AttributeList::AT_VecTypeHint:
4901 handleVecTypeHint(S, D, Attr); break;
4902
Sean Hunt8e083e72012-06-19 23:57:03 +00004903 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004904 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004905
Sean Hunt8e083e72012-06-19 23:57:03 +00004906 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4907 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4908 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004909 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004910 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004911 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004912 handleArcWeakrefUnavailableAttr (S, D, Attr);
4913 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004914 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004915 handleObjCRootClassAttr(S, D, Attr);
4916 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004917 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004918 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004919 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004920 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4921 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004922 handleReturnsTwiceAttr(S, D, Attr);
4923 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004924 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004925 case AttributeList::AT_Visibility:
4926 handleVisibilityAttr(S, D, Attr, false);
4927 break;
4928 case AttributeList::AT_TypeVisibility:
4929 handleVisibilityAttr(S, D, Attr, true);
4930 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004931 case AttributeList::AT_WarnUnused:
4932 handleWarnUnusedAttr(S, D, Attr);
4933 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004934 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004935 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004936 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4937 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4938 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4939 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004940 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004941 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004942 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004943 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004944 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004945 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004946 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004947 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004948 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4949 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4950 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4951 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4952 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4953 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4954 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4955 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4956 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004957 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004958 // Just ignore
4959 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004960 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004961 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004962 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004963 case AttributeList::AT_StdCall:
4964 case AttributeList::AT_CDecl:
4965 case AttributeList::AT_FastCall:
4966 case AttributeList::AT_ThisCall:
4967 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004968 case AttributeList::AT_MSABI:
4969 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004970 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004971 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004972 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004973 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004974 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004975 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004976 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004977 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004978 case AttributeList::AT_OpenCLImageAccess:
4979 handleOpenCLImageAccessAttr(S, D, Attr);
4980 break;
John McCallc052dbb2012-05-22 21:28:12 +00004981
4982 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004983 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004984 handleMsStructAttr(S, D, Attr);
4985 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004986 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004987 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004988 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004989 case AttributeList::AT_SingleInheritance:
4990 case AttributeList::AT_MultipleInheritance:
4991 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004992 handleInheritanceAttr(S, D, Attr);
4993 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004994 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004995 handlePortabilityAttr(S, D, Attr);
4996 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004997 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004998 handleForceInlineAttr(S, D, Attr);
4999 break;
Reid Klecknera7225342013-05-20 14:02:37 +00005000 case AttributeList::AT_SelectAny:
5001 handleSelectAnyAttr(S, D, Attr);
5002 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005003
5004 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00005005 case AttributeList::AT_AssertExclusiveLock:
5006 handleAssertExclusiveLockAttr(S, D, Attr);
5007 break;
5008 case AttributeList::AT_AssertSharedLock:
5009 handleAssertSharedLockAttr(S, D, Attr);
5010 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005011 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005012 handleGuardedVarAttr(S, D, Attr);
5013 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005014 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00005015 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005016 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005017 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00005018 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005019 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00005020 case AttributeList::AT_NoSanitizeAddress:
5021 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00005022 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005023 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00005024 handleNoThreadSafetyAnalysis(S, D, Attr);
5025 break;
5026 case AttributeList::AT_NoSanitizeThread:
5027 handleNoSanitizeThread(S, D, Attr);
5028 break;
5029 case AttributeList::AT_NoSanitizeMemory:
5030 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005031 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005032 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005033 handleLockableAttr(S, D, Attr);
5034 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005035 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005036 handleGuardedByAttr(S, D, Attr);
5037 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005038 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00005039 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005040 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005041 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00005042 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005043 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005044 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00005045 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005046 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005047 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00005048 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005049 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005050 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005051 handleLockReturnedAttr(S, D, Attr);
5052 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005053 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005054 handleLocksExcludedAttr(S, D, Attr);
5055 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005056 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00005057 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005058 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005059 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00005060 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005061 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005062 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00005063 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005064 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005065 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005066 handleUnlockFunAttr(S, D, Attr);
5067 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005068 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00005069 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005070 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005071 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00005072 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005073 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005074
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005075 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00005076 case AttributeList::AT_Consumable:
5077 handleConsumableAttr(S, D, Attr);
5078 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005079 case AttributeList::AT_Consumes:
5080 handleConsumesAttr(S, D, Attr);
5081 break;
5082 case AttributeList::AT_CallableWhenUnconsumed:
5083 handleCallableWhenUnconsumedAttr(S, D, Attr);
5084 break;
5085 case AttributeList::AT_TestsConsumed:
5086 handleTestsConsumedAttr(S, D, Attr);
5087 break;
5088 case AttributeList::AT_TestsUnconsumed:
5089 handleTestsUnconsumedAttr(S, D, Attr);
5090 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00005091 case AttributeList::AT_ReturnTypestate:
5092 handleReturnTypestateAttr(S, D, Attr);
5093 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005094
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00005095 // Type safety attributes.
5096 case AttributeList::AT_ArgumentWithTypeTag:
5097 handleArgumentWithTypeTagAttr(S, D, Attr);
5098 break;
5099 case AttributeList::AT_TypeTagForDatatype:
5100 handleTypeTagForDatatypeAttr(S, D, Attr);
5101 break;
5102
Chris Lattner803d0802008-06-29 00:43:07 +00005103 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00005104 // Ask target about the attribute.
5105 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
5106 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00005107 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
5108 diag::warn_unhandled_ms_attribute_ignored :
5109 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00005110 break;
5111 }
5112}
5113
5114/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
5115/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00005116void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00005117 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00005118 bool IncludeCXX11Attributes) {
5119 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005120 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005121
5122 // GCC accepts
5123 // static int a9 __attribute__((weakref));
5124 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005125 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005126 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00005127 cast<NamedDecl>(D)->getNameAsString();
5128 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005129 return;
Chris Lattner803d0802008-06-29 00:43:07 +00005130 }
5131}
5132
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005133// Annotation attributes are the only attributes allowed after an access
5134// specifier.
5135bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
5136 const AttributeList *AttrList) {
5137 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00005138 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005139 handleAnnotateAttr(*this, ASDecl, *l);
5140 } else {
5141 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
5142 return true;
5143 }
5144 }
5145
5146 return false;
5147}
5148
John McCalle82247a2011-10-01 05:17:03 +00005149/// checkUnusedDeclAttributes - Check a list of attributes to see if it
5150/// contains any decl attributes that we should warn about.
5151static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
5152 for ( ; A; A = A->getNext()) {
5153 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00005154 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00005155 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
5156
5157 if (A->getKind() == AttributeList::UnknownAttribute) {
5158 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
5159 << A->getName() << A->getRange();
5160 } else {
5161 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
5162 << A->getName() << A->getRange();
5163 }
5164 }
5165}
5166
5167/// checkUnusedDeclAttributes - Given a declarator which is not being
5168/// used to build a declaration, complain about any decl attributes
5169/// which might be lying around on it.
5170void Sema::checkUnusedDeclAttributes(Declarator &D) {
5171 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
5172 ::checkUnusedDeclAttributes(*this, D.getAttributes());
5173 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
5174 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
5175}
5176
Ryan Flynne25ff832009-07-30 03:15:39 +00005177/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00005178/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00005179NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5180 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005181 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00005182 NamedDecl *NewD = 0;
5183 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00005184 FunctionDecl *NewFD;
5185 // FIXME: Missing call to CheckFunctionDeclaration().
5186 // FIXME: Mangling?
5187 // FIXME: Is the qualifier info correct?
5188 // FIXME: Is the DeclContext correct?
5189 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
5190 Loc, Loc, DeclarationName(II),
5191 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005192 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00005193 FD->hasPrototype(),
5194 false/*isConstexprSpecified*/);
5195 NewD = NewFD;
5196
5197 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005198 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00005199
5200 // Fake up parameter variables; they are declared as if this were
5201 // a typedef.
5202 QualType FDTy = FD->getType();
5203 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5204 SmallVector<ParmVarDecl*, 16> Params;
5205 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5206 AE = FT->arg_type_end(); AI != AE; ++AI) {
5207 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5208 Param->setScopeInfo(0, Params.size());
5209 Params.push_back(Param);
5210 }
David Blaikie4278c652011-09-21 18:16:56 +00005211 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005212 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005213 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5214 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005215 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005216 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005217 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00005218 if (VD->getQualifier()) {
5219 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005220 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005221 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005222 }
5223 return NewD;
5224}
5225
James Dennett1dfbd922012-06-14 21:40:34 +00005226/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005227/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005228void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005229 if (W.getUsed()) return; // only do this once
5230 W.setUsed(true);
5231 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5232 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005233 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005234 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5235 NDId->getName()));
5236 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005237 WeakTopLevelDecl.push_back(NewD);
5238 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5239 // to insert Decl at TU scope, sorry.
5240 DeclContext *SavedContext = CurContext;
5241 CurContext = Context.getTranslationUnitDecl();
5242 PushOnScopeChains(NewD, S);
5243 CurContext = SavedContext;
5244 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005245 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005246 }
5247}
5248
Rafael Espindola65611bf2013-03-02 21:41:48 +00005249void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5250 // It's valid to "forward-declare" #pragma weak, in which case we
5251 // have to do this.
5252 LoadExternalWeakUndeclaredIdentifiers();
5253 if (!WeakUndeclaredIdentifiers.empty()) {
5254 NamedDecl *ND = NULL;
5255 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5256 if (VD->isExternC())
5257 ND = VD;
5258 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5259 if (FD->isExternC())
5260 ND = FD;
5261 if (ND) {
5262 if (IdentifierInfo *Id = ND->getIdentifier()) {
5263 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5264 = WeakUndeclaredIdentifiers.find(Id);
5265 if (I != WeakUndeclaredIdentifiers.end()) {
5266 WeakInfo W = I->second;
5267 DeclApplyPragmaWeak(S, ND, W);
5268 WeakUndeclaredIdentifiers[Id] = W;
5269 }
5270 }
5271 }
5272 }
5273}
5274
Chris Lattner0744e5f2008-06-29 00:23:49 +00005275/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5276/// it, apply them to D. This is a bit tricky because PD can have attributes
5277/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005278void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005279 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005280 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005281 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005282
Chris Lattner0744e5f2008-06-29 00:23:49 +00005283 // Walk the declarator structure, applying decl attributes that were in a type
5284 // position to the decl itself. This handles cases like:
5285 // int *__attr__(x)** D;
5286 // when X is a decl attribute.
5287 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5288 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005289 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005290
Chris Lattner0744e5f2008-06-29 00:23:49 +00005291 // Finally, apply any attributes on the decl itself.
5292 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005293 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005294}
John McCall54abf7d2009-11-04 02:18:39 +00005295
John McCallf85e1932011-06-15 23:02:42 +00005296/// Is the given declaration allowed to use a forbidden type?
5297static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5298 // Private ivars are always okay. Unfortunately, people don't
5299 // always properly make their ivars private, even in system headers.
5300 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005301 // Function declarations in sys headers will be marked unavailable.
5302 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5303 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005304 return false;
5305
5306 // Require it to be declared in a system header.
5307 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5308}
5309
5310/// Handle a delayed forbidden-type diagnostic.
5311static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5312 Decl *decl) {
5313 if (decl && isForbiddenTypeAllowed(S, decl)) {
5314 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5315 "this system declaration uses an unsupported type"));
5316 return;
5317 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005318 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005319 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005320 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005321 // kind of forbidden type messages on unavailable functions.
5322 if (FD->hasAttr<UnavailableAttr>() &&
5323 diag.getForbiddenTypeDiagnostic() ==
5324 diag::err_arc_array_param_no_ownership) {
5325 diag.Triggered = true;
5326 return;
5327 }
5328 }
John McCallf85e1932011-06-15 23:02:42 +00005329
5330 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5331 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5332 diag.Triggered = true;
5333}
5334
John McCall92576642012-05-07 06:16:41 +00005335void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5336 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005337 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005338 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005339
John McCall92576642012-05-07 06:16:41 +00005340 // When delaying diagnostics to run in the context of a parsed
5341 // declaration, we only want to actually emit anything if parsing
5342 // succeeds.
5343 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005344
John McCall92576642012-05-07 06:16:41 +00005345 // We emit all the active diagnostics in this pool or any of its
5346 // parents. In general, we'll get one pool for the decl spec
5347 // and a child pool for each declarator; in a decl group like:
5348 // deprecated_typedef foo, *bar, baz();
5349 // only the declarator pops will be passed decls. This is correct;
5350 // we really do need to consider delayed diagnostics from the decl spec
5351 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005352 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005353 do {
John McCall13489672012-05-07 06:16:58 +00005354 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005355 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5356 // This const_cast is a bit lame. Really, Triggered should be mutable.
5357 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005358 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005359 continue;
5360
John McCalleee1d542011-02-14 07:13:47 +00005361 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005362 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005363 // Don't bother giving deprecation diagnostics if the decl is invalid.
5364 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005365 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005366 break;
5367
5368 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005369 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005370 break;
John McCallf85e1932011-06-15 23:02:42 +00005371
5372 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005373 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005374 break;
John McCall2f514482010-01-27 03:50:35 +00005375 }
5376 }
John McCall92576642012-05-07 06:16:41 +00005377 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005378}
5379
John McCall13489672012-05-07 06:16:58 +00005380/// Given a set of delayed diagnostics, re-emit them as if they had
5381/// been delayed in the current context instead of in the given pool.
5382/// Essentially, this just moves them to the current pool.
5383void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5384 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5385 assert(curPool && "re-emitting in undelayed context not supported");
5386 curPool->steal(pool);
5387}
5388
John McCall54abf7d2009-11-04 02:18:39 +00005389static bool isDeclDeprecated(Decl *D) {
5390 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005391 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005392 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005393 // A category implicitly has the availability of the interface.
5394 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5395 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005396 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5397 return false;
5398}
5399
Eli Friedmanc3b23082012-08-08 21:52:41 +00005400static void
5401DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5402 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005403 const ObjCInterfaceDecl *UnknownObjCClass,
5404 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005405 DeclarationName Name = D->getDeclName();
5406 if (!Message.empty()) {
5407 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5408 S.Diag(D->getLocation(),
5409 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5410 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005411 if (ObjCPropery)
5412 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5413 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005414 } else if (!UnknownObjCClass) {
5415 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5416 S.Diag(D->getLocation(),
5417 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5418 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005419 if (ObjCPropery)
5420 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5421 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005422 } else {
5423 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5424 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5425 }
5426}
5427
John McCall9c3087b2010-08-26 02:13:20 +00005428void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005429 Decl *Ctx) {
5430 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005431 return;
5432
John McCall2f514482010-01-27 03:50:35 +00005433 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005434 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5435 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005436 DD.getUnknownObjCClass(),
5437 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005438}
5439
Chris Lattner5f9e2722011-07-23 10:55:15 +00005440void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005441 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005442 const ObjCInterfaceDecl *UnknownObjCClass,
5443 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005444 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005445 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005446 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5447 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005448 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005449 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005450 return;
5451 }
5452
5453 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005454 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005455 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005456 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005457}