blob: 0a35127980785eae232b96e032b6eec363444a1b [file] [log] [blame]
Chris Lattner6b6b5372008-06-26 18:38:35 +00001//===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements decl-related attribute processing.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000015#include "TargetAttributesSema.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000016#include "clang/AST/ASTContext.h"
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +000017#include "clang/AST/CXXInheritance.h"
John McCall384aff82010-08-25 07:42:41 +000018#include "clang/AST/DeclCXX.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000021#include "clang/AST/Expr.h"
Rafael Espindolad7a60ad2013-02-26 19:13:56 +000022#include "clang/AST/Mangle.h"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000023#include "clang/Basic/CharInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000024#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000025#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000026#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000027#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000028#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000029#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000030#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000031using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000032using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000033
John McCall883cc2c2011-03-02 12:29:23 +000034/// These constants match the enumerated choices of
35/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000036enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000037 ExpectedFunction,
38 ExpectedUnion,
39 ExpectedVariableOrFunction,
40 ExpectedFunctionOrMethod,
41 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000042 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000043 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000044 ExpectedFunctionMethodOrParameter,
45 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000046 ExpectedVariable,
47 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000048 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000049 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000050 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000051 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000052 ExpectedTLSVar,
53 ExpectedVariableOrField,
John McCalld4c3d662013-02-20 01:54:26 +000054 ExpectedVariableFieldOrTag,
Aaron Ballman37a89532013-07-18 14:56:42 +000055 ExpectedTypeOrNamespace,
56 ExpectedObjectiveCInterface
John McCall883cc2c2011-03-02 12:29:23 +000057};
58
Chris Lattnere5c5ee12008-06-29 00:16:31 +000059//===----------------------------------------------------------------------===//
60// Helper functions
61//===----------------------------------------------------------------------===//
62
Chandler Carruth87c44602011-07-01 23:49:12 +000063static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000064 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000065 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000066 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000067 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000068 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000069 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000070 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000071 Ty = decl->getUnderlyingType();
72 else
73 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000074
Chris Lattner6b6b5372008-06-26 18:38:35 +000075 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000076 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000077 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000078 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000079
John McCall183700f2009-09-21 23:43:11 +000080 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000081}
82
Daniel Dunbar35682492008-09-26 04:12:28 +000083// FIXME: We should provide an abstraction around a method or function
84// to provide the following bits of information.
85
Nuno Lopesd20254f2009-12-20 23:11:08 +000086/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000087/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000088static bool isFunction(const Decl *D) {
89 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000090}
91
92/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000093/// type (function or function-typed variable) or an Objective-C
94/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000095static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000096 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000097}
98
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000099/// isFunctionOrMethodOrBlock - Return true if the given decl has function
100/// type (function or function-typed variable) or an Objective-C
101/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +0000102static bool isFunctionOrMethodOrBlock(const Decl *D) {
103 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000104 return true;
105 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000106 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000107 QualType Ty = V->getType();
108 return Ty->isBlockPointerType();
109 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000110 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000111}
112
John McCall711c52b2011-01-05 12:14:39 +0000113/// Return true if the given decl has a declarator that should have
114/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000115static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000116 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000117 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
118 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000119}
120
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000121/// hasFunctionProto - Return true if the given decl has a argument
122/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000123/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000124static bool hasFunctionProto(const Decl *D) {
125 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000126 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000127 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000128 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000129 return true;
130 }
131}
132
133/// getFunctionOrMethodNumArgs - Return number of function or method
134/// arguments. It is an error to call this on a K&R function (use
135/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000136static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
137 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000138 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000139 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000140 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000141 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000142}
143
Chandler Carruth87c44602011-07-01 23:49:12 +0000144static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
145 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000146 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000147 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000148 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000149
Chandler Carruth87c44602011-07-01 23:49:12 +0000150 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000151}
152
Chandler Carruth87c44602011-07-01 23:49:12 +0000153static QualType getFunctionOrMethodResultType(const Decl *D) {
154 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000155 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000156 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000157}
158
Chandler Carruth87c44602011-07-01 23:49:12 +0000159static bool isFunctionOrMethodVariadic(const Decl *D) {
160 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000161 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000162 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000163 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000164 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000165 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000166 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000167 }
168}
169
Chandler Carruth87c44602011-07-01 23:49:12 +0000170static bool isInstanceMethod(const Decl *D) {
171 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000172 return MethodDecl->isInstance();
173 return false;
174}
175
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000177 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000178 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000179 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000180
John McCall506b57e2010-05-17 21:00:27 +0000181 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
182 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000183 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000184
John McCall506b57e2010-05-17 21:00:27 +0000185 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000186
Chris Lattner6b6b5372008-06-26 18:38:35 +0000187 // FIXME: Should we walk the chain of classes?
188 return ClsName == &Ctx.Idents.get("NSString") ||
189 ClsName == &Ctx.Idents.get("NSMutableString");
190}
191
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000193 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000194 if (!PT)
195 return false;
196
Ted Kremenek6217b802009-07-29 21:53:49 +0000197 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000198 if (!RT)
199 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000200
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000201 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000202 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000203 return false;
204
205 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
206}
207
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000208/// \brief Check if the attribute has exactly as many args as Num. May
209/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000210static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
211 unsigned int Num) {
212 if (Attr.getNumArgs() != Num) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +0000213 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
214 << Attr.getName() << Num;
Chandler Carruth1731e202011-07-11 23:30:35 +0000215 return false;
216 }
217
218 return true;
219}
220
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000221
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000222/// \brief Check if the attribute has at least as many args as Num. May
223/// output an error.
224static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
225 unsigned int Num) {
226 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000227 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
228 return false;
229 }
230
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000231 return true;
232}
233
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000234/// \brief Check if IdxExpr is a valid argument index for a function or
235/// instance method D. May output an error.
236///
237/// \returns true if IdxExpr is a valid index.
238static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
239 StringRef AttrName,
240 SourceLocation AttrLoc,
241 unsigned AttrArgNum,
242 const Expr *IdxExpr,
243 uint64_t &Idx)
244{
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000245 assert(isFunctionOrMethod(D));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000246
247 // In C++ the implicit 'this' function parameter also counts.
248 // Parameters are counted from one.
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000249 bool HP = hasFunctionProto(D);
250 bool HasImplicitThisParam = isInstanceMethod(D);
251 bool IV = HP && isFunctionOrMethodVariadic(D);
252 unsigned NumArgs = (HP ? getFunctionOrMethodNumArgs(D) : 0) +
253 HasImplicitThisParam;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000254
255 llvm::APSInt IdxInt;
256 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
257 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000258 std::string Name = std::string("'") + AttrName.str() + std::string("'");
259 S.Diag(AttrLoc, diag::err_attribute_argument_n_type) << Name.c_str()
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000260 << AttrArgNum << AANT_ArgumentIntegerConstant << IdxExpr->getSourceRange();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000261 return false;
262 }
263
264 Idx = IdxInt.getLimitedValue();
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +0000265 if (Idx < 1 || (!IV && Idx > NumArgs)) {
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000266 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
267 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
268 return false;
269 }
270 Idx--; // Convert to zero-based.
271 if (HasImplicitThisParam) {
272 if (Idx == 0) {
273 S.Diag(AttrLoc,
274 diag::err_attribute_invalid_implicit_this_argument)
275 << AttrName << IdxExpr->getSourceRange();
276 return false;
277 }
278 --Idx;
279 }
280
281 return true;
282}
283
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000284///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000285/// \brief Check if passed in Decl is a field or potentially shared global var
286/// \return true if the Decl is a field or potentially shared global variable
287///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000288static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000289 if (isa<FieldDecl>(D))
290 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000291 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Richard Smith38afbc72013-04-13 02:43:54 +0000292 return vd->hasGlobalStorage() && !vd->getTLSKind();
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000293
294 return false;
295}
296
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000297/// \brief Check if the passed-in expression is of type int or bool.
298static bool isIntOrBool(Expr *Exp) {
299 QualType QT = Exp->getType();
300 return QT->isBooleanType() || QT->isIntegerType();
301}
302
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000303
304// Check to see if the type is a smart pointer of some kind. We assume
305// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000306static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
307 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
308 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000309 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000310 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000311
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000312 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
313 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000314 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000315 return false;
316
317 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000318}
319
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000320/// \brief Check if passed in Decl is a pointer type.
321/// Note that this function may produce an error message.
322/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000323static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
324 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000325 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000326 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000327 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000328 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000329
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000330 if (const RecordType *RT = QT->getAs<RecordType>()) {
331 // If it's an incomplete type, it could be a smart pointer; skip it.
332 // (We don't want to force template instantiation if we can avoid it,
333 // since that would alter the order in which templates are instantiated.)
334 if (RT->isIncompleteType())
335 return true;
336
337 if (threadSafetyCheckIsSmartPointer(S, RT))
338 return true;
339 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000340
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000341 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000342 << Attr.getName()->getName() << QT;
343 } else {
344 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
345 << Attr.getName();
346 }
347 return false;
348}
349
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000350/// \brief Checks that the passed in QualType either is of RecordType or points
351/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000352static const RecordType *getRecordType(QualType QT) {
353 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000354 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000355
356 // Now check if we point to record type.
357 if (const PointerType *PT = QT->getAs<PointerType>())
358 return PT->getPointeeType()->getAs<RecordType>();
359
360 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000361}
362
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000363
Jordy Rosefad5de92012-05-08 03:27:22 +0000364static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
365 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000366 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
367 if (RT->getDecl()->getAttr<LockableAttr>())
368 return true;
369 return false;
370}
371
372
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000373/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000374/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000375static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
376 QualType Ty) {
377 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000378
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000379 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000380 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000381 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000382 << Attr.getName() << Ty.getAsString();
383 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000384 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000385
Michael Hanf1aae3b2012-08-03 17:40:43 +0000386 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000387 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000388 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000389
390 // Allow smart pointers to be used as lockable objects.
391 // FIXME -- Check the type that the smart pointer points to.
392 if (threadSafetyCheckIsSmartPointer(S, RT))
393 return;
394
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000395 // Check if the type is lockable.
396 RecordDecl *RD = RT->getDecl();
397 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000398 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000399
400 // Else check if any base classes are lockable.
401 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
402 CXXBasePaths BPaths(false, false);
403 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
404 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000405 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000406
407 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
408 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000409}
410
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000411/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000412/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000413/// \param Sidx The attribute argument index to start checking with.
414/// \param ParamIdxOk Whether an argument can be indexing into a function
415/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000416static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000417 const AttributeList &Attr,
418 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000419 int Sidx = 0,
420 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000421 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Aaron Ballman624421f2013-08-31 01:11:41 +0000422 Expr *ArgExp = Attr.getArgAsExpr(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000423
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000424 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000425 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000426 Args.push_back(ArgExp);
427 continue;
428 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000429
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000430 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000431 if (StrLit->getLength() == 0 ||
432 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000433 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000434 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000435 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000436 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000437 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000438
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000439 // We allow constant strings to be used as a placeholder for expressions
440 // that are not valid C++ syntax, but warn that they are ignored.
441 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
442 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000443 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000444 continue;
445 }
446
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000447 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000448
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000449 // A pointer to member expression of the form &MyClass::mu is treated
450 // specially -- we need to look at the type of the member.
451 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
452 if (UOp->getOpcode() == UO_AddrOf)
453 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
454 if (DRE->getDecl()->isCXXInstanceMember())
455 ArgTy = DRE->getDecl()->getType();
456
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000457 // First see if we can just cast to record type, or point to record type.
458 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000459
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000460 // Now check if we index into a record type function param.
461 if(!RT && ParamIdxOk) {
462 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000463 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
464 if(FD && IL) {
465 unsigned int NumParams = FD->getNumParams();
466 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000467 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
468 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
469 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000470 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
471 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000472 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000473 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000474 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 }
476 }
477
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000478 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000479
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000480 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000481 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000482}
483
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000484//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000485// Attribute Implementations
486//===----------------------------------------------------------------------===//
487
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000488// FIXME: All this manual attribute parsing code is gross. At the
489// least add some helper functions to check most argument patterns (#
490// and types of args).
491
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000492enum ThreadAttributeDeclKind {
493 ThreadExpectedFieldOrGlobalVar,
494 ThreadExpectedFunctionOrMethod,
495 ThreadExpectedClassOrStruct
496};
497
Michael Hanf1aae3b2012-08-03 17:40:43 +0000498static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000499 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000500 // D must be either a member field or global (potentially shared) variable.
501 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000502 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
503 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000504 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000505 }
506
Michael Handc691572012-07-23 18:48:41 +0000507 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000508}
509
Michael Handc691572012-07-23 18:48:41 +0000510static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
511 if (!checkGuardedVarAttrCommon(S, D, Attr))
512 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000513
Michael Han51d8c522013-01-24 16:46:58 +0000514 D->addAttr(::new (S.Context)
515 GuardedVarAttr(Attr.getRange(), S.Context,
516 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000517}
518
Michael Hanf1aae3b2012-08-03 17:40:43 +0000519static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000520 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000521 if (!checkGuardedVarAttrCommon(S, D, Attr))
522 return;
523
524 if (!threadSafetyCheckIsPointer(S, D, Attr))
525 return;
526
Michael Han51d8c522013-01-24 16:46:58 +0000527 D->addAttr(::new (S.Context)
528 PtGuardedVarAttr(Attr.getRange(), S.Context,
529 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000530}
531
Michael Hanf1aae3b2012-08-03 17:40:43 +0000532static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
533 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000534 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000535 // D must be either a member field or global (potentially shared) variable.
536 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000537 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
538 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000539 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000540 }
541
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000542 SmallVector<Expr*, 1> Args;
543 // check that all arguments are lockable objects
544 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
545 unsigned Size = Args.size();
546 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000547 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000548
Michael Handc691572012-07-23 18:48:41 +0000549 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000550
Michael Handc691572012-07-23 18:48:41 +0000551 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000552}
553
Michael Handc691572012-07-23 18:48:41 +0000554static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
555 Expr *Arg = 0;
556 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
557 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000558
Michael Handc691572012-07-23 18:48:41 +0000559 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
560}
561
Michael Hanf1aae3b2012-08-03 17:40:43 +0000562static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000563 const AttributeList &Attr) {
564 Expr *Arg = 0;
565 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
566 return;
567
568 if (!threadSafetyCheckIsPointer(S, D, Attr))
569 return;
570
571 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
572 S.Context, Arg));
573}
574
Michael Hanf1aae3b2012-08-03 17:40:43 +0000575static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000576 const AttributeList &Attr) {
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000577 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000578 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000579 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
580 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000581 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000582 }
583
Michael Handc691572012-07-23 18:48:41 +0000584 return true;
585}
586
587static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
588 if (!checkLockableAttrCommon(S, D, Attr))
589 return;
590
591 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
592}
593
Michael Hanf1aae3b2012-08-03 17:40:43 +0000594static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000595 const AttributeList &Attr) {
596 if (!checkLockableAttrCommon(S, D, Attr))
597 return;
598
Michael Han51d8c522013-01-24 16:46:58 +0000599 D->addAttr(::new (S.Context)
600 ScopedLockableAttr(Attr.getRange(), S.Context,
601 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000602}
603
Kostya Serebryany85aee962013-02-26 06:58:27 +0000604static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
605 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000606 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000607 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
608 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000609 return;
610 }
611
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000612 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000613 S.Context));
614}
615
Kostya Serebryany85aee962013-02-26 06:58:27 +0000616static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000617 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000618 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000619 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000620 << Attr.getName() << ExpectedFunctionOrMethod;
621 return;
622 }
623
Michael Han51d8c522013-01-24 16:46:58 +0000624 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000625 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
626 Attr.getAttributeSpellingListIndex()));
627}
628
629static void handleNoSanitizeMemory(Sema &S, Decl *D,
630 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000631 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
632 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
633 << Attr.getName() << ExpectedFunctionOrMethod;
634 return;
635 }
636
637 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
638 S.Context));
639}
640
641static void handleNoSanitizeThread(Sema &S, Decl *D,
642 const AttributeList &Attr) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000643 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
644 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
645 << Attr.getName() << ExpectedFunctionOrMethod;
646 return;
647 }
648
649 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
650 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000651}
652
Michael Hanf1aae3b2012-08-03 17:40:43 +0000653static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
654 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000655 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000656 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000657 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000658
659 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000660 ValueDecl *VD = dyn_cast<ValueDecl>(D);
661 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000662 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
663 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000664 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 }
666
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000667 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000668 QualType QT = VD->getType();
669 if (!QT->isDependentType()) {
670 const RecordType *RT = getRecordType(QT);
671 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000672 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000673 << Attr.getName();
674 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000675 }
676 }
677
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000678 // Check that all arguments are lockable objects.
679 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000680 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000681 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000682
Michael Handc691572012-07-23 18:48:41 +0000683 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000684}
685
Michael Hanf1aae3b2012-08-03 17:40:43 +0000686static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000687 const AttributeList &Attr) {
688 SmallVector<Expr*, 1> Args;
689 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
690 return;
691
692 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000693 D->addAttr(::new (S.Context)
694 AcquiredAfterAttr(Attr.getRange(), S.Context,
695 StartArg, Args.size(),
696 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000697}
698
Michael Hanf1aae3b2012-08-03 17:40:43 +0000699static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000700 const AttributeList &Attr) {
701 SmallVector<Expr*, 1> Args;
702 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
703 return;
704
705 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000706 D->addAttr(::new (S.Context)
707 AcquiredBeforeAttr(Attr.getRange(), S.Context,
708 StartArg, Args.size(),
709 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000710}
711
Michael Hanf1aae3b2012-08-03 17:40:43 +0000712static bool checkLockFunAttrCommon(Sema &S, Decl *D,
713 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000714 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000715 // zero or more arguments ok
716
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000717 // check that the attribute is applied to a function
718 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000719 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
720 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000721 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000722 }
723
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000724 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000725 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000726
Michael Handc691572012-07-23 18:48:41 +0000727 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000728}
729
Michael Hanf1aae3b2012-08-03 17:40:43 +0000730static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000731 const AttributeList &Attr) {
732 SmallVector<Expr*, 1> Args;
733 if (!checkLockFunAttrCommon(S, D, Attr, Args))
734 return;
735
736 unsigned Size = Args.size();
737 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000738 D->addAttr(::new (S.Context)
739 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
740 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000741}
742
Michael Hanf1aae3b2012-08-03 17:40:43 +0000743static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000744 const AttributeList &Attr) {
745 SmallVector<Expr*, 1> Args;
746 if (!checkLockFunAttrCommon(S, D, Attr, Args))
747 return;
748
749 unsigned Size = Args.size();
750 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000751 D->addAttr(::new (S.Context)
752 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
753 StartArg, Size,
754 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000755}
756
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000757static void handleAssertSharedLockAttr(Sema &S, Decl *D,
758 const AttributeList &Attr) {
759 SmallVector<Expr*, 1> Args;
760 if (!checkLockFunAttrCommon(S, D, Attr, Args))
761 return;
762
763 unsigned Size = Args.size();
764 Expr **StartArg = Size == 0 ? 0 : &Args[0];
765 D->addAttr(::new (S.Context)
766 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
767 Attr.getAttributeSpellingListIndex()));
768}
769
770static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
771 const AttributeList &Attr) {
772 SmallVector<Expr*, 1> Args;
773 if (!checkLockFunAttrCommon(S, D, Attr, Args))
774 return;
775
776 unsigned Size = Args.size();
777 Expr **StartArg = Size == 0 ? 0 : &Args[0];
778 D->addAttr(::new (S.Context)
779 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
780 StartArg, Size,
781 Attr.getAttributeSpellingListIndex()));
782}
783
784
Michael Hanf1aae3b2012-08-03 17:40:43 +0000785static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
786 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000787 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000788 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000789 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000790
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000791 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000792 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
793 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000794 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000795 }
796
Aaron Ballman624421f2013-08-31 01:11:41 +0000797 if (!isIntOrBool(Attr.getArgAsExpr(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000798 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000799 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000800 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000801 }
802
803 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000804 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000805
Michael Handc691572012-07-23 18:48:41 +0000806 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000807}
808
Michael Hanf1aae3b2012-08-03 17:40:43 +0000809static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000810 const AttributeList &Attr) {
811 SmallVector<Expr*, 2> Args;
812 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
813 return;
814
Michael Han51d8c522013-01-24 16:46:58 +0000815 D->addAttr(::new (S.Context)
816 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000817 Attr.getArgAsExpr(0),
818 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000819 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000820}
821
Michael Hanf1aae3b2012-08-03 17:40:43 +0000822static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000823 const AttributeList &Attr) {
824 SmallVector<Expr*, 2> Args;
825 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
826 return;
827
Michael Han51d8c522013-01-24 16:46:58 +0000828 D->addAttr(::new (S.Context)
829 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
Aaron Ballman624421f2013-08-31 01:11:41 +0000830 Attr.getArgAsExpr(0),
831 Args.data(), Args.size(),
Michael Han51d8c522013-01-24 16:46:58 +0000832 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000833}
834
Michael Hanf1aae3b2012-08-03 17:40:43 +0000835static bool checkLocksRequiredCommon(Sema &S, Decl *D,
836 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000837 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000838 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000839 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000840
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000841 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000842 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
843 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000844 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000845 }
846
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000847 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000848 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000849 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000850 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000851
Michael Handc691572012-07-23 18:48:41 +0000852 return true;
853}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000854
Michael Hanf1aae3b2012-08-03 17:40:43 +0000855static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000856 const AttributeList &Attr) {
857 SmallVector<Expr*, 1> Args;
858 if (!checkLocksRequiredCommon(S, D, Attr, Args))
859 return;
860
861 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000862 D->addAttr(::new (S.Context)
863 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
864 StartArg, Args.size(),
865 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000866}
867
Michael Hanf1aae3b2012-08-03 17:40:43 +0000868static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000869 const AttributeList &Attr) {
870 SmallVector<Expr*, 1> Args;
871 if (!checkLocksRequiredCommon(S, D, Attr, Args))
872 return;
873
874 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000875 D->addAttr(::new (S.Context)
876 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
877 StartArg, Args.size(),
878 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000879}
880
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000881static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000882 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000883 // zero or more arguments ok
884
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000885 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000886 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
887 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000888 return;
889 }
890
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000891 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000892 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000893 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000894 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000895 Expr **StartArg = Size == 0 ? 0 : &Args[0];
896
Michael Han51d8c522013-01-24 16:46:58 +0000897 D->addAttr(::new (S.Context)
898 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
899 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000900}
901
902static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000903 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000904 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000905 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
906 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000907 return;
908 }
909
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000910 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000911 SmallVector<Expr*, 1> Args;
912 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
913 unsigned Size = Args.size();
914 if (Size == 0)
915 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000916
Michael Han51d8c522013-01-24 16:46:58 +0000917 D->addAttr(::new (S.Context)
918 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
919 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000920}
921
922static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000923 const AttributeList &Attr) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000924 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000925 return;
926
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000927 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000928 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
929 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000930 return;
931 }
932
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000933 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000934 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000935 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000936 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000937 if (Size == 0)
938 return;
939 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000940
Michael Han51d8c522013-01-24 16:46:58 +0000941 D->addAttr(::new (S.Context)
942 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
943 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000944}
945
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000946static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
David Blaikiea33ab602013-09-06 01:28:43 +0000947 ConsumableAttr::ConsumedState DefaultState;
948
949 if (Attr.isArgIdent(0)) {
950 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
951
952 if (Param == "unknown")
953 DefaultState = ConsumableAttr::Unknown;
954 else if (Param == "consumed")
955 DefaultState = ConsumableAttr::Consumed;
956 else if (Param == "unconsumed")
957 DefaultState = ConsumableAttr::Unconsumed;
958 else {
959 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
960 return;
961 }
962
963 } else {
964 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
965 << Attr.getName() << AANT_ArgumentIdentifier;
966 return;
967 }
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000968
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000969 if (!isa<CXXRecordDecl>(D)) {
970 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
971 Attr.getName() << ExpectedClass;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +0000972 return;
973 }
974
975 D->addAttr(::new (S.Context)
David Blaikiea33ab602013-09-06 01:28:43 +0000976 ConsumableAttr(Attr.getRange(), S.Context, DefaultState,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000977 Attr.getAttributeSpellingListIndex()));
978}
979
980static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
981 const AttributeList &Attr) {
982 ASTContext &CurrContext = S.getASTContext();
983 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType();
984
985 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
986 if (!RD->hasAttr<ConsumableAttr>()) {
987 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) <<
988 RD->getNameAsString();
989
990 return false;
991 }
992 }
993
994 return true;
995}
996
997static void handleConsumesAttr(Sema &S, Decl *D, const AttributeList &Attr) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +0000998 if (!isa<CXXMethodDecl>(D)) {
999 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1000 Attr.getName() << ExpectedMethod;
1001 return;
1002 }
1003
1004 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1005 return;
1006
1007 D->addAttr(::new (S.Context)
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001008 ConsumesAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001009 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001010}
1011
1012static void handleCallableWhenUnconsumedAttr(Sema &S, Decl *D,
1013 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001014 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001015 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1016 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001017 return;
1018 }
1019
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001020 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1021 return;
1022
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001023 D->addAttr(::new (S.Context)
1024 CallableWhenUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001025 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001026}
1027
1028static void handleTestsConsumedAttr(Sema &S, Decl *D,
1029 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001030 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001031 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1032 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001033 return;
1034 }
1035
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001036 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1037 return;
1038
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001039 D->addAttr(::new (S.Context)
1040 TestsConsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001041 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001042}
1043
1044static void handleTestsUnconsumedAttr(Sema &S, Decl *D,
1045 const AttributeList &Attr) {
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001046 if (!isa<CXXMethodDecl>(D)) {
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001047 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1048 Attr.getName() << ExpectedMethod;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001049 return;
1050 }
1051
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001052 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr))
1053 return;
1054
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001055 D->addAttr(::new (S.Context)
1056 TestsUnconsumedAttr(Attr.getRange(), S.Context,
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00001057 Attr.getAttributeSpellingListIndex()));
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00001058}
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00001059
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001060static void handleReturnTypestateAttr(Sema &S, Decl *D,
1061 const AttributeList &Attr) {
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00001062 ReturnTypestateAttr::ConsumedState ReturnState;
1063
1064 if (Attr.isArgIdent(0)) {
1065 StringRef Param = Attr.getArgAsIdent(0)->Ident->getName();
1066
1067 if (Param == "unknown") {
1068 ReturnState = ReturnTypestateAttr::Unknown;
1069 } else if (Param == "consumed") {
1070 ReturnState = ReturnTypestateAttr::Consumed;
1071 } else if (Param == "unconsumed") {
1072 ReturnState = ReturnTypestateAttr::Unconsumed;
1073 } else {
1074 S.Diag(Attr.getLoc(), diag::warn_unknown_consumed_state) << Param;
1075 return;
1076 }
1077
1078 } else {
1079 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) <<
1080 Attr.getName() << AANT_ArgumentIdentifier;
1081 return;
1082 }
1083
1084 if (!isa<FunctionDecl>(D)) {
1085 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) <<
1086 Attr.getName() << ExpectedFunction;
1087 return;
1088 }
1089
1090 // FIXME: This check is currently being done in the analysis. It can be
1091 // enabled here only after the parser propagates attributes at
1092 // template specialization definition, not declaration.
1093 //QualType ReturnType;
1094 //
1095 //if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1096 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType();
1097 //
1098 //} else {
1099 //
1100 // ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1101 //}
1102 //
1103 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1104 //
1105 //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1106 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1107 // ReturnType.getAsString();
1108 // return;
1109 //}
1110
1111 D->addAttr(::new (S.Context)
1112 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState,
1113 Attr.getAttributeSpellingListIndex()));
1114}
1115
Chandler Carruth1b03c872011-07-02 00:01:44 +00001116static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1117 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001118 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1119 if (TD == 0) {
1120 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1121 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001122 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001123 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001124 }
Mike Stumpbf916502009-07-24 19:02:52 +00001125
Richard Smitha4fa9002013-01-13 02:11:23 +00001126 // Remember this typedef decl, we will need it later for diagnostics.
1127 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001128}
1129
Chandler Carruth1b03c872011-07-02 00:01:44 +00001130static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001131 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001132 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001133 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001134 // If the alignment is less than or equal to 8 bits, the packed attribute
1135 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001136 if (!FD->getType()->isDependentType() &&
1137 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001138 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001139 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001140 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001141 else
Michael Han51d8c522013-01-24 16:46:58 +00001142 FD->addAttr(::new (S.Context)
1143 PackedAttr(Attr.getRange(), S.Context,
1144 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001145 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001146 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001147}
1148
Chandler Carruth1b03c872011-07-02 00:01:44 +00001149static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001150 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001151 RD->addAttr(::new (S.Context)
1152 MsStructAttr(Attr.getRange(), S.Context,
1153 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001154 else
1155 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1156}
1157
Chandler Carruth1b03c872011-07-02 00:01:44 +00001158static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001159 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001160 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001161 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001162 D->addAttr(::new (S.Context)
1163 IBActionAttr(Attr.getRange(), S.Context,
1164 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001165 return;
1166 }
1167
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001168 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001169}
1170
Ted Kremenek2f041d02011-09-29 07:02:25 +00001171static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1172 // The IBOutlet/IBOutletCollection attributes only apply to instance
1173 // variables or properties of Objective-C classes. The outlet must also
1174 // have an object reference type.
1175 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1176 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001177 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001178 << Attr.getName() << VD->getType() << 0;
1179 return false;
1180 }
1181 }
1182 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1183 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001184 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001185 << Attr.getName() << PD->getType() << 1;
1186 return false;
1187 }
1188 }
1189 else {
1190 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1191 return false;
1192 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001193
Ted Kremenek2f041d02011-09-29 07:02:25 +00001194 return true;
1195}
1196
Chandler Carruth1b03c872011-07-02 00:01:44 +00001197static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek2f041d02011-09-29 07:02:25 +00001198 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001199 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001200
Michael Han51d8c522013-01-24 16:46:58 +00001201 D->addAttr(::new (S.Context)
1202 IBOutletAttr(Attr.getRange(), S.Context,
1203 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001204}
1205
Chandler Carruth1b03c872011-07-02 00:01:44 +00001206static void handleIBOutletCollection(Sema &S, Decl *D,
1207 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001208
1209 // The iboutletcollection attribute can have zero or one arguments.
Aaron Ballman624421f2013-08-31 01:11:41 +00001210 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001211 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1212 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001213 return;
1214 }
1215
Ted Kremenek2f041d02011-09-29 07:02:25 +00001216 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001217 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001218
Aaron Ballman624421f2013-08-31 01:11:41 +00001219 IdentifierLoc *IL = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
1220 IdentifierInfo *II;
1221 SourceLocation ILS;
1222 if (IL) {
1223 II = IL->Ident;
1224 ILS = IL->Loc;
1225 } else {
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001226 II = &S.Context.Idents.get("NSObject");
Aaron Ballman624421f2013-08-31 01:11:41 +00001227 }
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001228
John McCallb3d87482010-08-24 05:47:05 +00001229 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001230 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001231 if (!TypeRep) {
1232 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1233 return;
1234 }
John McCallb3d87482010-08-24 05:47:05 +00001235 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001236 // Diagnose use of non-object type in iboutletcollection attribute.
1237 // FIXME. Gnu attribute extension ignores use of builtin types in
1238 // attributes. So, __attribute__((iboutletcollection(char))) will be
1239 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001240 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001241 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1242 return;
1243 }
Michael Han51d8c522013-01-24 16:46:58 +00001244 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00001245 IBOutletCollectionAttr(Attr.getRange(), S.Context, QT, ILS,
Michael Han51d8c522013-01-24 16:46:58 +00001246 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001247}
1248
Chandler Carruthd309c812011-07-01 23:49:16 +00001249static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001250 if (const RecordType *UT = T->getAsUnionType())
1251 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1252 RecordDecl *UD = UT->getDecl();
1253 for (RecordDecl::field_iterator it = UD->field_begin(),
1254 itend = UD->field_end(); it != itend; ++it) {
1255 QualType QT = it->getType();
1256 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1257 T = QT;
1258 return;
1259 }
1260 }
1261 }
1262}
1263
Nuno Lopes587de5b2012-05-24 00:22:00 +00001264static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001265 if (!isFunctionOrMethod(D)) {
1266 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001267 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001268 return;
1269 }
1270
Nuno Lopes587de5b2012-05-24 00:22:00 +00001271 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1272 return;
1273
Nuno Lopes587de5b2012-05-24 00:22:00 +00001274 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001275 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001276 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001277 uint64_t Idx;
1278 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1279 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001280 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001281
1282 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001283 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001284 if (!T->isIntegerType()) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00001285 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1286 << Attr.getName() << AANT_ArgumentIntegerConstant
1287 << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001288 return;
1289 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001290 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001291 }
1292
1293 // check if the function returns a pointer
1294 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1295 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001296 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001297 }
1298
Michael Han51d8c522013-01-24 16:46:58 +00001299 D->addAttr(::new (S.Context)
1300 AllocSizeAttr(Attr.getRange(), S.Context,
1301 SizeArgs.data(), SizeArgs.size(),
1302 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001303}
1304
Chandler Carruth1b03c872011-07-02 00:01:44 +00001305static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001306 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1307 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001308 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001309 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001310 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001311 return;
1312 }
Mike Stumpbf916502009-07-24 19:02:52 +00001313
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001314 SmallVector<unsigned, 8> NonNullArgs;
1315 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001316 Expr *Ex = Attr.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001317 uint64_t Idx;
1318 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1319 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001320 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001321
1322 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001323 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001324 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001325
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001326 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001327 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001328 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001329 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001330 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001331 }
Mike Stumpbf916502009-07-24 19:02:52 +00001332
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001333 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001334 }
Mike Stumpbf916502009-07-24 19:02:52 +00001335
1336 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1337 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001338 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001339 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1340 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001341 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001342 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001343 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001344 }
Mike Stumpbf916502009-07-24 19:02:52 +00001345
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001346 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001347 if (NonNullArgs.empty()) {
1348 // Warn the trivial case only if attribute is not coming from a
1349 // macro instantiation.
1350 if (Attr.getLoc().isFileID())
1351 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001352 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001353 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001354 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001355
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001356 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001357 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001358 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001359 D->addAttr(::new (S.Context)
1360 NonNullAttr(Attr.getRange(), S.Context, start, size,
1361 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001362}
1363
Chandler Carruth1b03c872011-07-02 00:01:44 +00001364static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001365 // This attribute must be applied to a function declaration.
1366 // The first argument to the attribute must be a string,
1367 // the name of the resource, for example "malloc".
1368 // The following arguments must be argument indexes, the arguments must be
1369 // of integer type for Returns, otherwise of pointer type.
1370 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001371 // after being held. free() should be __attribute((ownership_takes)), whereas
1372 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001373
Aaron Ballman624421f2013-08-31 01:11:41 +00001374 if (!AL.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001375 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001376 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001377 return;
1378 }
1379 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001380 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001381 switch (AL.getKind()) {
1382 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001383 K = OwnershipAttr::Takes;
Aaron Ballman624421f2013-08-31 01:11:41 +00001384 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001385 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1386 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001387 return;
1388 }
Jordy Rose2a479922010-08-12 08:54:03 +00001389 break;
1390 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001391 K = OwnershipAttr::Holds;
Aaron Ballman624421f2013-08-31 01:11:41 +00001392 if (AL.getNumArgs() < 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001393 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1394 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001395 return;
1396 }
Jordy Rose2a479922010-08-12 08:54:03 +00001397 break;
1398 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001399 K = OwnershipAttr::Returns;
Aaron Ballman624421f2013-08-31 01:11:41 +00001400 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001401 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballman624421f2013-08-31 01:11:41 +00001402 << AL.getName() << AL.getNumArgs() + 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001403 return;
1404 }
Jordy Rose2a479922010-08-12 08:54:03 +00001405 break;
1406 default:
1407 // This should never happen given how we are called.
1408 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001409 }
1410
Chandler Carruth87c44602011-07-01 23:49:12 +00001411 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001412 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1413 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001414 return;
1415 }
1416
Aaron Ballman624421f2013-08-31 01:11:41 +00001417 StringRef Module = AL.getArgAsIdent(0)->Ident->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001418
1419 // Normalize the argument, __foo__ becomes foo.
1420 if (Module.startswith("__") && Module.endswith("__"))
1421 Module = Module.substr(2, Module.size() - 4);
1422
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001423
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001424 SmallVector<unsigned, 8> OwnershipArgs;
Aaron Ballman624421f2013-08-31 01:11:41 +00001425 for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1426 Expr *Ex = AL.getArgAsExpr(i);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001427 uint64_t Idx;
1428 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
Aaron Ballman624421f2013-08-31 01:11:41 +00001429 AL.getLoc(), i, Ex, Idx))
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001430 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001431
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001432 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001433 case OwnershipAttr::Takes:
1434 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001435 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001436 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001437 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1438 // FIXME: Should also highlight argument in decl.
1439 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001440 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001441 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001442 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001443 continue;
1444 }
1445 break;
1446 }
Sean Huntcf807c42010-08-18 23:23:40 +00001447 case OwnershipAttr::Returns: {
Aaron Ballman624421f2013-08-31 01:11:41 +00001448 if (AL.getNumArgs() > 2) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001449 // Is the function argument an integer type?
Aaron Ballman624421f2013-08-31 01:11:41 +00001450 Expr *IdxExpr = AL.getArgAsExpr(1);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001451 llvm::APSInt ArgNum(32);
1452 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1453 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1454 S.Diag(AL.getLoc(), diag::err_ownership_type)
1455 << "ownership_returns" << "integer"
1456 << IdxExpr->getSourceRange();
1457 return;
1458 }
1459 }
1460 break;
1461 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001462 } // switch
1463
1464 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001465 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001466 i = D->specific_attr_begin<OwnershipAttr>(),
1467 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001468 i != e; ++i) {
1469 if ((*i)->getOwnKind() != K) {
1470 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1471 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001472 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001473 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1474 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001475 }
1476 }
1477 }
1478 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001479 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001480 }
1481
1482 unsigned* start = OwnershipArgs.data();
1483 unsigned size = OwnershipArgs.size();
1484 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001485
1486 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001487 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1488 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001489 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001490 }
Sean Huntcf807c42010-08-18 23:23:40 +00001491
Michael Han51d8c522013-01-24 16:46:58 +00001492 D->addAttr(::new (S.Context)
1493 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1494 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001495}
1496
Chandler Carruth1b03c872011-07-02 00:01:44 +00001497static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001498 // Check the attribute arguments.
1499 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001500 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1501 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001502 return;
1503 }
1504
Chandler Carruth87c44602011-07-01 23:49:12 +00001505 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001506 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001507 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001508 return;
1509 }
1510
Chandler Carruth87c44602011-07-01 23:49:12 +00001511 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001512
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001513 // gcc rejects
1514 // class c {
1515 // static int a __attribute__((weakref ("v2")));
1516 // static int b() __attribute__((weakref ("f3")));
1517 // };
1518 // and ignores the attributes of
1519 // void f(void) {
1520 // static int a __attribute__((weakref ("v2")));
1521 // }
1522 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001523 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001524 if (!Ctx->isFileContext()) {
1525 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001526 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001527 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001528 }
1529
1530 // The GCC manual says
1531 //
1532 // At present, a declaration to which `weakref' is attached can only
1533 // be `static'.
1534 //
1535 // It also says
1536 //
1537 // Without a TARGET,
1538 // given as an argument to `weakref' or to `alias', `weakref' is
1539 // equivalent to `weak'.
1540 //
1541 // gcc 4.4.1 will accept
1542 // int a7 __attribute__((weakref));
1543 // as
1544 // int a7 __attribute__((weak));
1545 // This looks like a bug in gcc. We reject that for now. We should revisit
1546 // it if this behaviour is actually used.
1547
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001548 // GCC rejects
1549 // static ((alias ("y"), weakref)).
1550 // Should we? How to check that weakref is before or after alias?
1551
Aaron Ballman624421f2013-08-31 01:11:41 +00001552 if (Attr.isArgExpr(0)) {
1553 Expr *Arg = Attr.getArgAsExpr(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001554 Arg = Arg->IgnoreParenCasts();
1555 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1556
Douglas Gregor5cee1192011-07-27 05:40:30 +00001557 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001558 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001559 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001560 return;
1561 }
1562 // GCC will accept anything as the argument of weakref. Should we
1563 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001564 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001565 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001566 }
1567
Michael Han51d8c522013-01-24 16:46:58 +00001568 D->addAttr(::new (S.Context)
1569 WeakRefAttr(Attr.getRange(), S.Context,
1570 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001571}
1572
Chandler Carruth1b03c872011-07-02 00:01:44 +00001573static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001574 StringLiteral *Str = 0;
1575 if (Attr.isArgExpr(0))
1576 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00001577
Douglas Gregor5cee1192011-07-27 05:40:30 +00001578 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001579 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1580 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001581 return;
1582 }
Mike Stumpbf916502009-07-24 19:02:52 +00001583
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001584 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001585 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1586 return;
1587 }
1588
Chris Lattner6b6b5372008-06-26 18:38:35 +00001589 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001590
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001591 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001592 Str->getString(),
1593 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001594}
1595
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001596static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001597 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1598 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1599 << Attr.getName() << ExpectedFunctionOrMethod;
1600 return;
1601 }
1602
Michael Han51d8c522013-01-24 16:46:58 +00001603 D->addAttr(::new (S.Context)
1604 MinSizeAttr(Attr.getRange(), S.Context,
1605 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001606}
1607
Benjamin Krameree409a92012-05-12 21:10:52 +00001608static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001609 if (!isa<FunctionDecl>(D)) {
1610 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1611 << Attr.getName() << ExpectedFunction;
1612 return;
1613 }
1614
1615 if (D->hasAttr<HotAttr>()) {
1616 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1617 << Attr.getName() << "hot";
1618 return;
1619 }
1620
Michael Han51d8c522013-01-24 16:46:58 +00001621 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1622 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001623}
1624
1625static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Benjamin Krameree409a92012-05-12 21:10:52 +00001626 if (!isa<FunctionDecl>(D)) {
1627 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1628 << Attr.getName() << ExpectedFunction;
1629 return;
1630 }
1631
1632 if (D->hasAttr<ColdAttr>()) {
1633 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1634 << Attr.getName() << "cold";
1635 return;
1636 }
1637
Michael Han51d8c522013-01-24 16:46:58 +00001638 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1639 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001640}
1641
Chandler Carruth1b03c872011-07-02 00:01:44 +00001642static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001643 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001644 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001645 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001646 return;
1647 }
1648
Michael Han51d8c522013-01-24 16:46:58 +00001649 D->addAttr(::new (S.Context)
1650 NakedAttr(Attr.getRange(), S.Context,
1651 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001652}
1653
Chandler Carruth1b03c872011-07-02 00:01:44 +00001654static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1655 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001656 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001657 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001658 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001659 return;
1660 }
Mike Stumpbf916502009-07-24 19:02:52 +00001661
Michael Han51d8c522013-01-24 16:46:58 +00001662 D->addAttr(::new (S.Context)
1663 AlwaysInlineAttr(Attr.getRange(), S.Context,
1664 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001665}
1666
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001667static void handleTLSModelAttr(Sema &S, Decl *D,
1668 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001669 Expr *Arg = Attr.getArgAsExpr(0);
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001670 Arg = Arg->IgnoreParenCasts();
1671 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1672
1673 // Check that it is a string.
1674 if (!Str) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001675 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1676 << Attr.getName() << AANT_ArgumentString;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001677 return;
1678 }
1679
Richard Smith38afbc72013-04-13 02:43:54 +00001680 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001681 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1682 << Attr.getName() << ExpectedTLSVar;
1683 return;
1684 }
1685
1686 // Check that the value.
1687 StringRef Model = Str->getString();
1688 if (Model != "global-dynamic" && Model != "local-dynamic"
1689 && Model != "initial-exec" && Model != "local-exec") {
1690 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1691 return;
1692 }
1693
Michael Han51d8c522013-01-24 16:46:58 +00001694 D->addAttr(::new (S.Context)
1695 TLSModelAttr(Attr.getRange(), S.Context, Model,
1696 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001697}
1698
Chandler Carruth1b03c872011-07-02 00:01:44 +00001699static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001700 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001701 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001702 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001703 D->addAttr(::new (S.Context)
1704 MallocAttr(Attr.getRange(), S.Context,
1705 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001706 return;
1707 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001708 }
1709
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001710 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001711}
1712
Chandler Carruth1b03c872011-07-02 00:01:44 +00001713static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00001714 D->addAttr(::new (S.Context)
1715 MayAliasAttr(Attr.getRange(), S.Context,
1716 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001717}
1718
Chandler Carruth1b03c872011-07-02 00:01:44 +00001719static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001720 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001721 D->addAttr(::new (S.Context)
1722 NoCommonAttr(Attr.getRange(), S.Context,
1723 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001724 else
1725 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001726 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001727}
1728
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman3e1aca22013-06-20 22:55:04 +00001730 if (S.LangOpts.CPlusPlus) {
1731 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1732 return;
1733 }
1734
Chandler Carruth87c44602011-07-01 23:49:12 +00001735 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001736 D->addAttr(::new (S.Context)
1737 CommonAttr(Attr.getRange(), S.Context,
1738 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001739 else
1740 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001741 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001742}
1743
Chandler Carruth1b03c872011-07-02 00:01:44 +00001744static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001745 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001746
1747 if (S.CheckNoReturnAttr(attr)) return;
1748
Chandler Carruth87c44602011-07-01 23:49:12 +00001749 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001750 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001751 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001752 return;
1753 }
1754
Michael Han51d8c522013-01-24 16:46:58 +00001755 D->addAttr(::new (S.Context)
1756 NoReturnAttr(attr.getRange(), S.Context,
1757 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001758}
1759
1760bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001761 if (!checkAttributeNumArgs(*this, attr, 0)) {
John McCall711c52b2011-01-05 12:14:39 +00001762 attr.setInvalid();
1763 return true;
1764 }
1765
1766 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001767}
1768
Chandler Carruth1b03c872011-07-02 00:01:44 +00001769static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1770 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001771
1772 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1773 // because 'analyzer_noreturn' does not impact the type.
Chandler Carruth87c44602011-07-01 23:49:12 +00001774 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1775 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001776 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1777 && !VD->getType()->isFunctionPointerType())) {
1778 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001779 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001780 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001781 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001782 return;
1783 }
1784 }
1785
Michael Han51d8c522013-01-24 16:46:58 +00001786 D->addAttr(::new (S.Context)
1787 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1788 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001789}
1790
Richard Smithcd8ab512013-01-17 01:30:42 +00001791static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1792 const AttributeList &Attr) {
1793 // C++11 [dcl.attr.noreturn]p1:
1794 // The attribute may be applied to the declarator-id in a function
1795 // declaration.
1796 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1797 if (!FD) {
1798 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1799 << Attr.getName() << ExpectedFunctionOrMethod;
1800 return;
1801 }
1802
Michael Han51d8c522013-01-24 16:46:58 +00001803 D->addAttr(::new (S.Context)
1804 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1805 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001806}
1807
John Thompson35cc9622010-08-09 21:53:52 +00001808// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001809static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001810/*
1811 Returning a Vector Class in Registers
1812
Eric Christopherf48f3672010-12-01 22:13:54 +00001813 According to the PPU ABI specifications, a class with a single member of
1814 vector type is returned in memory when used as the return value of a function.
1815 This results in inefficient code when implementing vector classes. To return
1816 the value in a single vector register, add the vecreturn attribute to the
1817 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001818
1819 Example:
1820
1821 struct Vector
1822 {
1823 __vector float xyzw;
1824 } __attribute__((vecreturn));
1825
1826 Vector Add(Vector lhs, Vector rhs)
1827 {
1828 Vector result;
1829 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1830 return result; // This will be returned in a register
1831 }
1832*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001833 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001834 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001835 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001836 return;
1837 }
1838
Chandler Carruth87c44602011-07-01 23:49:12 +00001839 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001840 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1841 return;
1842 }
1843
Chandler Carruth87c44602011-07-01 23:49:12 +00001844 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001845 int count = 0;
1846
1847 if (!isa<CXXRecordDecl>(record)) {
1848 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1849 return;
1850 }
1851
1852 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1853 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1854 return;
1855 }
1856
Eric Christopherf48f3672010-12-01 22:13:54 +00001857 for (RecordDecl::field_iterator iter = record->field_begin();
1858 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001859 if ((count == 1) || !iter->getType()->isVectorType()) {
1860 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1861 return;
1862 }
1863 count++;
1864 }
1865
Michael Han51d8c522013-01-24 16:46:58 +00001866 D->addAttr(::new (S.Context)
1867 VecReturnAttr(Attr.getRange(), S.Context,
1868 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001869}
1870
Richard Smith3a2b7a12013-01-28 22:42:45 +00001871static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1872 const AttributeList &Attr) {
1873 if (isa<ParmVarDecl>(D)) {
1874 // [[carries_dependency]] can only be applied to a parameter if it is a
1875 // parameter of a function declaration or lambda.
1876 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1877 S.Diag(Attr.getLoc(),
1878 diag::err_carries_dependency_param_not_function_decl);
1879 return;
1880 }
1881 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001882 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001883 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001884 return;
1885 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001886
1887 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1888 Attr.getRange(), S.Context,
1889 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001890}
1891
Chandler Carruth1b03c872011-07-02 00:01:44 +00001892static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001893 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001894 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001895 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001896 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001897 return;
1898 }
Mike Stumpbf916502009-07-24 19:02:52 +00001899
Michael Han51d8c522013-01-24 16:46:58 +00001900 D->addAttr(::new (S.Context)
1901 UnusedAttr(Attr.getRange(), S.Context,
1902 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001903}
1904
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001905static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1906 const AttributeList &Attr) {
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001907 if (!isa<FunctionDecl>(D)) {
1908 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1909 << Attr.getName() << ExpectedFunction;
1910 return;
1911 }
1912
Michael Han51d8c522013-01-24 16:46:58 +00001913 D->addAttr(::new (S.Context)
1914 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1915 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001916}
1917
Chandler Carruth1b03c872011-07-02 00:01:44 +00001918static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001919 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindola29535ba2013-08-16 23:18:50 +00001920 if (VD->hasLocalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001921 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1922 return;
1923 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001924 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001925 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001926 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001927 return;
1928 }
Mike Stumpbf916502009-07-24 19:02:52 +00001929
Michael Han51d8c522013-01-24 16:46:58 +00001930 D->addAttr(::new (S.Context)
1931 UsedAttr(Attr.getRange(), S.Context,
1932 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001933}
1934
Chandler Carruth1b03c872011-07-02 00:01:44 +00001935static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001936 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001937 if (Attr.getNumArgs() > 1) {
1938 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001939 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001940 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001941
1942 int priority = 65535; // FIXME: Do not hardcode such constants.
1943 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001944 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001945 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001946 if (E->isTypeDependent() || E->isValueDependent() ||
1947 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001948 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001949 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001950 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001951 return;
1952 }
1953 priority = Idx.getZExtValue();
1954 }
Mike Stumpbf916502009-07-24 19:02:52 +00001955
Chandler Carruth87c44602011-07-01 23:49:12 +00001956 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001957 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001958 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001959 return;
1960 }
1961
Michael Han51d8c522013-01-24 16:46:58 +00001962 D->addAttr(::new (S.Context)
1963 ConstructorAttr(Attr.getRange(), S.Context, priority,
1964 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001965}
1966
Chandler Carruth1b03c872011-07-02 00:01:44 +00001967static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001968 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001969 if (Attr.getNumArgs() > 1) {
1970 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001971 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001972 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001973
1974 int priority = 65535; // FIXME: Do not hardcode such constants.
1975 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00001976 Expr *E = Attr.getArgAsExpr(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001977 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001978 if (E->isTypeDependent() || E->isValueDependent() ||
1979 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001980 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001981 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001982 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001983 return;
1984 }
1985 priority = Idx.getZExtValue();
1986 }
Mike Stumpbf916502009-07-24 19:02:52 +00001987
Chandler Carruth87c44602011-07-01 23:49:12 +00001988 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001989 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001990 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001991 return;
1992 }
1993
Michael Han51d8c522013-01-24 16:46:58 +00001994 D->addAttr(::new (S.Context)
1995 DestructorAttr(Attr.getRange(), S.Context, priority,
1996 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001997}
1998
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001999template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00002000static void handleAttrWithMessage(Sema &S, Decl *D,
2001 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00002002 unsigned NumArgs = Attr.getNumArgs();
2003 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00002004 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002005 return;
2006 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00002007
2008 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002009 StringRef Str;
Aaron Ballman624421f2013-08-31 01:11:41 +00002010 if (Attr.isArgExpr(0)) {
2011 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002012 if (!SE) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002013 S.Diag(Attr.getArgAsExpr(0)->getLocStart(),
2014 diag::err_attribute_argument_type) << Attr.getName()
2015 << AANT_ArgumentString;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002016 return;
2017 }
Chris Lattner951bbb22011-02-24 05:42:24 +00002018 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00002019 }
Mike Stumpbf916502009-07-24 19:02:52 +00002020
Michael Han51d8c522013-01-24 16:46:58 +00002021 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
2022 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00002023}
2024
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002025static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
2026 const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002027 D->addAttr(::new (S.Context)
2028 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2029 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002030}
2031
Patrick Beardb2f68202012-04-06 18:12:22 +00002032static void handleObjCRootClassAttr(Sema &S, Decl *D,
2033 const AttributeList &Attr) {
2034 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002035 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2036 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002037 return;
2038 }
2039
Michael Han51d8c522013-01-24 16:46:58 +00002040 D->addAttr(::new (S.Context)
2041 ObjCRootClassAttr(Attr.getRange(), S.Context,
2042 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002043}
2044
Michael Han51d8c522013-01-24 16:46:58 +00002045static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2046 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002047 if (!isa<ObjCInterfaceDecl>(D)) {
2048 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2049 return;
2050 }
2051
Michael Han51d8c522013-01-24 16:46:58 +00002052 D->addAttr(::new (S.Context)
2053 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2054 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002055}
2056
Jordy Rosefad5de92012-05-08 03:27:22 +00002057static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2058 IdentifierInfo *Platform,
2059 VersionTuple Introduced,
2060 VersionTuple Deprecated,
2061 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002062 StringRef PlatformName
2063 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2064 if (PlatformName.empty())
2065 PlatformName = Platform->getName();
2066
2067 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2068 // of these steps are needed).
2069 if (!Introduced.empty() && !Deprecated.empty() &&
2070 !(Introduced <= Deprecated)) {
2071 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2072 << 1 << PlatformName << Deprecated.getAsString()
2073 << 0 << Introduced.getAsString();
2074 return true;
2075 }
2076
2077 if (!Introduced.empty() && !Obsoleted.empty() &&
2078 !(Introduced <= Obsoleted)) {
2079 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2080 << 2 << PlatformName << Obsoleted.getAsString()
2081 << 0 << Introduced.getAsString();
2082 return true;
2083 }
2084
2085 if (!Deprecated.empty() && !Obsoleted.empty() &&
2086 !(Deprecated <= Obsoleted)) {
2087 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2088 << 2 << PlatformName << Obsoleted.getAsString()
2089 << 1 << Deprecated.getAsString();
2090 return true;
2091 }
2092
2093 return false;
2094}
2095
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002096/// \brief Check whether the two versions match.
2097///
2098/// If either version tuple is empty, then they are assumed to match. If
2099/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2100static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2101 bool BeforeIsOkay) {
2102 if (X.empty() || Y.empty())
2103 return true;
2104
2105 if (X == Y)
2106 return true;
2107
2108 if (BeforeIsOkay && X < Y)
2109 return true;
2110
2111 return false;
2112}
2113
Rafael Espindola51be6e32013-01-08 22:04:34 +00002114AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002115 IdentifierInfo *Platform,
2116 VersionTuple Introduced,
2117 VersionTuple Deprecated,
2118 VersionTuple Obsoleted,
2119 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002120 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002121 bool Override,
2122 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002123 VersionTuple MergedIntroduced = Introduced;
2124 VersionTuple MergedDeprecated = Deprecated;
2125 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002126 bool FoundAny = false;
2127
Rafael Espindola98ae8342012-05-10 02:50:16 +00002128 if (D->hasAttrs()) {
2129 AttrVec &Attrs = D->getAttrs();
2130 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2131 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2132 if (!OldAA) {
2133 ++i;
2134 continue;
2135 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002136
Rafael Espindola98ae8342012-05-10 02:50:16 +00002137 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2138 if (OldPlatform != Platform) {
2139 ++i;
2140 continue;
2141 }
2142
2143 FoundAny = true;
2144 VersionTuple OldIntroduced = OldAA->getIntroduced();
2145 VersionTuple OldDeprecated = OldAA->getDeprecated();
2146 VersionTuple OldObsoleted = OldAA->getObsoleted();
2147 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002148
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002149 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2150 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2151 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2152 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002153 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002154 if (Override) {
2155 int Which = -1;
2156 VersionTuple FirstVersion;
2157 VersionTuple SecondVersion;
2158 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2159 Which = 0;
2160 FirstVersion = OldIntroduced;
2161 SecondVersion = Introduced;
2162 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2163 Which = 1;
2164 FirstVersion = Deprecated;
2165 SecondVersion = OldDeprecated;
2166 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2167 Which = 2;
2168 FirstVersion = Obsoleted;
2169 SecondVersion = OldObsoleted;
2170 }
2171
2172 if (Which == -1) {
2173 Diag(OldAA->getLocation(),
2174 diag::warn_mismatched_availability_override_unavail)
2175 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2176 } else {
2177 Diag(OldAA->getLocation(),
2178 diag::warn_mismatched_availability_override)
2179 << Which
2180 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2181 << FirstVersion.getAsString() << SecondVersion.getAsString();
2182 }
2183 Diag(Range.getBegin(), diag::note_overridden_method);
2184 } else {
2185 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2186 Diag(Range.getBegin(), diag::note_previous_attribute);
2187 }
2188
Rafael Espindola98ae8342012-05-10 02:50:16 +00002189 Attrs.erase(Attrs.begin() + i);
2190 --e;
2191 continue;
2192 }
2193
2194 VersionTuple MergedIntroduced2 = MergedIntroduced;
2195 VersionTuple MergedDeprecated2 = MergedDeprecated;
2196 VersionTuple MergedObsoleted2 = MergedObsoleted;
2197
2198 if (MergedIntroduced2.empty())
2199 MergedIntroduced2 = OldIntroduced;
2200 if (MergedDeprecated2.empty())
2201 MergedDeprecated2 = OldDeprecated;
2202 if (MergedObsoleted2.empty())
2203 MergedObsoleted2 = OldObsoleted;
2204
2205 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2206 MergedIntroduced2, MergedDeprecated2,
2207 MergedObsoleted2)) {
2208 Attrs.erase(Attrs.begin() + i);
2209 --e;
2210 continue;
2211 }
2212
2213 MergedIntroduced = MergedIntroduced2;
2214 MergedDeprecated = MergedDeprecated2;
2215 MergedObsoleted = MergedObsoleted2;
2216 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002217 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002218 }
2219
2220 if (FoundAny &&
2221 MergedIntroduced == Introduced &&
2222 MergedDeprecated == Deprecated &&
2223 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002224 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002225
Ted Kremenekcb344392013-04-06 00:34:27 +00002226 // Only create a new attribute if !Override, but we want to do
2227 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002228 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002229 MergedDeprecated, MergedObsoleted) &&
2230 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002231 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2232 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002233 Obsoleted, IsUnavailable, Message,
2234 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002235 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002236 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002237}
2238
Chandler Carruth1b03c872011-07-02 00:01:44 +00002239static void handleAvailabilityAttr(Sema &S, Decl *D,
2240 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002241 if (!checkAttributeNumArgs(S, Attr, 1))
2242 return;
2243 IdentifierLoc *Platform = Attr.getArgAsIdent(0);
Michael Han51d8c522013-01-24 16:46:58 +00002244 unsigned Index = Attr.getAttributeSpellingListIndex();
2245
Aaron Ballman624421f2013-08-31 01:11:41 +00002246 IdentifierInfo *II = Platform->Ident;
2247 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2248 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2249 << Platform->Ident;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002250
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002251 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2252 if (!ND) {
2253 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2254 return;
2255 }
2256
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002257 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2258 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2259 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002260 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002261 StringRef Str;
2262 const StringLiteral *SE =
2263 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2264 if (SE)
2265 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002266
Aaron Ballman624421f2013-08-31 01:11:41 +00002267 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002268 Introduced.Version,
2269 Deprecated.Version,
2270 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002271 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002272 /*Override=*/false,
2273 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002274 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002275 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002276}
2277
John McCalld4c3d662013-02-20 01:54:26 +00002278template <class T>
2279static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2280 typename T::VisibilityType value,
2281 unsigned attrSpellingListIndex) {
2282 T *existingAttr = D->getAttr<T>();
2283 if (existingAttr) {
2284 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2285 if (existingValue == value)
2286 return NULL;
2287 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2288 S.Diag(range.getBegin(), diag::note_previous_attribute);
2289 D->dropAttr<T>();
2290 }
2291 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2292}
2293
Rafael Espindola599f1b72012-05-13 03:25:18 +00002294VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002295 VisibilityAttr::VisibilityType Vis,
2296 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002297 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2298 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002299}
2300
John McCalld4c3d662013-02-20 01:54:26 +00002301TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2302 TypeVisibilityAttr::VisibilityType Vis,
2303 unsigned AttrSpellingListIndex) {
2304 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2305 AttrSpellingListIndex);
2306}
2307
2308static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2309 bool isTypeVisibility) {
2310 // Visibility attributes don't mean anything on a typedef.
2311 if (isa<TypedefNameDecl>(D)) {
2312 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2313 << Attr.getName();
2314 return;
2315 }
2316
2317 // 'type_visibility' can only go on a type or namespace.
2318 if (isTypeVisibility &&
2319 !(isa<TagDecl>(D) ||
2320 isa<ObjCInterfaceDecl>(D) ||
2321 isa<NamespaceDecl>(D))) {
2322 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2323 << Attr.getName() << ExpectedTypeOrNamespace;
2324 return;
2325 }
2326
Benjamin Kramerae3a83f2013-09-09 15:08:57 +00002327 // Check that the argument is a string literal.
2328 StringLiteral *Str = 0;
2329 if (Attr.isArgExpr(0))
2330 Str = dyn_cast<StringLiteral>(Attr.getArgAsExpr(0)->IgnoreParenCasts());
Mike Stumpbf916502009-07-24 19:02:52 +00002331
Douglas Gregor5cee1192011-07-27 05:40:30 +00002332 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002333 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2334 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002335 return;
2336 }
Mike Stumpbf916502009-07-24 19:02:52 +00002337
Chris Lattner5f9e2722011-07-23 10:55:15 +00002338 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002339 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002340
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002341 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002342 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002343 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002344 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002345 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002346 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002347 else if (TypeStr == "protected") {
2348 // Complain about attempts to use protected visibility on targets
2349 // (like Darwin) that don't support it.
2350 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2351 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2352 type = VisibilityAttr::Default;
2353 } else {
2354 type = VisibilityAttr::Protected;
2355 }
2356 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002357 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002358 return;
2359 }
Mike Stumpbf916502009-07-24 19:02:52 +00002360
Michael Han51d8c522013-01-24 16:46:58 +00002361 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002362 clang::Attr *newAttr;
2363 if (isTypeVisibility) {
2364 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2365 (TypeVisibilityAttr::VisibilityType) type,
2366 Index);
2367 } else {
2368 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2369 }
2370 if (newAttr)
2371 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002372}
2373
Chandler Carruth1b03c872011-07-02 00:01:44 +00002374static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2375 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002376 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2377 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002378 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002379 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002380 return;
2381 }
2382
Aaron Ballman624421f2013-08-31 01:11:41 +00002383 if (!Attr.isArgIdent(0)) {
2384 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
2385 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
John McCalld5313b02011-03-02 11:33:24 +00002386 return;
2387 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002388
Aaron Ballman624421f2013-08-31 01:11:41 +00002389 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2390
2391 StringRef param = IL->Ident->getName();
John McCalld5313b02011-03-02 11:33:24 +00002392 ObjCMethodFamilyAttr::FamilyKind family;
2393 if (param == "none")
2394 family = ObjCMethodFamilyAttr::OMF_None;
2395 else if (param == "alloc")
2396 family = ObjCMethodFamilyAttr::OMF_alloc;
2397 else if (param == "copy")
2398 family = ObjCMethodFamilyAttr::OMF_copy;
2399 else if (param == "init")
2400 family = ObjCMethodFamilyAttr::OMF_init;
2401 else if (param == "mutableCopy")
2402 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2403 else if (param == "new")
2404 family = ObjCMethodFamilyAttr::OMF_new;
2405 else {
2406 // Just warn and ignore it. This is future-proof against new
2407 // families being used in system headers.
Aaron Ballman624421f2013-08-31 01:11:41 +00002408 S.Diag(IL->Loc, diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002409 return;
2410 }
2411
John McCallf85e1932011-06-15 23:02:42 +00002412 if (family == ObjCMethodFamilyAttr::OMF_init &&
2413 !method->getResultType()->isObjCObjectPointerType()) {
2414 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2415 << method->getResultType();
2416 // Ignore the attribute.
2417 return;
2418 }
2419
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002420 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002421 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002422}
2423
Chandler Carruth1b03c872011-07-02 00:01:44 +00002424static void handleObjCExceptionAttr(Sema &S, Decl *D,
2425 const AttributeList &Attr) {
Chris Lattner0db29ec2009-02-14 08:09:34 +00002426 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2427 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002428 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2429 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002430 return;
2431 }
Mike Stumpbf916502009-07-24 19:02:52 +00002432
Michael Han51d8c522013-01-24 16:46:58 +00002433 D->addAttr(::new (S.Context)
2434 ObjCExceptionAttr(Attr.getRange(), S.Context,
2435 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002436}
2437
Chandler Carruth1b03c872011-07-02 00:01:44 +00002438static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Richard Smith162e1c12011-04-15 14:24:37 +00002439 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002440 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002441 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002442 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2443 return;
2444 }
2445 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002446 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2447 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002448 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002449 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2450 return;
2451 }
2452 }
2453 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002454 // It is okay to include this attribute on properties, e.g.:
2455 //
2456 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2457 //
2458 // In this case it follows tradition and suppresses an error in the above
2459 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002460 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002461 }
Michael Han51d8c522013-01-24 16:46:58 +00002462 D->addAttr(::new (S.Context)
2463 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2464 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002465}
2466
Mike Stumpbf916502009-07-24 19:02:52 +00002467static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002468handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002469 if (!isa<FunctionDecl>(D)) {
2470 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2471 return;
2472 }
2473
Michael Han51d8c522013-01-24 16:46:58 +00002474 D->addAttr(::new (S.Context)
2475 OverloadableAttr(Attr.getRange(), S.Context,
2476 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002477}
2478
Chandler Carruth1b03c872011-07-02 00:01:44 +00002479static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002480 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002481 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00002482 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Steve Naroff9eae5762008-09-18 16:44:58 +00002483 return;
2484 }
Mike Stumpbf916502009-07-24 19:02:52 +00002485
Aaron Ballman624421f2013-08-31 01:11:41 +00002486 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
Sean Huntcf807c42010-08-18 23:23:40 +00002487 BlocksAttr::BlockType type;
Aaron Ballman624421f2013-08-31 01:11:41 +00002488 if (II->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002489 type = BlocksAttr::ByRef;
2490 else {
Aaron Ballman624421f2013-08-31 01:11:41 +00002491 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) << "blocks"
2492 << II;
Steve Naroff9eae5762008-09-18 16:44:58 +00002493 return;
2494 }
Mike Stumpbf916502009-07-24 19:02:52 +00002495
Michael Han51d8c522013-01-24 16:46:58 +00002496 D->addAttr(::new (S.Context)
2497 BlocksAttr(Attr.getRange(), S.Context, type,
2498 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002499}
2500
Chandler Carruth1b03c872011-07-02 00:01:44 +00002501static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002502 // check the attribute arguments.
2503 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002504 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002505 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002506 }
2507
John McCall3323fad2011-09-09 07:56:05 +00002508 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002509 if (Attr.getNumArgs() > 0) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002510 Expr *E = Attr.getArgAsExpr(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002511 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002512 if (E->isTypeDependent() || E->isValueDependent() ||
2513 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002514 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002515 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002516 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002517 return;
2518 }
Mike Stumpbf916502009-07-24 19:02:52 +00002519
John McCall3323fad2011-09-09 07:56:05 +00002520 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002521 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2522 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002523 return;
2524 }
John McCall3323fad2011-09-09 07:56:05 +00002525
2526 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002527 }
2528
John McCall3323fad2011-09-09 07:56:05 +00002529 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002530 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002531 Expr *E = Attr.getArgAsExpr(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002532 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002533 if (E->isTypeDependent() || E->isValueDependent() ||
2534 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002535 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002536 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002537 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002538 return;
2539 }
2540 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002541
John McCall3323fad2011-09-09 07:56:05 +00002542 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002543 // FIXME: This error message could be improved, it would be nice
2544 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002545 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2546 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002547 return;
2548 }
2549 }
2550
Chandler Carruth87c44602011-07-01 23:49:12 +00002551 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002552 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002553 if (isa<FunctionNoProtoType>(FT)) {
2554 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2555 return;
2556 }
Mike Stumpbf916502009-07-24 19:02:52 +00002557
Chris Lattner897cd902009-03-17 23:03:47 +00002558 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002559 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002560 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002561 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002562 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002563 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002564 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002565 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002566 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002567 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2568 if (!BD->isVariadic()) {
2569 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2570 return;
2571 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002572 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002573 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002574 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002575 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002576 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002577 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002578 int m = Ty->isFunctionPointerType() ? 0 : 1;
2579 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002580 return;
2581 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002582 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002583 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002584 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002585 return;
2586 }
Anders Carlsson77091822008-10-05 18:05:59 +00002587 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002588 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002589 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002590 return;
2591 }
Michael Han51d8c522013-01-24 16:46:58 +00002592 D->addAttr(::new (S.Context)
2593 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2594 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002595}
2596
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002597static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002598 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2599 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2600 else
2601 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2602}
2603
Chandler Carruth1b03c872011-07-02 00:01:44 +00002604static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002605 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002606 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002607 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002608 return;
2609 }
Mike Stumpbf916502009-07-24 19:02:52 +00002610
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002611 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2612 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2613 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002614 return;
2615 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002616 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2617 if (MD->getResultType()->isVoidType()) {
2618 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2619 << Attr.getName() << 1;
2620 return;
2621 }
2622
Michael Han51d8c522013-01-24 16:46:58 +00002623 D->addAttr(::new (S.Context)
2624 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2625 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002626}
2627
Chandler Carruth1b03c872011-07-02 00:01:44 +00002628static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002629 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002630 if (isa<CXXRecordDecl>(D)) {
2631 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2632 return;
2633 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002634 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2635 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002636 return;
2637 }
2638
Chandler Carruth87c44602011-07-01 23:49:12 +00002639 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002640
Michael Han51d8c522013-01-24 16:46:58 +00002641 nd->addAttr(::new (S.Context)
2642 WeakAttr(Attr.getRange(), S.Context,
2643 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002644}
2645
Chandler Carruth1b03c872011-07-02 00:01:44 +00002646static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002647 // weak_import only applies to variable & function declarations.
2648 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002649 if (!D->canBeWeakImported(isDef)) {
2650 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002651 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2652 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002653 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002654 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002655 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002656 // Nothing to warn about here.
2657 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002658 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002659 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002660
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002661 return;
2662 }
2663
Michael Han51d8c522013-01-24 16:46:58 +00002664 D->addAttr(::new (S.Context)
2665 WeakImportAttr(Attr.getRange(), S.Context,
2666 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002667}
2668
Tanya Lattner0df579e2012-07-09 22:06:01 +00002669// Handles reqd_work_group_size and work_group_size_hint.
2670static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002671 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002672 unsigned WGSize[3];
2673 for (unsigned i = 0; i < 3; ++i) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002674 Expr *E = Attr.getArgAsExpr(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002675 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002676 if (E->isTypeDependent() || E->isValueDependent() ||
2677 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002678 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2679 << Attr.getName() << AANT_ArgumentIntegerConstant
2680 << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002681 return;
2682 }
2683 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2684 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002685
2686 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2687 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2688 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2689 if (!(A->getXDim() == WGSize[0] &&
2690 A->getYDim() == WGSize[1] &&
2691 A->getZDim() == WGSize[2])) {
2692 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2693 Attr.getName();
2694 }
2695 }
2696
2697 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2698 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2699 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2700 if (!(A->getXDim() == WGSize[0] &&
2701 A->getYDim() == WGSize[1] &&
2702 A->getZDim() == WGSize[2])) {
2703 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2704 Attr.getName();
2705 }
2706 }
2707
2708 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2709 D->addAttr(::new (S.Context)
2710 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002711 WGSize[0], WGSize[1], WGSize[2],
2712 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002713 else
2714 D->addAttr(::new (S.Context)
2715 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002716 WGSize[0], WGSize[1], WGSize[2],
2717 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002718}
2719
Joey Gouly37453b92013-03-08 09:42:32 +00002720static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2721 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2722
Aaron Ballman624421f2013-08-31 01:11:41 +00002723 if (!checkAttributeNumArgs(S, Attr, 0))
Joey Gouly37453b92013-03-08 09:42:32 +00002724 return;
2725
Aaron Ballman624421f2013-08-31 01:11:41 +00002726 if (!Attr.hasParsedType()) {
2727 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2728 << Attr.getName() << 1;
2729 return;
2730 }
2731
Joey Gouly37453b92013-03-08 09:42:32 +00002732 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2733
2734 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2735 (ParmType->isBooleanType() ||
2736 !ParmType->isIntegralType(S.getASTContext()))) {
2737 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2738 << ParmType;
2739 return;
2740 }
2741
2742 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2743 D->hasAttr<VecTypeHintAttr>()) {
2744 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2745 if (A->getTypeHint() != ParmType) {
2746 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2747 return;
2748 }
2749 }
2750
2751 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2752 ParmType, Attr.getLoc()));
2753}
2754
Rafael Espindola599f1b72012-05-13 03:25:18 +00002755SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002756 StringRef Name,
2757 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002758 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2759 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002760 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002761 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2762 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002763 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002764 }
Michael Han51d8c522013-01-24 16:46:58 +00002765 return ::new (Context) SectionAttr(Range, Context, Name,
2766 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002767}
2768
Chandler Carruth1b03c872011-07-02 00:01:44 +00002769static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002770 // Make sure that there is a string literal as the sections's single
2771 // argument.
Aaron Ballman624421f2013-08-31 01:11:41 +00002772 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002773 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002774 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002775 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
2776 << Attr.getName() << AANT_ArgumentString;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002777 return;
2778 }
Mike Stump1eb44332009-09-09 15:08:12 +00002779
Chris Lattner797c3c42009-08-10 19:03:04 +00002780 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002781 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002782 if (!Error.empty()) {
2783 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2784 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002785 return;
2786 }
Mike Stump1eb44332009-09-09 15:08:12 +00002787
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002788 // This attribute cannot be applied to local variables.
2789 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2790 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2791 return;
2792 }
Michael Han51d8c522013-01-24 16:46:58 +00002793
2794 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002795 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002796 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002797 if (NewAttr)
2798 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002799}
2800
Chris Lattner6b6b5372008-06-26 18:38:35 +00002801
Chandler Carruth1b03c872011-07-02 00:01:44 +00002802static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002803 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002804 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002805 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002806 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002807 D->addAttr(::new (S.Context)
2808 NoThrowAttr(Attr.getRange(), S.Context,
2809 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002810 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002811}
2812
Chandler Carruth1b03c872011-07-02 00:01:44 +00002813static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002814 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002815 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002816 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002817 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002818 D->addAttr(::new (S.Context)
2819 ConstAttr(Attr.getRange(), S.Context,
2820 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002821 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002822}
2823
Chandler Carruth1b03c872011-07-02 00:01:44 +00002824static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Michael Han51d8c522013-01-24 16:46:58 +00002825 D->addAttr(::new (S.Context)
2826 PureAttr(Attr.getRange(), S.Context,
2827 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002828}
2829
Chandler Carruth1b03c872011-07-02 00:01:44 +00002830static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002831 if (!Attr.isArgIdent(0)) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002832 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2833 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002834 return;
2835 }
Aaron Ballman624421f2013-08-31 01:11:41 +00002836
Chandler Carruth87c44602011-07-01 23:49:12 +00002837 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002838
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002839 if (!VD || !VD->hasLocalStorage()) {
2840 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2841 return;
2842 }
Mike Stumpbf916502009-07-24 19:02:52 +00002843
Aaron Ballman624421f2013-08-31 01:11:41 +00002844 IdentifierLoc *IL = Attr.getArgAsIdent(0);
2845
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002846 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002847 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002848 NamedDecl *CleanupDecl
Aaron Ballman624421f2013-08-31 01:11:41 +00002849 = S.LookupSingleName(S.TUScope, IL->Ident, IL->Loc,
2850 Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002851 if (!CleanupDecl) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002852 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_found) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002853 return;
2854 }
Mike Stumpbf916502009-07-24 19:02:52 +00002855
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002856 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2857 if (!FD) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002858 S.Diag(IL->Loc, diag::err_attribute_cleanup_arg_not_function) << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002859 return;
2860 }
2861
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002862 if (FD->getNumParams() != 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002863 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
2864 << IL->Ident;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002865 return;
2866 }
Mike Stumpbf916502009-07-24 19:02:52 +00002867
Anders Carlsson89941c12009-02-07 23:16:50 +00002868 // We're currently more strict than GCC about what function types we accept.
2869 // If this ever proves to be a problem it should be easy to fix.
2870 QualType Ty = S.Context.getPointerType(VD->getType());
2871 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002872 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2873 ParamTy, Ty) != Sema::Compatible) {
Aaron Ballman624421f2013-08-31 01:11:41 +00002874 S.Diag(IL->Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2875 IL->Ident << ParamTy << Ty;
Anders Carlsson89941c12009-02-07 23:16:50 +00002876 return;
2877 }
Mike Stumpbf916502009-07-24 19:02:52 +00002878
Michael Han51d8c522013-01-24 16:46:58 +00002879 D->addAttr(::new (S.Context)
2880 CleanupAttr(Attr.getRange(), S.Context, FD,
2881 Attr.getAttributeSpellingListIndex()));
Aaron Ballman624421f2013-08-31 01:11:41 +00002882 S.MarkFunctionReferenced(IL->Loc, FD);
2883 S.DiagnoseUseOfDecl(FD, IL->Loc);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002884}
2885
Mike Stumpbf916502009-07-24 19:02:52 +00002886/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002887/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002888static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002889 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002890 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002891 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002892 return;
2893 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002894
Aaron Ballman624421f2013-08-31 01:11:41 +00002895 Expr *IdxExpr = Attr.getArgAsExpr(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002896 uint64_t ArgIdx;
2897 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
2898 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002899 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002900
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002901 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002902 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002903
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002904 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2905 if (not_nsstring_type &&
2906 !isCFStringType(Ty, S.Context) &&
2907 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002908 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002909 // FIXME: Should highlight the actual expression that has the wrong type.
2910 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002911 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002912 << IdxExpr->getSourceRange();
2913 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002914 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002915 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002916 if (!isNSStringType(Ty, S.Context) &&
2917 !isCFStringType(Ty, S.Context) &&
2918 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002919 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002920 // FIXME: Should highlight the actual expression that has the wrong type.
2921 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002922 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002923 << IdxExpr->getSourceRange();
2924 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002925 }
2926
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002927 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
2928 // because that has corrected for the implicit this parameter, and is zero-
2929 // based. The attribute expects what the user wrote explicitly.
2930 llvm::APSInt Val;
2931 IdxExpr->EvaluateAsInt(Val, S.Context);
2932
Michael Han51d8c522013-01-24 16:46:58 +00002933 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002934 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00002935 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002936}
2937
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002938enum FormatAttrKind {
2939 CFStringFormat,
2940 NSStringFormat,
2941 StrftimeFormat,
2942 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002943 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002944 InvalidFormat
2945};
2946
2947/// getFormatAttrKind - Map from format attribute names to supported format
2948/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002949static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002950 return llvm::StringSwitch<FormatAttrKind>(Format)
2951 // Check for formats that get handled specially.
2952 .Case("NSString", NSStringFormat)
2953 .Case("CFString", CFStringFormat)
2954 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002955
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002956 // Otherwise, check for supported formats.
2957 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2958 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2959 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002960
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002961 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2962 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002963}
2964
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002965/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002966/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002967static void handleInitPriorityAttr(Sema &S, Decl *D,
2968 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002969 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002970 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2971 return;
2972 }
2973
Chandler Carruth87c44602011-07-01 23:49:12 +00002974 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002975 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2976 Attr.setInvalid();
2977 return;
2978 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002979 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002980 if (S.Context.getAsArrayType(T))
2981 T = S.Context.getBaseElementType(T);
2982 if (!T->getAs<RecordType>()) {
2983 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2984 Attr.setInvalid();
2985 return;
2986 }
2987
Aaron Ballman624421f2013-08-31 01:11:41 +00002988 Expr *priorityExpr = Attr.getArgAsExpr(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002989
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002990 llvm::APSInt priority(32);
2991 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2992 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00002993 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2994 << Attr.getName() << AANT_ArgumentIntegerConstant
2995 << priorityExpr->getSourceRange();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002996 Attr.setInvalid();
2997 return;
2998 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002999 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003000 if (prioritynum < 101 || prioritynum > 65535) {
3001 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3002 << priorityExpr->getSourceRange();
3003 Attr.setInvalid();
3004 return;
3005 }
Michael Han51d8c522013-01-24 16:46:58 +00003006 D->addAttr(::new (S.Context)
3007 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3008 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003009}
3010
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003011FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3012 IdentifierInfo *Format, int FormatIdx,
3013 int FirstArg,
Michael Han51d8c522013-01-24 16:46:58 +00003014 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003015 // Check whether we already have an equivalent format attribute.
3016 for (specific_attr_iterator<FormatAttr>
3017 i = D->specific_attr_begin<FormatAttr>(),
3018 e = D->specific_attr_end<FormatAttr>();
3019 i != e ; ++i) {
3020 FormatAttr *f = *i;
3021 if (f->getType() == Format &&
3022 f->getFormatIdx() == FormatIdx &&
3023 f->getFirstArg() == FirstArg) {
3024 // If we don't have a valid location for this attribute, adopt the
3025 // location.
3026 if (f->getLocation().isInvalid())
3027 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003028 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003029 }
3030 }
3031
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003032 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3033 FirstArg, AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003034}
3035
Mike Stumpbf916502009-07-24 19:02:52 +00003036/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003037/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003038static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003039 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003040 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman624421f2013-08-31 01:11:41 +00003041 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003042 return;
3043 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003044
Chandler Carruth87c44602011-07-01 23:49:12 +00003045 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003046 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003047 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003048 return;
3049 }
3050
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003051 // In C++ the implicit 'this' function parameter also counts, and they are
3052 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003053 bool HasImplicitThisParam = isInstanceMethod(D);
3054 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003055 unsigned FirstIdx = 1;
3056
Aaron Ballman624421f2013-08-31 01:11:41 +00003057 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident;
3058 StringRef Format = II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003059
3060 // Normalize the argument, __foo__ becomes foo.
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003061 if (Format.startswith("__") && Format.endswith("__")) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003062 Format = Format.substr(2, Format.size() - 4);
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003063 // If we've modified the string name, we need a new identifier for it.
3064 II = &S.Context.Idents.get(Format);
3065 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003066
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003067 // Check for supported formats.
3068 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003069
3070 if (Kind == IgnoredFormat)
3071 return;
3072
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003073 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003074 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Aaron Ballman624421f2013-08-31 01:11:41 +00003075 << "format" << II->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003076 return;
3077 }
3078
3079 // checks for the 2nd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003080 Expr *IdxExpr = Attr.getArgAsExpr(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003081 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003082 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3083 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003084 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003085 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003086 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003087 return;
3088 }
3089
3090 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003091 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003092 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003093 return;
3094 }
3095
3096 // FIXME: Do we need to bounds check?
3097 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003098
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003099 if (HasImplicitThisParam) {
3100 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003101 S.Diag(Attr.getLoc(),
3102 diag::err_format_attribute_implicit_this_format_string)
3103 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003104 return;
3105 }
3106 ArgIdx--;
3107 }
Mike Stump1eb44332009-09-09 15:08:12 +00003108
Chris Lattner6b6b5372008-06-26 18:38:35 +00003109 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003110 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003111
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003112 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003113 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003114 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3115 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003116 return;
3117 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003118 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003119 // FIXME: do we need to check if the type is NSString*? What are the
3120 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003121 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003122 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003123 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3124 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003125 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003126 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003127 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003128 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003129 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003130 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3131 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003132 return;
3133 }
3134
3135 // check the 3rd argument
Aaron Ballman624421f2013-08-31 01:11:41 +00003136 Expr *FirstArgExpr = Attr.getArgAsExpr(2);
Chris Lattner803d0802008-06-29 00:43:07 +00003137 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003138 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3139 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003140 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003141 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003142 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003143 return;
3144 }
3145
3146 // check if the function is variadic if the 3rd argument non-zero
3147 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003148 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003149 ++NumArgs; // +1 for ...
3150 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003151 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003152 return;
3153 }
3154 }
3155
Chris Lattner3c73c412008-11-19 08:23:25 +00003156 // strftime requires FirstArg to be 0 because it doesn't read from any
3157 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003158 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003159 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003160 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3161 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003162 return;
3163 }
3164 // if 0 it disables parameter checking (to use with e.g. va_list)
3165 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003166 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003167 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003168 return;
3169 }
3170
Aaron Ballmancaa5ab22013-09-03 21:02:22 +00003171 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II,
Rafael Espindola599f1b72012-05-13 03:25:18 +00003172 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003173 FirstArg.getZExtValue(),
3174 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003175 if (NewAttr)
3176 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003177}
3178
Chandler Carruth1b03c872011-07-02 00:01:44 +00003179static void handleTransparentUnionAttr(Sema &S, Decl *D,
3180 const AttributeList &Attr) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003181 // Try to find the underlying union declaration.
3182 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003183 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003184 if (TD && TD->getUnderlyingType()->isUnionType())
3185 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3186 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003187 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003188
3189 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003190 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003191 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003192 return;
3193 }
3194
John McCall5e1cdac2011-10-07 06:10:15 +00003195 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003196 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003197 diag::warn_transparent_union_attribute_not_definition);
3198 return;
3199 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003200
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003201 RecordDecl::field_iterator Field = RD->field_begin(),
3202 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003203 if (Field == FieldEnd) {
3204 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3205 return;
3206 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003207
David Blaikie581deb32012-06-06 20:45:41 +00003208 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003209 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003210 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003211 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003212 diag::warn_transparent_union_attribute_floating)
3213 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003214 return;
3215 }
3216
3217 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3218 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3219 for (; Field != FieldEnd; ++Field) {
3220 QualType FieldType = Field->getType();
3221 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3222 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3223 // Warn if we drop the attribute.
3224 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003225 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003226 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003227 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003228 diag::warn_transparent_union_attribute_field_size_align)
3229 << isSize << Field->getDeclName() << FieldBits;
3230 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003231 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003232 diag::note_transparent_union_first_field_size_align)
3233 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003234 return;
3235 }
3236 }
3237
Michael Han51d8c522013-01-24 16:46:58 +00003238 RD->addAttr(::new (S.Context)
3239 TransparentUnionAttr(Attr.getRange(), S.Context,
3240 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003241}
3242
Chandler Carruth1b03c872011-07-02 00:01:44 +00003243static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00003244 Expr *ArgExpr = Attr.getArgAsExpr(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003245 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003246
Chris Lattner6b6b5372008-06-26 18:38:35 +00003247 // Make sure that there is a string literal as the annotation's single
3248 // argument.
3249 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003250 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
3251 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003252 return;
3253 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003254
3255 // Don't duplicate annotations that are already set.
3256 for (specific_attr_iterator<AnnotateAttr>
3257 i = D->specific_attr_begin<AnnotateAttr>(),
3258 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3259 if ((*i)->getAnnotation() == SE->getString())
3260 return;
3261 }
Michael Han51d8c522013-01-24 16:46:58 +00003262
3263 D->addAttr(::new (S.Context)
3264 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3265 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003266}
3267
Chandler Carruth1b03c872011-07-02 00:01:44 +00003268static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003269 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003270 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003271 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3272 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003273 return;
3274 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003275
Richard Smithbe507b62013-02-01 08:12:08 +00003276 if (Attr.getNumArgs() == 0) {
3277 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3278 true, 0, Attr.getAttributeSpellingListIndex()));
3279 return;
3280 }
3281
Aaron Ballman624421f2013-08-31 01:11:41 +00003282 Expr *E = Attr.getArgAsExpr(0);
Richard Smithf6565a92013-02-22 08:32:16 +00003283 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3284 S.Diag(Attr.getEllipsisLoc(),
3285 diag::err_pack_expansion_without_parameter_packs);
3286 return;
3287 }
3288
3289 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3290 return;
3291
3292 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3293 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003294}
3295
3296void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003297 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003298 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3299 SourceLocation AttrLoc = AttrRange.getBegin();
3300
Richard Smith4cd81c52013-01-29 09:02:09 +00003301 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003302 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003303 // C++11 [dcl.align]p1:
3304 // An alignment-specifier may be applied to a variable or to a class
3305 // data member, but it shall not be applied to a bit-field, a function
3306 // parameter, the formal parameter of a catch clause, or a variable
3307 // declared with the register storage class specifier. An
3308 // alignment-specifier may also be applied to the declaration of a class
3309 // or enumeration type.
3310 // C11 6.7.5/2:
3311 // An alignment attribute shall not be specified in a declaration of
3312 // a typedef, or a bit-field, or a function, or a parameter, or an
3313 // object declared with the register storage-class specifier.
3314 int DiagKind = -1;
3315 if (isa<ParmVarDecl>(D)) {
3316 DiagKind = 0;
3317 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3318 if (VD->getStorageClass() == SC_Register)
3319 DiagKind = 1;
3320 if (VD->isExceptionVariable())
3321 DiagKind = 2;
3322 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3323 if (FD->isBitField())
3324 DiagKind = 3;
3325 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003326 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3327 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003328 << (TmpAttr.isC11() ? ExpectedVariableOrField
3329 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003330 return;
3331 }
3332 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003333 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003334 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003335 return;
3336 }
3337 }
3338
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003339 if (E->isTypeDependent() || E->isValueDependent()) {
3340 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003341 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3342 AA->setPackExpansion(IsPackExpansion);
3343 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003344 return;
3345 }
Michael Hana31f65b2013-02-01 01:19:17 +00003346
Sean Huntcf807c42010-08-18 23:23:40 +00003347 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003348 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003349 ExprResult ICE
3350 = VerifyIntegerConstantExpression(E, &Alignment,
3351 diag::err_aligned_attribute_argument_not_int,
3352 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003353 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003354 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003355
3356 // C++11 [dcl.align]p2:
3357 // -- if the constant expression evaluates to zero, the alignment
3358 // specifier shall have no effect
3359 // C11 6.7.5p6:
3360 // An alignment specification of zero has no effect.
3361 if (!(TmpAttr.isAlignas() && !Alignment) &&
3362 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003363 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3364 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003365 return;
3366 }
Michael Hana31f65b2013-02-01 01:19:17 +00003367
Richard Smithbe507b62013-02-01 08:12:08 +00003368 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003369 // We've already verified it's a power of 2, now let's make sure it's
3370 // 8192 or less.
3371 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003372 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003373 << E->getSourceRange();
3374 return;
3375 }
3376 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003377
Richard Smithf6565a92013-02-22 08:32:16 +00003378 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3379 ICE.take(), SpellingListIndex);
3380 AA->setPackExpansion(IsPackExpansion);
3381 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003382}
3383
Michael Hana31f65b2013-02-01 01:19:17 +00003384void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003385 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003386 // FIXME: Cache the number on the Attr object if non-dependent?
3387 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003388 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3389 SpellingListIndex);
3390 AA->setPackExpansion(IsPackExpansion);
3391 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003392}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003393
Richard Smithbe507b62013-02-01 08:12:08 +00003394void Sema::CheckAlignasUnderalignment(Decl *D) {
3395 assert(D->hasAttrs() && "no attributes on decl");
3396
3397 QualType Ty;
3398 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3399 Ty = VD->getType();
3400 else
3401 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003402 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003403 return;
3404
3405 // C++11 [dcl.align]p5, C11 6.7.5/4:
3406 // The combined effect of all alignment attributes in a declaration shall
3407 // not specify an alignment that is less strict than the alignment that
3408 // would otherwise be required for the entity being declared.
3409 AlignedAttr *AlignasAttr = 0;
3410 unsigned Align = 0;
3411 for (specific_attr_iterator<AlignedAttr>
3412 I = D->specific_attr_begin<AlignedAttr>(),
3413 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3414 if (I->isAlignmentDependent())
3415 return;
3416 if (I->isAlignas())
3417 AlignasAttr = *I;
3418 Align = std::max(Align, I->getAlignment(Context));
3419 }
3420
3421 if (AlignasAttr && Align) {
3422 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3423 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3424 if (NaturalAlign > RequestedAlign)
3425 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3426 << Ty << (unsigned)NaturalAlign.getQuantity();
3427 }
3428}
3429
Chandler Carruthd309c812011-07-01 23:49:16 +00003430/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003431/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003432///
Mike Stumpbf916502009-07-24 19:02:52 +00003433/// Despite what would be logical, the mode attribute is a decl attribute, not a
3434/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3435/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003436static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003437 // This attribute isn't documented, but glibc uses it. It changes
3438 // the width of an int or unsigned int to the specified size.
Aaron Ballman624421f2013-08-31 01:11:41 +00003439 if (!Attr.isArgIdent(0)) {
Aaron Ballman750f73a2013-07-30 14:29:12 +00003440 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName()
3441 << AANT_ArgumentIdentifier;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003442 return;
3443 }
Aaron Ballman624421f2013-08-31 01:11:41 +00003444
Aaron Ballman624421f2013-08-31 01:11:41 +00003445 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident;
3446 StringRef Str = Name->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003447
3448 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003449 if (Str.startswith("__") && Str.endswith("__"))
3450 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003451
3452 unsigned DestWidth = 0;
3453 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003454 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003455 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003456 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003457 switch (Str[0]) {
3458 case 'Q': DestWidth = 8; break;
3459 case 'H': DestWidth = 16; break;
3460 case 'S': DestWidth = 32; break;
3461 case 'D': DestWidth = 64; break;
3462 case 'X': DestWidth = 96; break;
3463 case 'T': DestWidth = 128; break;
3464 }
3465 if (Str[1] == 'F') {
3466 IntegerMode = false;
3467 } else if (Str[1] == 'C') {
3468 IntegerMode = false;
3469 ComplexMode = true;
3470 } else if (Str[1] != 'I') {
3471 DestWidth = 0;
3472 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003473 break;
3474 case 4:
3475 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3476 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003477 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003478 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003479 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003480 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003481 break;
3482 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003483 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003484 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003485 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003486 case 11:
3487 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003488 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003489 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003490 }
3491
3492 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003493 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003494 OldTy = TD->getUnderlyingType();
3495 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3496 OldTy = VD->getType();
3497 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003498 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003499 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003500 return;
3501 }
Eli Friedman73397492009-03-03 06:41:03 +00003502
John McCall183700f2009-09-21 23:43:11 +00003503 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003504 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3505 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003506 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003507 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3508 } else if (ComplexMode) {
3509 if (!OldTy->isComplexType())
3510 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3511 } else {
3512 if (!OldTy->isFloatingType())
3513 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3514 }
3515
Mike Stump390b4cc2009-05-16 07:39:55 +00003516 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3517 // and friends, at least with glibc.
3518 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3519 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003520 // FIXME: Make sure floating-point mappings are accurate
3521 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003522 QualType NewTy;
3523 switch (DestWidth) {
3524 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003525 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003526 return;
3527 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003528 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003529 return;
3530 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003531 if (!IntegerMode) {
3532 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3533 return;
3534 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003535 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003536 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003537 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003538 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003539 break;
3540 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003541 if (!IntegerMode) {
3542 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3543 return;
3544 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003545 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003546 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003547 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003548 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003549 break;
3550 case 32:
3551 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003552 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003553 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003554 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003555 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003556 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003557 break;
3558 case 64:
3559 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003560 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003561 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003562 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003563 NewTy = S.Context.LongTy;
3564 else
3565 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003566 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003567 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003568 NewTy = S.Context.UnsignedLongTy;
3569 else
3570 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003571 break;
Eli Friedman73397492009-03-03 06:41:03 +00003572 case 96:
3573 NewTy = S.Context.LongDoubleTy;
3574 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003575 case 128:
Roman Divacky19645542013-07-03 21:08:41 +00003576 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3577 &llvm::APFloat::PPCDoubleDouble) {
Eli Friedmanf98aba32009-02-13 02:31:07 +00003578 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3579 return;
3580 }
Roman Divackyf0d14cb2013-07-03 20:48:06 +00003581 if (IntegerMode) {
3582 if (OldTy->isSignedIntegerType())
3583 NewTy = S.Context.Int128Ty;
3584 else
3585 NewTy = S.Context.UnsignedInt128Ty;
3586 } else
3587 NewTy = S.Context.LongDoubleTy;
Eli Friedman73397492009-03-03 06:41:03 +00003588 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003589 }
3590
Eli Friedman73397492009-03-03 06:41:03 +00003591 if (ComplexMode) {
3592 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003593 }
3594
3595 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003596 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3597 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3598 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003599 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003600
3601 D->addAttr(::new (S.Context)
3602 ModeAttr(Attr.getRange(), S.Context, Name,
3603 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003604}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003605
Chandler Carruth1b03c872011-07-02 00:01:44 +00003606static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nick Lewycky78d1a102012-07-24 01:40:49 +00003607 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3608 if (!VD->hasGlobalStorage())
3609 S.Diag(Attr.getLoc(),
3610 diag::warn_attribute_requires_functions_or_static_globals)
3611 << Attr.getName();
3612 } else if (!isFunctionOrMethod(D)) {
3613 S.Diag(Attr.getLoc(),
3614 diag::warn_attribute_requires_functions_or_static_globals)
3615 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003616 return;
3617 }
Mike Stumpbf916502009-07-24 19:02:52 +00003618
Michael Han51d8c522013-01-24 16:46:58 +00003619 D->addAttr(::new (S.Context)
3620 NoDebugAttr(Attr.getRange(), S.Context,
3621 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003622}
3623
Chandler Carruth1b03c872011-07-02 00:01:44 +00003624static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003625 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003626 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003627 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003628 return;
3629 }
Mike Stumpbf916502009-07-24 19:02:52 +00003630
Michael Han51d8c522013-01-24 16:46:58 +00003631 D->addAttr(::new (S.Context)
3632 NoInlineAttr(Attr.getRange(), S.Context,
3633 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003634}
3635
Chandler Carruth1b03c872011-07-02 00:01:44 +00003636static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3637 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003638 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003639 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003640 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003641 return;
3642 }
3643
Michael Han51d8c522013-01-24 16:46:58 +00003644 D->addAttr(::new (S.Context)
3645 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3646 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003647}
3648
Chandler Carruth1b03c872011-07-02 00:01:44 +00003649static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003650 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003651 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003652 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003653 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003654 return;
3655 }
3656
Michael Han51d8c522013-01-24 16:46:58 +00003657 D->addAttr(::new (S.Context)
3658 CUDAConstantAttr(Attr.getRange(), S.Context,
3659 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003660 } else {
3661 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3662 }
3663}
3664
Chandler Carruth1b03c872011-07-02 00:01:44 +00003665static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003666 if (S.LangOpts.CUDA) {
3667 // check the attribute arguments.
3668 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003669 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3670 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003671 return;
3672 }
3673
Chandler Carruth87c44602011-07-01 23:49:12 +00003674 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003675 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003676 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003677 return;
3678 }
3679
Michael Han51d8c522013-01-24 16:46:58 +00003680 D->addAttr(::new (S.Context)
3681 CUDADeviceAttr(Attr.getRange(), S.Context,
3682 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003683 } else {
3684 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3685 }
3686}
3687
Chandler Carruth1b03c872011-07-02 00:01:44 +00003688static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003689 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003690 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003691 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003692 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003693 return;
3694 }
3695
Chandler Carruth87c44602011-07-01 23:49:12 +00003696 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003697 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003698 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003699 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003700 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3701 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003702 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003703 "void");
3704 } else {
3705 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3706 << FD->getType();
3707 }
3708 return;
3709 }
3710
Michael Han51d8c522013-01-24 16:46:58 +00003711 D->addAttr(::new (S.Context)
3712 CUDAGlobalAttr(Attr.getRange(), S.Context,
3713 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003714 } else {
3715 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3716 }
3717}
3718
Chandler Carruth1b03c872011-07-02 00:01:44 +00003719static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003720 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003721 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003722 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003723 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003724 return;
3725 }
3726
Michael Han51d8c522013-01-24 16:46:58 +00003727 D->addAttr(::new (S.Context)
3728 CUDAHostAttr(Attr.getRange(), S.Context,
3729 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003730 } else {
3731 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3732 }
3733}
3734
Chandler Carruth1b03c872011-07-02 00:01:44 +00003735static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003736 if (S.LangOpts.CUDA) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003737 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003738 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003739 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003740 return;
3741 }
3742
Michael Han51d8c522013-01-24 16:46:58 +00003743 D->addAttr(::new (S.Context)
3744 CUDASharedAttr(Attr.getRange(), S.Context,
3745 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003746 } else {
3747 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3748 }
3749}
3750
Chandler Carruth1b03c872011-07-02 00:01:44 +00003751static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003752 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003753 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003754 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003755 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003756 return;
3757 }
Mike Stumpbf916502009-07-24 19:02:52 +00003758
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003759 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003760 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003761 return;
3762 }
Mike Stumpbf916502009-07-24 19:02:52 +00003763
Michael Han51d8c522013-01-24 16:46:58 +00003764 D->addAttr(::new (S.Context)
3765 GNUInlineAttr(Attr.getRange(), S.Context,
3766 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003767}
3768
Chandler Carruth1b03c872011-07-02 00:01:44 +00003769static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003770 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003771
Aaron Ballmanfff32482012-12-09 17:45:41 +00003772 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003773 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003774 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3775 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003776 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003777 return;
3778
Chandler Carruth87c44602011-07-01 23:49:12 +00003779 if (!isa<ObjCMethodDecl>(D)) {
3780 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3781 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003782 return;
3783 }
3784
Chandler Carruth87c44602011-07-01 23:49:12 +00003785 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003786 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003787 D->addAttr(::new (S.Context)
3788 FastCallAttr(Attr.getRange(), S.Context,
3789 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003790 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003791 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003792 D->addAttr(::new (S.Context)
3793 StdCallAttr(Attr.getRange(), S.Context,
3794 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003795 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003796 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003797 D->addAttr(::new (S.Context)
3798 ThisCallAttr(Attr.getRange(), S.Context,
3799 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003800 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003801 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003802 D->addAttr(::new (S.Context)
3803 CDeclAttr(Attr.getRange(), S.Context,
3804 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003805 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003806 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003807 D->addAttr(::new (S.Context)
3808 PascalAttr(Attr.getRange(), S.Context,
3809 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003810 return;
Charles Davise8519c32013-08-30 04:39:01 +00003811 case AttributeList::AT_MSABI:
3812 D->addAttr(::new (S.Context)
3813 MSABIAttr(Attr.getRange(), S.Context,
3814 Attr.getAttributeSpellingListIndex()));
3815 return;
3816 case AttributeList::AT_SysVABI:
3817 D->addAttr(::new (S.Context)
3818 SysVABIAttr(Attr.getRange(), S.Context,
3819 Attr.getAttributeSpellingListIndex()));
3820 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003821 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003822 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003823 switch (CC) {
3824 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003825 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003826 break;
3827 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003828 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003829 break;
3830 default:
3831 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003832 }
3833
Michael Han51d8c522013-01-24 16:46:58 +00003834 D->addAttr(::new (S.Context)
3835 PcsAttr(Attr.getRange(), S.Context, PCS,
3836 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003837 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003838 }
Derek Schuff263366f2012-10-16 22:30:41 +00003839 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003840 D->addAttr(::new (S.Context)
3841 PnaclCallAttr(Attr.getRange(), S.Context,
3842 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003843 return;
Guy Benyei38980082012-12-25 08:53:55 +00003844 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003845 D->addAttr(::new (S.Context)
3846 IntelOclBiccAttr(Attr.getRange(), S.Context,
3847 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003848 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003849
Abramo Bagnarae215f722010-04-30 13:10:51 +00003850 default:
3851 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003852 }
3853}
3854
Chandler Carruth1b03c872011-07-02 00:01:44 +00003855static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003856 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003857}
3858
Guy Benyei1db70402013-03-24 13:58:12 +00003859static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
Aaron Ballman624421f2013-08-31 01:11:41 +00003860 Expr *E = Attr.getArgAsExpr(0);
Guy Benyei1db70402013-03-24 13:58:12 +00003861 llvm::APSInt ArgNum(32);
3862 if (E->isTypeDependent() || E->isValueDependent() ||
3863 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003864 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3865 << Attr.getName() << AANT_ArgumentIntegerConstant
3866 << E->getSourceRange();
Guy Benyei1db70402013-03-24 13:58:12 +00003867 return;
3868 }
3869
3870 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
3871 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
3872}
3873
Aaron Ballmanfff32482012-12-09 17:45:41 +00003874bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3875 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003876 if (attr.isInvalid())
3877 return true;
3878
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003879 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
Aaron Ballman624421f2013-08-31 01:11:41 +00003880 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) {
John McCall711c52b2011-01-05 12:14:39 +00003881 attr.setInvalid();
3882 return true;
3883 }
3884
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003885 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3886 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003887 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003888 case AttributeList::AT_CDecl: CC = CC_C; break;
3889 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3890 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3891 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3892 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
Charles Davise8519c32013-08-30 04:39:01 +00003893 case AttributeList::AT_MSABI:
3894 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
3895 CC_X86_64Win64;
3896 break;
3897 case AttributeList::AT_SysVABI:
3898 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
3899 CC_C;
3900 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00003901 case AttributeList::AT_Pcs: {
Aaron Ballman624421f2013-08-31 01:11:41 +00003902 StringLiteral *Str = 0;
3903 if (attr.isArgExpr(0))
3904 Str = dyn_cast<StringLiteral>(attr.getArgAsExpr(0));
3905
Douglas Gregor5cee1192011-07-27 05:40:30 +00003906 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003907 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
3908 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003909 attr.setInvalid();
3910 return true;
3911 }
3912
Chris Lattner5f9e2722011-07-23 10:55:15 +00003913 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003914 if (StrRef == "aapcs") {
3915 CC = CC_AAPCS;
3916 break;
3917 } else if (StrRef == "aapcs-vfp") {
3918 CC = CC_AAPCS_VFP;
3919 break;
3920 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003921
3922 attr.setInvalid();
3923 Diag(attr.getLoc(), diag::err_invalid_pcs);
3924 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003925 }
Derek Schuff263366f2012-10-16 22:30:41 +00003926 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003927 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003928 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003929 }
3930
Aaron Ballman82bfa192012-10-02 14:26:08 +00003931 const TargetInfo &TI = Context.getTargetInfo();
3932 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3933 if (A == TargetInfo::CCCR_Warning) {
3934 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003935
3936 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3937 if (FD)
3938 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3939 TargetInfo::CCMT_NonMember;
3940 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003941 }
3942
John McCall711c52b2011-01-05 12:14:39 +00003943 return false;
3944}
3945
Chandler Carruth1b03c872011-07-02 00:01:44 +00003946static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003947 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003948
3949 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003950 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003951 return;
3952
Chandler Carruth87c44602011-07-01 23:49:12 +00003953 if (!isa<ObjCMethodDecl>(D)) {
3954 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3955 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003956 return;
3957 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003958
Michael Han51d8c522013-01-24 16:46:58 +00003959 D->addAttr(::new (S.Context)
3960 RegparmAttr(Attr.getRange(), S.Context, numParams,
3961 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003962}
3963
3964/// Checks a regparm attribute, returning true if it is ill-formed and
3965/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003966bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3967 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003968 return true;
3969
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003970 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003971 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003972 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003973 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003974
Aaron Ballman624421f2013-08-31 01:11:41 +00003975 Expr *NumParamsExpr = Attr.getArgAsExpr(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003976 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003977 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003978 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Aaron Ballman9f939f72013-07-30 14:10:17 +00003979 Diag(Attr.getLoc(), diag::err_attribute_argument_type)
3980 << Attr.getName() << AANT_ArgumentIntegerConstant
3981 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003982 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003983 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003984 }
3985
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003986 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003987 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003988 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003989 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003990 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003991 }
3992
John McCall711c52b2011-01-05 12:14:39 +00003993 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003994 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003995 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003996 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003997 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003998 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003999 }
4000
John McCall711c52b2011-01-05 12:14:39 +00004001 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004002}
4003
Chandler Carruth1b03c872011-07-02 00:01:44 +00004004static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004005 if (S.LangOpts.CUDA) {
4006 // check the attribute arguments.
4007 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004008 // FIXME: 0 is not okay.
4009 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004010 return;
4011 }
4012
Chandler Carruth87c44602011-07-01 23:49:12 +00004013 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004014 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004015 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004016 return;
4017 }
4018
Aaron Ballman624421f2013-08-31 01:11:41 +00004019 Expr *MaxThreadsExpr = Attr.getArgAsExpr(0);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004020 llvm::APSInt MaxThreads(32);
4021 if (MaxThreadsExpr->isTypeDependent() ||
4022 MaxThreadsExpr->isValueDependent() ||
4023 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004024 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004025 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004026 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004027 return;
4028 }
4029
4030 llvm::APSInt MinBlocks(32);
4031 if (Attr.getNumArgs() > 1) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004032 Expr *MinBlocksExpr = Attr.getArgAsExpr(1);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004033 if (MinBlocksExpr->isTypeDependent() ||
4034 MinBlocksExpr->isValueDependent() ||
4035 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004036 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004037 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004038 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004039 return;
4040 }
4041 }
4042
Michael Han51d8c522013-01-24 16:46:58 +00004043 D->addAttr(::new (S.Context)
4044 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4045 MaxThreads.getZExtValue(),
4046 MinBlocks.getZExtValue(),
4047 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004048 } else {
4049 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4050 }
4051}
4052
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004053static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4054 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004055 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004056 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004057 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004058 return;
4059 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004060
4061 if (!checkAttributeNumArgs(S, Attr, 3))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004062 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004063
Aaron Ballman624421f2013-08-31 01:11:41 +00004064 StringRef AttrName = Attr.getName()->getName();
4065 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004066
4067 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4068 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4069 << Attr.getName() << ExpectedFunctionOrMethod;
4070 return;
4071 }
4072
4073 uint64_t ArgumentIdx;
4074 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4075 Attr.getLoc(), 2,
Aaron Ballman624421f2013-08-31 01:11:41 +00004076 Attr.getArgAsExpr(1), ArgumentIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004077 return;
4078
4079 uint64_t TypeTagIdx;
4080 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4081 Attr.getLoc(), 3,
Aaron Ballman624421f2013-08-31 01:11:41 +00004082 Attr.getArgAsExpr(2), TypeTagIdx))
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004083 return;
4084
4085 bool IsPointer = (AttrName == "pointer_with_type_tag");
4086 if (IsPointer) {
4087 // Ensure that buffer has a pointer type.
4088 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4089 if (!BufferTy->isPointerType()) {
4090 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004091 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004092 }
4093 }
4094
Michael Han51d8c522013-01-24 16:46:58 +00004095 D->addAttr(::new (S.Context)
4096 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4097 ArgumentIdx, TypeTagIdx, IsPointer,
4098 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004099}
4100
4101static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4102 const AttributeList &Attr) {
Aaron Ballman624421f2013-08-31 01:11:41 +00004103 if (!Attr.isArgIdent(0)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004104 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004105 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004106 return;
4107 }
Aaron Ballman624421f2013-08-31 01:11:41 +00004108
4109 if (!checkAttributeNumArgs(S, Attr, 1))
4110 return;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004111
Aaron Ballman624421f2013-08-31 01:11:41 +00004112 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004113 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4114
Michael Han51d8c522013-01-24 16:46:58 +00004115 D->addAttr(::new (S.Context)
4116 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4117 MatchingCType,
4118 Attr.getLayoutCompatible(),
4119 Attr.getMustBeNull(),
4120 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004121}
4122
Chris Lattner0744e5f2008-06-29 00:23:49 +00004123//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004124// Checker-specific attribute handlers.
4125//===----------------------------------------------------------------------===//
4126
John McCallc7ad3812011-01-25 03:31:58 +00004127static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004128 return type->isDependentType() ||
4129 type->isObjCObjectPointerType() ||
4130 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004131}
4132static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004133 return type->isDependentType() ||
4134 type->isPointerType() ||
4135 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004136}
4137
Chandler Carruth1b03c872011-07-02 00:01:44 +00004138static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004139 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004140 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004141 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004142 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004143 return;
4144 }
4145
4146 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004147 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004148 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4149 cf = false;
4150 } else {
4151 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4152 cf = true;
4153 }
4154
4155 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004156 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004157 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004158 return;
4159 }
4160
4161 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004162 param->addAttr(::new (S.Context)
4163 CFConsumedAttr(Attr.getRange(), S.Context,
4164 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004165 else
Michael Han51d8c522013-01-24 16:46:58 +00004166 param->addAttr(::new (S.Context)
4167 NSConsumedAttr(Attr.getRange(), S.Context,
4168 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004169}
4170
Chandler Carruth1b03c872011-07-02 00:01:44 +00004171static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4172 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004173 if (!isa<ObjCMethodDecl>(D)) {
4174 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004175 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004176 return;
4177 }
4178
Michael Han51d8c522013-01-24 16:46:58 +00004179 D->addAttr(::new (S.Context)
4180 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4181 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004182}
4183
Chandler Carruth1b03c872011-07-02 00:01:44 +00004184static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4185 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004186
John McCallc7ad3812011-01-25 03:31:58 +00004187 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004188
Chandler Carruth87c44602011-07-01 23:49:12 +00004189 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004190 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004191 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004192 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004193 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004194 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4195 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004196 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004197 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004198 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004199 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004200 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004201 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004202 return;
4203 }
Mike Stumpbf916502009-07-24 19:02:52 +00004204
John McCallc7ad3812011-01-25 03:31:58 +00004205 bool typeOK;
4206 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004207 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004208 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004209 case AttributeList::AT_NSReturnsAutoreleased:
4210 case AttributeList::AT_NSReturnsRetained:
4211 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004212 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4213 cf = false;
4214 break;
4215
Sean Hunt8e083e72012-06-19 23:57:03 +00004216 case AttributeList::AT_CFReturnsRetained:
4217 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004218 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4219 cf = true;
4220 break;
4221 }
4222
4223 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004224 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004225 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004226 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004227 }
Mike Stumpbf916502009-07-24 19:02:52 +00004228
Chandler Carruth87c44602011-07-01 23:49:12 +00004229 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004230 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004231 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004232 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004233 D->addAttr(::new (S.Context)
4234 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4235 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004236 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004237 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004238 D->addAttr(::new (S.Context)
4239 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4240 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004241 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004242 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004243 D->addAttr(::new (S.Context)
4244 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4245 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004246 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004247 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004248 D->addAttr(::new (S.Context)
4249 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4250 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004251 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004252 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004253 D->addAttr(::new (S.Context)
4254 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4255 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004256 return;
4257 };
4258}
4259
John McCalldc7c5ad2011-07-22 08:53:00 +00004260static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4261 const AttributeList &attr) {
4262 SourceLocation loc = attr.getLoc();
4263
4264 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4265
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004266 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004267 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004268 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004269 return;
4270 }
4271
4272 // Check that the method returns a normal pointer.
4273 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004274
4275 if (!resultType->isReferenceType() &&
4276 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004277 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4278 << SourceRange(loc)
4279 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4280
4281 // Drop the attribute.
4282 return;
4283 }
4284
Michael Han51d8c522013-01-24 16:46:58 +00004285 method->addAttr(::new (S.Context)
4286 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4287 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004288}
4289
Fariborz Jahanian84101132012-09-07 23:46:23 +00004290static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4291 const AttributeList &attr) {
4292 SourceLocation loc = attr.getLoc();
4293 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4294
4295 if (!method) {
4296 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4297 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4298 return;
4299 }
4300 DeclContext *DC = method->getDeclContext();
4301 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4302 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4303 << attr.getName() << 0;
4304 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4305 return;
4306 }
4307 if (method->getMethodFamily() == OMF_dealloc) {
4308 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4309 << attr.getName() << 1;
4310 return;
4311 }
4312
Michael Han51d8c522013-01-24 16:46:58 +00004313 method->addAttr(::new (S.Context)
4314 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4315 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004316}
4317
John McCall8dfac0b2011-09-30 05:12:12 +00004318/// Handle cf_audited_transfer and cf_unknown_transfer.
4319static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4320 if (!isa<FunctionDecl>(D)) {
4321 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004322 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004323 return;
4324 }
4325
Sean Hunt8e083e72012-06-19 23:57:03 +00004326 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004327
4328 // Check whether there's a conflicting attribute already present.
4329 Attr *Existing;
4330 if (IsAudited) {
4331 Existing = D->getAttr<CFUnknownTransferAttr>();
4332 } else {
4333 Existing = D->getAttr<CFAuditedTransferAttr>();
4334 }
4335 if (Existing) {
4336 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4337 << A.getName()
4338 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4339 << A.getRange() << Existing->getRange();
4340 return;
4341 }
4342
4343 // All clear; add the attribute.
4344 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004345 D->addAttr(::new (S.Context)
4346 CFAuditedTransferAttr(A.getRange(), S.Context,
4347 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004348 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004349 D->addAttr(::new (S.Context)
4350 CFUnknownTransferAttr(A.getRange(), S.Context,
4351 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004352 }
4353}
4354
John McCallfe98da02011-09-29 07:17:38 +00004355static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4356 const AttributeList &Attr) {
4357 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4358 if (!RD || RD->isUnion()) {
4359 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004360 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004361 }
4362
Aaron Ballman624421f2013-08-31 01:11:41 +00004363 IdentifierLoc *Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : 0;
John McCallfe98da02011-09-29 07:17:38 +00004364
4365 // In Objective-C, verify that the type names an Objective-C type.
4366 // We don't want to check this outside of ObjC because people sometimes
4367 // do crazy C declarations of Objective-C types.
Aaron Ballman624421f2013-08-31 01:11:41 +00004368 if (Parm && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004369 // Check for an existing type with this name.
Aaron Ballman624421f2013-08-31 01:11:41 +00004370 LookupResult R(S, DeclarationName(Parm->Ident), Parm->Loc,
John McCallfe98da02011-09-29 07:17:38 +00004371 Sema::LookupOrdinaryName);
4372 if (S.LookupName(R, Sc)) {
4373 NamedDecl *Target = R.getFoundDecl();
4374 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4375 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4376 S.Diag(Target->getLocStart(), diag::note_declared_at);
4377 }
4378 }
4379 }
4380
Michael Han51d8c522013-01-24 16:46:58 +00004381 D->addAttr(::new (S.Context)
Aaron Ballman624421f2013-08-31 01:11:41 +00004382 NSBridgedAttr(Attr.getRange(), S.Context, Parm ? Parm->Ident : 0,
Michael Han51d8c522013-01-24 16:46:58 +00004383 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004384}
4385
Chandler Carruth1b03c872011-07-02 00:01:44 +00004386static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4387 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004388 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004389
Chandler Carruth87c44602011-07-01 23:49:12 +00004390 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004391 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004392}
4393
Chandler Carruth1b03c872011-07-02 00:01:44 +00004394static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4395 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004396 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004397 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004398 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004399 return;
4400 }
4401
Chandler Carruth87c44602011-07-01 23:49:12 +00004402 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004403 QualType type = vd->getType();
4404
4405 if (!type->isDependentType() &&
4406 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004407 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004408 << type;
4409 return;
4410 }
4411
4412 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4413
4414 // If we have no lifetime yet, check the lifetime we're presumably
4415 // going to infer.
4416 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4417 lifetime = type->getObjCARCImplicitLifetime();
4418
4419 switch (lifetime) {
4420 case Qualifiers::OCL_None:
4421 assert(type->isDependentType() &&
4422 "didn't infer lifetime for non-dependent type?");
4423 break;
4424
4425 case Qualifiers::OCL_Weak: // meaningful
4426 case Qualifiers::OCL_Strong: // meaningful
4427 break;
4428
4429 case Qualifiers::OCL_ExplicitNone:
4430 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004431 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004432 << (lifetime == Qualifiers::OCL_Autoreleasing);
4433 break;
4434 }
4435
Chandler Carruth87c44602011-07-01 23:49:12 +00004436 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004437 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4438 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004439}
4440
Francois Pichet11542142010-12-19 06:50:37 +00004441//===----------------------------------------------------------------------===//
4442// Microsoft specific attribute handlers.
4443//===----------------------------------------------------------------------===//
4444
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004445// Check if MS extensions or some other language extensions are enabled. If
4446// not, issue a diagnostic that the given attribute is unused.
4447static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4448 bool OtherExtension = false) {
4449 if (S.LangOpts.MicrosoftExt || OtherExtension)
4450 return true;
4451 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4452 return false;
4453}
4454
Chandler Carruth1b03c872011-07-02 00:01:44 +00004455static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004456 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4457 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004458
Aaron Ballman624421f2013-08-31 01:11:41 +00004459 Expr *Arg = Attr.getArgAsExpr(0);
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004460 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
4461 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004462 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4463 << Attr.getName() << AANT_ArgumentString;
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004464 return;
4465 }
Francois Pichetd3d3be92010-12-20 01:41:49 +00004466
David Majnemerbb0ed292013-08-09 08:56:20 +00004467 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4468 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004469 StringRef StrRef = Str->getString();
David Majnemerbb0ed292013-08-09 08:56:20 +00004470 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
4471 StrRef = StrRef.drop_front().drop_back();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004472
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004473 // Validate GUID length.
David Majnemerbb0ed292013-08-09 08:56:20 +00004474 if (StrRef.size() != 36) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004475 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4476 return;
4477 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004478
David Majnemerbb0ed292013-08-09 08:56:20 +00004479 for (unsigned i = 0; i < 36; ++i) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004480 if (i == 8 || i == 13 || i == 18 || i == 23) {
David Majnemerbb0ed292013-08-09 08:56:20 +00004481 if (StrRef[i] != '-') {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004482 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4483 return;
4484 }
David Majnemerbb0ed292013-08-09 08:56:20 +00004485 } else if (!isHexDigit(StrRef[i])) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004486 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4487 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004488 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004489 }
Francois Pichet11542142010-12-19 06:50:37 +00004490
David Majnemerbb0ed292013-08-09 08:56:20 +00004491 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef,
4492 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004493}
4494
John McCallc052dbb2012-05-22 21:28:12 +00004495static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004496 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004497 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004498
4499 AttributeList::Kind Kind = Attr.getKind();
4500 if (Kind == AttributeList::AT_SingleInheritance)
4501 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004502 ::new (S.Context)
4503 SingleInheritanceAttr(Attr.getRange(), S.Context,
4504 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004505 else if (Kind == AttributeList::AT_MultipleInheritance)
4506 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004507 ::new (S.Context)
4508 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4509 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004510 else if (Kind == AttributeList::AT_VirtualInheritance)
4511 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004512 ::new (S.Context)
4513 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4514 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004515}
4516
4517static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004518 if (!checkMicrosoftExt(S, Attr))
4519 return;
4520
4521 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004522 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004523 D->addAttr(
4524 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4525 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004526}
4527
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004528static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004529 if (!checkMicrosoftExt(S, Attr))
4530 return;
4531 D->addAttr(::new (S.Context)
4532 ForceInlineAttr(Attr.getRange(), S.Context,
4533 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004534}
4535
Reid Klecknera7225342013-05-20 14:02:37 +00004536static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4537 if (!checkMicrosoftExt(S, Attr))
4538 return;
4539 // Check linkage after possibly merging declaratinos. See
4540 // checkAttributesAfterMerging().
4541 D->addAttr(::new (S.Context)
4542 SelectAnyAttr(Attr.getRange(), S.Context,
4543 Attr.getAttributeSpellingListIndex()));
4544}
4545
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004546/// Handles semantic checking for features that are common to all attributes,
4547/// such as checking whether a parameter was properly specified, or the correct
4548/// number of arguments were passed, etc.
4549static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D,
4550 const AttributeList &Attr) {
4551 // Several attributes carry different semantics than the parsing requires, so
4552 // those are opted out of the common handling.
4553 //
4554 // We also bail on unknown and ignored attributes because those are handled
4555 // as part of the target-specific handling logic.
4556 if (Attr.hasCustomParsing() ||
4557 Attr.getKind() == AttributeList::UnknownAttribute ||
4558 Attr.getKind() == AttributeList::IgnoredAttribute)
4559 return false;
4560
4561 // If there are no optional arguments, then checking for the argument count
4562 // is trivial.
4563 if (Attr.getMinArgs() == Attr.getMaxArgs() &&
4564 !checkAttributeNumArgs(S, Attr, Attr.getMinArgs()))
4565 return true;
4566 return false;
4567}
4568
Ted Kremenekb71368d2009-05-09 02:44:38 +00004569//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004570// Top Level Sema Entry Points
4571//===----------------------------------------------------------------------===//
4572
Richard Smith4a97b8e2013-08-29 00:47:48 +00004573/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4574/// the attribute applies to decls. If the attribute is a type attribute, just
4575/// silently ignore it if a GNU attribute.
4576static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4577 const AttributeList &Attr,
4578 bool IncludeCXX11Attributes) {
4579 if (Attr.isInvalid())
4580 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00004581
Richard Smith4a97b8e2013-08-29 00:47:48 +00004582 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4583 // instead.
4584 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4585 return;
4586
Aaron Ballmanbbb3b322013-09-09 23:33:17 +00004587 if (handleCommonAttributeFeatures(S, scope, D, Attr))
4588 return;
4589
Chris Lattner803d0802008-06-29 00:43:07 +00004590 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004591 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4592 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4593 case AttributeList::AT_IBOutletCollection:
4594 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004595 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004596 case AttributeList::AT_ObjCGC:
4597 case AttributeList::AT_VectorSize:
4598 case AttributeList::AT_NeonVectorType:
4599 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004600 case AttributeList::AT_Ptr32:
4601 case AttributeList::AT_Ptr64:
4602 case AttributeList::AT_SPtr:
4603 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004604 // Ignore these, these are type attributes, handled by
4605 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004606 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004607 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4608 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4609 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4610 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004611 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004612 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004613 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004614 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004615 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4616 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4617 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004618 handleDependencyAttr(S, scope, D, Attr);
4619 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004620 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4621 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4622 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004623 case AttributeList::AT_CXX11NoReturn:
4624 handleCXX11NoReturnAttr(S, D, Attr);
4625 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004626 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004627 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004628 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004629 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4630 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004631 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004632 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004633 case AttributeList::AT_MinSize:
4634 handleMinSizeAttr(S, D, Attr);
4635 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004636 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4637 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4638 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
Aaron Ballman19513232013-08-28 23:13:26 +00004639 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4640 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004641 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4642 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004643 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004644 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004645 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4646 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004647 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004648 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4649 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Richard Smith4a97b8e2013-08-29 00:47:48 +00004650 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004651 case AttributeList::AT_ownership_returns:
4652 case AttributeList::AT_ownership_takes:
4653 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004654 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004655 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4656 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4657 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4658 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4659 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4660 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4661 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004662
Sean Hunt8e083e72012-06-19 23:57:03 +00004663 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004664 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004665 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004666 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004667
Sean Hunt8e083e72012-06-19 23:57:03 +00004668 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004669 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4670
Fariborz Jahanian84101132012-09-07 23:46:23 +00004671 case AttributeList::AT_ObjCRequiresSuper:
4672 handleObjCRequiresSuperAttr(S, D, Attr); break;
4673
Sean Hunt8e083e72012-06-19 23:57:03 +00004674 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004675 handleNSBridgedAttr(S, scope, D, Attr); break;
4676
Sean Hunt8e083e72012-06-19 23:57:03 +00004677 case AttributeList::AT_CFAuditedTransfer:
4678 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004679 handleCFTransferAttr(S, D, Attr); break;
4680
Ted Kremenekb71368d2009-05-09 02:44:38 +00004681 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004682 case AttributeList::AT_CFConsumed:
4683 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4684 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004685 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004686
Sean Hunt8e083e72012-06-19 23:57:03 +00004687 case AttributeList::AT_NSReturnsAutoreleased:
4688 case AttributeList::AT_NSReturnsNotRetained:
4689 case AttributeList::AT_CFReturnsNotRetained:
4690 case AttributeList::AT_NSReturnsRetained:
4691 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004692 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004693
Tanya Lattner0df579e2012-07-09 22:06:01 +00004694 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004695 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004696 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004697
Joey Gouly37453b92013-03-08 09:42:32 +00004698 case AttributeList::AT_VecTypeHint:
4699 handleVecTypeHint(S, D, Attr); break;
4700
Sean Hunt8e083e72012-06-19 23:57:03 +00004701 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004702 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004703
Sean Hunt8e083e72012-06-19 23:57:03 +00004704 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4705 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4706 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004707 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004708 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004709 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004710 handleArcWeakrefUnavailableAttr (S, D, Attr);
4711 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004712 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004713 handleObjCRootClassAttr(S, D, Attr);
4714 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004715 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004716 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004717 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004718 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4719 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004720 handleReturnsTwiceAttr(S, D, Attr);
4721 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004722 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004723 case AttributeList::AT_Visibility:
4724 handleVisibilityAttr(S, D, Attr, false);
4725 break;
4726 case AttributeList::AT_TypeVisibility:
4727 handleVisibilityAttr(S, D, Attr, true);
4728 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004729 case AttributeList::AT_WarnUnused:
4730 handleWarnUnusedAttr(S, D, Attr);
4731 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004732 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004733 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004734 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4735 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4736 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4737 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004738 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004739 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004740 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004741 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004742 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004743 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004744 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004745 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004746 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4747 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4748 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4749 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4750 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4751 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4752 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4753 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4754 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004755 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004756 // Just ignore
4757 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004758 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004759 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004760 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004761 case AttributeList::AT_StdCall:
4762 case AttributeList::AT_CDecl:
4763 case AttributeList::AT_FastCall:
4764 case AttributeList::AT_ThisCall:
4765 case AttributeList::AT_Pascal:
Charles Davise8519c32013-08-30 04:39:01 +00004766 case AttributeList::AT_MSABI:
4767 case AttributeList::AT_SysVABI:
Sean Hunt8e083e72012-06-19 23:57:03 +00004768 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004769 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004770 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004771 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004772 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004773 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004774 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004775 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004776 case AttributeList::AT_OpenCLImageAccess:
4777 handleOpenCLImageAccessAttr(S, D, Attr);
4778 break;
John McCallc052dbb2012-05-22 21:28:12 +00004779
4780 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004781 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004782 handleMsStructAttr(S, D, Attr);
4783 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004784 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004785 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004786 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004787 case AttributeList::AT_SingleInheritance:
4788 case AttributeList::AT_MultipleInheritance:
4789 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004790 handleInheritanceAttr(S, D, Attr);
4791 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004792 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004793 handlePortabilityAttr(S, D, Attr);
4794 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004795 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004796 handleForceInlineAttr(S, D, Attr);
4797 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004798 case AttributeList::AT_SelectAny:
4799 handleSelectAnyAttr(S, D, Attr);
4800 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004801
4802 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004803 case AttributeList::AT_AssertExclusiveLock:
4804 handleAssertExclusiveLockAttr(S, D, Attr);
4805 break;
4806 case AttributeList::AT_AssertSharedLock:
4807 handleAssertSharedLockAttr(S, D, Attr);
4808 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004809 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004810 handleGuardedVarAttr(S, D, Attr);
4811 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004812 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004813 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004814 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004815 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004816 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004817 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004818 case AttributeList::AT_NoSanitizeAddress:
4819 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004820 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004821 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004822 handleNoThreadSafetyAnalysis(S, D, Attr);
4823 break;
4824 case AttributeList::AT_NoSanitizeThread:
4825 handleNoSanitizeThread(S, D, Attr);
4826 break;
4827 case AttributeList::AT_NoSanitizeMemory:
4828 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004829 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004830 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004831 handleLockableAttr(S, D, Attr);
4832 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004833 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004834 handleGuardedByAttr(S, D, Attr);
4835 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004836 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004837 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004838 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004839 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004840 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004841 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004842 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004843 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004844 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004845 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004846 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004847 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004848 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004849 handleLockReturnedAttr(S, D, Attr);
4850 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004851 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004852 handleLocksExcludedAttr(S, D, Attr);
4853 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004854 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004855 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004856 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004857 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004858 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004859 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004860 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004861 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004862 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004863 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004864 handleUnlockFunAttr(S, D, Attr);
4865 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004866 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004867 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004868 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004869 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004870 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004871 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004872
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004873 // Uniqueness analysis attributes.
DeLesley Hutchinsc55bee62013-08-30 22:56:34 +00004874 case AttributeList::AT_Consumable:
4875 handleConsumableAttr(S, D, Attr);
4876 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004877 case AttributeList::AT_Consumes:
4878 handleConsumesAttr(S, D, Attr);
4879 break;
4880 case AttributeList::AT_CallableWhenUnconsumed:
4881 handleCallableWhenUnconsumedAttr(S, D, Attr);
4882 break;
4883 case AttributeList::AT_TestsConsumed:
4884 handleTestsConsumedAttr(S, D, Attr);
4885 break;
4886 case AttributeList::AT_TestsUnconsumed:
4887 handleTestsUnconsumedAttr(S, D, Attr);
4888 break;
DeLesley Hutchins0e8534e2013-09-03 20:11:38 +00004889 case AttributeList::AT_ReturnTypestate:
4890 handleReturnTypestateAttr(S, D, Attr);
4891 break;
DeLesley Hutchinsdf7bef02013-08-12 21:20:55 +00004892
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004893 // Type safety attributes.
4894 case AttributeList::AT_ArgumentWithTypeTag:
4895 handleArgumentWithTypeTagAttr(S, D, Attr);
4896 break;
4897 case AttributeList::AT_TypeTagForDatatype:
4898 handleTypeTagForDatatypeAttr(S, D, Attr);
4899 break;
4900
Chris Lattner803d0802008-06-29 00:43:07 +00004901 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004902 // Ask target about the attribute.
4903 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4904 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004905 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4906 diag::warn_unhandled_ms_attribute_ignored :
4907 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004908 break;
4909 }
4910}
4911
4912/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4913/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004914void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004915 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004916 bool IncludeCXX11Attributes) {
4917 for (const AttributeList* l = AttrList; l; l = l->getNext())
Richard Smith4a97b8e2013-08-29 00:47:48 +00004918 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004919
4920 // GCC accepts
4921 // static int a9 __attribute__((weakref));
4922 // but that looks really pointless. We reject it.
Richard Smith4a97b8e2013-08-29 00:47:48 +00004923 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004924 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004925 cast<NamedDecl>(D)->getNameAsString();
4926 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004927 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004928 }
4929}
4930
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004931// Annotation attributes are the only attributes allowed after an access
4932// specifier.
4933bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4934 const AttributeList *AttrList) {
4935 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004936 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004937 handleAnnotateAttr(*this, ASDecl, *l);
4938 } else {
4939 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4940 return true;
4941 }
4942 }
4943
4944 return false;
4945}
4946
John McCalle82247a2011-10-01 05:17:03 +00004947/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4948/// contains any decl attributes that we should warn about.
4949static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4950 for ( ; A; A = A->getNext()) {
4951 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004952 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004953 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4954
4955 if (A->getKind() == AttributeList::UnknownAttribute) {
4956 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4957 << A->getName() << A->getRange();
4958 } else {
4959 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4960 << A->getName() << A->getRange();
4961 }
4962 }
4963}
4964
4965/// checkUnusedDeclAttributes - Given a declarator which is not being
4966/// used to build a declaration, complain about any decl attributes
4967/// which might be lying around on it.
4968void Sema::checkUnusedDeclAttributes(Declarator &D) {
4969 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4970 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4971 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4972 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4973}
4974
Ryan Flynne25ff832009-07-30 03:15:39 +00004975/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004976/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004977NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4978 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004979 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004980 NamedDecl *NewD = 0;
4981 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004982 FunctionDecl *NewFD;
4983 // FIXME: Missing call to CheckFunctionDeclaration().
4984 // FIXME: Mangling?
4985 // FIXME: Is the qualifier info correct?
4986 // FIXME: Is the DeclContext correct?
4987 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4988 Loc, Loc, DeclarationName(II),
4989 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004990 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00004991 FD->hasPrototype(),
4992 false/*isConstexprSpecified*/);
4993 NewD = NewFD;
4994
4995 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004996 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004997
4998 // Fake up parameter variables; they are declared as if this were
4999 // a typedef.
5000 QualType FDTy = FD->getType();
5001 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5002 SmallVector<ParmVarDecl*, 16> Params;
5003 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5004 AE = FT->arg_type_end(); AI != AE; ++AI) {
5005 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5006 Param->setScopeInfo(0, Params.size());
5007 Params.push_back(Param);
5008 }
David Blaikie4278c652011-09-21 18:16:56 +00005009 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005010 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005011 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5012 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005013 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005014 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005015 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00005016 if (VD->getQualifier()) {
5017 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005018 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005019 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005020 }
5021 return NewD;
5022}
5023
James Dennett1dfbd922012-06-14 21:40:34 +00005024/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005025/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005026void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005027 if (W.getUsed()) return; // only do this once
5028 W.setUsed(true);
5029 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5030 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005031 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005032 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5033 NDId->getName()));
5034 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005035 WeakTopLevelDecl.push_back(NewD);
5036 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5037 // to insert Decl at TU scope, sorry.
5038 DeclContext *SavedContext = CurContext;
5039 CurContext = Context.getTranslationUnitDecl();
5040 PushOnScopeChains(NewD, S);
5041 CurContext = SavedContext;
5042 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005043 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005044 }
5045}
5046
Rafael Espindola65611bf2013-03-02 21:41:48 +00005047void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5048 // It's valid to "forward-declare" #pragma weak, in which case we
5049 // have to do this.
5050 LoadExternalWeakUndeclaredIdentifiers();
5051 if (!WeakUndeclaredIdentifiers.empty()) {
5052 NamedDecl *ND = NULL;
5053 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5054 if (VD->isExternC())
5055 ND = VD;
5056 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5057 if (FD->isExternC())
5058 ND = FD;
5059 if (ND) {
5060 if (IdentifierInfo *Id = ND->getIdentifier()) {
5061 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5062 = WeakUndeclaredIdentifiers.find(Id);
5063 if (I != WeakUndeclaredIdentifiers.end()) {
5064 WeakInfo W = I->second;
5065 DeclApplyPragmaWeak(S, ND, W);
5066 WeakUndeclaredIdentifiers[Id] = W;
5067 }
5068 }
5069 }
5070 }
5071}
5072
Chris Lattner0744e5f2008-06-29 00:23:49 +00005073/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5074/// it, apply them to D. This is a bit tricky because PD can have attributes
5075/// specified in many different places, and we need to find and apply them all.
Richard Smith4a97b8e2013-08-29 00:47:48 +00005076void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005077 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005078 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005079 ProcessDeclAttributeList(S, D, Attrs);
Mike Stumpbf916502009-07-24 19:02:52 +00005080
Chris Lattner0744e5f2008-06-29 00:23:49 +00005081 // Walk the declarator structure, applying decl attributes that were in a type
5082 // position to the decl itself. This handles cases like:
5083 // int *__attr__(x)** D;
5084 // when X is a decl attribute.
5085 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5086 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005087 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005088
Chris Lattner0744e5f2008-06-29 00:23:49 +00005089 // Finally, apply any attributes on the decl itself.
5090 if (const AttributeList *Attrs = PD.getAttributes())
Richard Smith4a97b8e2013-08-29 00:47:48 +00005091 ProcessDeclAttributeList(S, D, Attrs);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005092}
John McCall54abf7d2009-11-04 02:18:39 +00005093
John McCallf85e1932011-06-15 23:02:42 +00005094/// Is the given declaration allowed to use a forbidden type?
5095static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5096 // Private ivars are always okay. Unfortunately, people don't
5097 // always properly make their ivars private, even in system headers.
5098 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005099 // Function declarations in sys headers will be marked unavailable.
5100 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5101 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005102 return false;
5103
5104 // Require it to be declared in a system header.
5105 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5106}
5107
5108/// Handle a delayed forbidden-type diagnostic.
5109static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5110 Decl *decl) {
5111 if (decl && isForbiddenTypeAllowed(S, decl)) {
5112 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5113 "this system declaration uses an unsupported type"));
5114 return;
5115 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005116 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005117 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005118 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005119 // kind of forbidden type messages on unavailable functions.
5120 if (FD->hasAttr<UnavailableAttr>() &&
5121 diag.getForbiddenTypeDiagnostic() ==
5122 diag::err_arc_array_param_no_ownership) {
5123 diag.Triggered = true;
5124 return;
5125 }
5126 }
John McCallf85e1932011-06-15 23:02:42 +00005127
5128 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5129 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5130 diag.Triggered = true;
5131}
5132
John McCall92576642012-05-07 06:16:41 +00005133void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5134 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005135 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005136 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005137
John McCall92576642012-05-07 06:16:41 +00005138 // When delaying diagnostics to run in the context of a parsed
5139 // declaration, we only want to actually emit anything if parsing
5140 // succeeds.
5141 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005142
John McCall92576642012-05-07 06:16:41 +00005143 // We emit all the active diagnostics in this pool or any of its
5144 // parents. In general, we'll get one pool for the decl spec
5145 // and a child pool for each declarator; in a decl group like:
5146 // deprecated_typedef foo, *bar, baz();
5147 // only the declarator pops will be passed decls. This is correct;
5148 // we really do need to consider delayed diagnostics from the decl spec
5149 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005150 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005151 do {
John McCall13489672012-05-07 06:16:58 +00005152 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005153 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5154 // This const_cast is a bit lame. Really, Triggered should be mutable.
5155 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005156 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005157 continue;
5158
John McCalleee1d542011-02-14 07:13:47 +00005159 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005160 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005161 // Don't bother giving deprecation diagnostics if the decl is invalid.
5162 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005163 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005164 break;
5165
5166 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005167 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005168 break;
John McCallf85e1932011-06-15 23:02:42 +00005169
5170 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005171 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005172 break;
John McCall2f514482010-01-27 03:50:35 +00005173 }
5174 }
John McCall92576642012-05-07 06:16:41 +00005175 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005176}
5177
John McCall13489672012-05-07 06:16:58 +00005178/// Given a set of delayed diagnostics, re-emit them as if they had
5179/// been delayed in the current context instead of in the given pool.
5180/// Essentially, this just moves them to the current pool.
5181void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5182 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5183 assert(curPool && "re-emitting in undelayed context not supported");
5184 curPool->steal(pool);
5185}
5186
John McCall54abf7d2009-11-04 02:18:39 +00005187static bool isDeclDeprecated(Decl *D) {
5188 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005189 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005190 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005191 // A category implicitly has the availability of the interface.
5192 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5193 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005194 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5195 return false;
5196}
5197
Eli Friedmanc3b23082012-08-08 21:52:41 +00005198static void
5199DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5200 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005201 const ObjCInterfaceDecl *UnknownObjCClass,
5202 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005203 DeclarationName Name = D->getDeclName();
5204 if (!Message.empty()) {
5205 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5206 S.Diag(D->getLocation(),
5207 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5208 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005209 if (ObjCPropery)
5210 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5211 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005212 } else if (!UnknownObjCClass) {
5213 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5214 S.Diag(D->getLocation(),
5215 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5216 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005217 if (ObjCPropery)
5218 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5219 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005220 } else {
5221 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5222 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5223 }
5224}
5225
John McCall9c3087b2010-08-26 02:13:20 +00005226void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005227 Decl *Ctx) {
5228 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005229 return;
5230
John McCall2f514482010-01-27 03:50:35 +00005231 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005232 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5233 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005234 DD.getUnknownObjCClass(),
5235 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005236}
5237
Chris Lattner5f9e2722011-07-23 10:55:15 +00005238void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005239 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005240 const ObjCInterfaceDecl *UnknownObjCClass,
5241 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005242 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005243 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005244 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5245 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005246 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005247 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005248 return;
5249 }
5250
5251 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005252 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005253 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005254 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005255}