blob: cc4f107aeb5430d5ea4939375ba8ccd1e7b8d721 [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) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000971 if (!checkAttributeNumArgs(S, Attr, 0)) return;
972
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000973 if (!isa<CXXRecordDecl>(D)) {
974 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
975 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000976 return;
977 }
978
979 D->addAttr(::new (S.Context)
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000980 ConsumableAttr(Attr.getRange(), S.Context,
981 Attr.getAttributeSpellingListIndex()));
982}
983
984static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
985 const AttributeList &Attr) {
986 ASTContext &CurrContext = S.getASTContext();
987 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
988
989 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
990 if (!RD->hasAttr<ConsumableAttr>()) {
991 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
992 RD->getNameAsString();
993
994 return false;
995 }
996 }
997
998 return true;
999}
1000
1001static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1002 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1003
1004 if (!isa<CXXMethodDecl>(D)) {
1005 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1006 Attr.getName() << ExpectedMethod;
1007 return;
1008 }
1009
1010 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1011 return;
1012
1013 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001014 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001015 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001016}
1017
1018static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1019 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001020 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1021
1022 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001023 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1024 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001025 return;
1026 }
1027
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001028 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1029 return;
1030
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001031 D->addAttr(::new (S.Context)
1032 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001033 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001034}
1035
1036static void handleTestsConsumedAttr(Sema &S, Decl *D,
1037 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001038 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1039
1040 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001041 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1042 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001043 return;
1044 }
1045
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001046 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1047 return;
1048
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001049 D->addAttr(::new (S.Context)
1050 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001051 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001052}
1053
1054static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1055 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001056 if (!checkAttributeNumArgs(S, Attr, 0)) return;
1057
1058 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001059 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1060 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001061 return;
1062 }
1063
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001064 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1065 return;
1066
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001067 D->addAttr(::new (S.Context)
1068 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001069 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001070}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001071
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001072static void handleReturnTypestateAttr(Sema &S, Decl *D,
1073 const AttributeList &Attr) {
1074 if (!checkAttributeNumArgs(S, Attr, 1)) return;
1075
1076 ReturnTypestateAttr::ConsumedState ReturnState;
1077
1078 if (Attr.isArgIdent(0)) {
1079 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
1080
1081 if (Param == "unknown") {
1082 ReturnState = ReturnTypestateAttr::Unknown;
1083 } else if (Param == "consumed") {
1084 ReturnState = ReturnTypestateAttr::Consumed;
1085 } else if (Param == "unconsumed") {
1086 ReturnState = ReturnTypestateAttr::Unconsumed;
1087 } else {
1088 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
1089 return;
1090 }
1091
1092 } else {
1093 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1094 Attr.getName() << AANT_ArgumentIdentifier;
1095 return;
1096 }
1097
1098 if (!isa<FunctionDecl>(D)) {
1099 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1100 Attr.getName() << ExpectedFunction;
1101 return;
1102 }
1103
1104 // FIXME: This check is currently being done in the analysis. It can be
1105 // enabled here only after the parser propagates attributes at
1106 // template specialization definition, not declaration.
1107 //QualType ReturnType;
1108 //
1109 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1110 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1111 //
1112 //} else {
1113 //
1114 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1115 //}
1116 //
1117 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1118 //
1119 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1120 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1121 // ReturnType.getAsString();
1122 // return;
1123 //}
1124
1125 D->addAttr(::new (S.Context)
1126 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1127 Attr.getAttributeSpellingListIndex()));
1128}
1129
Chandler Carruth1b03c872011-07-02 00:01:44 +00001130static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1131 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001132 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1133 if (TD == 0) {
1134 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1135 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001136 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001137 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001138 }
Mike Stumpbf916502009-07-24 19:02:52 +00001139
Richard Smitha4fa9002013-01-13 02:11:23 +00001140 // Remember this typedef decl, we will need it later for diagnostics.
1141 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001142}
1143
Chandler Carruth1b03c872011-07-02 00:01:44 +00001144static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001145 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001146 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001147 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001148
Chandler Carruth87c44602011-07-01 23:49:12 +00001149 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001150 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001151 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001152 // If the alignment is less than or equal to 8 bits, the packed attribute
1153 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001154 if (!FD->getType()->isDependentType() &&
1155 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001156 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001157 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001158 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001159 else
Michael Han51d8c522013-01-24 16:46:58 +00001160 FD->addAttr(::new (S.Context)
1161 PackedAttr(Attr.getRange(), S.Context,
1162 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001163 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001164 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001165}
1166
Chandler Carruth1b03c872011-07-02 00:01:44 +00001167static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001168 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001169 RD->addAttr(::new (S.Context)
1170 MsStructAttr(Attr.getRange(), S.Context,
1171 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001172 else
1173 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1174}
1175
Chandler Carruth1b03c872011-07-02 00:01:44 +00001176static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +00001177 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001178 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +00001179 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001180
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001181 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001182 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001183 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001184 D->addAttr(::new (S.Context)
1185 IBActionAttr(Attr.getRange(), S.Context,
1186 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001187 return;
1188 }
1189
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001190 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001191}
1192
Ted Kremenek2f041d02011-09-29 07:02:25 +00001193static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1194 // The IBOutlet/IBOutletCollection attributes only apply to instance
1195 // variables or properties of Objective-C classes. The outlet must also
1196 // have an object reference type.
1197 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1198 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001199 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001200 << Attr.getName() << VD->getType() << 0;
1201 return false;
1202 }
1203 }
1204 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1205 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001206 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001207 << Attr.getName() << PD->getType() << 1;
1208 return false;
1209 }
1210 }
1211 else {
1212 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1213 return false;
1214 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001215
Ted Kremenek2f041d02011-09-29 07:02:25 +00001216 return true;
1217}
1218
Chandler Carruth1b03c872011-07-02 00:01:44 +00001219static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001220 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001221 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001222 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001223
1224 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001225 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001226
Michael Han51d8c522013-01-24 16:46:58 +00001227 D->addAttr(::new (S.Context)
1228 IBOutletAttr(Attr.getRange(), S.Context,
1229 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001230}
1231
Chandler Carruth1b03c872011-07-02 00:01:44 +00001232static void handleIBOutletCollection(Sema &S, Decl *D,
1233 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001234
1235 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001236 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001237 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1238 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001239 return;
1240 }
1241
Ted Kremenek2f041d02011-09-29 07:02:25 +00001242 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001243 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001244
Aaron Ballman624421f2013-08-31 01:11:41 +00001245 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1246 IdentifierInfo *II;
1247 SourceLocation ILS;
1248 if (IL) {
1249 II = IL->Ident;
1250 ILS = IL->Loc;
1251 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001252 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001253 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001254
John McCallb3d87482010-08-24 05:47:05 +00001255 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001256 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001257 if (!TypeRep) {
1258 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1259 return;
1260 }
John McCallb3d87482010-08-24 05:47:05 +00001261 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001262 // Diagnose use of non-object type in iboutletcollection attribute.
1263 // FIXME. Gnu attribute extension ignores use of builtin types in
1264 // attributes. So, __attribute__((iboutletcollection(char))) will be
1265 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001266 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001267 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1268 return;
1269 }
Michael Han51d8c522013-01-24 16:46:58 +00001270 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001271 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001272 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001273}
1274
Chandler Carruthd309c812011-07-01 23:49:16 +00001275static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001276 if (const RecordType *UT = T->getAsUnionType())
1277 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1278 RecordDecl *UD = UT->getDecl();
1279 for (RecordDecl::field_iterator it = UD->field_begin(),
1280 itend = UD->field_end(); it != itend; ++it) {
1281 QualType QT = it->getType();
1282 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1283 T = QT;
1284 return;
1285 }
1286 }
1287 }
1288}
1289
Nuno Lopes587de5b2012-05-24 00:22:00 +00001290static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001291 if (!isFunctionOrMethod(D)) {
1292 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001293 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001294 return;
1295 }
1296
Nuno Lopes587de5b2012-05-24 00:22:00 +00001297 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1298 return;
1299
Nuno Lopes587de5b2012-05-24 00:22:00 +00001300 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001301 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001302 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001303 uint64_t Idx;
1304 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1305 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001306 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001307
1308 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001309 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001310 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001311 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1312 << Attr.getName() << AANT_ArgumentIntegerConstant
1313 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001314 return;
1315 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001316 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001317 }
1318
1319 // check if the function returns a pointer
1320 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1321 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001322 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001323 }
1324
Michael Han51d8c522013-01-24 16:46:58 +00001325 D->addAttr(::new (S.Context)
1326 AllocSizeAttr(Attr.getRange(), S.Context,
1327 SizeArgs.data(), SizeArgs.size(),
1328 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001329}
1330
Chandler Carruth1b03c872011-07-02 00:01:44 +00001331static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001332 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1333 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001334 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001335 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001336 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001337 return;
1338 }
Mike Stumpbf916502009-07-24 19:02:52 +00001339
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001340 SmallVector<unsigned, 8> NonNullArgs;
1341 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001342 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001343 uint64_t Idx;
1344 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1345 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001346 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001347
1348 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001349 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001350 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001351
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001352 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001353 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001354 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001355 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001356 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001357 }
Mike Stumpbf916502009-07-24 19:02:52 +00001358
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001359 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001360 }
Mike Stumpbf916502009-07-24 19:02:52 +00001361
1362 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1363 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001364 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001365 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1366 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001367 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001368 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001369 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001370 }
Mike Stumpbf916502009-07-24 19:02:52 +00001371
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001372 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001373 if (NonNullArgs.empty()) {
1374 // Warn the trivial case only if attribute is not coming from a
1375 // macro instantiation.
1376 if (Attr.getLoc().isFileID())
1377 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001378 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001379 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001380 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001381
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001382 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001383 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001384 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001385 D->addAttr(::new (S.Context)
1386 NonNullAttr(Attr.getRange(), S.Context, start, size,
1387 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001388}
1389
Chandler Carruth1b03c872011-07-02 00:01:44 +00001390static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001391 // This attribute must be applied to a function declaration.
1392 // The first argument to the attribute must be a string,
1393 // the name of the resource, for example "malloc".
1394 // The following arguments must be argument indexes, the arguments must be
1395 // of integer type for Returns, otherwise of pointer type.
1396 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001397 // after being held. free() should be __attribute((ownership_takes)), whereas
1398 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001399
Aaron Ballman624421f2013-08-31 01:11:41 +00001400 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001401 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001402 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403 return;
1404 }
1405 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001406 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001407 switch (AL.getKind()) {
1408 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001409 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001410 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001411 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1412 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001413 return;
1414 }
Jordy Rose2a479922010-08-12 08:54:03 +00001415 break;
1416 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001417 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001418 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001419 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1420 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001421 return;
1422 }
Jordy Rose2a479922010-08-12 08:54:03 +00001423 break;
1424 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001425 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001426 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001427 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001428 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001429 return;
1430 }
Jordy Rose2a479922010-08-12 08:54:03 +00001431 break;
1432 default:
1433 // This should never happen given how we are called.
1434 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001435 }
1436
Chandler Carruth87c44602011-07-01 23:49:12 +00001437 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001438 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1439 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001440 return;
1441 }
1442
Aaron Ballman624421f2013-08-31 01:11:41 +00001443 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001444
1445 // Normalize the argument, __foo__ becomes foo.
1446 if (Module.startswith("__") && Module.endswith("__"))
1447 Module = Module.substr(2, Module.size() - 4);
1448
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001449
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001450 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001451 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1452 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001453 uint64_t Idx;
1454 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001455 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001456 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001457
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001458 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001459 case OwnershipAttr::Takes:
1460 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001461 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001462 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001463 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1464 // FIXME: Should also highlight argument in decl.
1465 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001466 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001467 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001468 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001469 continue;
1470 }
1471 break;
1472 }
Sean Huntcf807c42010-08-18 23:23:40 +00001473 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001474 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001475 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001476 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001477 llvm::APSInt ArgNum(32);
1478 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1479 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1480 S.Diag(AL.getLoc(), diag::err_ownership_type)
1481 << "ownership_returns" << "integer"
1482 << IdxExpr->getSourceRange();
1483 return;
1484 }
1485 }
1486 break;
1487 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001488 } // switch
1489
1490 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001491 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001492 i = D->specific_attr_begin<OwnershipAttr>(),
1493 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001494 i != e; ++i) {
1495 if ((*i)->getOwnKind() != K) {
1496 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1497 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001498 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001499 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1500 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001501 }
1502 }
1503 }
1504 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001505 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001506 }
1507
1508 unsigned* start = OwnershipArgs.data();
1509 unsigned size = OwnershipArgs.size();
1510 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001511
1512 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001513 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1514 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001515 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001516 }
Sean Huntcf807c42010-08-18 23:23:40 +00001517
Michael Han51d8c522013-01-24 16:46:58 +00001518 D->addAttr(::new (S.Context)
1519 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1520 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001521}
1522
Chandler Carruth1b03c872011-07-02 00:01:44 +00001523static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001524 // Check the attribute arguments.
1525 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001526 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1527 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001528 return;
1529 }
1530
Chandler Carruth87c44602011-07-01 23:49:12 +00001531 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001532 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001533 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001534 return;
1535 }
1536
Chandler Carruth87c44602011-07-01 23:49:12 +00001537 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001538
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001539 // gcc rejects
1540 // class c {
1541 // static int a __attribute__((weakref ("v2")));
1542 // static int b() __attribute__((weakref ("f3")));
1543 // };
1544 // and ignores the attributes of
1545 // void f(void) {
1546 // static int a __attribute__((weakref ("v2")));
1547 // }
1548 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001549 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001550 if (!Ctx->isFileContext()) {
1551 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001552 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001553 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001554 }
1555
1556 // The GCC manual says
1557 //
1558 // At present, a declaration to which `weakref' is attached can only
1559 // be `static'.
1560 //
1561 // It also says
1562 //
1563 // Without a TARGET,
1564 // given as an argument to `weakref' or to `alias', `weakref' is
1565 // equivalent to `weak'.
1566 //
1567 // gcc 4.4.1 will accept
1568 // int a7 __attribute__((weakref));
1569 // as
1570 // int a7 __attribute__((weak));
1571 // This looks like a bug in gcc. We reject that for now. We should revisit
1572 // it if this behaviour is actually used.
1573
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001574 // GCC rejects
1575 // static ((alias ("y"), weakref)).
1576 // Should we? How to check that weakref is before or after alias?
1577
Aaron Ballman624421f2013-08-31 01:11:41 +00001578 if (Attr.isArgExpr(0)) {
1579 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001580 Arg = Arg->IgnoreParenCasts();
1581 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1582
Douglas Gregor5cee1192011-07-27 05:40:30 +00001583 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001584 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001585 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001586 return;
1587 }
1588 // GCC will accept anything as the argument of weakref. Should we
1589 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001590 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001591 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001592 }
1593
Michael Han51d8c522013-01-24 16:46:58 +00001594 D->addAttr(::new (S.Context)
1595 WeakRefAttr(Attr.getRange(), S.Context,
1596 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001597}
1598
Chandler Carruth1b03c872011-07-02 00:01:44 +00001599static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001600 // check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001601 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001602 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001603
Aaron Ballman624421f2013-08-31 01:11:41 +00001604 StringLiteral *Str = 0;
1605 if (Attr.isArgExpr(0))
1606 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00001607
Douglas Gregor5cee1192011-07-27 05:40:30 +00001608 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001609 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1610 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001611 return;
1612 }
Mike Stumpbf916502009-07-24 19:02:52 +00001613
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001614 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001615 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1616 return;
1617 }
1618
Chris Lattner6b6b5372008-06-26 18:38:35 +00001619 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001620
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001621 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001622 Str->getString(),
1623 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001624}
1625
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001626static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1627 // Check the attribute arguments.
1628 if (!checkAttributeNumArgs(S, Attr, 0))
1629 return;
1630
1631 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1632 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1633 << Attr.getName() << ExpectedFunctionOrMethod;
1634 return;
1635 }
1636
Michael Han51d8c522013-01-24 16:46:58 +00001637 D->addAttr(::new (S.Context)
1638 MinSizeAttr(Attr.getRange(), S.Context,
1639 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001640}
1641
Benjamin Krameree409a92012-05-12 21:10:52 +00001642static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1643 // Check the attribute arguments.
1644 if (!checkAttributeNumArgs(S, Attr, 0))
1645 return;
1646
1647 if (!isa<FunctionDecl>(D)) {
1648 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1649 << Attr.getName() << ExpectedFunction;
1650 return;
1651 }
1652
1653 if (D->hasAttr<HotAttr>()) {
1654 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1655 << Attr.getName() << "hot";
1656 return;
1657 }
1658
Michael Han51d8c522013-01-24 16:46:58 +00001659 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1660 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001661}
1662
1663static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1664 // Check the attribute arguments.
1665 if (!checkAttributeNumArgs(S, Attr, 0))
1666 return;
1667
1668 if (!isa<FunctionDecl>(D)) {
1669 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1670 << Attr.getName() << ExpectedFunction;
1671 return;
1672 }
1673
1674 if (D->hasAttr<ColdAttr>()) {
1675 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1676 << Attr.getName() << "cold";
1677 return;
1678 }
1679
Michael Han51d8c522013-01-24 16:46:58 +00001680 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1681 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001682}
1683
Chandler Carruth1b03c872011-07-02 00:01:44 +00001684static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001685 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001686 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001687 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001688
Chandler Carruth87c44602011-07-01 23:49:12 +00001689 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001690 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001691 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001692 return;
1693 }
1694
Michael Han51d8c522013-01-24 16:46:58 +00001695 D->addAttr(::new (S.Context)
1696 NakedAttr(Attr.getRange(), S.Context,
1697 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001698}
1699
Chandler Carruth1b03c872011-07-02 00:01:44 +00001700static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1701 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001702 // Check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001703 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001704 return;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001705
Chandler Carruth87c44602011-07-01 23:49:12 +00001706 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001707 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001708 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001709 return;
1710 }
Mike Stumpbf916502009-07-24 19:02:52 +00001711
Michael Han51d8c522013-01-24 16:46:58 +00001712 D->addAttr(::new (S.Context)
1713 AlwaysInlineAttr(Attr.getRange(), S.Context,
1714 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001715}
1716
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001717static void handleTLSModelAttr(Sema &S, Decl *D,
1718 const AttributeList &Attr) {
1719 // Check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001720 if (!checkAttributeNumArgs(S, Attr, 1))
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001721 return;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001722
Aaron Ballman624421f2013-08-31 01:11:41 +00001723 Expr *Arg = Attr.getArgAsExpr(0);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001724 Arg = Arg->IgnoreParenCasts();
1725 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1726
1727 // Check that it is a string.
1728 if (!Str) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001729 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1730 << Attr.getName() << AANT_ArgumentString;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001731 return;
1732 }
1733
Richard Smith38afbc72013-04-13 02:43:54 +00001734 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001735 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1736 << Attr.getName() << ExpectedTLSVar;
1737 return;
1738 }
1739
1740 // Check that the value.
1741 StringRef Model = Str->getString();
1742 if (Model != "global-dynamic" && Model != "local-dynamic"
1743 && Model != "initial-exec" && Model != "local-exec") {
1744 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1745 return;
1746 }
1747
Michael Han51d8c522013-01-24 16:46:58 +00001748 D->addAttr(::new (S.Context)
1749 TLSModelAttr(Attr.getRange(), S.Context, Model,
1750 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001751}
1752
Chandler Carruth1b03c872011-07-02 00:01:44 +00001753static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001754 // Check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001755 if (!checkAttributeNumArgs(S, Attr, 0))
Ryan Flynn76168e22009-08-09 20:07:29 +00001756 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001757
Chandler Carruth87c44602011-07-01 23:49:12 +00001758 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001759 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001760 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001761 D->addAttr(::new (S.Context)
1762 MallocAttr(Attr.getRange(), S.Context,
1763 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001764 return;
1765 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001766 }
1767
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001768 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001769}
1770
Chandler Carruth1b03c872011-07-02 00:01:44 +00001771static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001772 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001773 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001774 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001775
Michael Han51d8c522013-01-24 16:46:58 +00001776 D->addAttr(::new (S.Context)
1777 MayAliasAttr(Attr.getRange(), S.Context,
1778 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001779}
1780
Chandler Carruth1b03c872011-07-02 00:01:44 +00001781static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001782 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001783 D->addAttr(::new (S.Context)
1784 NoCommonAttr(Attr.getRange(), S.Context,
1785 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001786 else
1787 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001788 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001789}
1790
Chandler Carruth1b03c872011-07-02 00:01:44 +00001791static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001792 if (S.LangOpts.CPlusPlus) {
1793 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1794 return;
1795 }
1796
Chandler Carruth87c44602011-07-01 23:49:12 +00001797 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001798 D->addAttr(::new (S.Context)
1799 CommonAttr(Attr.getRange(), S.Context,
1800 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001801 else
1802 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001803 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001804}
1805
Chandler Carruth1b03c872011-07-02 00:01:44 +00001806static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001807 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001808
1809 if (S.CheckNoReturnAttr(attr)) return;
1810
Chandler Carruth87c44602011-07-01 23:49:12 +00001811 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001812 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001813 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001814 return;
1815 }
1816
Michael Han51d8c522013-01-24 16:46:58 +00001817 D->addAttr(::new (S.Context)
1818 NoReturnAttr(attr.getRange(), S.Context,
1819 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001820}
1821
1822bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001823 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001824 attr.setInvalid();
1825 return true;
1826 }
1827
1828 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001829}
1830
Chandler Carruth1b03c872011-07-02 00:01:44 +00001831static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1832 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001833
1834 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1835 // because 'analyzer_noreturn' does not impact the type.
1836
Chandler Carruth1731e202011-07-11 23:30:35 +00001837 if(!checkAttributeNumArgs(S, Attr, 0))
1838 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001839
Chandler Carruth87c44602011-07-01 23:49:12 +00001840 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1841 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001842 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1843 && !VD->getType()->isFunctionPointerType())) {
1844 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001845 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001846 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001847 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001848 return;
1849 }
1850 }
1851
Michael Han51d8c522013-01-24 16:46:58 +00001852 D->addAttr(::new (S.Context)
1853 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1854 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001855}
1856
Richard Smithcd8ab512013-01-17 01:30:42 +00001857static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1858 const AttributeList &Attr) {
1859 // C++11 [dcl.attr.noreturn]p1:
1860 // The attribute may be applied to the declarator-id in a function
1861 // declaration.
1862 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1863 if (!FD) {
1864 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1865 << Attr.getName() << ExpectedFunctionOrMethod;
1866 return;
1867 }
1868
Michael Han51d8c522013-01-24 16:46:58 +00001869 D->addAttr(::new (S.Context)
1870 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1871 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001872}
1873
John Thompson35cc9622010-08-09 21:53:52 +00001874// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001875static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001876/*
1877 Returning a Vector Class in Registers
1878
Eric Christopherf48f3672010-12-01 22:13:54 +00001879 According to the PPU ABI specifications, a class with a single member of
1880 vector type is returned in memory when used as the return value of a function.
1881 This results in inefficient code when implementing vector classes. To return
1882 the value in a single vector register, add the vecreturn attribute to the
1883 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001884
1885 Example:
1886
1887 struct Vector
1888 {
1889 __vector float xyzw;
1890 } __attribute__((vecreturn));
1891
1892 Vector Add(Vector lhs, Vector rhs)
1893 {
1894 Vector result;
1895 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1896 return result; // This will be returned in a register
1897 }
1898*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001899 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001900 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001901 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001902 return;
1903 }
1904
Chandler Carruth87c44602011-07-01 23:49:12 +00001905 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001906 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1907 return;
1908 }
1909
Chandler Carruth87c44602011-07-01 23:49:12 +00001910 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001911 int count = 0;
1912
1913 if (!isa<CXXRecordDecl>(record)) {
1914 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1915 return;
1916 }
1917
1918 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1919 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1920 return;
1921 }
1922
Eric Christopherf48f3672010-12-01 22:13:54 +00001923 for (RecordDecl::field_iterator iter = record->field_begin();
1924 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001925 if ((count == 1) || !iter->getType()->isVectorType()) {
1926 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1927 return;
1928 }
1929 count++;
1930 }
1931
Michael Han51d8c522013-01-24 16:46:58 +00001932 D->addAttr(::new (S.Context)
1933 VecReturnAttr(Attr.getRange(), S.Context,
1934 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001935}
1936
Richard Smith3a2b7a12013-01-28 22:42:45 +00001937static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1938 const AttributeList &Attr) {
1939 if (isa<ParmVarDecl>(D)) {
1940 // [[carries_dependency]] can only be applied to a parameter if it is a
1941 // parameter of a function declaration or lambda.
1942 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1943 S.Diag(Attr.getLoc(),
1944 diag::err_carries_dependency_param_not_function_decl);
1945 return;
1946 }
1947 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001948 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001949 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001950 return;
1951 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001952
1953 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1954 Attr.getRange(), S.Context,
1955 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001956}
1957
Chandler Carruth1b03c872011-07-02 00:01:44 +00001958static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001959 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001960 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek73798892008-07-25 04:39:19 +00001961 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001962
Chandler Carruth87c44602011-07-01 23:49:12 +00001963 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001964 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001965 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001966 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001967 return;
1968 }
Mike Stumpbf916502009-07-24 19:02:52 +00001969
Michael Han51d8c522013-01-24 16:46:58 +00001970 D->addAttr(::new (S.Context)
1971 UnusedAttr(Attr.getRange(), S.Context,
1972 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001973}
1974
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001975static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1976 const AttributeList &Attr) {
1977 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001978 if (!checkAttributeNumArgs(S, Attr, 0))
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001979 return;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001980
1981 if (!isa<FunctionDecl>(D)) {
1982 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1983 << Attr.getName() << ExpectedFunction;
1984 return;
1985 }
1986
Michael Han51d8c522013-01-24 16:46:58 +00001987 D->addAttr(::new (S.Context)
1988 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1989 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001990}
1991
Chandler Carruth1b03c872011-07-02 00:01:44 +00001992static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001993 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001994 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001995 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001996
Chandler Carruth87c44602011-07-01 23:49:12 +00001997 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00001998 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001999 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
2000 return;
2001 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002002 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002003 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002004 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002005 return;
2006 }
Mike Stumpbf916502009-07-24 19:02:52 +00002007
Michael Han51d8c522013-01-24 16:46:58 +00002008 D->addAttr(::new (S.Context)
2009 UsedAttr(Attr.getRange(), S.Context,
2010 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00002011}
2012
Chandler Carruth1b03c872011-07-02 00:01:44 +00002013static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002014 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00002015 if (Attr.getNumArgs() > 1) {
2016 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002017 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002018 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002019
2020 int priority = 65535; // FIXME: Do not hardcode such constants.
2021 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002022 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002023 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002024 if (E->isTypeDependent() || E->isValueDependent() ||
2025 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002026 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002027 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002028 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002029 return;
2030 }
2031 priority = Idx.getZExtValue();
2032 }
Mike Stumpbf916502009-07-24 19:02:52 +00002033
Chandler Carruth87c44602011-07-01 23:49:12 +00002034 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002035 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002036 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002037 return;
2038 }
2039
Michael Han51d8c522013-01-24 16:46:58 +00002040 D->addAttr(::new (S.Context)
2041 ConstructorAttr(Attr.getRange(), S.Context, priority,
2042 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002043}
2044
Chandler Carruth1b03c872011-07-02 00:01:44 +00002045static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002046 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00002047 if (Attr.getNumArgs() > 1) {
2048 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002049 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002050 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002051
2052 int priority = 65535; // FIXME: Do not hardcode such constants.
2053 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002054 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002055 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002056 if (E->isTypeDependent() || E->isValueDependent() ||
2057 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002058 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002059 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002060 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002061 return;
2062 }
2063 priority = Idx.getZExtValue();
2064 }
Mike Stumpbf916502009-07-24 19:02:52 +00002065
Chandler Carruth87c44602011-07-01 23:49:12 +00002066 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002067 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002068 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002069 return;
2070 }
2071
Michael Han51d8c522013-01-24 16:46:58 +00002072 D->addAttr(::new (S.Context)
2073 DestructorAttr(Attr.getRange(), S.Context, priority,
2074 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00002075}
2076
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002077template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002078static void handleAttrWithMessage(Sema &S, Decl *D,
2079 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002080 unsigned NumArgs = Attr.getNumArgs();
2081 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002082 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002083 return;
2084 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002085
2086 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002087 StringRef Str;
Aaron Ballman624421f2013-08-31 01:11:41 +00002088 if (Attr.isArgExpr(0)) {
2089 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002090 if (!SE) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002091 S.Diag(Attr.getArgAsExpr(0)->getLocStart(),
2092 diag::err_attribute_argument_type) << Attr.getName()
2093 << AANT_ArgumentString;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002094 return;
2095 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002096 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002097 }
Mike Stumpbf916502009-07-24 19:02:52 +00002098
Michael Han51d8c522013-01-24 16:46:58 +00002099 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2100 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002101}
2102
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002103static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2104 const AttributeList &Attr) {
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002105 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002106 return;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002107
Michael Han51d8c522013-01-24 16:46:58 +00002108 D->addAttr(::new (S.Context)
2109 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2110 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002111}
2112
Patrick Beardb2f68202012-04-06 18:12:22 +00002113static void handleObjCRootClassAttr(Sema &S, Decl *D,
2114 const AttributeList &Attr) {
2115 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2117 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002118 return;
2119 }
2120
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002121 if (!checkAttributeNumArgs(S, Attr, 0))
Patrick Beardb2f68202012-04-06 18:12:22 +00002122 return;
Patrick Beardb2f68202012-04-06 18:12:22 +00002123
Michael Han51d8c522013-01-24 16:46:58 +00002124 D->addAttr(::new (S.Context)
2125 ObjCRootClassAttr(Attr.getRange(), S.Context,
2126 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002127}
2128
Michael Han51d8c522013-01-24 16:46:58 +00002129static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2130 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002131 if (!isa<ObjCInterfaceDecl>(D)) {
2132 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2133 return;
2134 }
2135
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002136 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002137 return;
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002138
Michael Han51d8c522013-01-24 16:46:58 +00002139 D->addAttr(::new (S.Context)
2140 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2141 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002142}
2143
Jordy Rosefad5de92012-05-08 03:27:22 +00002144static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2145 IdentifierInfo *Platform,
2146 VersionTuple Introduced,
2147 VersionTuple Deprecated,
2148 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002149 StringRef PlatformName
2150 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2151 if (PlatformName.empty())
2152 PlatformName = Platform->getName();
2153
2154 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2155 // of these steps are needed).
2156 if (!Introduced.empty() && !Deprecated.empty() &&
2157 !(Introduced <= Deprecated)) {
2158 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2159 << 1 << PlatformName << Deprecated.getAsString()
2160 << 0 << Introduced.getAsString();
2161 return true;
2162 }
2163
2164 if (!Introduced.empty() && !Obsoleted.empty() &&
2165 !(Introduced <= Obsoleted)) {
2166 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2167 << 2 << PlatformName << Obsoleted.getAsString()
2168 << 0 << Introduced.getAsString();
2169 return true;
2170 }
2171
2172 if (!Deprecated.empty() && !Obsoleted.empty() &&
2173 !(Deprecated <= Obsoleted)) {
2174 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2175 << 2 << PlatformName << Obsoleted.getAsString()
2176 << 1 << Deprecated.getAsString();
2177 return true;
2178 }
2179
2180 return false;
2181}
2182
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002183/// \brief Check whether the two versions match.
2184///
2185/// If either version tuple is empty, then they are assumed to match. If
2186/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2187static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2188 bool BeforeIsOkay) {
2189 if (X.empty() || Y.empty())
2190 return true;
2191
2192 if (X == Y)
2193 return true;
2194
2195 if (BeforeIsOkay && X < Y)
2196 return true;
2197
2198 return false;
2199}
2200
Rafael Espindola51be6e32013-01-08 22:04:34 +00002201AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002202 IdentifierInfo *Platform,
2203 VersionTuple Introduced,
2204 VersionTuple Deprecated,
2205 VersionTuple Obsoleted,
2206 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002207 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002208 bool Override,
2209 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002210 VersionTuple MergedIntroduced = Introduced;
2211 VersionTuple MergedDeprecated = Deprecated;
2212 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002213 bool FoundAny = false;
2214
Rafael Espindola98ae8342012-05-10 02:50:16 +00002215 if (D->hasAttrs()) {
2216 AttrVec &Attrs = D->getAttrs();
2217 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2218 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2219 if (!OldAA) {
2220 ++i;
2221 continue;
2222 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002223
Rafael Espindola98ae8342012-05-10 02:50:16 +00002224 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2225 if (OldPlatform != Platform) {
2226 ++i;
2227 continue;
2228 }
2229
2230 FoundAny = true;
2231 VersionTuple OldIntroduced = OldAA->getIntroduced();
2232 VersionTuple OldDeprecated = OldAA->getDeprecated();
2233 VersionTuple OldObsoleted = OldAA->getObsoleted();
2234 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002235
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002236 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2237 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2238 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2239 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002240 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002241 if (Override) {
2242 int Which = -1;
2243 VersionTuple FirstVersion;
2244 VersionTuple SecondVersion;
2245 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2246 Which = 0;
2247 FirstVersion = OldIntroduced;
2248 SecondVersion = Introduced;
2249 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2250 Which = 1;
2251 FirstVersion = Deprecated;
2252 SecondVersion = OldDeprecated;
2253 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2254 Which = 2;
2255 FirstVersion = Obsoleted;
2256 SecondVersion = OldObsoleted;
2257 }
2258
2259 if (Which == -1) {
2260 Diag(OldAA->getLocation(),
2261 diag::warn_mismatched_availability_override_unavail)
2262 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2263 } else {
2264 Diag(OldAA->getLocation(),
2265 diag::warn_mismatched_availability_override)
2266 << Which
2267 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2268 << FirstVersion.getAsString() << SecondVersion.getAsString();
2269 }
2270 Diag(Range.getBegin(), diag::note_overridden_method);
2271 } else {
2272 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2273 Diag(Range.getBegin(), diag::note_previous_attribute);
2274 }
2275
Rafael Espindola98ae8342012-05-10 02:50:16 +00002276 Attrs.erase(Attrs.begin() + i);
2277 --e;
2278 continue;
2279 }
2280
2281 VersionTuple MergedIntroduced2 = MergedIntroduced;
2282 VersionTuple MergedDeprecated2 = MergedDeprecated;
2283 VersionTuple MergedObsoleted2 = MergedObsoleted;
2284
2285 if (MergedIntroduced2.empty())
2286 MergedIntroduced2 = OldIntroduced;
2287 if (MergedDeprecated2.empty())
2288 MergedDeprecated2 = OldDeprecated;
2289 if (MergedObsoleted2.empty())
2290 MergedObsoleted2 = OldObsoleted;
2291
2292 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2293 MergedIntroduced2, MergedDeprecated2,
2294 MergedObsoleted2)) {
2295 Attrs.erase(Attrs.begin() + i);
2296 --e;
2297 continue;
2298 }
2299
2300 MergedIntroduced = MergedIntroduced2;
2301 MergedDeprecated = MergedDeprecated2;
2302 MergedObsoleted = MergedObsoleted2;
2303 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002304 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002305 }
2306
2307 if (FoundAny &&
2308 MergedIntroduced == Introduced &&
2309 MergedDeprecated == Deprecated &&
2310 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002311 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002312
Ted Kremenekcb344392013-04-06 00:34:27 +00002313 // Only create a new attribute if !Override, but we want to do
2314 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002315 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002316 MergedDeprecated, MergedObsoleted) &&
2317 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002318 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2319 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002320 Obsoleted, IsUnavailable, Message,
2321 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002322 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002323 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002324}
2325
Chandler Carruth1b03c872011-07-02 00:01:44 +00002326static void handleAvailabilityAttr(Sema &S, Decl *D,
2327 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002328 if (!checkAttributeNumArgs(S, Attr, 1))
2329 return;
2330 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002331 unsigned Index = Attr.getAttributeSpellingListIndex();
2332
Aaron Ballman624421f2013-08-31 01:11:41 +00002333 IdentifierInfo *II = Platform->Ident;
2334 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2335 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2336 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002337
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002338 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2339 if (!ND) {
2340 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2341 return;
2342 }
2343
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002344 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2345 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2346 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002347 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002348 StringRef Str;
2349 const StringLiteral *SE =
2350 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2351 if (SE)
2352 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002353
Aaron Ballman624421f2013-08-31 01:11:41 +00002354 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002355 Introduced.Version,
2356 Deprecated.Version,
2357 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002358 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002359 /*Override=*/false,
2360 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002361 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002362 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002363}
2364
John McCalld4c3d662013-02-20 01:54:26 +00002365template <class T>
2366static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2367 typename T::VisibilityType value,
2368 unsigned attrSpellingListIndex) {
2369 T *existingAttr = D->getAttr<T>();
2370 if (existingAttr) {
2371 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2372 if (existingValue == value)
2373 return NULL;
2374 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2375 S.Diag(range.getBegin(), diag::note_previous_attribute);
2376 D->dropAttr<T>();
2377 }
2378 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2379}
2380
Rafael Espindola599f1b72012-05-13 03:25:18 +00002381VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002382 VisibilityAttr::VisibilityType Vis,
2383 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002384 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2385 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002386}
2387
John McCalld4c3d662013-02-20 01:54:26 +00002388TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2389 TypeVisibilityAttr::VisibilityType Vis,
2390 unsigned AttrSpellingListIndex) {
2391 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2392 AttrSpellingListIndex);
2393}
2394
2395static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2396 bool isTypeVisibility) {
2397 // Visibility attributes don't mean anything on a typedef.
2398 if (isa<TypedefNameDecl>(D)) {
2399 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2400 << Attr.getName();
2401 return;
2402 }
2403
2404 // 'type_visibility' can only go on a type or namespace.
2405 if (isTypeVisibility &&
2406 !(isa<TagDecl>(D) ||
2407 isa<ObjCInterfaceDecl>(D) ||
2408 isa<NamespaceDecl>(D))) {
2409 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2410 << Attr.getName() << ExpectedTypeOrNamespace;
2411 return;
2412 }
2413
Chris Lattner6b6b5372008-06-26 18:38:35 +00002414 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002415 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002416 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002417
Aaron Ballman624421f2013-08-31 01:11:41 +00002418 Expr *Arg = Attr.getArgAsExpr(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002419 Arg = Arg->IgnoreParenCasts();
2420 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002421
Douglas Gregor5cee1192011-07-27 05:40:30 +00002422 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002423 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2424 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002425 return;
2426 }
Mike Stumpbf916502009-07-24 19:02:52 +00002427
Chris Lattner5f9e2722011-07-23 10:55:15 +00002428 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002429 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002430
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002431 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002432 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002433 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002434 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002435 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002436 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002437 else if (TypeStr == "protected") {
2438 // Complain about attempts to use protected visibility on targets
2439 // (like Darwin) that don't support it.
2440 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2441 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2442 type = VisibilityAttr::Default;
2443 } else {
2444 type = VisibilityAttr::Protected;
2445 }
2446 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002447 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002448 return;
2449 }
Mike Stumpbf916502009-07-24 19:02:52 +00002450
Michael Han51d8c522013-01-24 16:46:58 +00002451 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002452 clang::Attr *newAttr;
2453 if (isTypeVisibility) {
2454 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2455 (TypeVisibilityAttr::VisibilityType) type,
2456 Index);
2457 } else {
2458 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2459 }
2460 if (newAttr)
2461 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002462}
2463
Chandler Carruth1b03c872011-07-02 00:01:44 +00002464static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2465 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002466 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2467 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002468 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002469 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002470 return;
2471 }
2472
Aaron Ballman624421f2013-08-31 01:11:41 +00002473 if (!Attr.isArgIdent(0)) {
2474 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2475 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002476 return;
2477 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002478
2479 if (!checkAttributeNumArgs(S, Attr, 1))
2480 return;
John McCalld5313b02011-03-02 11:33:24 +00002481
Aaron Ballman624421f2013-08-31 01:11:41 +00002482 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2483
2484 StringRef param = IL->Ident->getName();
John McCalld5313b02011-03-02 11:33:24 +00002485 ObjCMethodFamilyAttr::FamilyKind family;
2486 if (param == "none")
2487 family = ObjCMethodFamilyAttr::OMF_None;
2488 else if (param == "alloc")
2489 family = ObjCMethodFamilyAttr::OMF_alloc;
2490 else if (param == "copy")
2491 family = ObjCMethodFamilyAttr::OMF_copy;
2492 else if (param == "init")
2493 family = ObjCMethodFamilyAttr::OMF_init;
2494 else if (param == "mutableCopy")
2495 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2496 else if (param == "new")
2497 family = ObjCMethodFamilyAttr::OMF_new;
2498 else {
2499 // Just warn and ignore it. This is future-proof against new
2500 // families being used in system headers.
Aaron Ballman624421f2013-08-31 01:11:41 +00002501 S.Diag(IL->Loc, diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002502 return;
2503 }
2504
John McCallf85e1932011-06-15 23:02:42 +00002505 if (family == ObjCMethodFamilyAttr::OMF_init &&
2506 !method->getResultType()->isObjCObjectPointerType()) {
2507 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2508 << method->getResultType();
2509 // Ignore the attribute.
2510 return;
2511 }
2512
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002513 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002514 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002515}
2516
Chandler Carruth1b03c872011-07-02 00:01:44 +00002517static void handleObjCExceptionAttr(Sema &S, Decl *D,
2518 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002519 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002520 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002521
Chris Lattner0db29ec2009-02-14 08:09:34 +00002522 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2523 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002524 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2525 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002526 return;
2527 }
Mike Stumpbf916502009-07-24 19:02:52 +00002528
Michael Han51d8c522013-01-24 16:46:58 +00002529 D->addAttr(::new (S.Context)
2530 ObjCExceptionAttr(Attr.getRange(), S.Context,
2531 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002532}
2533
Chandler Carruth1b03c872011-07-02 00:01:44 +00002534static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002535 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002536 return;
Richard Smith162e1c12011-04-15 14:24:37 +00002537 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002538 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002539 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002540 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2541 return;
2542 }
2543 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002544 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2545 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002546 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002547 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2548 return;
2549 }
2550 }
2551 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002552 // It is okay to include this attribute on properties, e.g.:
2553 //
2554 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2555 //
2556 // In this case it follows tradition and suppresses an error in the above
2557 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002558 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002559 }
Michael Han51d8c522013-01-24 16:46:58 +00002560 D->addAttr(::new (S.Context)
2561 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2562 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002563}
2564
Mike Stumpbf916502009-07-24 19:02:52 +00002565static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002566handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002567 if (!checkAttributeNumArgs(S, Attr, 0))
Douglas Gregorf9201e02009-02-11 23:02:49 +00002568 return;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002569
2570 if (!isa<FunctionDecl>(D)) {
2571 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2572 return;
2573 }
2574
Michael Han51d8c522013-01-24 16:46:58 +00002575 D->addAttr(::new (S.Context)
2576 OverloadableAttr(Attr.getRange(), S.Context,
2577 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002578}
2579
Chandler Carruth1b03c872011-07-02 00:01:44 +00002580static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002581 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002582 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002583 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002584 return;
2585 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002586
2587 if (!checkAttributeNumArgs(S, Attr, 1))
Steve Naroff9eae5762008-09-18 16:44:58 +00002588 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002589
Aaron Ballman624421f2013-08-31 01:11:41 +00002590 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002591 BlocksAttr::BlockType type;
Aaron Ballman624421f2013-08-31 01:11:41 +00002592 if (II->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002593 type = BlocksAttr::ByRef;
2594 else {
Aaron Ballman624421f2013-08-31 01:11:41 +00002595 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) << "blocks"
2596 << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002597 return;
2598 }
Mike Stumpbf916502009-07-24 19:02:52 +00002599
Michael Han51d8c522013-01-24 16:46:58 +00002600 D->addAttr(::new (S.Context)
2601 BlocksAttr(Attr.getRange(), S.Context, type,
2602 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002603}
2604
Chandler Carruth1b03c872011-07-02 00:01:44 +00002605static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002606 // check the attribute arguments.
2607 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002608 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002609 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002610 }
2611
John McCall3323fad2011-09-09 07:56:05 +00002612 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002613 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002614 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002615 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002616 if (E->isTypeDependent() || E->isValueDependent() ||
2617 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002618 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002619 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002620 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002621 return;
2622 }
Mike Stumpbf916502009-07-24 19:02:52 +00002623
John McCall3323fad2011-09-09 07:56:05 +00002624 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002625 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2626 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002627 return;
2628 }
John McCall3323fad2011-09-09 07:56:05 +00002629
2630 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002631 }
2632
John McCall3323fad2011-09-09 07:56:05 +00002633 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002634 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002635 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002636 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002637 if (E->isTypeDependent() || E->isValueDependent() ||
2638 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002639 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002640 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002641 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002642 return;
2643 }
2644 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002645
John McCall3323fad2011-09-09 07:56:05 +00002646 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002647 // FIXME: This error message could be improved, it would be nice
2648 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002649 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2650 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002651 return;
2652 }
2653 }
2654
Chandler Carruth87c44602011-07-01 23:49:12 +00002655 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002656 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002657 if (isa<FunctionNoProtoType>(FT)) {
2658 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2659 return;
2660 }
Mike Stumpbf916502009-07-24 19:02:52 +00002661
Chris Lattner897cd902009-03-17 23:03:47 +00002662 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002663 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002664 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002665 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002666 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002667 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002668 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002669 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002670 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002671 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2672 if (!BD->isVariadic()) {
2673 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2674 return;
2675 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002676 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002677 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002678 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002679 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002680 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002681 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002682 int m = Ty->isFunctionPointerType() ? 0 : 1;
2683 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002684 return;
2685 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002686 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002687 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002688 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002689 return;
2690 }
Anders Carlsson77091822008-10-05 18:05:59 +00002691 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002692 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002693 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002694 return;
2695 }
Michael Han51d8c522013-01-24 16:46:58 +00002696 D->addAttr(::new (S.Context)
2697 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2698 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002699}
2700
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002701static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2702 // Check the attribute arguments.
2703 if (!checkAttributeNumArgs(S, Attr, 0))
2704 return;
2705
2706 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2707 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2708 else
2709 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2710}
2711
Chandler Carruth1b03c872011-07-02 00:01:44 +00002712static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002713 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002714 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002715 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002716
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002717 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002718 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002719 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002720 return;
2721 }
Mike Stumpbf916502009-07-24 19:02:52 +00002722
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002723 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2724 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2725 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002726 return;
2727 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002728 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2729 if (MD->getResultType()->isVoidType()) {
2730 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2731 << Attr.getName() << 1;
2732 return;
2733 }
2734
Michael Han51d8c522013-01-24 16:46:58 +00002735 D->addAttr(::new (S.Context)
2736 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2737 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002738}
2739
Chandler Carruth1b03c872011-07-02 00:01:44 +00002740static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002741 // check the attribute arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00002742 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002743 return;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002744
Chandler Carruth87c44602011-07-01 23:49:12 +00002745 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002746 if (isa<CXXRecordDecl>(D)) {
2747 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2748 return;
2749 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002750 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2751 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002752 return;
2753 }
2754
Chandler Carruth87c44602011-07-01 23:49:12 +00002755 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002756
Michael Han51d8c522013-01-24 16:46:58 +00002757 nd->addAttr(::new (S.Context)
2758 WeakAttr(Attr.getRange(), S.Context,
2759 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002760}
2761
Chandler Carruth1b03c872011-07-02 00:01:44 +00002762static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002763 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002764 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002765 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002766
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002767
2768 // weak_import only applies to variable & function declarations.
2769 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002770 if (!D->canBeWeakImported(isDef)) {
2771 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002772 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2773 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002774 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002775 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002776 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002777 // Nothing to warn about here.
2778 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002779 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002780 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002781
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002782 return;
2783 }
2784
Michael Han51d8c522013-01-24 16:46:58 +00002785 D->addAttr(::new (S.Context)
2786 WeakImportAttr(Attr.getRange(), S.Context,
2787 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002788}
2789
Tanya Lattner0df579e2012-07-09 22:06:01 +00002790// Handles reqd_work_group_size and work_group_size_hint.
2791static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002792 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002793 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2794 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2795
Nate Begeman6f3d8382009-06-26 06:32:41 +00002796 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002797 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002798
2799 unsigned WGSize[3];
2800 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002801 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002802 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002803 if (E->isTypeDependent() || E->isValueDependent() ||
2804 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002805 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2806 << Attr.getName() << AANT_ArgumentIntegerConstant
2807 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002808 return;
2809 }
2810 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2811 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002812
2813 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2814 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2815 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2816 if (!(A->getXDim() == WGSize[0] &&
2817 A->getYDim() == WGSize[1] &&
2818 A->getZDim() == WGSize[2])) {
2819 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2820 Attr.getName();
2821 }
2822 }
2823
2824 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2825 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2826 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2827 if (!(A->getXDim() == WGSize[0] &&
2828 A->getYDim() == WGSize[1] &&
2829 A->getZDim() == WGSize[2])) {
2830 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2831 Attr.getName();
2832 }
2833 }
2834
2835 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2836 D->addAttr(::new (S.Context)
2837 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002838 WGSize[0], WGSize[1], WGSize[2],
2839 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002840 else
2841 D->addAttr(::new (S.Context)
2842 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002843 WGSize[0], WGSize[1], WGSize[2],
2844 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002845}
2846
Joey Gouly37453b92013-03-08 09:42:32 +00002847static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2848 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2849
Aaron Ballman624421f2013-08-31 01:11:41 +00002850 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002851 return;
2852
Aaron Ballman624421f2013-08-31 01:11:41 +00002853 if (!Attr.hasParsedType()) {
2854 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2855 << Attr.getName() << 1;
2856 return;
2857 }
2858
Joey Gouly37453b92013-03-08 09:42:32 +00002859 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2860
2861 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2862 (ParmType->isBooleanType() ||
2863 !ParmType->isIntegralType(S.getASTContext()))) {
2864 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2865 << ParmType;
2866 return;
2867 }
2868
2869 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2870 D->hasAttr<VecTypeHintAttr>()) {
2871 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2872 if (A->getTypeHint() != ParmType) {
2873 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2874 return;
2875 }
2876 }
2877
2878 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2879 ParmType, Attr.getLoc()));
2880}
2881
Joey Gouly96cead52013-03-14 09:54:43 +00002882static void handleEndianAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002883 if (!Attr.isArgIdent(0)) {
2884 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2885 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
2886 return;
2887 }
2888
2889 if (!checkAttributeNumArgs(S, Attr, 1))
2890 return;
2891
Joey Gouly96cead52013-03-14 09:54:43 +00002892 if (!dyn_cast<VarDecl>(D))
Aaron Ballman624421f2013-08-31 01:11:41 +00002893 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2894 << Attr.getName() << ExpectedVariable;
2895 StringRef EndianType = Attr.getArgAsIdent(0)->Ident->getName();
Joey Gouly96cead52013-03-14 09:54:43 +00002896 if (EndianType != "host" && EndianType != "device")
2897 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_endian) << EndianType;
2898}
2899
Rafael Espindola599f1b72012-05-13 03:25:18 +00002900SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002901 StringRef Name,
2902 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002903 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2904 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002905 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002906 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2907 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002908 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002909 }
Michael Han51d8c522013-01-24 16:46:58 +00002910 return ::new (Context) SectionAttr(Range, Context, Name,
2911 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002912}
2913
Chandler Carruth1b03c872011-07-02 00:01:44 +00002914static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002915 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002916 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002917 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002918
2919 // Make sure that there is a string literal as the sections's single
2920 // argument.
Aaron Ballman624421f2013-08-31 01:11:41 +00002921 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002922 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002923 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002924 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
2925 << Attr.getName() << AANT_ArgumentString;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002926 return;
2927 }
Mike Stump1eb44332009-09-09 15:08:12 +00002928
Chris Lattner797c3c42009-08-10 19:03:04 +00002929 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002930 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002931 if (!Error.empty()) {
2932 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2933 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002934 return;
2935 }
Mike Stump1eb44332009-09-09 15:08:12 +00002936
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002937 // This attribute cannot be applied to local variables.
2938 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2939 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2940 return;
2941 }
Michael Han51d8c522013-01-24 16:46:58 +00002942
2943 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002944 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002945 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002946 if (NewAttr)
2947 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002948}
2949
Chris Lattner6b6b5372008-06-26 18:38:35 +00002950
Chandler Carruth1b03c872011-07-02 00:01:44 +00002951static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002952 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002953 return;
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002954
Chandler Carruth87c44602011-07-01 23:49:12 +00002955 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002956 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002957 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002958 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002959 D->addAttr(::new (S.Context)
2960 NoThrowAttr(Attr.getRange(), S.Context,
2961 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002962 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002963}
2964
Chandler Carruth1b03c872011-07-02 00:01:44 +00002965static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002966 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002967 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002968
Chandler Carruth87c44602011-07-01 23:49:12 +00002969 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002970 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002971 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002972 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002973 D->addAttr(::new (S.Context)
2974 ConstAttr(Attr.getRange(), S.Context,
2975 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002976 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002977}
2978
Chandler Carruth1b03c872011-07-02 00:01:44 +00002979static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002980 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002981 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002982 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002983
Michael Han51d8c522013-01-24 16:46:58 +00002984 D->addAttr(::new (S.Context)
2985 PureAttr(Attr.getRange(), S.Context,
2986 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002987}
2988
Chandler Carruth1b03c872011-07-02 00:01:44 +00002989static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002990 if (!Attr.isArgIdent(0)) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002991 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2992 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002993 return;
2994 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002995
2996 if (!checkAttributeNumArgs(S, Attr, 1))
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002997 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002998
Chandler Carruth87c44602011-07-01 23:49:12 +00002999 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00003000
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003001 if (!VD || !VD->hasLocalStorage()) {
3002 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
3003 return;
3004 }
Mike Stumpbf916502009-07-24 19:02:52 +00003005
Aaron Ballman624421f2013-08-31 01:11:41 +00003006 IdentifierLoc *IL = Attr.getArgAsIdent(0);
3007
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003008 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00003009 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00003010 NamedDecl *CleanupDecl
Aaron Ballman624421f2013-08-31 01:11:41 +00003011 = S.LookupSingleName(S.TUScope, IL->Ident, IL->Loc,
3012 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003013 if (!CleanupDecl) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003014 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_found) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003015 return;
3016 }
Mike Stumpbf916502009-07-24 19:02:52 +00003017
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003018 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
3019 if (!FD) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003020 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_function) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003021 return;
3022 }
3023
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003024 if (FD->getNumParams() != 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003025 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3026 << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003027 return;
3028 }
Mike Stumpbf916502009-07-24 19:02:52 +00003029
Anders Carlsson89941c12009-02-07 23:16:50 +00003030 // We're currently more strict than GCC about what function types we accept.
3031 // If this ever proves to be a problem it should be easy to fix.
3032 QualType Ty = S.Context.getPointerType(VD->getType());
3033 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00003034 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3035 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003036 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) <<
3037 IL->Ident << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00003038 return;
3039 }
Mike Stumpbf916502009-07-24 19:02:52 +00003040
Michael Han51d8c522013-01-24 16:46:58 +00003041 D->addAttr(::new (S.Context)
3042 CleanupAttr(Attr.getRange(), S.Context, FD,
3043 Attr.getAttributeSpellingListIndex()));
Aaron Ballman624421f2013-08-31 01:11:41 +00003044 S.MarkFunctionReferenced(IL->Loc, FD);
3045 S.DiagnoseUseOfDecl(FD, IL->Loc);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00003046}
3047
Mike Stumpbf916502009-07-24 19:02:52 +00003048/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003049/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003050static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00003051 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003052 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003053
Chandler Carruth87c44602011-07-01 23:49:12 +00003054 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003055 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003056 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003057 return;
3058 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003059
Aaron Ballman624421f2013-08-31 01:11:41 +00003060 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003061 uint64_t ArgIdx;
3062 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
3063 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003064 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003065
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003066 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003067 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00003068
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003069 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
3070 if (not_nsstring_type &&
3071 !isCFStringType(Ty, S.Context) &&
3072 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003073 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003074 // FIXME: Should highlight the actual expression that has the wrong type.
3075 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003076 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003077 << IdxExpr->getSourceRange();
3078 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003079 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003080 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003081 if (!isNSStringType(Ty, S.Context) &&
3082 !isCFStringType(Ty, S.Context) &&
3083 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003084 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003085 // FIXME: Should highlight the actual expression that has the wrong type.
3086 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00003087 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003088 << IdxExpr->getSourceRange();
3089 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003090 }
3091
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003092 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
3093 // because that has corrected for the implicit this parameter, and is zero-
3094 // based. The attribute expects what the user wrote explicitly.
3095 llvm::APSInt Val;
3096 IdxExpr->EvaluateAsInt(Val, S.Context);
3097
Michael Han51d8c522013-01-24 16:46:58 +00003098 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00003099 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003100 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00003101}
3102
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003103enum FormatAttrKind {
3104 CFStringFormat,
3105 NSStringFormat,
3106 StrftimeFormat,
3107 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00003108 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003109 InvalidFormat
3110};
3111
3112/// getFormatAttrKind - Map from format attribute names to supported format
3113/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003114static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003115 return llvm::StringSwitch<FormatAttrKind>(Format)
3116 // Check for formats that get handled specially.
3117 .Case("NSString", NSStringFormat)
3118 .Case("CFString", CFStringFormat)
3119 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003120
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003121 // Otherwise, check for supported formats.
3122 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3123 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3124 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003125
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003126 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3127 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003128}
3129
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003130/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003131/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003132static void handleInitPriorityAttr(Sema &S, Decl *D,
3133 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003134 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003135 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3136 return;
3137 }
3138
Chandler Carruth87c44602011-07-01 23:49:12 +00003139 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003140 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3141 Attr.setInvalid();
3142 return;
3143 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003144 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003145 if (S.Context.getAsArrayType(T))
3146 T = S.Context.getBaseElementType(T);
3147 if (!T->getAs<RecordType>()) {
3148 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3149 Attr.setInvalid();
3150 return;
3151 }
3152
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003153 if (!checkAttributeNumArgs(S, Attr, 1)) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003154 Attr.setInvalid();
3155 return;
3156 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003157 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003158
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003159 llvm::APSInt priority(32);
3160 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3161 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003162 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3163 << Attr.getName() << AANT_ArgumentIntegerConstant
3164 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003165 Attr.setInvalid();
3166 return;
3167 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003168 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003169 if (prioritynum < 101 || prioritynum > 65535) {
3170 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3171 << priorityExpr->getSourceRange();
3172 Attr.setInvalid();
3173 return;
3174 }
Michael Han51d8c522013-01-24 16:46:58 +00003175 D->addAttr(::new (S.Context)
3176 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3177 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003178}
3179
Rafael Espindola599f1b72012-05-13 03:25:18 +00003180FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003181 int FormatIdx, int FirstArg,
3182 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003183 // Check whether we already have an equivalent format attribute.
3184 for (specific_attr_iterator<FormatAttr>
3185 i = D->specific_attr_begin<FormatAttr>(),
3186 e = D->specific_attr_end<FormatAttr>();
3187 i != e ; ++i) {
3188 FormatAttr *f = *i;
3189 if (f->getType() == Format &&
3190 f->getFormatIdx() == FormatIdx &&
3191 f->getFirstArg() == FirstArg) {
3192 // If we don't have a valid location for this attribute, adopt the
3193 // location.
3194 if (f->getLocation().isInvalid())
3195 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003196 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003197 }
3198 }
3199
Michael Han51d8c522013-01-24 16:46:58 +00003200 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3201 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003202}
3203
Mike Stumpbf916502009-07-24 19:02:52 +00003204/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003205/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003206static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003207 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003208 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003209 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003210 return;
3211 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003212
3213 if (!checkAttributeNumArgs(S, Attr, 3))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003214 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003215
Chandler Carruth87c44602011-07-01 23:49:12 +00003216 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003217 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003218 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003219 return;
3220 }
3221
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003222 // In C++ the implicit 'this' function parameter also counts, and they are
3223 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003224 bool HasImplicitThisParam = isInstanceMethod(D);
3225 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003226 unsigned FirstIdx = 1;
3227
Aaron Ballman624421f2013-08-31 01:11:41 +00003228 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3229 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003230
3231 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003232 if (Format.startswith("__") && Format.endswith("__"))
3233 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003234
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003235 // Check for supported formats.
3236 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003237
3238 if (Kind == IgnoredFormat)
3239 return;
3240
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003241 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003242 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003243 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003244 return;
3245 }
3246
3247 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003248 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003249 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003250 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3251 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003252 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003253 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003254 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003255 return;
3256 }
3257
3258 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003259 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003260 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003261 return;
3262 }
3263
3264 // FIXME: Do we need to bounds check?
3265 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003266
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003267 if (HasImplicitThisParam) {
3268 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003269 S.Diag(Attr.getLoc(),
3270 diag::err_format_attribute_implicit_this_format_string)
3271 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003272 return;
3273 }
3274 ArgIdx--;
3275 }
Mike Stump1eb44332009-09-09 15:08:12 +00003276
Chris Lattner6b6b5372008-06-26 18:38:35 +00003277 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003278 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003279
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003280 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003281 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003282 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3283 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003284 return;
3285 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003286 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003287 // FIXME: do we need to check if the type is NSString*? What are the
3288 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003289 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003290 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003291 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3292 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003293 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003294 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003295 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003296 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003297 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003298 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3299 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003300 return;
3301 }
3302
3303 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003304 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003305 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003306 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3307 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003308 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003309 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003310 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003311 return;
3312 }
3313
3314 // check if the function is variadic if the 3rd argument non-zero
3315 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003316 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003317 ++NumArgs; // +1 for ...
3318 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003319 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003320 return;
3321 }
3322 }
3323
Chris Lattner3c73c412008-11-19 08:23:25 +00003324 // strftime requires FirstArg to be 0 because it doesn't read from any
3325 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003326 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003327 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003328 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3329 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003330 return;
3331 }
3332 // if 0 it disables parameter checking (to use with e.g. va_list)
3333 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003334 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003335 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003336 return;
3337 }
3338
Rafael Espindola599f1b72012-05-13 03:25:18 +00003339 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3340 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003341 FirstArg.getZExtValue(),
3342 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003343 if (NewAttr)
3344 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003345}
3346
Chandler Carruth1b03c872011-07-02 00:01:44 +00003347static void handleTransparentUnionAttr(Sema &S, Decl *D,
3348 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003349 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003350 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003351 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003352
Chris Lattner6b6b5372008-06-26 18:38:35 +00003353
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003354 // Try to find the underlying union declaration.
3355 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003356 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003357 if (TD && TD->getUnderlyingType()->isUnionType())
3358 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3359 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003360 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003361
3362 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003363 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003364 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003365 return;
3366 }
3367
John McCall5e1cdac2011-10-07 06:10:15 +00003368 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003369 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003370 diag::warn_transparent_union_attribute_not_definition);
3371 return;
3372 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003373
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003374 RecordDecl::field_iterator Field = RD->field_begin(),
3375 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003376 if (Field == FieldEnd) {
3377 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3378 return;
3379 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003380
David Blaikie581deb32012-06-06 20:45:41 +00003381 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003382 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003383 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003384 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003385 diag::warn_transparent_union_attribute_floating)
3386 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003387 return;
3388 }
3389
3390 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3391 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3392 for (; Field != FieldEnd; ++Field) {
3393 QualType FieldType = Field->getType();
3394 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3395 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3396 // Warn if we drop the attribute.
3397 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003398 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003399 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003400 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003401 diag::warn_transparent_union_attribute_field_size_align)
3402 << isSize << Field->getDeclName() << FieldBits;
3403 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003404 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003405 diag::note_transparent_union_first_field_size_align)
3406 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003407 return;
3408 }
3409 }
3410
Michael Han51d8c522013-01-24 16:46:58 +00003411 RD->addAttr(::new (S.Context)
3412 TransparentUnionAttr(Attr.getRange(), S.Context,
3413 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003414}
3415
Chandler Carruth1b03c872011-07-02 00:01:44 +00003416static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003417 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003418 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003419 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003420
Aaron Ballman624421f2013-08-31 01:11:41 +00003421 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003422 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003423
Chris Lattner6b6b5372008-06-26 18:38:35 +00003424 // Make sure that there is a string literal as the annotation's single
3425 // argument.
3426 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003427 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
3428 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003429 return;
3430 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003431
3432 // Don't duplicate annotations that are already set.
3433 for (specific_attr_iterator<AnnotateAttr>
3434 i = D->specific_attr_begin<AnnotateAttr>(),
3435 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3436 if ((*i)->getAnnotation() == SE->getString())
3437 return;
3438 }
Michael Han51d8c522013-01-24 16:46:58 +00003439
3440 D->addAttr(::new (S.Context)
3441 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3442 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003443}
3444
Chandler Carruth1b03c872011-07-02 00:01:44 +00003445static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003446 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003447 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003448 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3449 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003450 return;
3451 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003452
Richard Smithbe507b62013-02-01 08:12:08 +00003453 if (Attr.getNumArgs() == 0) {
3454 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3455 true, 0, Attr.getAttributeSpellingListIndex()));
3456 return;
3457 }
3458
Aaron Ballman624421f2013-08-31 01:11:41 +00003459 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003460 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3461 S.Diag(Attr.getEllipsisLoc(),
3462 diag::err_pack_expansion_without_parameter_packs);
3463 return;
3464 }
3465
3466 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3467 return;
3468
3469 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3470 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003471}
3472
3473void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003474 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003475 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3476 SourceLocation AttrLoc = AttrRange.getBegin();
3477
Richard Smith4cd81c52013-01-29 09:02:09 +00003478 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003479 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003480 // C++11 [dcl.align]p1:
3481 // An alignment-specifier may be applied to a variable or to a class
3482 // data member, but it shall not be applied to a bit-field, a function
3483 // parameter, the formal parameter of a catch clause, or a variable
3484 // declared with the register storage class specifier. An
3485 // alignment-specifier may also be applied to the declaration of a class
3486 // or enumeration type.
3487 // C11 6.7.5/2:
3488 // An alignment attribute shall not be specified in a declaration of
3489 // a typedef, or a bit-field, or a function, or a parameter, or an
3490 // object declared with the register storage-class specifier.
3491 int DiagKind = -1;
3492 if (isa<ParmVarDecl>(D)) {
3493 DiagKind = 0;
3494 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3495 if (VD->getStorageClass() == SC_Register)
3496 DiagKind = 1;
3497 if (VD->isExceptionVariable())
3498 DiagKind = 2;
3499 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3500 if (FD->isBitField())
3501 DiagKind = 3;
3502 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003503 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3504 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003505 << (TmpAttr.isC11() ? ExpectedVariableOrField
3506 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003507 return;
3508 }
3509 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003510 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003511 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003512 return;
3513 }
3514 }
3515
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003516 if (E->isTypeDependent() || E->isValueDependent()) {
3517 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003518 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3519 AA->setPackExpansion(IsPackExpansion);
3520 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003521 return;
3522 }
Michael Hana31f65b2013-02-01 01:19:17 +00003523
Sean Huntcf807c42010-08-18 23:23:40 +00003524 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003525 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003526 ExprResult ICE
3527 = VerifyIntegerConstantExpression(E, &Alignment,
3528 diag::err_aligned_attribute_argument_not_int,
3529 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003530 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003531 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003532
3533 // C++11 [dcl.align]p2:
3534 // -- if the constant expression evaluates to zero, the alignment
3535 // specifier shall have no effect
3536 // C11 6.7.5p6:
3537 // An alignment specification of zero has no effect.
3538 if (!(TmpAttr.isAlignas() && !Alignment) &&
3539 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003540 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3541 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003542 return;
3543 }
Michael Hana31f65b2013-02-01 01:19:17 +00003544
Richard Smithbe507b62013-02-01 08:12:08 +00003545 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003546 // We've already verified it's a power of 2, now let's make sure it's
3547 // 8192 or less.
3548 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003549 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003550 << E->getSourceRange();
3551 return;
3552 }
3553 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003554
Richard Smithf6565a92013-02-22 08:32:16 +00003555 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3556 ICE.take(), SpellingListIndex);
3557 AA->setPackExpansion(IsPackExpansion);
3558 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003559}
3560
Michael Hana31f65b2013-02-01 01:19:17 +00003561void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003562 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003563 // FIXME: Cache the number on the Attr object if non-dependent?
3564 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003565 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3566 SpellingListIndex);
3567 AA->setPackExpansion(IsPackExpansion);
3568 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003569}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003570
Richard Smithbe507b62013-02-01 08:12:08 +00003571void Sema::CheckAlignasUnderalignment(Decl *D) {
3572 assert(D->hasAttrs() && "no attributes on decl");
3573
3574 QualType Ty;
3575 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3576 Ty = VD->getType();
3577 else
3578 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003579 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003580 return;
3581
3582 // C++11 [dcl.align]p5, C11 6.7.5/4:
3583 // The combined effect of all alignment attributes in a declaration shall
3584 // not specify an alignment that is less strict than the alignment that
3585 // would otherwise be required for the entity being declared.
3586 AlignedAttr *AlignasAttr = 0;
3587 unsigned Align = 0;
3588 for (specific_attr_iterator<AlignedAttr>
3589 I = D->specific_attr_begin<AlignedAttr>(),
3590 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3591 if (I->isAlignmentDependent())
3592 return;
3593 if (I->isAlignas())
3594 AlignasAttr = *I;
3595 Align = std::max(Align, I->getAlignment(Context));
3596 }
3597
3598 if (AlignasAttr && Align) {
3599 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3600 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3601 if (NaturalAlign > RequestedAlign)
3602 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3603 << Ty << (unsigned)NaturalAlign.getQuantity();
3604 }
3605}
3606
Chandler Carruthd309c812011-07-01 23:49:16 +00003607/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003608/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003609///
Mike Stumpbf916502009-07-24 19:02:52 +00003610/// Despite what would be logical, the mode attribute is a decl attribute, not a
3611/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3612/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003613static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003614 // This attribute isn't documented, but glibc uses it. It changes
3615 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003616 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003617 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3618 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003619 return;
3620 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003621
3622 if (!checkAttributeNumArgs(S, Attr, 1))
3623 return;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003624
Aaron Ballman624421f2013-08-31 01:11:41 +00003625 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3626 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003627
3628 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003629 if (Str.startswith("__") && Str.endswith("__"))
3630 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003631
3632 unsigned DestWidth = 0;
3633 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003634 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003635 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003636 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003637 switch (Str[0]) {
3638 case 'Q': DestWidth = 8; break;
3639 case 'H': DestWidth = 16; break;
3640 case 'S': DestWidth = 32; break;
3641 case 'D': DestWidth = 64; break;
3642 case 'X': DestWidth = 96; break;
3643 case 'T': DestWidth = 128; break;
3644 }
3645 if (Str[1] == 'F') {
3646 IntegerMode = false;
3647 } else if (Str[1] == 'C') {
3648 IntegerMode = false;
3649 ComplexMode = true;
3650 } else if (Str[1] != 'I') {
3651 DestWidth = 0;
3652 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003653 break;
3654 case 4:
3655 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3656 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003657 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003658 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003659 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003660 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003661 break;
3662 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003663 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003664 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003665 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003666 case 11:
3667 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003668 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003669 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003670 }
3671
3672 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003673 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003674 OldTy = TD->getUnderlyingType();
3675 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3676 OldTy = VD->getType();
3677 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003678 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003679 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003680 return;
3681 }
Eli Friedman73397492009-03-03 06:41:03 +00003682
John McCall183700f2009-09-21 23:43:11 +00003683 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003684 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3685 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003686 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003687 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3688 } else if (ComplexMode) {
3689 if (!OldTy->isComplexType())
3690 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3691 } else {
3692 if (!OldTy->isFloatingType())
3693 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3694 }
3695
Mike Stump390b4cc2009-05-16 07:39:55 +00003696 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3697 // and friends, at least with glibc.
3698 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3699 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003700 // FIXME: Make sure floating-point mappings are accurate
3701 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003702 QualType NewTy;
3703 switch (DestWidth) {
3704 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003705 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003706 return;
3707 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003708 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003709 return;
3710 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003711 if (!IntegerMode) {
3712 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3713 return;
3714 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003715 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003716 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003717 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003718 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003719 break;
3720 case 16:
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.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003727 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003728 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003729 break;
3730 case 32:
3731 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003732 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003733 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003734 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003735 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003736 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003737 break;
3738 case 64:
3739 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003740 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003741 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003742 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003743 NewTy = S.Context.LongTy;
3744 else
3745 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003746 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003747 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003748 NewTy = S.Context.UnsignedLongTy;
3749 else
3750 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003751 break;
Eli Friedman73397492009-03-03 06:41:03 +00003752 case 96:
3753 NewTy = S.Context.LongDoubleTy;
3754 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003755 case 128:
Roman Divacky19645542013-07-03 21:08:41 +00003756 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3757 &llvm::APFloat::PPCDoubleDouble) {
Eli Friedmanf98aba32009-02-13 02:31:07 +00003758 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3759 return;
3760 }
Roman Divackyf0d14cb2013-07-03 20:48:06 +00003761 if (IntegerMode) {
3762 if (OldTy->isSignedIntegerType())
3763 NewTy = S.Context.Int128Ty;
3764 else
3765 NewTy = S.Context.UnsignedInt128Ty;
3766 } else
3767 NewTy = S.Context.LongDoubleTy;
Eli Friedman73397492009-03-03 06:41:03 +00003768 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003769 }
3770
Eli Friedman73397492009-03-03 06:41:03 +00003771 if (ComplexMode) {
3772 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003773 }
3774
3775 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003776 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3777 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3778 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003779 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003780
3781 D->addAttr(::new (S.Context)
3782 ModeAttr(Attr.getRange(), S.Context, Name,
3783 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003784}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003785
Chandler Carruth1b03c872011-07-02 00:01:44 +00003786static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003787 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003788 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003789 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003790
Nick Lewycky78d1a102012-07-24 01:40:49 +00003791 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3792 if (!VD->hasGlobalStorage())
3793 S.Diag(Attr.getLoc(),
3794 diag::warn_attribute_requires_functions_or_static_globals)
3795 << Attr.getName();
3796 } else if (!isFunctionOrMethod(D)) {
3797 S.Diag(Attr.getLoc(),
3798 diag::warn_attribute_requires_functions_or_static_globals)
3799 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003800 return;
3801 }
Mike Stumpbf916502009-07-24 19:02:52 +00003802
Michael Han51d8c522013-01-24 16:46:58 +00003803 D->addAttr(::new (S.Context)
3804 NoDebugAttr(Attr.getRange(), S.Context,
3805 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003806}
3807
Chandler Carruth1b03c872011-07-02 00:01:44 +00003808static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003809 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003810 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003811 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003812
Mike Stumpbf916502009-07-24 19:02:52 +00003813
Chandler Carruth87c44602011-07-01 23:49:12 +00003814 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003815 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003816 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003817 return;
3818 }
Mike Stumpbf916502009-07-24 19:02:52 +00003819
Michael Han51d8c522013-01-24 16:46:58 +00003820 D->addAttr(::new (S.Context)
3821 NoInlineAttr(Attr.getRange(), S.Context,
3822 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003823}
3824
Chandler Carruth1b03c872011-07-02 00:01:44 +00003825static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3826 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003827 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003828 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003829 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003830
Chris Lattner7255a2d2010-06-22 00:03:40 +00003831
Chandler Carruth87c44602011-07-01 23:49:12 +00003832 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003833 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003834 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003835 return;
3836 }
3837
Michael Han51d8c522013-01-24 16:46:58 +00003838 D->addAttr(::new (S.Context)
3839 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3840 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003841}
3842
Chandler Carruth1b03c872011-07-02 00:01:44 +00003843static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003844 if (S.LangOpts.CUDA) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003845 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003846 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003847
Chandler Carruth87c44602011-07-01 23:49:12 +00003848 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003849 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003850 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003851 return;
3852 }
3853
Michael Han51d8c522013-01-24 16:46:58 +00003854 D->addAttr(::new (S.Context)
3855 CUDAConstantAttr(Attr.getRange(), S.Context,
3856 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003857 } else {
3858 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3859 }
3860}
3861
Chandler Carruth1b03c872011-07-02 00:01:44 +00003862static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003863 if (S.LangOpts.CUDA) {
3864 // check the attribute arguments.
3865 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003866 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3867 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003868 return;
3869 }
3870
Chandler Carruth87c44602011-07-01 23:49:12 +00003871 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003872 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003873 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003874 return;
3875 }
3876
Michael Han51d8c522013-01-24 16:46:58 +00003877 D->addAttr(::new (S.Context)
3878 CUDADeviceAttr(Attr.getRange(), S.Context,
3879 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003880 } else {
3881 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3882 }
3883}
3884
Chandler Carruth1b03c872011-07-02 00:01:44 +00003885static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003886 if (S.LangOpts.CUDA) {
3887 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003888 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003889 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003890
Chandler Carruth87c44602011-07-01 23:49:12 +00003891 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003892 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003893 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003894 return;
3895 }
3896
Chandler Carruth87c44602011-07-01 23:49:12 +00003897 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003898 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003899 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003900 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003901 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3902 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003903 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003904 "void");
3905 } else {
3906 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3907 << FD->getType();
3908 }
3909 return;
3910 }
3911
Michael Han51d8c522013-01-24 16:46:58 +00003912 D->addAttr(::new (S.Context)
3913 CUDAGlobalAttr(Attr.getRange(), S.Context,
3914 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003915 } else {
3916 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3917 }
3918}
3919
Chandler Carruth1b03c872011-07-02 00:01:44 +00003920static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003921 if (S.LangOpts.CUDA) {
3922 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003923 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003924 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003925
Peter Collingbourneced76712010-12-01 03:15:31 +00003926
Chandler Carruth87c44602011-07-01 23:49:12 +00003927 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003928 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003929 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003930 return;
3931 }
3932
Michael Han51d8c522013-01-24 16:46:58 +00003933 D->addAttr(::new (S.Context)
3934 CUDAHostAttr(Attr.getRange(), S.Context,
3935 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003936 } else {
3937 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3938 }
3939}
3940
Chandler Carruth1b03c872011-07-02 00:01:44 +00003941static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003942 if (S.LangOpts.CUDA) {
3943 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003944 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003945 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003946
Chandler Carruth87c44602011-07-01 23:49:12 +00003947 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003948 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003949 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003950 return;
3951 }
3952
Michael Han51d8c522013-01-24 16:46:58 +00003953 D->addAttr(::new (S.Context)
3954 CUDASharedAttr(Attr.getRange(), S.Context,
3955 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003956 } else {
3957 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3958 }
3959}
3960
Chandler Carruth1b03c872011-07-02 00:01:44 +00003961static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003962 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003963 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003964 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003965
Chandler Carruth87c44602011-07-01 23:49:12 +00003966 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003967 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003968 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003969 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003970 return;
3971 }
Mike Stumpbf916502009-07-24 19:02:52 +00003972
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003973 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003974 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003975 return;
3976 }
Mike Stumpbf916502009-07-24 19:02:52 +00003977
Michael Han51d8c522013-01-24 16:46:58 +00003978 D->addAttr(::new (S.Context)
3979 GNUInlineAttr(Attr.getRange(), S.Context,
3980 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003981}
3982
Chandler Carruth1b03c872011-07-02 00:01:44 +00003983static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003984 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003985
Aaron Ballmanfff32482012-12-09 17:45:41 +00003986 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003987 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003988 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3989 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003990 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003991 return;
3992
Chandler Carruth87c44602011-07-01 23:49:12 +00003993 if (!isa<ObjCMethodDecl>(D)) {
3994 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3995 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003996 return;
3997 }
3998
Chandler Carruth87c44602011-07-01 23:49:12 +00003999 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004000 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00004001 D->addAttr(::new (S.Context)
4002 FastCallAttr(Attr.getRange(), S.Context,
4003 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00004004 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004005 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00004006 D->addAttr(::new (S.Context)
4007 StdCallAttr(Attr.getRange(), S.Context,
4008 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00004009 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004010 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00004011 D->addAttr(::new (S.Context)
4012 ThisCallAttr(Attr.getRange(), S.Context,
4013 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00004014 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004015 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00004016 D->addAttr(::new (S.Context)
4017 CDeclAttr(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_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00004021 D->addAttr(::new (S.Context)
4022 PascalAttr(Attr.getRange(), S.Context,
4023 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00004024 return;
Charles Davise8519c32013-08-30 04:39:01 +00004025 case AttributeList::AT_MSABI:
4026 D->addAttr(::new (S.Context)
4027 MSABIAttr(Attr.getRange(), S.Context,
4028 Attr.getAttributeSpellingListIndex()));
4029 return;
4030 case AttributeList::AT_SysVABI:
4031 D->addAttr(::new (S.Context)
4032 SysVABIAttr(Attr.getRange(), S.Context,
4033 Attr.getAttributeSpellingListIndex()));
4034 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004035 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004036 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004037 switch (CC) {
4038 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004039 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004040 break;
4041 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004042 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00004043 break;
4044 default:
4045 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004046 }
4047
Michael Han51d8c522013-01-24 16:46:58 +00004048 D->addAttr(::new (S.Context)
4049 PcsAttr(Attr.getRange(), S.Context, PCS,
4050 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00004051 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004052 }
Derek Schuff263366f2012-10-16 22:30:41 +00004053 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00004054 D->addAttr(::new (S.Context)
4055 PnaclCallAttr(Attr.getRange(), S.Context,
4056 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00004057 return;
Guy Benyei38980082012-12-25 08:53:55 +00004058 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00004059 D->addAttr(::new (S.Context)
4060 IntelOclBiccAttr(Attr.getRange(), S.Context,
4061 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00004062 return;
Derek Schuff263366f2012-10-16 22:30:41 +00004063
Abramo Bagnarae215f722010-04-30 13:10:51 +00004064 default:
4065 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00004066 }
4067}
4068
Chandler Carruth1b03c872011-07-02 00:01:44 +00004069static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004070 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00004071}
4072
Guy Benyei1db70402013-03-24 13:58:12 +00004073static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00004074 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00004075 llvm::APSInt ArgNum(32);
4076 if (E->isTypeDependent() || E->isValueDependent() ||
4077 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00004078 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4079 << Attr.getName() << AANT_ArgumentIntegerConstant
4080 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00004081 return;
4082 }
4083
4084 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
4085 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
4086}
4087
Aaron Ballmanfff32482012-12-09 17:45:41 +00004088bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
4089 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00004090 if (attr.isInvalid())
4091 return true;
4092
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004093 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00004094 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00004095 attr.setInvalid();
4096 return true;
4097 }
4098
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004099 // TODO: diagnose uses of these conventions on the wrong target. Or, better
4100 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00004101 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004102 case AttributeList::AT_CDecl: CC = CC_C; break;
4103 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
4104 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
4105 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
4106 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00004107 case AttributeList::AT_MSABI:
4108 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
4109 CC_X86_64Win64;
4110 break;
4111 case AttributeList::AT_SysVABI:
4112 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4113 CC_C;
4114 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004115 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00004116 StringLiteral *Str = 0;
4117 if (attr.isArgExpr(0))
4118 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
4119
Douglas Gregor5cee1192011-07-27 05:40:30 +00004120 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004121 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
4122 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004123 attr.setInvalid();
4124 return true;
4125 }
4126
Chris Lattner5f9e2722011-07-23 10:55:15 +00004127 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004128 if (StrRef == "aapcs") {
4129 CC = CC_AAPCS;
4130 break;
4131 } else if (StrRef == "aapcs-vfp") {
4132 CC = CC_AAPCS_VFP;
4133 break;
4134 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004135
4136 attr.setInvalid();
4137 Diag(attr.getLoc(), diag::err_invalid_pcs);
4138 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004139 }
Derek Schuff263366f2012-10-16 22:30:41 +00004140 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00004141 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00004142 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00004143 }
4144
Aaron Ballman82bfa192012-10-02 14:26:08 +00004145 const TargetInfo &TI = Context.getTargetInfo();
4146 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
4147 if (A == TargetInfo::CCCR_Warning) {
4148 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00004149
4150 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
4151 if (FD)
4152 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
4153 TargetInfo::CCMT_NonMember;
4154 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00004155 }
4156
John McCall711c52b2011-01-05 12:14:39 +00004157 return false;
4158}
4159
Chandler Carruth1b03c872011-07-02 00:01:44 +00004160static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004161 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00004162
4163 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00004164 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00004165 return;
4166
Chandler Carruth87c44602011-07-01 23:49:12 +00004167 if (!isa<ObjCMethodDecl>(D)) {
4168 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4169 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004170 return;
4171 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004172
Michael Han51d8c522013-01-24 16:46:58 +00004173 D->addAttr(::new (S.Context)
4174 RegparmAttr(Attr.getRange(), S.Context, numParams,
4175 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004176}
4177
4178/// Checks a regparm attribute, returning true if it is ill-formed and
4179/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004180bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4181 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004182 return true;
4183
Aaron Ballmanffa9d572013-07-18 18:01:48 +00004184 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004185 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004186 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004187 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004188
Aaron Ballman624421f2013-08-31 01:11:41 +00004189 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004190 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004191 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004192 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00004193 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4194 << Attr.getName() << AANT_ArgumentIntegerConstant
4195 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004196 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004197 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004198 }
4199
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004200 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004201 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004202 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004203 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004204 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004205 }
4206
John McCall711c52b2011-01-05 12:14:39 +00004207 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004208 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004209 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004210 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004211 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004212 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004213 }
4214
John McCall711c52b2011-01-05 12:14:39 +00004215 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004216}
4217
Chandler Carruth1b03c872011-07-02 00:01:44 +00004218static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004219 if (S.LangOpts.CUDA) {
4220 // check the attribute arguments.
4221 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004222 // FIXME: 0 is not okay.
4223 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004224 return;
4225 }
4226
Chandler Carruth87c44602011-07-01 23:49:12 +00004227 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004228 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004229 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004230 return;
4231 }
4232
Aaron Ballman624421f2013-08-31 01:11:41 +00004233 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004234 llvm::APSInt MaxThreads(32);
4235 if (MaxThreadsExpr->isTypeDependent() ||
4236 MaxThreadsExpr->isValueDependent() ||
4237 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004238 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004239 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004240 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004241 return;
4242 }
4243
4244 llvm::APSInt MinBlocks(32);
4245 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004246 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004247 if (MinBlocksExpr->isTypeDependent() ||
4248 MinBlocksExpr->isValueDependent() ||
4249 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004250 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004251 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004252 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004253 return;
4254 }
4255 }
4256
Michael Han51d8c522013-01-24 16:46:58 +00004257 D->addAttr(::new (S.Context)
4258 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4259 MaxThreads.getZExtValue(),
4260 MinBlocks.getZExtValue(),
4261 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004262 } else {
4263 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4264 }
4265}
4266
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004267static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4268 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004269 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004270 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004271 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004272 return;
4273 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004274
4275 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004276 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004277
Aaron Ballman624421f2013-08-31 01:11:41 +00004278 StringRef AttrName = Attr.getName()->getName();
4279 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004280
4281 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4282 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4283 << Attr.getName() << ExpectedFunctionOrMethod;
4284 return;
4285 }
4286
4287 uint64_t ArgumentIdx;
4288 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4289 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004290 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004291 return;
4292
4293 uint64_t TypeTagIdx;
4294 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4295 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004296 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004297 return;
4298
4299 bool IsPointer = (AttrName == "pointer_with_type_tag");
4300 if (IsPointer) {
4301 // Ensure that buffer has a pointer type.
4302 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4303 if (!BufferTy->isPointerType()) {
4304 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004305 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004306 }
4307 }
4308
Michael Han51d8c522013-01-24 16:46:58 +00004309 D->addAttr(::new (S.Context)
4310 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4311 ArgumentIdx, TypeTagIdx, IsPointer,
4312 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004313}
4314
4315static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4316 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004317 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004318 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004319 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004320 return;
4321 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004322
4323 if (!checkAttributeNumArgs(S, Attr, 1))
4324 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004325
Aaron Ballman624421f2013-08-31 01:11:41 +00004326 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004327 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4328
Michael Han51d8c522013-01-24 16:46:58 +00004329 D->addAttr(::new (S.Context)
4330 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4331 MatchingCType,
4332 Attr.getLayoutCompatible(),
4333 Attr.getMustBeNull(),
4334 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004335}
4336
Chris Lattner0744e5f2008-06-29 00:23:49 +00004337//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004338// Checker-specific attribute handlers.
4339//===----------------------------------------------------------------------===//
4340
John McCallc7ad3812011-01-25 03:31:58 +00004341static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004342 return type->isDependentType() ||
4343 type->isObjCObjectPointerType() ||
4344 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004345}
4346static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004347 return type->isDependentType() ||
4348 type->isPointerType() ||
4349 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004350}
4351
Chandler Carruth1b03c872011-07-02 00:01:44 +00004352static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004353 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004354 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004355 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004356 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004357 return;
4358 }
4359
4360 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004361 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004362 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4363 cf = false;
4364 } else {
4365 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4366 cf = true;
4367 }
4368
4369 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004370 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004371 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004372 return;
4373 }
4374
4375 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004376 param->addAttr(::new (S.Context)
4377 CFConsumedAttr(Attr.getRange(), S.Context,
4378 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004379 else
Michael Han51d8c522013-01-24 16:46:58 +00004380 param->addAttr(::new (S.Context)
4381 NSConsumedAttr(Attr.getRange(), S.Context,
4382 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004383}
4384
Chandler Carruth1b03c872011-07-02 00:01:44 +00004385static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4386 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004387 if (!isa<ObjCMethodDecl>(D)) {
4388 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004389 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004390 return;
4391 }
4392
Michael Han51d8c522013-01-24 16:46:58 +00004393 D->addAttr(::new (S.Context)
4394 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4395 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004396}
4397
Chandler Carruth1b03c872011-07-02 00:01:44 +00004398static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4399 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004400
John McCallc7ad3812011-01-25 03:31:58 +00004401 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004402
Chandler Carruth87c44602011-07-01 23:49:12 +00004403 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004404 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004405 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004406 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004407 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004408 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4409 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004410 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004411 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004412 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004413 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004414 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004415 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004416 return;
4417 }
Mike Stumpbf916502009-07-24 19:02:52 +00004418
John McCallc7ad3812011-01-25 03:31:58 +00004419 bool typeOK;
4420 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004421 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004422 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004423 case AttributeList::AT_NSReturnsAutoreleased:
4424 case AttributeList::AT_NSReturnsRetained:
4425 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004426 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4427 cf = false;
4428 break;
4429
Sean Hunt8e083e72012-06-19 23:57:03 +00004430 case AttributeList::AT_CFReturnsRetained:
4431 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004432 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4433 cf = true;
4434 break;
4435 }
4436
4437 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004438 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004439 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004440 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004441 }
Mike Stumpbf916502009-07-24 19:02:52 +00004442
Chandler Carruth87c44602011-07-01 23:49:12 +00004443 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004444 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004445 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004446 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004447 D->addAttr(::new (S.Context)
4448 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4449 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004450 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004451 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004452 D->addAttr(::new (S.Context)
4453 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4454 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004455 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004456 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004457 D->addAttr(::new (S.Context)
4458 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4459 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004460 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004461 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004462 D->addAttr(::new (S.Context)
4463 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4464 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004465 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004466 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004467 D->addAttr(::new (S.Context)
4468 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4469 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004470 return;
4471 };
4472}
4473
John McCalldc7c5ad2011-07-22 08:53:00 +00004474static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4475 const AttributeList &attr) {
4476 SourceLocation loc = attr.getLoc();
4477
4478 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4479
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004480 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004481 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004482 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004483 return;
4484 }
4485
4486 // Check that the method returns a normal pointer.
4487 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004488
4489 if (!resultType->isReferenceType() &&
4490 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004491 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4492 << SourceRange(loc)
4493 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4494
4495 // Drop the attribute.
4496 return;
4497 }
4498
Michael Han51d8c522013-01-24 16:46:58 +00004499 method->addAttr(::new (S.Context)
4500 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4501 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004502}
4503
Fariborz Jahanian84101132012-09-07 23:46:23 +00004504static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4505 const AttributeList &attr) {
4506 SourceLocation loc = attr.getLoc();
4507 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4508
4509 if (!method) {
4510 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4511 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4512 return;
4513 }
4514 DeclContext *DC = method->getDeclContext();
4515 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4516 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4517 << attr.getName() << 0;
4518 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4519 return;
4520 }
4521 if (method->getMethodFamily() == OMF_dealloc) {
4522 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4523 << attr.getName() << 1;
4524 return;
4525 }
4526
Michael Han51d8c522013-01-24 16:46:58 +00004527 method->addAttr(::new (S.Context)
4528 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4529 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004530}
4531
John McCall8dfac0b2011-09-30 05:12:12 +00004532/// Handle cf_audited_transfer and cf_unknown_transfer.
4533static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4534 if (!isa<FunctionDecl>(D)) {
4535 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004536 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004537 return;
4538 }
4539
Sean Hunt8e083e72012-06-19 23:57:03 +00004540 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004541
4542 // Check whether there's a conflicting attribute already present.
4543 Attr *Existing;
4544 if (IsAudited) {
4545 Existing = D->getAttr<CFUnknownTransferAttr>();
4546 } else {
4547 Existing = D->getAttr<CFAuditedTransferAttr>();
4548 }
4549 if (Existing) {
4550 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4551 << A.getName()
4552 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4553 << A.getRange() << Existing->getRange();
4554 return;
4555 }
4556
4557 // All clear; add the attribute.
4558 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004559 D->addAttr(::new (S.Context)
4560 CFAuditedTransferAttr(A.getRange(), S.Context,
4561 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004562 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004563 D->addAttr(::new (S.Context)
4564 CFUnknownTransferAttr(A.getRange(), S.Context,
4565 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004566 }
4567}
4568
John McCallfe98da02011-09-29 07:17:38 +00004569static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4570 const AttributeList &Attr) {
4571 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4572 if (!RD || RD->isUnion()) {
4573 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004574 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004575 }
4576
Aaron Ballman624421f2013-08-31 01:11:41 +00004577 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004578
4579 // In Objective-C, verify that the type names an Objective-C type.
4580 // We don't want to check this outside of ObjC because people sometimes
4581 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004582 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004583 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004584 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004585 Sema::LookupOrdinaryName);
4586 if (S.LookupName(R, Sc)) {
4587 NamedDecl *Target = R.getFoundDecl();
4588 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4589 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4590 S.Diag(Target->getLocStart(), diag::note_declared_at);
4591 }
4592 }
4593 }
4594
Michael Han51d8c522013-01-24 16:46:58 +00004595 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004596 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004597 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004598}
4599
Chandler Carruth1b03c872011-07-02 00:01:44 +00004600static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4601 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004602 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004603
Chandler Carruth87c44602011-07-01 23:49:12 +00004604 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004605 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004606}
4607
Chandler Carruth1b03c872011-07-02 00:01:44 +00004608static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4609 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004610 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004611 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004612 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004613 return;
4614 }
4615
Chandler Carruth87c44602011-07-01 23:49:12 +00004616 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004617 QualType type = vd->getType();
4618
4619 if (!type->isDependentType() &&
4620 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004621 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004622 << type;
4623 return;
4624 }
4625
4626 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4627
4628 // If we have no lifetime yet, check the lifetime we're presumably
4629 // going to infer.
4630 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4631 lifetime = type->getObjCARCImplicitLifetime();
4632
4633 switch (lifetime) {
4634 case Qualifiers::OCL_None:
4635 assert(type->isDependentType() &&
4636 "didn't infer lifetime for non-dependent type?");
4637 break;
4638
4639 case Qualifiers::OCL_Weak: // meaningful
4640 case Qualifiers::OCL_Strong: // meaningful
4641 break;
4642
4643 case Qualifiers::OCL_ExplicitNone:
4644 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004645 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004646 << (lifetime == Qualifiers::OCL_Autoreleasing);
4647 break;
4648 }
4649
Chandler Carruth87c44602011-07-01 23:49:12 +00004650 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004651 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4652 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004653}
4654
Francois Pichet11542142010-12-19 06:50:37 +00004655//===----------------------------------------------------------------------===//
4656// Microsoft specific attribute handlers.
4657//===----------------------------------------------------------------------===//
4658
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004659// Check if MS extensions or some other language extensions are enabled. If
4660// not, issue a diagnostic that the given attribute is unused.
4661static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4662 bool OtherExtension = false) {
4663 if (S.LangOpts.MicrosoftExt || OtherExtension)
4664 return true;
4665 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4666 return false;
4667}
4668
Chandler Carruth1b03c872011-07-02 00:01:44 +00004669static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004670 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4671 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004672
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004673 // check the attribute arguments.
4674 if (!checkAttributeNumArgs(S, Attr, 1))
4675 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004676
Aaron Ballman624421f2013-08-31 01:11:41 +00004677 Expr *Arg = Attr.getArgAsExpr(0);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004678 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
4679 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004680 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4681 << Attr.getName() << AANT_ArgumentString;
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004682 return;
4683 }
Francois Pichetd3d3be92010-12-20 01:41:49 +00004684
David Majnemerbb0ed292013-08-09 08:56:20 +00004685 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4686 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004687 StringRef StrRef = Str->getString();
David Majnemerbb0ed292013-08-09 08:56:20 +00004688 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4689 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004690
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004691 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004692 if (StrRef.size() != 36) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004693 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4694 return;
4695 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004696
David Majnemerbb0ed292013-08-09 08:56:20 +00004697 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004698 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004699 if (StrRef[i] != '-') {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004700 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4701 return;
4702 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004703 } else if (!isHexDigit(StrRef[i])) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004704 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4705 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004706 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004707 }
Francois Pichet11542142010-12-19 06:50:37 +00004708
David Majnemerbb0ed292013-08-09 08:56:20 +00004709 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4710 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004711}
4712
John McCallc052dbb2012-05-22 21:28:12 +00004713static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004714 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004715 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004716
4717 AttributeList::Kind Kind = Attr.getKind();
4718 if (Kind == AttributeList::AT_SingleInheritance)
4719 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004720 ::new (S.Context)
4721 SingleInheritanceAttr(Attr.getRange(), S.Context,
4722 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004723 else if (Kind == AttributeList::AT_MultipleInheritance)
4724 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004725 ::new (S.Context)
4726 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4727 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004728 else if (Kind == AttributeList::AT_VirtualInheritance)
4729 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004730 ::new (S.Context)
4731 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4732 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004733}
4734
4735static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004736 if (!checkMicrosoftExt(S, Attr))
4737 return;
4738
4739 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004740 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004741 D->addAttr(
4742 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4743 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004744}
4745
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004746static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004747 if (!checkMicrosoftExt(S, Attr))
4748 return;
4749 D->addAttr(::new (S.Context)
4750 ForceInlineAttr(Attr.getRange(), S.Context,
4751 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004752}
4753
Reid Klecknera7225342013-05-20 14:02:37 +00004754static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4755 if (!checkMicrosoftExt(S, Attr))
4756 return;
4757 // Check linkage after possibly merging declaratinos. See
4758 // checkAttributesAfterMerging().
4759 D->addAttr(::new (S.Context)
4760 SelectAnyAttr(Attr.getRange(), S.Context,
4761 Attr.getAttributeSpellingListIndex()));
4762}
4763
Ted Kremenekb71368d2009-05-09 02:44:38 +00004764//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004765// Top Level Sema Entry Points
4766//===----------------------------------------------------------------------===//
4767
Richard Smith4a97b8e2013-08-29 00:47:48 +00004768/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4769/// the attribute applies to decls. If the attribute is a type attribute, just
4770/// silently ignore it if a GNU attribute.
4771static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4772 const AttributeList &Attr,
4773 bool IncludeCXX11Attributes) {
4774 if (Attr.isInvalid())
4775 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004776
Richard Smith4a97b8e2013-08-29 00:47:48 +00004777 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4778 // instead.
4779 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4780 return;
4781
Chris Lattner803d0802008-06-29 00:43:07 +00004782 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004783 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4784 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4785 case AttributeList::AT_IBOutletCollection:
4786 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004787 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004788 case AttributeList::AT_ObjCGC:
4789 case AttributeList::AT_VectorSize:
4790 case AttributeList::AT_NeonVectorType:
4791 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004792 case AttributeList::AT_Ptr32:
4793 case AttributeList::AT_Ptr64:
4794 case AttributeList::AT_SPtr:
4795 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004796 // Ignore these, these are type attributes, handled by
4797 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004798 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004799 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4800 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4801 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4802 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004803 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004804 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004805 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004806 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004807 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4808 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4809 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004810 handleDependencyAttr(S, scope, D, Attr);
4811 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004812 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4813 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4814 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004815 case AttributeList::AT_CXX11NoReturn:
4816 handleCXX11NoReturnAttr(S, D, Attr);
4817 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004818 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004819 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004820 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004821 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4822 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004823 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004824 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004825 case AttributeList::AT_MinSize:
4826 handleMinSizeAttr(S, D, Attr);
4827 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004828 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4829 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4830 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004831 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4832 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004833 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4834 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004835 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004836 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004837 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4838 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004839 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004840 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4841 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004842 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004843 case AttributeList::AT_ownership_returns:
4844 case AttributeList::AT_ownership_takes:
4845 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004846 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004847 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4848 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4849 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4850 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4851 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4852 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4853 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004854
Sean Hunt8e083e72012-06-19 23:57:03 +00004855 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004856 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004857 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004858 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004859
Sean Hunt8e083e72012-06-19 23:57:03 +00004860 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004861 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4862
Fariborz Jahanian84101132012-09-07 23:46:23 +00004863 case AttributeList::AT_ObjCRequiresSuper:
4864 handleObjCRequiresSuperAttr(S, D, Attr); break;
4865
Sean Hunt8e083e72012-06-19 23:57:03 +00004866 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004867 handleNSBridgedAttr(S, scope, D, Attr); break;
4868
Sean Hunt8e083e72012-06-19 23:57:03 +00004869 case AttributeList::AT_CFAuditedTransfer:
4870 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004871 handleCFTransferAttr(S, D, Attr); break;
4872
Ted Kremenekb71368d2009-05-09 02:44:38 +00004873 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004874 case AttributeList::AT_CFConsumed:
4875 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4876 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004877 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004878
Sean Hunt8e083e72012-06-19 23:57:03 +00004879 case AttributeList::AT_NSReturnsAutoreleased:
4880 case AttributeList::AT_NSReturnsNotRetained:
4881 case AttributeList::AT_CFReturnsNotRetained:
4882 case AttributeList::AT_NSReturnsRetained:
4883 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004884 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004885
Tanya Lattner0df579e2012-07-09 22:06:01 +00004886 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004887 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004888 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004889
Joey Gouly37453b92013-03-08 09:42:32 +00004890 case AttributeList::AT_VecTypeHint:
4891 handleVecTypeHint(S, D, Attr); break;
4892
Joey Gouly96cead52013-03-14 09:54:43 +00004893 case AttributeList::AT_Endian:
4894 handleEndianAttr(S, D, Attr);
4895 break;
4896
Sean Hunt8e083e72012-06-19 23:57:03 +00004897 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004898 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004899
Sean Hunt8e083e72012-06-19 23:57:03 +00004900 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4901 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4902 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004903 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004904 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004905 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004906 handleArcWeakrefUnavailableAttr (S, D, Attr);
4907 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004908 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004909 handleObjCRootClassAttr(S, D, Attr);
4910 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004911 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004912 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004913 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004914 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4915 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004916 handleReturnsTwiceAttr(S, D, Attr);
4917 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004918 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004919 case AttributeList::AT_Visibility:
4920 handleVisibilityAttr(S, D, Attr, false);
4921 break;
4922 case AttributeList::AT_TypeVisibility:
4923 handleVisibilityAttr(S, D, Attr, true);
4924 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004925 case AttributeList::AT_WarnUnused:
4926 handleWarnUnusedAttr(S, D, Attr);
4927 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004928 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004929 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004930 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4931 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4932 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4933 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004934 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004935 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004936 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004937 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004938 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004939 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004940 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004941 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004942 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4943 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4944 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4945 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4946 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4947 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4948 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4949 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4950 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004951 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004952 // Just ignore
4953 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004954 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004955 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004956 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004957 case AttributeList::AT_StdCall:
4958 case AttributeList::AT_CDecl:
4959 case AttributeList::AT_FastCall:
4960 case AttributeList::AT_ThisCall:
4961 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004962 case AttributeList::AT_MSABI:
4963 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004964 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004965 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004966 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004967 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004968 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004969 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004970 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004971 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004972 case AttributeList::AT_OpenCLImageAccess:
4973 handleOpenCLImageAccessAttr(S, D, Attr);
4974 break;
John McCallc052dbb2012-05-22 21:28:12 +00004975
4976 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004977 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004978 handleMsStructAttr(S, D, Attr);
4979 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004980 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004981 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004982 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004983 case AttributeList::AT_SingleInheritance:
4984 case AttributeList::AT_MultipleInheritance:
4985 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004986 handleInheritanceAttr(S, D, Attr);
4987 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004988 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004989 handlePortabilityAttr(S, D, Attr);
4990 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004991 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004992 handleForceInlineAttr(S, D, Attr);
4993 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004994 case AttributeList::AT_SelectAny:
4995 handleSelectAnyAttr(S, D, Attr);
4996 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004997
4998 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004999 case AttributeList::AT_AssertExclusiveLock:
5000 handleAssertExclusiveLockAttr(S, D, Attr);
5001 break;
5002 case AttributeList::AT_AssertSharedLock:
5003 handleAssertSharedLockAttr(S, D, Attr);
5004 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005005 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005006 handleGuardedVarAttr(S, D, Attr);
5007 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005008 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00005009 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005010 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005011 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00005012 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005013 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00005014 case AttributeList::AT_NoSanitizeAddress:
5015 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00005016 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005017 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00005018 handleNoThreadSafetyAnalysis(S, D, Attr);
5019 break;
5020 case AttributeList::AT_NoSanitizeThread:
5021 handleNoSanitizeThread(S, D, Attr);
5022 break;
5023 case AttributeList::AT_NoSanitizeMemory:
5024 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005025 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005026 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005027 handleLockableAttr(S, D, Attr);
5028 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005029 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005030 handleGuardedByAttr(S, D, Attr);
5031 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005032 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00005033 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005034 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005035 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00005036 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005037 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005038 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00005039 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005040 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005041 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00005042 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005043 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005044 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005045 handleLockReturnedAttr(S, D, Attr);
5046 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005047 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005048 handleLocksExcludedAttr(S, D, Attr);
5049 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005050 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00005051 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005052 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005053 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00005054 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005055 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005056 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00005057 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005058 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005059 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005060 handleUnlockFunAttr(S, D, Attr);
5061 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005062 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00005063 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005064 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00005065 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00005066 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00005067 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00005068
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005069 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00005070 case AttributeList::AT_Consumable:
5071 handleConsumableAttr(S, D, Attr);
5072 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005073 case AttributeList::AT_Consumes:
5074 handleConsumesAttr(S, D, Attr);
5075 break;
5076 case AttributeList::AT_CallableWhenUnconsumed:
5077 handleCallableWhenUnconsumedAttr(S, D, Attr);
5078 break;
5079 case AttributeList::AT_TestsConsumed:
5080 handleTestsConsumedAttr(S, D, Attr);
5081 break;
5082 case AttributeList::AT_TestsUnconsumed:
5083 handleTestsUnconsumedAttr(S, D, Attr);
5084 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00005085 case AttributeList::AT_ReturnTypestate:
5086 handleReturnTypestateAttr(S, D, Attr);
5087 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00005088
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00005089 // Type safety attributes.
5090 case AttributeList::AT_ArgumentWithTypeTag:
5091 handleArgumentWithTypeTagAttr(S, D, Attr);
5092 break;
5093 case AttributeList::AT_TypeTagForDatatype:
5094 handleTypeTagForDatatypeAttr(S, D, Attr);
5095 break;
5096
Chris Lattner803d0802008-06-29 00:43:07 +00005097 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00005098 // Ask target about the attribute.
5099 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
5100 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00005101 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
5102 diag::warn_unhandled_ms_attribute_ignored :
5103 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00005104 break;
5105 }
5106}
5107
5108/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
5109/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00005110void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00005111 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00005112 bool IncludeCXX11Attributes) {
5113 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005114 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005115
5116 // GCC accepts
5117 // static int a9 __attribute__((weakref));
5118 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005119 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005120 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00005121 cast<NamedDecl>(D)->getNameAsString();
5122 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005123 return;
Chris Lattner803d0802008-06-29 00:43:07 +00005124 }
5125}
5126
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005127// Annotation attributes are the only attributes allowed after an access
5128// specifier.
5129bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
5130 const AttributeList *AttrList) {
5131 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00005132 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005133 handleAnnotateAttr(*this, ASDecl, *l);
5134 } else {
5135 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
5136 return true;
5137 }
5138 }
5139
5140 return false;
5141}
5142
John McCalle82247a2011-10-01 05:17:03 +00005143/// checkUnusedDeclAttributes - Check a list of attributes to see if it
5144/// contains any decl attributes that we should warn about.
5145static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
5146 for ( ; A; A = A->getNext()) {
5147 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00005148 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00005149 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
5150
5151 if (A->getKind() == AttributeList::UnknownAttribute) {
5152 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
5153 << A->getName() << A->getRange();
5154 } else {
5155 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
5156 << A->getName() << A->getRange();
5157 }
5158 }
5159}
5160
5161/// checkUnusedDeclAttributes - Given a declarator which is not being
5162/// used to build a declaration, complain about any decl attributes
5163/// which might be lying around on it.
5164void Sema::checkUnusedDeclAttributes(Declarator &D) {
5165 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
5166 ::checkUnusedDeclAttributes(*this, D.getAttributes());
5167 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
5168 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
5169}
5170
Ryan Flynne25ff832009-07-30 03:15:39 +00005171/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00005172/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00005173NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5174 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005175 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00005176 NamedDecl *NewD = 0;
5177 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00005178 FunctionDecl *NewFD;
5179 // FIXME: Missing call to CheckFunctionDeclaration().
5180 // FIXME: Mangling?
5181 // FIXME: Is the qualifier info correct?
5182 // FIXME: Is the DeclContext correct?
5183 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
5184 Loc, Loc, DeclarationName(II),
5185 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005186 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00005187 FD->hasPrototype(),
5188 false/*isConstexprSpecified*/);
5189 NewD = NewFD;
5190
5191 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005192 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00005193
5194 // Fake up parameter variables; they are declared as if this were
5195 // a typedef.
5196 QualType FDTy = FD->getType();
5197 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5198 SmallVector<ParmVarDecl*, 16> Params;
5199 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5200 AE = FT->arg_type_end(); AI != AE; ++AI) {
5201 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5202 Param->setScopeInfo(0, Params.size());
5203 Params.push_back(Param);
5204 }
David Blaikie4278c652011-09-21 18:16:56 +00005205 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005206 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005207 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5208 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005209 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005210 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005211 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00005212 if (VD->getQualifier()) {
5213 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005214 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005215 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005216 }
5217 return NewD;
5218}
5219
James Dennett1dfbd922012-06-14 21:40:34 +00005220/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005221/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005222void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005223 if (W.getUsed()) return; // only do this once
5224 W.setUsed(true);
5225 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5226 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005227 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005228 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5229 NDId->getName()));
5230 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005231 WeakTopLevelDecl.push_back(NewD);
5232 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5233 // to insert Decl at TU scope, sorry.
5234 DeclContext *SavedContext = CurContext;
5235 CurContext = Context.getTranslationUnitDecl();
5236 PushOnScopeChains(NewD, S);
5237 CurContext = SavedContext;
5238 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005239 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005240 }
5241}
5242
Rafael Espindola65611bf2013-03-02 21:41:48 +00005243void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5244 // It's valid to "forward-declare" #pragma weak, in which case we
5245 // have to do this.
5246 LoadExternalWeakUndeclaredIdentifiers();
5247 if (!WeakUndeclaredIdentifiers.empty()) {
5248 NamedDecl *ND = NULL;
5249 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5250 if (VD->isExternC())
5251 ND = VD;
5252 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5253 if (FD->isExternC())
5254 ND = FD;
5255 if (ND) {
5256 if (IdentifierInfo *Id = ND->getIdentifier()) {
5257 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5258 = WeakUndeclaredIdentifiers.find(Id);
5259 if (I != WeakUndeclaredIdentifiers.end()) {
5260 WeakInfo W = I->second;
5261 DeclApplyPragmaWeak(S, ND, W);
5262 WeakUndeclaredIdentifiers[Id] = W;
5263 }
5264 }
5265 }
5266 }
5267}
5268
Chris Lattner0744e5f2008-06-29 00:23:49 +00005269/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5270/// it, apply them to D. This is a bit tricky because PD can have attributes
5271/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005272void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005273 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005274 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005275 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005276
Chris Lattner0744e5f2008-06-29 00:23:49 +00005277 // Walk the declarator structure, applying decl attributes that were in a type
5278 // position to the decl itself. This handles cases like:
5279 // int *__attr__(x)** D;
5280 // when X is a decl attribute.
5281 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5282 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005283 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005284
Chris Lattner0744e5f2008-06-29 00:23:49 +00005285 // Finally, apply any attributes on the decl itself.
5286 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005287 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005288}
John McCall54abf7d2009-11-04 02:18:39 +00005289
John McCallf85e1932011-06-15 23:02:42 +00005290/// Is the given declaration allowed to use a forbidden type?
5291static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5292 // Private ivars are always okay. Unfortunately, people don't
5293 // always properly make their ivars private, even in system headers.
5294 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005295 // Function declarations in sys headers will be marked unavailable.
5296 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5297 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005298 return false;
5299
5300 // Require it to be declared in a system header.
5301 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5302}
5303
5304/// Handle a delayed forbidden-type diagnostic.
5305static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5306 Decl *decl) {
5307 if (decl && isForbiddenTypeAllowed(S, decl)) {
5308 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5309 "this system declaration uses an unsupported type"));
5310 return;
5311 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005312 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005313 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005314 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005315 // kind of forbidden type messages on unavailable functions.
5316 if (FD->hasAttr<UnavailableAttr>() &&
5317 diag.getForbiddenTypeDiagnostic() ==
5318 diag::err_arc_array_param_no_ownership) {
5319 diag.Triggered = true;
5320 return;
5321 }
5322 }
John McCallf85e1932011-06-15 23:02:42 +00005323
5324 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5325 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5326 diag.Triggered = true;
5327}
5328
John McCall92576642012-05-07 06:16:41 +00005329void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5330 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005331 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005332 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005333
John McCall92576642012-05-07 06:16:41 +00005334 // When delaying diagnostics to run in the context of a parsed
5335 // declaration, we only want to actually emit anything if parsing
5336 // succeeds.
5337 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005338
John McCall92576642012-05-07 06:16:41 +00005339 // We emit all the active diagnostics in this pool or any of its
5340 // parents. In general, we'll get one pool for the decl spec
5341 // and a child pool for each declarator; in a decl group like:
5342 // deprecated_typedef foo, *bar, baz();
5343 // only the declarator pops will be passed decls. This is correct;
5344 // we really do need to consider delayed diagnostics from the decl spec
5345 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005346 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005347 do {
John McCall13489672012-05-07 06:16:58 +00005348 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005349 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5350 // This const_cast is a bit lame. Really, Triggered should be mutable.
5351 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005352 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005353 continue;
5354
John McCalleee1d542011-02-14 07:13:47 +00005355 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005356 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005357 // Don't bother giving deprecation diagnostics if the decl is invalid.
5358 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005359 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005360 break;
5361
5362 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005363 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005364 break;
John McCallf85e1932011-06-15 23:02:42 +00005365
5366 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005367 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005368 break;
John McCall2f514482010-01-27 03:50:35 +00005369 }
5370 }
John McCall92576642012-05-07 06:16:41 +00005371 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005372}
5373
John McCall13489672012-05-07 06:16:58 +00005374/// Given a set of delayed diagnostics, re-emit them as if they had
5375/// been delayed in the current context instead of in the given pool.
5376/// Essentially, this just moves them to the current pool.
5377void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5378 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5379 assert(curPool && "re-emitting in undelayed context not supported");
5380 curPool->steal(pool);
5381}
5382
John McCall54abf7d2009-11-04 02:18:39 +00005383static bool isDeclDeprecated(Decl *D) {
5384 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005385 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005386 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005387 // A category implicitly has the availability of the interface.
5388 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5389 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005390 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5391 return false;
5392}
5393
Eli Friedmanc3b23082012-08-08 21:52:41 +00005394static void
5395DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5396 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005397 const ObjCInterfaceDecl *UnknownObjCClass,
5398 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005399 DeclarationName Name = D->getDeclName();
5400 if (!Message.empty()) {
5401 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5402 S.Diag(D->getLocation(),
5403 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5404 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005405 if (ObjCPropery)
5406 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5407 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005408 } else if (!UnknownObjCClass) {
5409 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5410 S.Diag(D->getLocation(),
5411 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5412 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005413 if (ObjCPropery)
5414 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5415 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005416 } else {
5417 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5418 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5419 }
5420}
5421
John McCall9c3087b2010-08-26 02:13:20 +00005422void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005423 Decl *Ctx) {
5424 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005425 return;
5426
John McCall2f514482010-01-27 03:50:35 +00005427 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005428 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5429 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005430 DD.getUnknownObjCClass(),
5431 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005432}
5433
Chris Lattner5f9e2722011-07-23 10:55:15 +00005434void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005435 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005436 const ObjCInterfaceDecl *UnknownObjCClass,
5437 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005438 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005439 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005440 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5441 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005442 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005443 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005444 return;
5445 }
5446
5447 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005448 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005449 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005450 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005451}