blob: f14dcae8362ac0927a4bda488ce98cb3d50c2208 [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) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000422 Expr *ArgExp = Attr.getArg(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 assert(!Attr.isInvalid());
501
502 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000503 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000504
505 // D must be either a member field or global (potentially shared) variable.
506 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000507 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
508 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000509 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000510 }
511
Michael Handc691572012-07-23 18:48:41 +0000512 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000513}
514
Michael Handc691572012-07-23 18:48:41 +0000515static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
516 if (!checkGuardedVarAttrCommon(S, D, Attr))
517 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000518
Michael Han51d8c522013-01-24 16:46:58 +0000519 D->addAttr(::new (S.Context)
520 GuardedVarAttr(Attr.getRange(), S.Context,
521 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000522}
523
Michael Hanf1aae3b2012-08-03 17:40:43 +0000524static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000525 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000526 if (!checkGuardedVarAttrCommon(S, D, Attr))
527 return;
528
529 if (!threadSafetyCheckIsPointer(S, D, Attr))
530 return;
531
Michael Han51d8c522013-01-24 16:46:58 +0000532 D->addAttr(::new (S.Context)
533 PtGuardedVarAttr(Attr.getRange(), S.Context,
534 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000535}
536
Michael Hanf1aae3b2012-08-03 17:40:43 +0000537static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
538 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000539 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000540 assert(!Attr.isInvalid());
541
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000542 if (!checkAttributeNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000543 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000544
545 // D must be either a member field or global (potentially shared) variable.
546 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000547 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
548 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000549 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000550 }
551
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000552 SmallVector<Expr*, 1> Args;
553 // check that all arguments are lockable objects
554 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
555 unsigned Size = Args.size();
556 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000557 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000558
Michael Handc691572012-07-23 18:48:41 +0000559 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000560
Michael Handc691572012-07-23 18:48:41 +0000561 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000562}
563
Michael Handc691572012-07-23 18:48:41 +0000564static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
565 Expr *Arg = 0;
566 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
567 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000568
Michael Handc691572012-07-23 18:48:41 +0000569 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
570}
571
Michael Hanf1aae3b2012-08-03 17:40:43 +0000572static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000573 const AttributeList &Attr) {
574 Expr *Arg = 0;
575 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
576 return;
577
578 if (!threadSafetyCheckIsPointer(S, D, Attr))
579 return;
580
581 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
582 S.Context, Arg));
583}
584
Michael Hanf1aae3b2012-08-03 17:40:43 +0000585static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000586 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000587 assert(!Attr.isInvalid());
588
589 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000590 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000591
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000592 // FIXME: Lockable structs for C code.
David Blaikie88c4b5e2013-07-29 18:24:03 +0000593 if (!isa<RecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000594 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
595 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000596 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000597 }
598
Michael Handc691572012-07-23 18:48:41 +0000599 return true;
600}
601
602static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
603 if (!checkLockableAttrCommon(S, D, Attr))
604 return;
605
606 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
607}
608
Michael Hanf1aae3b2012-08-03 17:40:43 +0000609static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000610 const AttributeList &Attr) {
611 if (!checkLockableAttrCommon(S, D, Attr))
612 return;
613
Michael Han51d8c522013-01-24 16:46:58 +0000614 D->addAttr(::new (S.Context)
615 ScopedLockableAttr(Attr.getRange(), S.Context,
616 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000617}
618
Kostya Serebryany85aee962013-02-26 06:58:27 +0000619static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D,
620 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000621 assert(!Attr.isInvalid());
622
623 if (!checkAttributeNumArgs(S, Attr, 0))
624 return;
625
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000626 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000627 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
628 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000629 return;
630 }
631
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000632 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000633 S.Context));
634}
635
Kostya Serebryany85aee962013-02-26 06:58:27 +0000636static void handleNoSanitizeAddressAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000637 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000638 assert(!Attr.isInvalid());
639
640 if (!checkAttributeNumArgs(S, Attr, 0))
641 return;
642
643 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Kostya Serebryany85aee962013-02-26 06:58:27 +0000644 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
Kostya Serebryany71efba02012-01-24 19:25:38 +0000645 << Attr.getName() << ExpectedFunctionOrMethod;
646 return;
647 }
648
Michael Han51d8c522013-01-24 16:46:58 +0000649 D->addAttr(::new (S.Context)
Kostya Serebryany85aee962013-02-26 06:58:27 +0000650 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
651 Attr.getAttributeSpellingListIndex()));
652}
653
654static void handleNoSanitizeMemory(Sema &S, Decl *D,
655 const AttributeList &Attr) {
656 assert(!Attr.isInvalid());
657
658 if (!checkAttributeNumArgs(S, Attr, 0))
659 return;
660
661 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
662 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
663 << Attr.getName() << ExpectedFunctionOrMethod;
664 return;
665 }
666
667 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
668 S.Context));
669}
670
671static void handleNoSanitizeThread(Sema &S, Decl *D,
672 const AttributeList &Attr) {
673 assert(!Attr.isInvalid());
674
675 if (!checkAttributeNumArgs(S, Attr, 0))
676 return;
677
678 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
679 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
680 << Attr.getName() << ExpectedFunctionOrMethod;
681 return;
682 }
683
684 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
685 S.Context));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000686}
687
Michael Hanf1aae3b2012-08-03 17:40:43 +0000688static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
689 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000690 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000691 assert(!Attr.isInvalid());
692
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000693 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000694 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000695
696 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000697 ValueDecl *VD = dyn_cast<ValueDecl>(D);
698 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000699 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
700 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000701 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000702 }
703
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000704 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000705 QualType QT = VD->getType();
706 if (!QT->isDependentType()) {
707 const RecordType *RT = getRecordType(QT);
708 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000709 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000710 << Attr.getName();
711 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000712 }
713 }
714
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000715 // Check that all arguments are lockable objects.
716 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000717 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000718 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000719
Michael Handc691572012-07-23 18:48:41 +0000720 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000721}
722
Michael Hanf1aae3b2012-08-03 17:40:43 +0000723static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000724 const AttributeList &Attr) {
725 SmallVector<Expr*, 1> Args;
726 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
727 return;
728
729 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000730 D->addAttr(::new (S.Context)
731 AcquiredAfterAttr(Attr.getRange(), S.Context,
732 StartArg, Args.size(),
733 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000734}
735
Michael Hanf1aae3b2012-08-03 17:40:43 +0000736static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000737 const AttributeList &Attr) {
738 SmallVector<Expr*, 1> Args;
739 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
740 return;
741
742 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000743 D->addAttr(::new (S.Context)
744 AcquiredBeforeAttr(Attr.getRange(), S.Context,
745 StartArg, Args.size(),
746 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000747}
748
Michael Hanf1aae3b2012-08-03 17:40:43 +0000749static bool checkLockFunAttrCommon(Sema &S, Decl *D,
750 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000751 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000752 assert(!Attr.isInvalid());
753
754 // zero or more arguments ok
755
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000756 // check that the attribute is applied to a function
757 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000758 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
759 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000760 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000761 }
762
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000763 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000764 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000765
Michael Handc691572012-07-23 18:48:41 +0000766 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000767}
768
Michael Hanf1aae3b2012-08-03 17:40:43 +0000769static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000770 const AttributeList &Attr) {
771 SmallVector<Expr*, 1> Args;
772 if (!checkLockFunAttrCommon(S, D, Attr, Args))
773 return;
774
775 unsigned Size = Args.size();
776 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000777 D->addAttr(::new (S.Context)
778 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
779 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000780}
781
Michael Hanf1aae3b2012-08-03 17:40:43 +0000782static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000783 const AttributeList &Attr) {
784 SmallVector<Expr*, 1> Args;
785 if (!checkLockFunAttrCommon(S, D, Attr, Args))
786 return;
787
788 unsigned Size = Args.size();
789 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000790 D->addAttr(::new (S.Context)
791 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
792 StartArg, Size,
793 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000794}
795
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +0000796static void handleAssertSharedLockAttr(Sema &S, Decl *D,
797 const AttributeList &Attr) {
798 SmallVector<Expr*, 1> Args;
799 if (!checkLockFunAttrCommon(S, D, Attr, Args))
800 return;
801
802 unsigned Size = Args.size();
803 Expr **StartArg = Size == 0 ? 0 : &Args[0];
804 D->addAttr(::new (S.Context)
805 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
806 Attr.getAttributeSpellingListIndex()));
807}
808
809static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
810 const AttributeList &Attr) {
811 SmallVector<Expr*, 1> Args;
812 if (!checkLockFunAttrCommon(S, D, Attr, Args))
813 return;
814
815 unsigned Size = Args.size();
816 Expr **StartArg = Size == 0 ? 0 : &Args[0];
817 D->addAttr(::new (S.Context)
818 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
819 StartArg, Size,
820 Attr.getAttributeSpellingListIndex()));
821}
822
823
Michael Hanf1aae3b2012-08-03 17:40:43 +0000824static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
825 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000826 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000827 assert(!Attr.isInvalid());
828
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000829 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000830 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000831
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000832 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000833 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
834 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000835 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000836 }
837
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000838 if (!isIntOrBool(Attr.getArg(0))) {
Aaron Ballman437d43f2013-07-23 14:03:57 +0000839 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +0000840 << Attr.getName() << 1 << AANT_ArgumentIntOrBool;
Michael Handc691572012-07-23 18:48:41 +0000841 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000842 }
843
844 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000845 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000846
Michael Handc691572012-07-23 18:48:41 +0000847 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000848}
849
Michael Hanf1aae3b2012-08-03 17:40:43 +0000850static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000851 const AttributeList &Attr) {
852 SmallVector<Expr*, 2> Args;
853 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
854 return;
855
856 unsigned Size = Args.size();
857 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000858 D->addAttr(::new (S.Context)
859 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
860 Attr.getArg(0), StartArg, Size,
861 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000862}
863
Michael Hanf1aae3b2012-08-03 17:40:43 +0000864static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000865 const AttributeList &Attr) {
866 SmallVector<Expr*, 2> Args;
867 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
868 return;
869
870 unsigned Size = Args.size();
871 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000872 D->addAttr(::new (S.Context)
873 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
874 Attr.getArg(0), StartArg, Size,
875 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000876}
877
Michael Hanf1aae3b2012-08-03 17:40:43 +0000878static bool checkLocksRequiredCommon(Sema &S, Decl *D,
879 const AttributeList &Attr,
Craig Topper6b9240e2013-07-05 19:34:19 +0000880 SmallVectorImpl<Expr *> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000881 assert(!Attr.isInvalid());
882
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000883 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000884 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000885
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000886 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000887 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
888 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000889 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000890 }
891
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000892 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000893 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Dmitri Gribenko1f78a502013-05-03 15:05:50 +0000894 if (Args.empty())
Michael Handc691572012-07-23 18:48:41 +0000895 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000896
Michael Handc691572012-07-23 18:48:41 +0000897 return true;
898}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000899
Michael Hanf1aae3b2012-08-03 17:40:43 +0000900static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000901 const AttributeList &Attr) {
902 SmallVector<Expr*, 1> Args;
903 if (!checkLocksRequiredCommon(S, D, Attr, Args))
904 return;
905
906 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000907 D->addAttr(::new (S.Context)
908 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
909 StartArg, Args.size(),
910 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000911}
912
Michael Hanf1aae3b2012-08-03 17:40:43 +0000913static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000914 const AttributeList &Attr) {
915 SmallVector<Expr*, 1> Args;
916 if (!checkLocksRequiredCommon(S, D, Attr, Args))
917 return;
918
919 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000920 D->addAttr(::new (S.Context)
921 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
922 StartArg, Args.size(),
923 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000924}
925
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000926static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000927 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000928 assert(!Attr.isInvalid());
929
930 // zero or more arguments ok
931
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000932 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000933 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
934 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000935 return;
936 }
937
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000938 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000939 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000940 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000941 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000942 Expr **StartArg = Size == 0 ? 0 : &Args[0];
943
Michael Han51d8c522013-01-24 16:46:58 +0000944 D->addAttr(::new (S.Context)
945 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
946 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000947}
948
949static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000950 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000951 assert(!Attr.isInvalid());
952
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000953 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000954 return;
955
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000956 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000957 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
958 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000959 return;
960 }
961
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000962 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000963 SmallVector<Expr*, 1> Args;
964 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
965 unsigned Size = Args.size();
966 if (Size == 0)
967 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000968
Michael Han51d8c522013-01-24 16:46:58 +0000969 D->addAttr(::new (S.Context)
970 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
971 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000972}
973
974static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000975 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000976 assert(!Attr.isInvalid());
977
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000978 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000979 return;
980
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000981 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000982 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
983 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000984 return;
985 }
986
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000987 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000988 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000989 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000990 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000991 if (Size == 0)
992 return;
993 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000994
Michael Han51d8c522013-01-24 16:46:58 +0000995 D->addAttr(::new (S.Context)
996 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
997 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000998}
999
1000
Chandler Carruth1b03c872011-07-02 00:01:44 +00001001static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1002 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +00001003 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
1004 if (TD == 0) {
1005 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
1006 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +00001007 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +00001008 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001009 }
Mike Stumpbf916502009-07-24 19:02:52 +00001010
Richard Smitha4fa9002013-01-13 02:11:23 +00001011 // Remember this typedef decl, we will need it later for diagnostics.
1012 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001013}
1014
Chandler Carruth1b03c872011-07-02 00:01:44 +00001015static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001016 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001017 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001018 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001019
Chandler Carruth87c44602011-07-01 23:49:12 +00001020 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001021 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +00001022 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001023 // If the alignment is less than or equal to 8 bits, the packed attribute
1024 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +00001025 if (!FD->getType()->isDependentType() &&
1026 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +00001027 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001028 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +00001029 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001030 else
Michael Han51d8c522013-01-24 16:46:58 +00001031 FD->addAttr(::new (S.Context)
1032 PackedAttr(Attr.getRange(), S.Context,
1033 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001034 } else
Chris Lattner3c73c412008-11-19 08:23:25 +00001035 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00001036}
1037
Chandler Carruth1b03c872011-07-02 00:01:44 +00001038static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +00001039 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001040 RD->addAttr(::new (S.Context)
1041 MsStructAttr(Attr.getRange(), S.Context,
1042 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +00001043 else
1044 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
1045}
1046
Chandler Carruth1b03c872011-07-02 00:01:44 +00001047static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +00001048 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001049 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +00001050 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001051
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001052 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +00001053 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001054 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +00001055 D->addAttr(::new (S.Context)
1056 IBActionAttr(Attr.getRange(), S.Context,
1057 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001058 return;
1059 }
1060
Ted Kremenek4ee2bb12011-02-04 06:54:16 +00001061 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001062}
1063
Ted Kremenek2f041d02011-09-29 07:02:25 +00001064static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
1065 // The IBOutlet/IBOutletCollection attributes only apply to instance
1066 // variables or properties of Objective-C classes. The outlet must also
1067 // have an object reference type.
1068 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1069 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001070 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001071 << Attr.getName() << VD->getType() << 0;
1072 return false;
1073 }
1074 }
1075 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1076 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001077 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001078 << Attr.getName() << PD->getType() << 1;
1079 return false;
1080 }
1081 }
1082 else {
1083 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1084 return false;
1085 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001086
Ted Kremenek2f041d02011-09-29 07:02:25 +00001087 return true;
1088}
1089
Chandler Carruth1b03c872011-07-02 00:01:44 +00001090static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001091 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001092 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001093 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001094
1095 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001096 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001097
Michael Han51d8c522013-01-24 16:46:58 +00001098 D->addAttr(::new (S.Context)
1099 IBOutletAttr(Attr.getRange(), S.Context,
1100 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001101}
1102
Chandler Carruth1b03c872011-07-02 00:01:44 +00001103static void handleIBOutletCollection(Sema &S, Decl *D,
1104 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001105
1106 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001107 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001108 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1109 << Attr.getName() << 1;
Ted Kremenek857e9182010-05-19 17:38:06 +00001110 return;
1111 }
1112
Ted Kremenek2f041d02011-09-29 07:02:25 +00001113 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001114 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001115
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001116 IdentifierInfo *II = Attr.getParameterName();
1117 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001118 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001119
John McCallb3d87482010-08-24 05:47:05 +00001120 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001121 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001122 if (!TypeRep) {
1123 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1124 return;
1125 }
John McCallb3d87482010-08-24 05:47:05 +00001126 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001127 // Diagnose use of non-object type in iboutletcollection attribute.
1128 // FIXME. Gnu attribute extension ignores use of builtin types in
1129 // attributes. So, __attribute__((iboutletcollection(char))) will be
1130 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001131 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001132 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1133 return;
1134 }
Michael Han51d8c522013-01-24 16:46:58 +00001135 D->addAttr(::new (S.Context)
1136 IBOutletCollectionAttr(Attr.getRange(),S.Context,
1137 QT, Attr.getParameterLoc(),
1138 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001139}
1140
Chandler Carruthd309c812011-07-01 23:49:16 +00001141static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001142 if (const RecordType *UT = T->getAsUnionType())
1143 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1144 RecordDecl *UD = UT->getDecl();
1145 for (RecordDecl::field_iterator it = UD->field_begin(),
1146 itend = UD->field_end(); it != itend; ++it) {
1147 QualType QT = it->getType();
1148 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1149 T = QT;
1150 return;
1151 }
1152 }
1153 }
1154}
1155
Nuno Lopes587de5b2012-05-24 00:22:00 +00001156static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001157 if (!isFunctionOrMethod(D)) {
1158 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001159 << Attr.getName() << ExpectedFunctionOrMethod;
Nuno Lopes174930d2012-06-18 16:39:04 +00001160 return;
1161 }
1162
Nuno Lopes587de5b2012-05-24 00:22:00 +00001163 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1164 return;
1165
Nuno Lopes587de5b2012-05-24 00:22:00 +00001166 SmallVector<unsigned, 8> SizeArgs;
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001167 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
1168 Expr *Ex = Attr.getArg(i);
1169 uint64_t Idx;
1170 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1171 Attr.getLoc(), i + 1, Ex, Idx))
Nuno Lopes587de5b2012-05-24 00:22:00 +00001172 return;
Nuno Lopes587de5b2012-05-24 00:22:00 +00001173
1174 // check if the function argument is of an integer type
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001175 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001176 if (!T->isIntegerType()) {
1177 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001178 << "alloc_size" << Ex->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001179 return;
1180 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001181 SizeArgs.push_back(Idx);
Nuno Lopes587de5b2012-05-24 00:22:00 +00001182 }
1183
1184 // check if the function returns a pointer
1185 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1186 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001187 << Attr.getName() << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
Nuno Lopes587de5b2012-05-24 00:22:00 +00001188 }
1189
Michael Han51d8c522013-01-24 16:46:58 +00001190 D->addAttr(::new (S.Context)
1191 AllocSizeAttr(Attr.getRange(), S.Context,
1192 SizeArgs.data(), SizeArgs.size(),
1193 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001194}
1195
Chandler Carruth1b03c872011-07-02 00:01:44 +00001196static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001197 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1198 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001199 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001200 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001201 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001202 return;
1203 }
Mike Stumpbf916502009-07-24 19:02:52 +00001204
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001205 SmallVector<unsigned, 8> NonNullArgs;
1206 for (unsigned i = 0; i < Attr.getNumArgs(); ++i) {
1207 Expr *Ex = Attr.getArg(i);
1208 uint64_t Idx;
1209 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
1210 Attr.getLoc(), i + 1, Ex, Idx))
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001211 return;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001212
1213 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001214 QualType T = getFunctionOrMethodArgType(D, Idx).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001215 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001216
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001217 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001218 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001219 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001220 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001221 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001222 }
Mike Stumpbf916502009-07-24 19:02:52 +00001223
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001224 NonNullArgs.push_back(Idx);
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001225 }
Mike Stumpbf916502009-07-24 19:02:52 +00001226
1227 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1228 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001229 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001230 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1231 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001232 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001233 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001234 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001235 }
Mike Stumpbf916502009-07-24 19:02:52 +00001236
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001237 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001238 if (NonNullArgs.empty()) {
1239 // Warn the trivial case only if attribute is not coming from a
1240 // macro instantiation.
1241 if (Attr.getLoc().isFileID())
1242 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001243 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001244 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001245 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001246
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001247 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001248 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001249 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001250 D->addAttr(::new (S.Context)
1251 NonNullAttr(Attr.getRange(), S.Context, start, size,
1252 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001253}
1254
Chandler Carruth1b03c872011-07-02 00:01:44 +00001255static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001256 // This attribute must be applied to a function declaration.
1257 // The first argument to the attribute must be a string,
1258 // the name of the resource, for example "malloc".
1259 // The following arguments must be argument indexes, the arguments must be
1260 // of integer type for Returns, otherwise of pointer type.
1261 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001262 // after being held. free() should be __attribute((ownership_takes)), whereas
1263 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001264
1265 if (!AL.getParameterName()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001266 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001267 << AL.getName()->getName() << 1 << AANT_ArgumentString;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001268 return;
1269 }
1270 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001271 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001272 switch (AL.getKind()) {
1273 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001274 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001275 if (AL.getNumArgs() < 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001276 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1277 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001278 return;
1279 }
Jordy Rose2a479922010-08-12 08:54:03 +00001280 break;
1281 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001282 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001283 if (AL.getNumArgs() < 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001284 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1285 << AL.getName() << 2;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001286 return;
1287 }
Jordy Rose2a479922010-08-12 08:54:03 +00001288 break;
1289 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001290 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001291 if (AL.getNumArgs() > 1) {
1292 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001293 << AL.getName() << AL.getNumArgs() + 1;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001294 return;
1295 }
Jordy Rose2a479922010-08-12 08:54:03 +00001296 break;
1297 default:
1298 // This should never happen given how we are called.
1299 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001300 }
1301
Chandler Carruth87c44602011-07-01 23:49:12 +00001302 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001303 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1304 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001305 return;
1306 }
1307
Chris Lattner5f9e2722011-07-23 10:55:15 +00001308 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001309
1310 // Normalize the argument, __foo__ becomes foo.
1311 if (Module.startswith("__") && Module.endswith("__"))
1312 Module = Module.substr(2, Module.size() - 4);
1313
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001314
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001315 SmallVector<unsigned, 8> OwnershipArgs;
1316 for (unsigned i = 0; i < AL.getNumArgs(); ++i) {
1317 Expr *Ex = AL.getArg(i);
1318 uint64_t Idx;
1319 if (!checkFunctionOrMethodArgumentIndex(S, D, AL.getName()->getName(),
1320 AL.getLoc(), i + 1, Ex, Idx))
1321 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001322
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001323 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001324 case OwnershipAttr::Takes:
1325 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001326 // Is the function argument a pointer type?
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001327 QualType T = getFunctionOrMethodArgType(D, Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001328 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1329 // FIXME: Should also highlight argument in decl.
1330 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001331 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001332 << "pointer"
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001333 << Ex->getSourceRange();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001334 continue;
1335 }
1336 break;
1337 }
Sean Huntcf807c42010-08-18 23:23:40 +00001338 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001339 if (AL.getNumArgs() > 1) {
1340 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001341 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001342 llvm::APSInt ArgNum(32);
1343 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1344 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1345 S.Diag(AL.getLoc(), diag::err_ownership_type)
1346 << "ownership_returns" << "integer"
1347 << IdxExpr->getSourceRange();
1348 return;
1349 }
1350 }
1351 break;
1352 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001353 } // switch
1354
1355 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001356 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001357 i = D->specific_attr_begin<OwnershipAttr>(),
1358 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001359 i != e; ++i) {
1360 if ((*i)->getOwnKind() != K) {
1361 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1362 I!=E; ++I) {
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001363 if (Idx == *I) {
Sean Huntcf807c42010-08-18 23:23:40 +00001364 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1365 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001366 }
1367 }
1368 }
1369 }
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00001370 OwnershipArgs.push_back(Idx);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001371 }
1372
1373 unsigned* start = OwnershipArgs.data();
1374 unsigned size = OwnershipArgs.size();
1375 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001376
1377 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001378 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1379 << AL.getName() << 2;
Sean Huntcf807c42010-08-18 23:23:40 +00001380 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001381 }
Sean Huntcf807c42010-08-18 23:23:40 +00001382
Michael Han51d8c522013-01-24 16:46:58 +00001383 D->addAttr(::new (S.Context)
1384 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1385 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001386}
1387
Chandler Carruth1b03c872011-07-02 00:01:44 +00001388static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001389 // Check the attribute arguments.
1390 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001391 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1392 << Attr.getName() << 1;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001393 return;
1394 }
1395
Chandler Carruth87c44602011-07-01 23:49:12 +00001396 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001397 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001398 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001399 return;
1400 }
1401
Chandler Carruth87c44602011-07-01 23:49:12 +00001402 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001403
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001404 // gcc rejects
1405 // class c {
1406 // static int a __attribute__((weakref ("v2")));
1407 // static int b() __attribute__((weakref ("f3")));
1408 // };
1409 // and ignores the attributes of
1410 // void f(void) {
1411 // static int a __attribute__((weakref ("v2")));
1412 // }
1413 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001414 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001415 if (!Ctx->isFileContext()) {
1416 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001417 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001418 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001419 }
1420
1421 // The GCC manual says
1422 //
1423 // At present, a declaration to which `weakref' is attached can only
1424 // be `static'.
1425 //
1426 // It also says
1427 //
1428 // Without a TARGET,
1429 // given as an argument to `weakref' or to `alias', `weakref' is
1430 // equivalent to `weak'.
1431 //
1432 // gcc 4.4.1 will accept
1433 // int a7 __attribute__((weakref));
1434 // as
1435 // int a7 __attribute__((weak));
1436 // This looks like a bug in gcc. We reject that for now. We should revisit
1437 // it if this behaviour is actually used.
1438
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001439 // GCC rejects
1440 // static ((alias ("y"), weakref)).
1441 // Should we? How to check that weakref is before or after alias?
1442
1443 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001444 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001445 Arg = Arg->IgnoreParenCasts();
1446 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1447
Douglas Gregor5cee1192011-07-27 05:40:30 +00001448 if (!Str || !Str->isAscii()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001449 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001450 << Attr.getName() << 1 << AANT_ArgumentString;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001451 return;
1452 }
1453 // GCC will accept anything as the argument of weakref. Should we
1454 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001455 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001456 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001457 }
1458
Michael Han51d8c522013-01-24 16:46:58 +00001459 D->addAttr(::new (S.Context)
1460 WeakRefAttr(Attr.getRange(), S.Context,
1461 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001462}
1463
Chandler Carruth1b03c872011-07-02 00:01:44 +00001464static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001465 // check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001466 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001467 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001468
Peter Collingbourne7a730022010-11-23 20:45:58 +00001469 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001470 Arg = Arg->IgnoreParenCasts();
1471 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001472
Douglas Gregor5cee1192011-07-27 05:40:30 +00001473 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001474 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1475 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001476 return;
1477 }
Mike Stumpbf916502009-07-24 19:02:52 +00001478
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001479 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001480 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1481 return;
1482 }
1483
Chris Lattner6b6b5372008-06-26 18:38:35 +00001484 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001485
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001486 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001487 Str->getString(),
1488 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001489}
1490
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001491static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1492 // Check the attribute arguments.
1493 if (!checkAttributeNumArgs(S, Attr, 0))
1494 return;
1495
1496 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1497 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1498 << Attr.getName() << ExpectedFunctionOrMethod;
1499 return;
1500 }
1501
Michael Han51d8c522013-01-24 16:46:58 +00001502 D->addAttr(::new (S.Context)
1503 MinSizeAttr(Attr.getRange(), S.Context,
1504 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001505}
1506
Benjamin Krameree409a92012-05-12 21:10:52 +00001507static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1508 // Check the attribute arguments.
1509 if (!checkAttributeNumArgs(S, Attr, 0))
1510 return;
1511
1512 if (!isa<FunctionDecl>(D)) {
1513 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1514 << Attr.getName() << ExpectedFunction;
1515 return;
1516 }
1517
1518 if (D->hasAttr<HotAttr>()) {
1519 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1520 << Attr.getName() << "hot";
1521 return;
1522 }
1523
Michael Han51d8c522013-01-24 16:46:58 +00001524 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1525 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001526}
1527
1528static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1529 // Check the attribute arguments.
1530 if (!checkAttributeNumArgs(S, Attr, 0))
1531 return;
1532
1533 if (!isa<FunctionDecl>(D)) {
1534 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1535 << Attr.getName() << ExpectedFunction;
1536 return;
1537 }
1538
1539 if (D->hasAttr<ColdAttr>()) {
1540 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1541 << Attr.getName() << "cold";
1542 return;
1543 }
1544
Michael Han51d8c522013-01-24 16:46:58 +00001545 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1546 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001547}
1548
Chandler Carruth1b03c872011-07-02 00:01:44 +00001549static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001550 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001551 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001552 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001553
Chandler Carruth87c44602011-07-01 23:49:12 +00001554 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001555 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001556 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001557 return;
1558 }
1559
Michael Han51d8c522013-01-24 16:46:58 +00001560 D->addAttr(::new (S.Context)
1561 NakedAttr(Attr.getRange(), S.Context,
1562 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001563}
1564
Chandler Carruth1b03c872011-07-02 00:01:44 +00001565static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1566 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001567 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001568 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001569 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1570 << Attr.getName() << 0;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001571 return;
1572 }
1573
Chandler Carruth87c44602011-07-01 23:49:12 +00001574 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001575 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001576 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001577 return;
1578 }
Mike Stumpbf916502009-07-24 19:02:52 +00001579
Michael Han51d8c522013-01-24 16:46:58 +00001580 D->addAttr(::new (S.Context)
1581 AlwaysInlineAttr(Attr.getRange(), S.Context,
1582 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001583}
1584
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001585static void handleTLSModelAttr(Sema &S, Decl *D,
1586 const AttributeList &Attr) {
1587 // Check the attribute arguments.
Aaron Ballmanffa9d572013-07-18 18:01:48 +00001588 if (!checkAttributeNumArgs(S, Attr, 1))
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001589 return;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001590
1591 Expr *Arg = Attr.getArg(0);
1592 Arg = Arg->IgnoreParenCasts();
1593 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1594
1595 // Check that it is a string.
1596 if (!Str) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001597 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
1598 << Attr.getName() << AANT_ArgumentString;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001599 return;
1600 }
1601
Richard Smith38afbc72013-04-13 02:43:54 +00001602 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) {
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001603 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1604 << Attr.getName() << ExpectedTLSVar;
1605 return;
1606 }
1607
1608 // Check that the value.
1609 StringRef Model = Str->getString();
1610 if (Model != "global-dynamic" && Model != "local-dynamic"
1611 && Model != "initial-exec" && Model != "local-exec") {
1612 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1613 return;
1614 }
1615
Michael Han51d8c522013-01-24 16:46:58 +00001616 D->addAttr(::new (S.Context)
1617 TLSModelAttr(Attr.getRange(), S.Context, Model,
1618 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001619}
1620
Chandler Carruth1b03c872011-07-02 00:01:44 +00001621static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001622 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001623 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001624 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1625 << Attr.getName() << 0;
Ryan Flynn76168e22009-08-09 20:07:29 +00001626 return;
1627 }
Mike Stump1eb44332009-09-09 15:08:12 +00001628
Chandler Carruth87c44602011-07-01 23:49:12 +00001629 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001630 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001631 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001632 D->addAttr(::new (S.Context)
1633 MallocAttr(Attr.getRange(), S.Context,
1634 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001635 return;
1636 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001637 }
1638
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001639 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001640}
1641
Chandler Carruth1b03c872011-07-02 00:01:44 +00001642static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001643 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001644 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001645 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001646
Michael Han51d8c522013-01-24 16:46:58 +00001647 D->addAttr(::new (S.Context)
1648 MayAliasAttr(Attr.getRange(), S.Context,
1649 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001650}
1651
Chandler Carruth1b03c872011-07-02 00:01:44 +00001652static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001653 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001654 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001655 D->addAttr(::new (S.Context)
1656 NoCommonAttr(Attr.getRange(), S.Context,
1657 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001658 else
1659 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001660 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001661}
1662
Chandler Carruth1b03c872011-07-02 00:01:44 +00001663static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001664 assert(!Attr.isInvalid());
Eli Friedman3e1aca22013-06-20 22:55:04 +00001665
1666 if (S.LangOpts.CPlusPlus) {
1667 S.Diag(Attr.getLoc(), diag::err_common_not_supported_cplusplus);
1668 return;
1669 }
1670
Chandler Carruth87c44602011-07-01 23:49:12 +00001671 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001672 D->addAttr(::new (S.Context)
1673 CommonAttr(Attr.getRange(), S.Context,
1674 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001675 else
1676 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001677 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001678}
1679
Chandler Carruth1b03c872011-07-02 00:01:44 +00001680static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001681 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001682
1683 if (S.CheckNoReturnAttr(attr)) return;
1684
Chandler Carruth87c44602011-07-01 23:49:12 +00001685 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001686 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001687 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001688 return;
1689 }
1690
Michael Han51d8c522013-01-24 16:46:58 +00001691 D->addAttr(::new (S.Context)
1692 NoReturnAttr(attr.getRange(), S.Context,
1693 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001694}
1695
1696bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001697 if (attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001698 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1699 << attr.getName() << 0;
John McCall711c52b2011-01-05 12:14:39 +00001700 attr.setInvalid();
1701 return true;
1702 }
1703
1704 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001705}
1706
Chandler Carruth1b03c872011-07-02 00:01:44 +00001707static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1708 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001709
1710 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1711 // because 'analyzer_noreturn' does not impact the type.
1712
Chandler Carruth1731e202011-07-11 23:30:35 +00001713 if(!checkAttributeNumArgs(S, Attr, 0))
1714 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001715
Chandler Carruth87c44602011-07-01 23:49:12 +00001716 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1717 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001718 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1719 && !VD->getType()->isFunctionPointerType())) {
1720 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001721 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001722 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001723 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001724 return;
1725 }
1726 }
1727
Michael Han51d8c522013-01-24 16:46:58 +00001728 D->addAttr(::new (S.Context)
1729 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1730 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001731}
1732
Richard Smithcd8ab512013-01-17 01:30:42 +00001733static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1734 const AttributeList &Attr) {
1735 // C++11 [dcl.attr.noreturn]p1:
1736 // The attribute may be applied to the declarator-id in a function
1737 // declaration.
1738 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1739 if (!FD) {
1740 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1741 << Attr.getName() << ExpectedFunctionOrMethod;
1742 return;
1743 }
1744
Michael Han51d8c522013-01-24 16:46:58 +00001745 D->addAttr(::new (S.Context)
1746 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1747 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001748}
1749
John Thompson35cc9622010-08-09 21:53:52 +00001750// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001751static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001752/*
1753 Returning a Vector Class in Registers
1754
Eric Christopherf48f3672010-12-01 22:13:54 +00001755 According to the PPU ABI specifications, a class with a single member of
1756 vector type is returned in memory when used as the return value of a function.
1757 This results in inefficient code when implementing vector classes. To return
1758 the value in a single vector register, add the vecreturn attribute to the
1759 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001760
1761 Example:
1762
1763 struct Vector
1764 {
1765 __vector float xyzw;
1766 } __attribute__((vecreturn));
1767
1768 Vector Add(Vector lhs, Vector rhs)
1769 {
1770 Vector result;
1771 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1772 return result; // This will be returned in a register
1773 }
1774*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001775 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001776 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001777 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001778 return;
1779 }
1780
Chandler Carruth87c44602011-07-01 23:49:12 +00001781 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001782 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1783 return;
1784 }
1785
Chandler Carruth87c44602011-07-01 23:49:12 +00001786 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001787 int count = 0;
1788
1789 if (!isa<CXXRecordDecl>(record)) {
1790 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1791 return;
1792 }
1793
1794 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1795 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1796 return;
1797 }
1798
Eric Christopherf48f3672010-12-01 22:13:54 +00001799 for (RecordDecl::field_iterator iter = record->field_begin();
1800 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001801 if ((count == 1) || !iter->getType()->isVectorType()) {
1802 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1803 return;
1804 }
1805 count++;
1806 }
1807
Michael Han51d8c522013-01-24 16:46:58 +00001808 D->addAttr(::new (S.Context)
1809 VecReturnAttr(Attr.getRange(), S.Context,
1810 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001811}
1812
Richard Smith3a2b7a12013-01-28 22:42:45 +00001813static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1814 const AttributeList &Attr) {
1815 if (isa<ParmVarDecl>(D)) {
1816 // [[carries_dependency]] can only be applied to a parameter if it is a
1817 // parameter of a function declaration or lambda.
1818 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1819 S.Diag(Attr.getLoc(),
1820 diag::err_carries_dependency_param_not_function_decl);
1821 return;
1822 }
1823 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001824 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001825 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001826 return;
1827 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001828
1829 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1830 Attr.getRange(), S.Context,
1831 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001832}
1833
Chandler Carruth1b03c872011-07-02 00:01:44 +00001834static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001835 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001836 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001837 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1838 << Attr.getName() << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001839 return;
1840 }
Mike Stumpbf916502009-07-24 19:02:52 +00001841
Chandler Carruth87c44602011-07-01 23:49:12 +00001842 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001843 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001844 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001845 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001846 return;
1847 }
Mike Stumpbf916502009-07-24 19:02:52 +00001848
Michael Han51d8c522013-01-24 16:46:58 +00001849 D->addAttr(::new (S.Context)
1850 UnusedAttr(Attr.getRange(), S.Context,
1851 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001852}
1853
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001854static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1855 const AttributeList &Attr) {
1856 // check the attribute arguments.
1857 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001858 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1859 << Attr.getName() << 0;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001860 return;
1861 }
1862
1863 if (!isa<FunctionDecl>(D)) {
1864 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1865 << Attr.getName() << ExpectedFunction;
1866 return;
1867 }
1868
Michael Han51d8c522013-01-24 16:46:58 +00001869 D->addAttr(::new (S.Context)
1870 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1871 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001872}
1873
Chandler Carruth1b03c872011-07-02 00:01:44 +00001874static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001875 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001876 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00001877 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
1878 << Attr.getName() << 0;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001879 return;
1880 }
Mike Stumpbf916502009-07-24 19:02:52 +00001881
Chandler Carruth87c44602011-07-01 23:49:12 +00001882 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001883 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001884 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1885 return;
1886 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001887 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001888 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001889 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001890 return;
1891 }
Mike Stumpbf916502009-07-24 19:02:52 +00001892
Michael Han51d8c522013-01-24 16:46:58 +00001893 D->addAttr(::new (S.Context)
1894 UsedAttr(Attr.getRange(), S.Context,
1895 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001896}
1897
Chandler Carruth1b03c872011-07-02 00:01:44 +00001898static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001899 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001900 if (Attr.getNumArgs() > 1) {
1901 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001902 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001903 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001904
1905 int priority = 65535; // FIXME: Do not hardcode such constants.
1906 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001907 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001908 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001909 if (E->isTypeDependent() || E->isValueDependent() ||
1910 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001911 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001912 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001913 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001914 return;
1915 }
1916 priority = Idx.getZExtValue();
1917 }
Mike Stumpbf916502009-07-24 19:02:52 +00001918
Chandler Carruth87c44602011-07-01 23:49:12 +00001919 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001920 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001921 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001922 return;
1923 }
1924
Michael Han51d8c522013-01-24 16:46:58 +00001925 D->addAttr(::new (S.Context)
1926 ConstructorAttr(Attr.getRange(), S.Context, priority,
1927 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001928}
1929
Chandler Carruth1b03c872011-07-02 00:01:44 +00001930static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001931 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001932 if (Attr.getNumArgs() > 1) {
1933 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001934 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001935 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001936
1937 int priority = 65535; // FIXME: Do not hardcode such constants.
1938 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001939 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001940 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001941 if (E->isTypeDependent() || E->isValueDependent() ||
1942 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00001943 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001944 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00001945 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001946 return;
1947 }
1948 priority = Idx.getZExtValue();
1949 }
Mike Stumpbf916502009-07-24 19:02:52 +00001950
Chandler Carruth87c44602011-07-01 23:49:12 +00001951 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001952 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001953 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001954 return;
1955 }
1956
Michael Han51d8c522013-01-24 16:46:58 +00001957 D->addAttr(::new (S.Context)
1958 DestructorAttr(Attr.getRange(), S.Context, priority,
1959 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001960}
1961
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001962template <typename AttrTy>
Aaron Ballman2dbdef22013-07-18 13:13:52 +00001963static void handleAttrWithMessage(Sema &S, Decl *D,
1964 const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001965 unsigned NumArgs = Attr.getNumArgs();
1966 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001967 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001968 return;
1969 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001970
1971 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001972 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001973 if (NumArgs == 1) {
1974 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001975 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00001976 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_argument_type)
1977 << Attr.getName() << AANT_ArgumentString;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001978 return;
1979 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001980 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001981 }
Mike Stumpbf916502009-07-24 19:02:52 +00001982
Michael Han51d8c522013-01-24 16:46:58 +00001983 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
1984 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001985}
1986
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001987static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1988 const AttributeList &Attr) {
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00001989 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001990 return;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001991
Michael Han51d8c522013-01-24 16:46:58 +00001992 D->addAttr(::new (S.Context)
1993 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
1994 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001995}
1996
Patrick Beardb2f68202012-04-06 18:12:22 +00001997static void handleObjCRootClassAttr(Sema &S, Decl *D,
1998 const AttributeList &Attr) {
1999 if (!isa<ObjCInterfaceDecl>(D)) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002000 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2001 << Attr.getName() << ExpectedObjectiveCInterface;
Patrick Beardb2f68202012-04-06 18:12:22 +00002002 return;
2003 }
2004
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002005 if (!checkAttributeNumArgs(S, Attr, 0))
Patrick Beardb2f68202012-04-06 18:12:22 +00002006 return;
Patrick Beardb2f68202012-04-06 18:12:22 +00002007
Michael Han51d8c522013-01-24 16:46:58 +00002008 D->addAttr(::new (S.Context)
2009 ObjCRootClassAttr(Attr.getRange(), S.Context,
2010 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002011}
2012
Michael Han51d8c522013-01-24 16:46:58 +00002013static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2014 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002015 if (!isa<ObjCInterfaceDecl>(D)) {
2016 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2017 return;
2018 }
2019
Aaron Ballmanfaf71a82013-07-23 15:16:00 +00002020 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002021 return;
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002022
Michael Han51d8c522013-01-24 16:46:58 +00002023 D->addAttr(::new (S.Context)
2024 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2025 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002026}
2027
Jordy Rosefad5de92012-05-08 03:27:22 +00002028static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2029 IdentifierInfo *Platform,
2030 VersionTuple Introduced,
2031 VersionTuple Deprecated,
2032 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002033 StringRef PlatformName
2034 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2035 if (PlatformName.empty())
2036 PlatformName = Platform->getName();
2037
2038 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2039 // of these steps are needed).
2040 if (!Introduced.empty() && !Deprecated.empty() &&
2041 !(Introduced <= Deprecated)) {
2042 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2043 << 1 << PlatformName << Deprecated.getAsString()
2044 << 0 << Introduced.getAsString();
2045 return true;
2046 }
2047
2048 if (!Introduced.empty() && !Obsoleted.empty() &&
2049 !(Introduced <= Obsoleted)) {
2050 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2051 << 2 << PlatformName << Obsoleted.getAsString()
2052 << 0 << Introduced.getAsString();
2053 return true;
2054 }
2055
2056 if (!Deprecated.empty() && !Obsoleted.empty() &&
2057 !(Deprecated <= Obsoleted)) {
2058 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2059 << 2 << PlatformName << Obsoleted.getAsString()
2060 << 1 << Deprecated.getAsString();
2061 return true;
2062 }
2063
2064 return false;
2065}
2066
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002067/// \brief Check whether the two versions match.
2068///
2069/// If either version tuple is empty, then they are assumed to match. If
2070/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2071static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2072 bool BeforeIsOkay) {
2073 if (X.empty() || Y.empty())
2074 return true;
2075
2076 if (X == Y)
2077 return true;
2078
2079 if (BeforeIsOkay && X < Y)
2080 return true;
2081
2082 return false;
2083}
2084
Rafael Espindola51be6e32013-01-08 22:04:34 +00002085AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002086 IdentifierInfo *Platform,
2087 VersionTuple Introduced,
2088 VersionTuple Deprecated,
2089 VersionTuple Obsoleted,
2090 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002091 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002092 bool Override,
2093 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002094 VersionTuple MergedIntroduced = Introduced;
2095 VersionTuple MergedDeprecated = Deprecated;
2096 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002097 bool FoundAny = false;
2098
Rafael Espindola98ae8342012-05-10 02:50:16 +00002099 if (D->hasAttrs()) {
2100 AttrVec &Attrs = D->getAttrs();
2101 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2102 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2103 if (!OldAA) {
2104 ++i;
2105 continue;
2106 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002107
Rafael Espindola98ae8342012-05-10 02:50:16 +00002108 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2109 if (OldPlatform != Platform) {
2110 ++i;
2111 continue;
2112 }
2113
2114 FoundAny = true;
2115 VersionTuple OldIntroduced = OldAA->getIntroduced();
2116 VersionTuple OldDeprecated = OldAA->getDeprecated();
2117 VersionTuple OldObsoleted = OldAA->getObsoleted();
2118 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002119
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002120 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2121 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2122 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2123 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002124 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002125 if (Override) {
2126 int Which = -1;
2127 VersionTuple FirstVersion;
2128 VersionTuple SecondVersion;
2129 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2130 Which = 0;
2131 FirstVersion = OldIntroduced;
2132 SecondVersion = Introduced;
2133 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2134 Which = 1;
2135 FirstVersion = Deprecated;
2136 SecondVersion = OldDeprecated;
2137 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2138 Which = 2;
2139 FirstVersion = Obsoleted;
2140 SecondVersion = OldObsoleted;
2141 }
2142
2143 if (Which == -1) {
2144 Diag(OldAA->getLocation(),
2145 diag::warn_mismatched_availability_override_unavail)
2146 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2147 } else {
2148 Diag(OldAA->getLocation(),
2149 diag::warn_mismatched_availability_override)
2150 << Which
2151 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2152 << FirstVersion.getAsString() << SecondVersion.getAsString();
2153 }
2154 Diag(Range.getBegin(), diag::note_overridden_method);
2155 } else {
2156 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2157 Diag(Range.getBegin(), diag::note_previous_attribute);
2158 }
2159
Rafael Espindola98ae8342012-05-10 02:50:16 +00002160 Attrs.erase(Attrs.begin() + i);
2161 --e;
2162 continue;
2163 }
2164
2165 VersionTuple MergedIntroduced2 = MergedIntroduced;
2166 VersionTuple MergedDeprecated2 = MergedDeprecated;
2167 VersionTuple MergedObsoleted2 = MergedObsoleted;
2168
2169 if (MergedIntroduced2.empty())
2170 MergedIntroduced2 = OldIntroduced;
2171 if (MergedDeprecated2.empty())
2172 MergedDeprecated2 = OldDeprecated;
2173 if (MergedObsoleted2.empty())
2174 MergedObsoleted2 = OldObsoleted;
2175
2176 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2177 MergedIntroduced2, MergedDeprecated2,
2178 MergedObsoleted2)) {
2179 Attrs.erase(Attrs.begin() + i);
2180 --e;
2181 continue;
2182 }
2183
2184 MergedIntroduced = MergedIntroduced2;
2185 MergedDeprecated = MergedDeprecated2;
2186 MergedObsoleted = MergedObsoleted2;
2187 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002188 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002189 }
2190
2191 if (FoundAny &&
2192 MergedIntroduced == Introduced &&
2193 MergedDeprecated == Deprecated &&
2194 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002195 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002196
Ted Kremenekcb344392013-04-06 00:34:27 +00002197 // Only create a new attribute if !Override, but we want to do
2198 // the checking.
Rafael Espindola98ae8342012-05-10 02:50:16 +00002199 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Ted Kremenekcb344392013-04-06 00:34:27 +00002200 MergedDeprecated, MergedObsoleted) &&
2201 !Override) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002202 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2203 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002204 Obsoleted, IsUnavailable, Message,
2205 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002206 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002207 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002208}
2209
Chandler Carruth1b03c872011-07-02 00:01:44 +00002210static void handleAvailabilityAttr(Sema &S, Decl *D,
2211 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002212 IdentifierInfo *Platform = Attr.getParameterName();
2213 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002214 unsigned Index = Attr.getAttributeSpellingListIndex();
2215
Rafael Espindola3b294362012-05-06 19:56:25 +00002216 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002217 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2218 << Platform;
2219
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002220 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2221 if (!ND) {
2222 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2223 return;
2224 }
2225
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002226 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2227 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2228 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002229 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002230 StringRef Str;
2231 const StringLiteral *SE =
2232 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2233 if (SE)
2234 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002235
Rafael Espindola51be6e32013-01-08 22:04:34 +00002236 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002237 Platform,
2238 Introduced.Version,
2239 Deprecated.Version,
2240 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002241 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002242 /*Override=*/false,
2243 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002244 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002245 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002246}
2247
John McCalld4c3d662013-02-20 01:54:26 +00002248template <class T>
2249static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2250 typename T::VisibilityType value,
2251 unsigned attrSpellingListIndex) {
2252 T *existingAttr = D->getAttr<T>();
2253 if (existingAttr) {
2254 typename T::VisibilityType existingValue = existingAttr->getVisibility();
2255 if (existingValue == value)
2256 return NULL;
2257 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2258 S.Diag(range.getBegin(), diag::note_previous_attribute);
2259 D->dropAttr<T>();
2260 }
2261 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2262}
2263
Rafael Espindola599f1b72012-05-13 03:25:18 +00002264VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002265 VisibilityAttr::VisibilityType Vis,
2266 unsigned AttrSpellingListIndex) {
John McCalld4c3d662013-02-20 01:54:26 +00002267 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2268 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002269}
2270
John McCalld4c3d662013-02-20 01:54:26 +00002271TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2272 TypeVisibilityAttr::VisibilityType Vis,
2273 unsigned AttrSpellingListIndex) {
2274 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2275 AttrSpellingListIndex);
2276}
2277
2278static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr,
2279 bool isTypeVisibility) {
2280 // Visibility attributes don't mean anything on a typedef.
2281 if (isa<TypedefNameDecl>(D)) {
2282 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored)
2283 << Attr.getName();
2284 return;
2285 }
2286
2287 // 'type_visibility' can only go on a type or namespace.
2288 if (isTypeVisibility &&
2289 !(isa<TagDecl>(D) ||
2290 isa<ObjCInterfaceDecl>(D) ||
2291 isa<NamespaceDecl>(D))) {
2292 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2293 << Attr.getName() << ExpectedTypeOrNamespace;
2294 return;
2295 }
2296
Chris Lattner6b6b5372008-06-26 18:38:35 +00002297 // check the attribute arguments.
John McCalld4c3d662013-02-20 01:54:26 +00002298 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002299 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002300
Peter Collingbourne7a730022010-11-23 20:45:58 +00002301 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002302 Arg = Arg->IgnoreParenCasts();
2303 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002304
Douglas Gregor5cee1192011-07-27 05:40:30 +00002305 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002306 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
2307 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002308 return;
2309 }
Mike Stumpbf916502009-07-24 19:02:52 +00002310
Chris Lattner5f9e2722011-07-23 10:55:15 +00002311 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002312 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002313
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002314 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002315 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002316 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002317 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002318 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002319 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002320 else if (TypeStr == "protected") {
2321 // Complain about attempts to use protected visibility on targets
2322 // (like Darwin) that don't support it.
2323 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2324 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2325 type = VisibilityAttr::Default;
2326 } else {
2327 type = VisibilityAttr::Protected;
2328 }
2329 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002330 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002331 return;
2332 }
Mike Stumpbf916502009-07-24 19:02:52 +00002333
Michael Han51d8c522013-01-24 16:46:58 +00002334 unsigned Index = Attr.getAttributeSpellingListIndex();
John McCalld4c3d662013-02-20 01:54:26 +00002335 clang::Attr *newAttr;
2336 if (isTypeVisibility) {
2337 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(),
2338 (TypeVisibilityAttr::VisibilityType) type,
2339 Index);
2340 } else {
2341 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index);
2342 }
2343 if (newAttr)
2344 D->addAttr(newAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002345}
2346
Chandler Carruth1b03c872011-07-02 00:01:44 +00002347static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2348 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002349 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2350 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002351 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002352 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002353 return;
2354 }
2355
Chandler Carruth87c44602011-07-01 23:49:12 +00002356 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2357 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002358 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002359 << Attr.getName() << 1 << AANT_ArgumentString;
John McCalld5313b02011-03-02 11:33:24 +00002360 } else {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002361 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2362 << Attr.getName() << 0;
John McCalld5313b02011-03-02 11:33:24 +00002363 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002364 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002365 return;
2366 }
2367
Chris Lattner5f9e2722011-07-23 10:55:15 +00002368 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002369 ObjCMethodFamilyAttr::FamilyKind family;
2370 if (param == "none")
2371 family = ObjCMethodFamilyAttr::OMF_None;
2372 else if (param == "alloc")
2373 family = ObjCMethodFamilyAttr::OMF_alloc;
2374 else if (param == "copy")
2375 family = ObjCMethodFamilyAttr::OMF_copy;
2376 else if (param == "init")
2377 family = ObjCMethodFamilyAttr::OMF_init;
2378 else if (param == "mutableCopy")
2379 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2380 else if (param == "new")
2381 family = ObjCMethodFamilyAttr::OMF_new;
2382 else {
2383 // Just warn and ignore it. This is future-proof against new
2384 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002385 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002386 return;
2387 }
2388
John McCallf85e1932011-06-15 23:02:42 +00002389 if (family == ObjCMethodFamilyAttr::OMF_init &&
2390 !method->getResultType()->isObjCObjectPointerType()) {
2391 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2392 << method->getResultType();
2393 // Ignore the attribute.
2394 return;
2395 }
2396
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002397 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002398 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002399}
2400
Chandler Carruth1b03c872011-07-02 00:01:44 +00002401static void handleObjCExceptionAttr(Sema &S, Decl *D,
2402 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002403 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002404 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002405
Chris Lattner0db29ec2009-02-14 08:09:34 +00002406 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2407 if (OCI == 0) {
Aaron Ballman37a89532013-07-18 14:56:42 +00002408 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
2409 << Attr.getName() << ExpectedObjectiveCInterface;
Chris Lattner0db29ec2009-02-14 08:09:34 +00002410 return;
2411 }
Mike Stumpbf916502009-07-24 19:02:52 +00002412
Michael Han51d8c522013-01-24 16:46:58 +00002413 D->addAttr(::new (S.Context)
2414 ObjCExceptionAttr(Attr.getRange(), S.Context,
2415 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002416}
2417
Chandler Carruth1b03c872011-07-02 00:01:44 +00002418static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002419 if (!checkAttributeNumArgs(S, Attr, 0))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002420 return;
Richard Smith162e1c12011-04-15 14:24:37 +00002421 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002422 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002423 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002424 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2425 return;
2426 }
2427 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002428 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2429 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002430 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002431 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2432 return;
2433 }
2434 }
2435 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002436 // It is okay to include this attribute on properties, e.g.:
2437 //
2438 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2439 //
2440 // In this case it follows tradition and suppresses an error in the above
2441 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002442 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002443 }
Michael Han51d8c522013-01-24 16:46:58 +00002444 D->addAttr(::new (S.Context)
2445 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2446 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002447}
2448
Mike Stumpbf916502009-07-24 19:02:52 +00002449static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002450handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Aaron Ballman081c8832013-07-23 12:13:14 +00002451 if (!checkAttributeNumArgs(S, Attr, 0))
Douglas Gregorf9201e02009-02-11 23:02:49 +00002452 return;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002453
2454 if (!isa<FunctionDecl>(D)) {
2455 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2456 return;
2457 }
2458
Michael Han51d8c522013-01-24 16:46:58 +00002459 D->addAttr(::new (S.Context)
2460 OverloadableAttr(Attr.getRange(), S.Context,
2461 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002462}
2463
Chandler Carruth1b03c872011-07-02 00:01:44 +00002464static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002465 if (!Attr.getParameterName()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002466 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002467 << Attr.getName() << 1 << AANT_ArgumentString;
Steve Naroff9eae5762008-09-18 16:44:58 +00002468 return;
2469 }
Mike Stumpbf916502009-07-24 19:02:52 +00002470
Steve Naroff9eae5762008-09-18 16:44:58 +00002471 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002472 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2473 << Attr.getName() << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002474 return;
2475 }
Mike Stumpbf916502009-07-24 19:02:52 +00002476
Sean Huntcf807c42010-08-18 23:23:40 +00002477 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002478 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002479 type = BlocksAttr::ByRef;
2480 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002481 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002482 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002483 return;
2484 }
Mike Stumpbf916502009-07-24 19:02:52 +00002485
Michael Han51d8c522013-01-24 16:46:58 +00002486 D->addAttr(::new (S.Context)
2487 BlocksAttr(Attr.getRange(), S.Context, type,
2488 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002489}
2490
Chandler Carruth1b03c872011-07-02 00:01:44 +00002491static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002492 // check the attribute arguments.
2493 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002494 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002495 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002496 }
2497
John McCall3323fad2011-09-09 07:56:05 +00002498 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002499 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002500 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002501 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002502 if (E->isTypeDependent() || E->isValueDependent() ||
2503 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002504 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002505 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002506 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002507 return;
2508 }
Mike Stumpbf916502009-07-24 19:02:52 +00002509
John McCall3323fad2011-09-09 07:56:05 +00002510 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002511 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2512 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002513 return;
2514 }
John McCall3323fad2011-09-09 07:56:05 +00002515
2516 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002517 }
2518
John McCall3323fad2011-09-09 07:56:05 +00002519 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002520 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002521 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002522 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002523 if (E->isTypeDependent() || E->isValueDependent() ||
2524 !E->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00002525 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002526 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00002527 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002528 return;
2529 }
2530 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002531
John McCall3323fad2011-09-09 07:56:05 +00002532 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002533 // FIXME: This error message could be improved, it would be nice
2534 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002535 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2536 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002537 return;
2538 }
2539 }
2540
Chandler Carruth87c44602011-07-01 23:49:12 +00002541 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002542 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002543 if (isa<FunctionNoProtoType>(FT)) {
2544 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2545 return;
2546 }
Mike Stumpbf916502009-07-24 19:02:52 +00002547
Chris Lattner897cd902009-03-17 23:03:47 +00002548 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002549 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002550 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002551 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002552 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002553 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002554 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002555 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002556 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002557 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2558 if (!BD->isVariadic()) {
2559 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2560 return;
2561 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002562 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002563 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002564 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002565 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002566 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002567 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002568 int m = Ty->isFunctionPointerType() ? 0 : 1;
2569 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002570 return;
2571 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002572 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002573 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002574 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002575 return;
2576 }
Anders Carlsson77091822008-10-05 18:05:59 +00002577 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002578 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002579 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002580 return;
2581 }
Michael Han51d8c522013-01-24 16:46:58 +00002582 D->addAttr(::new (S.Context)
2583 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2584 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002585}
2586
Lubos Lunak1d3ce652013-07-20 15:05:36 +00002587static void handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2588 // Check the attribute arguments.
2589 if (!checkAttributeNumArgs(S, Attr, 0))
2590 return;
2591
2592 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
2593 RD->addAttr(::new (S.Context) WarnUnusedAttr(Attr.getRange(), S.Context));
2594 else
2595 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2596}
2597
Chandler Carruth1b03c872011-07-02 00:01:44 +00002598static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002599 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002600 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002601 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002602
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002603 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002604 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002605 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002606 return;
2607 }
Mike Stumpbf916502009-07-24 19:02:52 +00002608
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002609 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2610 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2611 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002612 return;
2613 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002614 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2615 if (MD->getResultType()->isVoidType()) {
2616 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2617 << Attr.getName() << 1;
2618 return;
2619 }
2620
Michael Han51d8c522013-01-24 16:46:58 +00002621 D->addAttr(::new (S.Context)
2622 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2623 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002624}
2625
Chandler Carruth1b03c872011-07-02 00:01:44 +00002626static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002627 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002628 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002629 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2630 << Attr.getName() << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002631 return;
2632 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002633
Chandler Carruth87c44602011-07-01 23:49:12 +00002634 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002635 if (isa<CXXRecordDecl>(D)) {
2636 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2637 return;
2638 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002639 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2640 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002641 return;
2642 }
2643
Chandler Carruth87c44602011-07-01 23:49:12 +00002644 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002645
Michael Han51d8c522013-01-24 16:46:58 +00002646 nd->addAttr(::new (S.Context)
2647 WeakAttr(Attr.getRange(), S.Context,
2648 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002649}
2650
Chandler Carruth1b03c872011-07-02 00:01:44 +00002651static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002652 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002653 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002654 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002655
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002656
2657 // weak_import only applies to variable & function declarations.
2658 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002659 if (!D->canBeWeakImported(isDef)) {
2660 if (isDef)
Reid Klecknerbeba3e82013-05-20 21:53:29 +00002661 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition)
2662 << "weak_import";
Douglas Gregordef86312011-03-23 13:27:51 +00002663 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002664 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002665 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002666 // Nothing to warn about here.
2667 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002668 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002669 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002670
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002671 return;
2672 }
2673
Michael Han51d8c522013-01-24 16:46:58 +00002674 D->addAttr(::new (S.Context)
2675 WeakImportAttr(Attr.getRange(), S.Context,
2676 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002677}
2678
Tanya Lattner0df579e2012-07-09 22:06:01 +00002679// Handles reqd_work_group_size and work_group_size_hint.
2680static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002681 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002682 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2683 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2684
Nate Begeman6f3d8382009-06-26 06:32:41 +00002685 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002686 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002687
2688 unsigned WGSize[3];
2689 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002690 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002691 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002692 if (E->isTypeDependent() || E->isValueDependent() ||
2693 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002694 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002695 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002696 return;
2697 }
2698 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2699 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002700
2701 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2702 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2703 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2704 if (!(A->getXDim() == WGSize[0] &&
2705 A->getYDim() == WGSize[1] &&
2706 A->getZDim() == WGSize[2])) {
2707 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2708 Attr.getName();
2709 }
2710 }
2711
2712 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2713 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2714 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2715 if (!(A->getXDim() == WGSize[0] &&
2716 A->getYDim() == WGSize[1] &&
2717 A->getZDim() == WGSize[2])) {
2718 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2719 Attr.getName();
2720 }
2721 }
2722
2723 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2724 D->addAttr(::new (S.Context)
2725 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002726 WGSize[0], WGSize[1], WGSize[2],
2727 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002728 else
2729 D->addAttr(::new (S.Context)
2730 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002731 WGSize[0], WGSize[1], WGSize[2],
2732 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002733}
2734
Joey Gouly37453b92013-03-08 09:42:32 +00002735static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) {
2736 assert(Attr.getKind() == AttributeList::AT_VecTypeHint);
2737
2738 // Attribute has 1 argument.
2739 if (!checkAttributeNumArgs(S, Attr, 1))
2740 return;
2741
2742 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg());
2743
2744 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2745 (ParmType->isBooleanType() ||
2746 !ParmType->isIntegralType(S.getASTContext()))) {
2747 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint)
2748 << ParmType;
2749 return;
2750 }
2751
2752 if (Attr.getKind() == AttributeList::AT_VecTypeHint &&
2753 D->hasAttr<VecTypeHintAttr>()) {
2754 VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>();
2755 if (A->getTypeHint() != ParmType) {
2756 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName();
2757 return;
2758 }
2759 }
2760
2761 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context,
2762 ParmType, Attr.getLoc()));
2763}
2764
Joey Gouly96cead52013-03-14 09:54:43 +00002765static void handleEndianAttr(Sema &S, Decl *D, const AttributeList &Attr) {
2766 if (!dyn_cast<VarDecl>(D))
2767 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) << "endian"
2768 << 9;
2769 StringRef EndianType = Attr.getParameterName()->getName();
2770 if (EndianType != "host" && EndianType != "device")
2771 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_endian) << EndianType;
2772}
2773
Rafael Espindola599f1b72012-05-13 03:25:18 +00002774SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002775 StringRef Name,
2776 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002777 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2778 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002779 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002780 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2781 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002782 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002783 }
Michael Han51d8c522013-01-24 16:46:58 +00002784 return ::new (Context) SectionAttr(Range, Context, Name,
2785 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002786}
2787
Chandler Carruth1b03c872011-07-02 00:01:44 +00002788static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002789 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002790 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002791 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002792
2793 // Make sure that there is a string literal as the sections's single
2794 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002795 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002796 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002797 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00002798 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
2799 << Attr.getName() << AANT_ArgumentString;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002800 return;
2801 }
Mike Stump1eb44332009-09-09 15:08:12 +00002802
Chris Lattner797c3c42009-08-10 19:03:04 +00002803 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002804 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002805 if (!Error.empty()) {
2806 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2807 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002808 return;
2809 }
Mike Stump1eb44332009-09-09 15:08:12 +00002810
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002811 // This attribute cannot be applied to local variables.
2812 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2813 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2814 return;
2815 }
Michael Han51d8c522013-01-24 16:46:58 +00002816
2817 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002818 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002819 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002820 if (NewAttr)
2821 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002822}
2823
Chris Lattner6b6b5372008-06-26 18:38:35 +00002824
Chandler Carruth1b03c872011-07-02 00:01:44 +00002825static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002826 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002827 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002828 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2829 << Attr.getName() << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002830 return;
2831 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002832
Chandler Carruth87c44602011-07-01 23:49:12 +00002833 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002834 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002835 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002836 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002837 D->addAttr(::new (S.Context)
2838 NoThrowAttr(Attr.getRange(), S.Context,
2839 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002840 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002841}
2842
Chandler Carruth1b03c872011-07-02 00:01:44 +00002843static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002844 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002845 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002846 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2847 << Attr.getName() << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002848 return;
2849 }
Mike Stumpbf916502009-07-24 19:02:52 +00002850
Chandler Carruth87c44602011-07-01 23:49:12 +00002851 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002852 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002853 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002854 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002855 D->addAttr(::new (S.Context)
2856 ConstAttr(Attr.getRange(), S.Context,
2857 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002858 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002859}
2860
Chandler Carruth1b03c872011-07-02 00:01:44 +00002861static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002862 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002863 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002864 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002865
Michael Han51d8c522013-01-24 16:46:58 +00002866 D->addAttr(::new (S.Context)
2867 PureAttr(Attr.getRange(), S.Context,
2868 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002869}
2870
Chandler Carruth1b03c872011-07-02 00:01:44 +00002871static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002872 if (!Attr.getParameterName()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002873 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2874 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002875 return;
2876 }
Mike Stumpbf916502009-07-24 19:02:52 +00002877
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002878 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00002879 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
2880 << Attr.getName() << 1;
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002881 return;
2882 }
Mike Stumpbf916502009-07-24 19:02:52 +00002883
Chandler Carruth87c44602011-07-01 23:49:12 +00002884 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002885
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002886 if (!VD || !VD->hasLocalStorage()) {
2887 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2888 return;
2889 }
Mike Stumpbf916502009-07-24 19:02:52 +00002890
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002891 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002892 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002893 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002894 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2895 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002896 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002897 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002898 Attr.getParameterName();
2899 return;
2900 }
Mike Stumpbf916502009-07-24 19:02:52 +00002901
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002902 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2903 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002904 S.Diag(Attr.getParameterLoc(),
2905 diag::err_attribute_cleanup_arg_not_function)
2906 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002907 return;
2908 }
2909
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002910 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002911 S.Diag(Attr.getParameterLoc(),
2912 diag::err_attribute_cleanup_func_must_take_one_arg)
2913 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002914 return;
2915 }
Mike Stumpbf916502009-07-24 19:02:52 +00002916
Anders Carlsson89941c12009-02-07 23:16:50 +00002917 // We're currently more strict than GCC about what function types we accept.
2918 // If this ever proves to be a problem it should be easy to fix.
2919 QualType Ty = S.Context.getPointerType(VD->getType());
2920 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002921 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2922 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002923 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002924 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2925 Attr.getParameterName() << ParamTy << Ty;
2926 return;
2927 }
Mike Stumpbf916502009-07-24 19:02:52 +00002928
Michael Han51d8c522013-01-24 16:46:58 +00002929 D->addAttr(::new (S.Context)
2930 CleanupAttr(Attr.getRange(), S.Context, FD,
2931 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002932 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002933 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002934}
2935
Mike Stumpbf916502009-07-24 19:02:52 +00002936/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002937/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002938static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002939 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002940 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002941
Chandler Carruth87c44602011-07-01 23:49:12 +00002942 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002943 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002944 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002945 return;
2946 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002947
Peter Collingbourne7a730022010-11-23 20:45:58 +00002948 Expr *IdxExpr = Attr.getArg(0);
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002949 uint64_t ArgIdx;
2950 if (!checkFunctionOrMethodArgumentIndex(S, D, Attr.getName()->getName(),
2951 Attr.getLoc(), 1, IdxExpr, ArgIdx))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002952 return;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002953
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002954 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002955 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002956
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002957 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2958 if (not_nsstring_type &&
2959 !isCFStringType(Ty, S.Context) &&
2960 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002961 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002962 // FIXME: Should highlight the actual expression that has the wrong type.
2963 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002964 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002965 << IdxExpr->getSourceRange();
2966 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002967 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002968 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002969 if (!isNSStringType(Ty, S.Context) &&
2970 !isCFStringType(Ty, S.Context) &&
2971 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002972 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002973 // FIXME: Should highlight the actual expression that has the wrong type.
2974 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002975 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002976 << IdxExpr->getSourceRange();
2977 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002978 }
2979
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002980 // We cannot use the ArgIdx returned from checkFunctionOrMethodArgumentIndex
2981 // because that has corrected for the implicit this parameter, and is zero-
2982 // based. The attribute expects what the user wrote explicitly.
2983 llvm::APSInt Val;
2984 IdxExpr->EvaluateAsInt(Val, S.Context);
2985
Michael Han51d8c522013-01-24 16:46:58 +00002986 D->addAttr(::new (S.Context)
Aaron Ballmanb3d7efe2013-07-30 00:48:57 +00002987 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00002988 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002989}
2990
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002991enum FormatAttrKind {
2992 CFStringFormat,
2993 NSStringFormat,
2994 StrftimeFormat,
2995 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002996 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002997 InvalidFormat
2998};
2999
3000/// getFormatAttrKind - Map from format attribute names to supported format
3001/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003002static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003003 return llvm::StringSwitch<FormatAttrKind>(Format)
3004 // Check for formats that get handled specially.
3005 .Case("NSString", NSStringFormat)
3006 .Case("CFString", CFStringFormat)
3007 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003008
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003009 // Otherwise, check for supported formats.
3010 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3011 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3012 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003013
Benjamin Kramerc51bb992012-05-16 12:44:25 +00003014 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3015 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003016}
3017
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003018/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003019/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003020static void handleInitPriorityAttr(Sema &S, Decl *D,
3021 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003022 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003023 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3024 return;
3025 }
3026
Chandler Carruth87c44602011-07-01 23:49:12 +00003027 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003028 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3029 Attr.setInvalid();
3030 return;
3031 }
Chandler Carruth87c44602011-07-01 23:49:12 +00003032 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003033 if (S.Context.getAsArrayType(T))
3034 T = S.Context.getBaseElementType(T);
3035 if (!T->getAs<RecordType>()) {
3036 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
3037 Attr.setInvalid();
3038 return;
3039 }
3040
Aaron Ballmanffa9d572013-07-18 18:01:48 +00003041 if (!checkAttributeNumArgs(S, Attr, 1)) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003042 Attr.setInvalid();
3043 return;
3044 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00003045 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00003046
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003047 llvm::APSInt priority(32);
3048 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
3049 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
3050 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3051 << "init_priority" << priorityExpr->getSourceRange();
3052 Attr.setInvalid();
3053 return;
3054 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00003055 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003056 if (prioritynum < 101 || prioritynum > 65535) {
3057 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
3058 << priorityExpr->getSourceRange();
3059 Attr.setInvalid();
3060 return;
3061 }
Michael Han51d8c522013-01-24 16:46:58 +00003062 D->addAttr(::new (S.Context)
3063 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3064 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003065}
3066
Rafael Espindola599f1b72012-05-13 03:25:18 +00003067FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003068 int FormatIdx, int FirstArg,
3069 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003070 // Check whether we already have an equivalent format attribute.
3071 for (specific_attr_iterator<FormatAttr>
3072 i = D->specific_attr_begin<FormatAttr>(),
3073 e = D->specific_attr_end<FormatAttr>();
3074 i != e ; ++i) {
3075 FormatAttr *f = *i;
3076 if (f->getType() == Format &&
3077 f->getFormatIdx() == FormatIdx &&
3078 f->getFirstArg() == FirstArg) {
3079 // If we don't have a valid location for this attribute, adopt the
3080 // location.
3081 if (f->getLocation().isInvalid())
3082 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003083 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003084 }
3085 }
3086
Michael Han51d8c522013-01-24 16:46:58 +00003087 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3088 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003089}
3090
Mike Stumpbf916502009-07-24 19:02:52 +00003091/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003092/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003093static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003094
Chris Lattner545dd342008-06-28 23:36:30 +00003095 if (!Attr.getParameterName()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003096 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003097 << Attr.getName() << 1 << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003098 return;
3099 }
3100
Chris Lattner545dd342008-06-28 23:36:30 +00003101 if (Attr.getNumArgs() != 2) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003102 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3103 << Attr.getName() << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003104 return;
3105 }
3106
Chandler Carruth87c44602011-07-01 23:49:12 +00003107 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003108 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003109 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003110 return;
3111 }
3112
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003113 // In C++ the implicit 'this' function parameter also counts, and they are
3114 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003115 bool HasImplicitThisParam = isInstanceMethod(D);
3116 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003117 unsigned FirstIdx = 1;
3118
Chris Lattner5f9e2722011-07-23 10:55:15 +00003119 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003120
3121 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003122 if (Format.startswith("__") && Format.endswith("__"))
3123 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003124
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003125 // Check for supported formats.
3126 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003127
3128 if (Kind == IgnoredFormat)
3129 return;
3130
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003131 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003132 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003133 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003134 return;
3135 }
3136
3137 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003138 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003139 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003140 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3141 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003142 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003143 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003144 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003145 return;
3146 }
3147
3148 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003149 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003150 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003151 return;
3152 }
3153
3154 // FIXME: Do we need to bounds check?
3155 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003156
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003157 if (HasImplicitThisParam) {
3158 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003159 S.Diag(Attr.getLoc(),
3160 diag::err_format_attribute_implicit_this_format_string)
3161 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003162 return;
3163 }
3164 ArgIdx--;
3165 }
Mike Stump1eb44332009-09-09 15:08:12 +00003166
Chris Lattner6b6b5372008-06-26 18:38:35 +00003167 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003168 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003169
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003170 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003171 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003172 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3173 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003174 return;
3175 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003176 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003177 // FIXME: do we need to check if the type is NSString*? What are the
3178 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003179 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003180 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003181 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3182 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003183 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003184 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003185 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003186 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003187 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003188 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3189 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003190 return;
3191 }
3192
3193 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003194 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003195 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003196 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3197 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00003198 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003199 << Attr.getName() << 3 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00003200 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003201 return;
3202 }
3203
3204 // check if the function is variadic if the 3rd argument non-zero
3205 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003206 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003207 ++NumArgs; // +1 for ...
3208 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003209 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003210 return;
3211 }
3212 }
3213
Chris Lattner3c73c412008-11-19 08:23:25 +00003214 // strftime requires FirstArg to be 0 because it doesn't read from any
3215 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003216 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003217 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003218 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3219 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003220 return;
3221 }
3222 // if 0 it disables parameter checking (to use with e.g. va_list)
3223 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003224 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003225 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003226 return;
3227 }
3228
Rafael Espindola599f1b72012-05-13 03:25:18 +00003229 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3230 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003231 FirstArg.getZExtValue(),
3232 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003233 if (NewAttr)
3234 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003235}
3236
Chandler Carruth1b03c872011-07-02 00:01:44 +00003237static void handleTransparentUnionAttr(Sema &S, Decl *D,
3238 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003239 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003240 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003241 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003242
Chris Lattner6b6b5372008-06-26 18:38:35 +00003243
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003244 // Try to find the underlying union declaration.
3245 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003246 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003247 if (TD && TD->getUnderlyingType()->isUnionType())
3248 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3249 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003250 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003251
3252 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003253 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003254 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003255 return;
3256 }
3257
John McCall5e1cdac2011-10-07 06:10:15 +00003258 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003259 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003260 diag::warn_transparent_union_attribute_not_definition);
3261 return;
3262 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003263
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003264 RecordDecl::field_iterator Field = RD->field_begin(),
3265 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003266 if (Field == FieldEnd) {
3267 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3268 return;
3269 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003270
David Blaikie581deb32012-06-06 20:45:41 +00003271 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003272 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003273 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003274 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003275 diag::warn_transparent_union_attribute_floating)
3276 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003277 return;
3278 }
3279
3280 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3281 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3282 for (; Field != FieldEnd; ++Field) {
3283 QualType FieldType = Field->getType();
3284 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3285 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3286 // Warn if we drop the attribute.
3287 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003288 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003289 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003290 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003291 diag::warn_transparent_union_attribute_field_size_align)
3292 << isSize << Field->getDeclName() << FieldBits;
3293 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003294 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003295 diag::note_transparent_union_first_field_size_align)
3296 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003297 return;
3298 }
3299 }
3300
Michael Han51d8c522013-01-24 16:46:58 +00003301 RD->addAttr(::new (S.Context)
3302 TransparentUnionAttr(Attr.getRange(), S.Context,
3303 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003304}
3305
Chandler Carruth1b03c872011-07-02 00:01:44 +00003306static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003307 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003308 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003309 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003310
Peter Collingbourne7a730022010-11-23 20:45:58 +00003311 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003312 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003313
Chris Lattner6b6b5372008-06-26 18:38:35 +00003314 // Make sure that there is a string literal as the annotation's single
3315 // argument.
3316 if (!SE) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00003317 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type)
3318 << Attr.getName() << AANT_ArgumentString;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003319 return;
3320 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003321
3322 // Don't duplicate annotations that are already set.
3323 for (specific_attr_iterator<AnnotateAttr>
3324 i = D->specific_attr_begin<AnnotateAttr>(),
3325 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3326 if ((*i)->getAnnotation() == SE->getString())
3327 return;
3328 }
Michael Han51d8c522013-01-24 16:46:58 +00003329
3330 D->addAttr(::new (S.Context)
3331 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3332 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003333}
3334
Chandler Carruth1b03c872011-07-02 00:01:44 +00003335static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003336 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003337 if (Attr.getNumArgs() > 1) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003338 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3339 << Attr.getName() << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003340 return;
3341 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003342
Richard Smithbe507b62013-02-01 08:12:08 +00003343 if (Attr.getNumArgs() == 0) {
3344 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3345 true, 0, Attr.getAttributeSpellingListIndex()));
3346 return;
3347 }
3348
Richard Smithf6565a92013-02-22 08:32:16 +00003349 Expr *E = Attr.getArg(0);
3350 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3351 S.Diag(Attr.getEllipsisLoc(),
3352 diag::err_pack_expansion_without_parameter_packs);
3353 return;
3354 }
3355
3356 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3357 return;
3358
3359 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(),
3360 Attr.isPackExpansion());
Richard Smithbe507b62013-02-01 08:12:08 +00003361}
3362
3363void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
Richard Smithf6565a92013-02-22 08:32:16 +00003364 unsigned SpellingListIndex, bool IsPackExpansion) {
Richard Smithbe507b62013-02-01 08:12:08 +00003365 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3366 SourceLocation AttrLoc = AttrRange.getBegin();
3367
Richard Smith4cd81c52013-01-29 09:02:09 +00003368 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003369 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003370 // C++11 [dcl.align]p1:
3371 // An alignment-specifier may be applied to a variable or to a class
3372 // data member, but it shall not be applied to a bit-field, a function
3373 // parameter, the formal parameter of a catch clause, or a variable
3374 // declared with the register storage class specifier. An
3375 // alignment-specifier may also be applied to the declaration of a class
3376 // or enumeration type.
3377 // C11 6.7.5/2:
3378 // An alignment attribute shall not be specified in a declaration of
3379 // a typedef, or a bit-field, or a function, or a parameter, or an
3380 // object declared with the register storage-class specifier.
3381 int DiagKind = -1;
3382 if (isa<ParmVarDecl>(D)) {
3383 DiagKind = 0;
3384 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3385 if (VD->getStorageClass() == SC_Register)
3386 DiagKind = 1;
3387 if (VD->isExceptionVariable())
3388 DiagKind = 2;
3389 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3390 if (FD->isBitField())
3391 DiagKind = 3;
3392 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003393 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3394 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003395 << (TmpAttr.isC11() ? ExpectedVariableOrField
3396 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003397 return;
3398 }
3399 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003400 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
Richard Smith671b3212013-02-22 04:55:39 +00003401 << TmpAttr.isC11() << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003402 return;
3403 }
3404 }
3405
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003406 if (E->isTypeDependent() || E->isValueDependent()) {
3407 // Save dependent expressions in the AST to be instantiated.
Richard Smithf6565a92013-02-22 08:32:16 +00003408 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3409 AA->setPackExpansion(IsPackExpansion);
3410 D->addAttr(AA);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003411 return;
3412 }
Michael Hana31f65b2013-02-01 01:19:17 +00003413
Sean Huntcf807c42010-08-18 23:23:40 +00003414 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003415 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003416 ExprResult ICE
3417 = VerifyIntegerConstantExpression(E, &Alignment,
3418 diag::err_aligned_attribute_argument_not_int,
3419 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003420 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003421 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003422
3423 // C++11 [dcl.align]p2:
3424 // -- if the constant expression evaluates to zero, the alignment
3425 // specifier shall have no effect
3426 // C11 6.7.5p6:
3427 // An alignment specification of zero has no effect.
3428 if (!(TmpAttr.isAlignas() && !Alignment) &&
3429 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003430 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3431 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003432 return;
3433 }
Michael Hana31f65b2013-02-01 01:19:17 +00003434
Richard Smithbe507b62013-02-01 08:12:08 +00003435 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003436 // We've already verified it's a power of 2, now let's make sure it's
3437 // 8192 or less.
3438 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003439 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003440 << E->getSourceRange();
3441 return;
3442 }
3443 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003444
Richard Smithf6565a92013-02-22 08:32:16 +00003445 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3446 ICE.take(), SpellingListIndex);
3447 AA->setPackExpansion(IsPackExpansion);
3448 D->addAttr(AA);
Sean Huntcf807c42010-08-18 23:23:40 +00003449}
3450
Michael Hana31f65b2013-02-01 01:19:17 +00003451void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
Richard Smithf6565a92013-02-22 08:32:16 +00003452 unsigned SpellingListIndex, bool IsPackExpansion) {
Sean Huntcf807c42010-08-18 23:23:40 +00003453 // FIXME: Cache the number on the Attr object if non-dependent?
3454 // FIXME: Perform checking of type validity
Richard Smithf6565a92013-02-22 08:32:16 +00003455 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3456 SpellingListIndex);
3457 AA->setPackExpansion(IsPackExpansion);
3458 D->addAttr(AA);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003459}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003460
Richard Smithbe507b62013-02-01 08:12:08 +00003461void Sema::CheckAlignasUnderalignment(Decl *D) {
3462 assert(D->hasAttrs() && "no attributes on decl");
3463
3464 QualType Ty;
3465 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3466 Ty = VD->getType();
3467 else
3468 Ty = Context.getTagDeclType(cast<TagDecl>(D));
Richard Smith4da09032013-02-22 09:21:42 +00003469 if (Ty->isDependentType() || Ty->isIncompleteType())
Richard Smithbe507b62013-02-01 08:12:08 +00003470 return;
3471
3472 // C++11 [dcl.align]p5, C11 6.7.5/4:
3473 // The combined effect of all alignment attributes in a declaration shall
3474 // not specify an alignment that is less strict than the alignment that
3475 // would otherwise be required for the entity being declared.
3476 AlignedAttr *AlignasAttr = 0;
3477 unsigned Align = 0;
3478 for (specific_attr_iterator<AlignedAttr>
3479 I = D->specific_attr_begin<AlignedAttr>(),
3480 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3481 if (I->isAlignmentDependent())
3482 return;
3483 if (I->isAlignas())
3484 AlignasAttr = *I;
3485 Align = std::max(Align, I->getAlignment(Context));
3486 }
3487
3488 if (AlignasAttr && Align) {
3489 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3490 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3491 if (NaturalAlign > RequestedAlign)
3492 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3493 << Ty << (unsigned)NaturalAlign.getQuantity();
3494 }
3495}
3496
Chandler Carruthd309c812011-07-01 23:49:16 +00003497/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003498/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003499///
Mike Stumpbf916502009-07-24 19:02:52 +00003500/// Despite what would be logical, the mode attribute is a decl attribute, not a
3501/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3502/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003503static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003504 // This attribute isn't documented, but glibc uses it. It changes
3505 // the width of an int or unsigned int to the specified size.
3506
3507 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003508 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003509 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003510
Chris Lattnerfbf13472008-06-27 22:18:37 +00003511
3512 IdentifierInfo *Name = Attr.getParameterName();
3513 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003514 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003515 return;
3516 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003517
Chris Lattner5f9e2722011-07-23 10:55:15 +00003518 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003519
3520 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003521 if (Str.startswith("__") && Str.endswith("__"))
3522 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003523
3524 unsigned DestWidth = 0;
3525 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003526 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003527 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003528 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003529 switch (Str[0]) {
3530 case 'Q': DestWidth = 8; break;
3531 case 'H': DestWidth = 16; break;
3532 case 'S': DestWidth = 32; break;
3533 case 'D': DestWidth = 64; break;
3534 case 'X': DestWidth = 96; break;
3535 case 'T': DestWidth = 128; break;
3536 }
3537 if (Str[1] == 'F') {
3538 IntegerMode = false;
3539 } else if (Str[1] == 'C') {
3540 IntegerMode = false;
3541 ComplexMode = true;
3542 } else if (Str[1] != 'I') {
3543 DestWidth = 0;
3544 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003545 break;
3546 case 4:
3547 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3548 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003549 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003550 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003551 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003552 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003553 break;
3554 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003555 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003556 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003557 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003558 case 11:
3559 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003560 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003561 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003562 }
3563
3564 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003565 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003566 OldTy = TD->getUnderlyingType();
3567 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3568 OldTy = VD->getType();
3569 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003570 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003571 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003572 return;
3573 }
Eli Friedman73397492009-03-03 06:41:03 +00003574
John McCall183700f2009-09-21 23:43:11 +00003575 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003576 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3577 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003578 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003579 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3580 } else if (ComplexMode) {
3581 if (!OldTy->isComplexType())
3582 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3583 } else {
3584 if (!OldTy->isFloatingType())
3585 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3586 }
3587
Mike Stump390b4cc2009-05-16 07:39:55 +00003588 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3589 // and friends, at least with glibc.
3590 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3591 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003592 // FIXME: Make sure floating-point mappings are accurate
3593 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003594 QualType NewTy;
3595 switch (DestWidth) {
3596 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003597 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003598 return;
3599 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003600 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003601 return;
3602 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003603 if (!IntegerMode) {
3604 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3605 return;
3606 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003607 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003608 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003609 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003610 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003611 break;
3612 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003613 if (!IntegerMode) {
3614 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3615 return;
3616 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003617 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003618 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003619 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003620 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003621 break;
3622 case 32:
3623 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003624 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003625 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003626 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003627 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003628 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003629 break;
3630 case 64:
3631 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003632 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003633 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003634 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003635 NewTy = S.Context.LongTy;
3636 else
3637 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003638 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003639 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003640 NewTy = S.Context.UnsignedLongTy;
3641 else
3642 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003643 break;
Eli Friedman73397492009-03-03 06:41:03 +00003644 case 96:
3645 NewTy = S.Context.LongDoubleTy;
3646 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003647 case 128:
Roman Divacky19645542013-07-03 21:08:41 +00003648 if (!IntegerMode && &S.Context.getTargetInfo().getLongDoubleFormat() !=
3649 &llvm::APFloat::PPCDoubleDouble) {
Eli Friedmanf98aba32009-02-13 02:31:07 +00003650 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3651 return;
3652 }
Roman Divackyf0d14cb2013-07-03 20:48:06 +00003653 if (IntegerMode) {
3654 if (OldTy->isSignedIntegerType())
3655 NewTy = S.Context.Int128Ty;
3656 else
3657 NewTy = S.Context.UnsignedInt128Ty;
3658 } else
3659 NewTy = S.Context.LongDoubleTy;
Eli Friedman73397492009-03-03 06:41:03 +00003660 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003661 }
3662
Eli Friedman73397492009-03-03 06:41:03 +00003663 if (ComplexMode) {
3664 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003665 }
3666
3667 // Install the new type.
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003668 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
3669 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
3670 else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003671 cast<ValueDecl>(D)->setType(NewTy);
Enea Zaffanellac2fa6b62013-06-20 12:46:19 +00003672
3673 D->addAttr(::new (S.Context)
3674 ModeAttr(Attr.getRange(), S.Context, Name,
3675 Attr.getAttributeSpellingListIndex()));
Chris Lattnerfbf13472008-06-27 22:18:37 +00003676}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003677
Chandler Carruth1b03c872011-07-02 00:01:44 +00003678static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003679 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003680 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003681 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003682
Nick Lewycky78d1a102012-07-24 01:40:49 +00003683 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3684 if (!VD->hasGlobalStorage())
3685 S.Diag(Attr.getLoc(),
3686 diag::warn_attribute_requires_functions_or_static_globals)
3687 << Attr.getName();
3688 } else if (!isFunctionOrMethod(D)) {
3689 S.Diag(Attr.getLoc(),
3690 diag::warn_attribute_requires_functions_or_static_globals)
3691 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003692 return;
3693 }
Mike Stumpbf916502009-07-24 19:02:52 +00003694
Michael Han51d8c522013-01-24 16:46:58 +00003695 D->addAttr(::new (S.Context)
3696 NoDebugAttr(Attr.getRange(), S.Context,
3697 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003698}
3699
Chandler Carruth1b03c872011-07-02 00:01:44 +00003700static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003701 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003702 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003703 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003704
Mike Stumpbf916502009-07-24 19:02:52 +00003705
Chandler Carruth87c44602011-07-01 23:49:12 +00003706 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003707 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003708 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003709 return;
3710 }
Mike Stumpbf916502009-07-24 19:02:52 +00003711
Michael Han51d8c522013-01-24 16:46:58 +00003712 D->addAttr(::new (S.Context)
3713 NoInlineAttr(Attr.getRange(), S.Context,
3714 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003715}
3716
Chandler Carruth1b03c872011-07-02 00:01:44 +00003717static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3718 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003719 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003720 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003721 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003722
Chris Lattner7255a2d2010-06-22 00:03:40 +00003723
Chandler Carruth87c44602011-07-01 23:49:12 +00003724 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003725 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003726 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003727 return;
3728 }
3729
Michael Han51d8c522013-01-24 16:46:58 +00003730 D->addAttr(::new (S.Context)
3731 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3732 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003733}
3734
Chandler Carruth1b03c872011-07-02 00:01:44 +00003735static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003736 if (S.LangOpts.CUDA) {
3737 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003738 if (Attr.hasParameterOrArguments()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003739 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3740 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003741 return;
3742 }
3743
Chandler Carruth87c44602011-07-01 23:49:12 +00003744 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003745 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003746 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003747 return;
3748 }
3749
Michael Han51d8c522013-01-24 16:46:58 +00003750 D->addAttr(::new (S.Context)
3751 CUDAConstantAttr(Attr.getRange(), S.Context,
3752 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003753 } else {
3754 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3755 }
3756}
3757
Chandler Carruth1b03c872011-07-02 00:01:44 +00003758static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003759 if (S.LangOpts.CUDA) {
3760 // check the attribute arguments.
3761 if (Attr.getNumArgs() != 0) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003762 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3763 << Attr.getName() << 0;
Peter Collingbourneced76712010-12-01 03:15:31 +00003764 return;
3765 }
3766
Chandler Carruth87c44602011-07-01 23:49:12 +00003767 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003768 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003769 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003770 return;
3771 }
3772
Michael Han51d8c522013-01-24 16:46:58 +00003773 D->addAttr(::new (S.Context)
3774 CUDADeviceAttr(Attr.getRange(), S.Context,
3775 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003776 } else {
3777 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3778 }
3779}
3780
Chandler Carruth1b03c872011-07-02 00:01:44 +00003781static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003782 if (S.LangOpts.CUDA) {
3783 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003784 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003785 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003786
Chandler Carruth87c44602011-07-01 23:49:12 +00003787 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003788 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003789 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003790 return;
3791 }
3792
Chandler Carruth87c44602011-07-01 23:49:12 +00003793 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003794 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003795 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003796 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003797 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3798 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003799 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003800 "void");
3801 } else {
3802 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3803 << FD->getType();
3804 }
3805 return;
3806 }
3807
Michael Han51d8c522013-01-24 16:46:58 +00003808 D->addAttr(::new (S.Context)
3809 CUDAGlobalAttr(Attr.getRange(), S.Context,
3810 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003811 } else {
3812 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3813 }
3814}
3815
Chandler Carruth1b03c872011-07-02 00:01:44 +00003816static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003817 if (S.LangOpts.CUDA) {
3818 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003819 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003820 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003821
Peter Collingbourneced76712010-12-01 03:15:31 +00003822
Chandler Carruth87c44602011-07-01 23:49:12 +00003823 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003824 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003825 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003826 return;
3827 }
3828
Michael Han51d8c522013-01-24 16:46:58 +00003829 D->addAttr(::new (S.Context)
3830 CUDAHostAttr(Attr.getRange(), S.Context,
3831 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003832 } else {
3833 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3834 }
3835}
3836
Chandler Carruth1b03c872011-07-02 00:01:44 +00003837static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003838 if (S.LangOpts.CUDA) {
3839 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003840 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003841 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003842
Chandler Carruth87c44602011-07-01 23:49:12 +00003843 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003844 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003845 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003846 return;
3847 }
3848
Michael Han51d8c522013-01-24 16:46:58 +00003849 D->addAttr(::new (S.Context)
3850 CUDASharedAttr(Attr.getRange(), S.Context,
3851 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003852 } else {
3853 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3854 }
3855}
3856
Chandler Carruth1b03c872011-07-02 00:01:44 +00003857static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003858 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003859 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003860 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003861
Chandler Carruth87c44602011-07-01 23:49:12 +00003862 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003863 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003864 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003865 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003866 return;
3867 }
Mike Stumpbf916502009-07-24 19:02:52 +00003868
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003869 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003870 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003871 return;
3872 }
Mike Stumpbf916502009-07-24 19:02:52 +00003873
Michael Han51d8c522013-01-24 16:46:58 +00003874 D->addAttr(::new (S.Context)
3875 GNUInlineAttr(Attr.getRange(), S.Context,
3876 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003877}
3878
Chandler Carruth1b03c872011-07-02 00:01:44 +00003879static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003880 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003881
Aaron Ballmanfff32482012-12-09 17:45:41 +00003882 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003883 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003884 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3885 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003886 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003887 return;
3888
Chandler Carruth87c44602011-07-01 23:49:12 +00003889 if (!isa<ObjCMethodDecl>(D)) {
3890 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3891 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003892 return;
3893 }
3894
Chandler Carruth87c44602011-07-01 23:49:12 +00003895 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003896 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003897 D->addAttr(::new (S.Context)
3898 FastCallAttr(Attr.getRange(), S.Context,
3899 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003900 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003901 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003902 D->addAttr(::new (S.Context)
3903 StdCallAttr(Attr.getRange(), S.Context,
3904 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003905 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003906 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003907 D->addAttr(::new (S.Context)
3908 ThisCallAttr(Attr.getRange(), S.Context,
3909 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003910 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003911 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003912 D->addAttr(::new (S.Context)
3913 CDeclAttr(Attr.getRange(), S.Context,
3914 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003915 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003916 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003917 D->addAttr(::new (S.Context)
3918 PascalAttr(Attr.getRange(), S.Context,
3919 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003920 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003921 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003922 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003923 switch (CC) {
3924 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003925 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003926 break;
3927 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003928 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003929 break;
3930 default:
3931 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003932 }
3933
Michael Han51d8c522013-01-24 16:46:58 +00003934 D->addAttr(::new (S.Context)
3935 PcsAttr(Attr.getRange(), S.Context, PCS,
3936 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003937 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003938 }
Derek Schuff263366f2012-10-16 22:30:41 +00003939 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003940 D->addAttr(::new (S.Context)
3941 PnaclCallAttr(Attr.getRange(), S.Context,
3942 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003943 return;
Guy Benyei38980082012-12-25 08:53:55 +00003944 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003945 D->addAttr(::new (S.Context)
3946 IntelOclBiccAttr(Attr.getRange(), S.Context,
3947 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003948 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003949
Abramo Bagnarae215f722010-04-30 13:10:51 +00003950 default:
3951 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003952 }
3953}
3954
Chandler Carruth1b03c872011-07-02 00:01:44 +00003955static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003956 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003957 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003958}
3959
Guy Benyei1db70402013-03-24 13:58:12 +00003960static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){
3961 assert(!Attr.isInvalid());
3962
3963 Expr *E = Attr.getArg(0);
3964 llvm::APSInt ArgNum(32);
3965 if (E->isTypeDependent() || E->isValueDependent() ||
3966 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
3967 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
3968 << Attr.getName()->getName() << E->getSourceRange();
3969 return;
3970 }
3971
3972 D->addAttr(::new (S.Context) OpenCLImageAccessAttr(
3973 Attr.getRange(), S.Context, ArgNum.getZExtValue()));
3974}
3975
Aaron Ballmanfff32482012-12-09 17:45:41 +00003976bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3977 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003978 if (attr.isInvalid())
3979 return true;
3980
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003981 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3982 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
Aaron Ballmanbaec7782013-07-23 19:30:11 +00003983 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments)
3984 << attr.getName() << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00003985 attr.setInvalid();
3986 return true;
3987 }
3988
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003989 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3990 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003991 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003992 case AttributeList::AT_CDecl: CC = CC_C; break;
3993 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3994 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3995 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3996 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3997 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003998 Expr *Arg = attr.getArg(0);
3999 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004000 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004001 Diag(attr.getLoc(), diag::err_attribute_argument_type) << attr.getName()
4002 << AANT_ArgumentString;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004003 attr.setInvalid();
4004 return true;
4005 }
4006
Chris Lattner5f9e2722011-07-23 10:55:15 +00004007 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004008 if (StrRef == "aapcs") {
4009 CC = CC_AAPCS;
4010 break;
4011 } else if (StrRef == "aapcs-vfp") {
4012 CC = CC_AAPCS_VFP;
4013 break;
4014 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00004015
4016 attr.setInvalid();
4017 Diag(attr.getLoc(), diag::err_invalid_pcs);
4018 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004019 }
Derek Schuff263366f2012-10-16 22:30:41 +00004020 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00004021 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00004022 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00004023 }
4024
Aaron Ballman82bfa192012-10-02 14:26:08 +00004025 const TargetInfo &TI = Context.getTargetInfo();
4026 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
4027 if (A == TargetInfo::CCCR_Warning) {
4028 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00004029
4030 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
4031 if (FD)
4032 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
4033 TargetInfo::CCMT_NonMember;
4034 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00004035 }
4036
John McCall711c52b2011-01-05 12:14:39 +00004037 return false;
4038}
4039
Chandler Carruth1b03c872011-07-02 00:01:44 +00004040static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004041 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00004042
4043 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00004044 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00004045 return;
4046
Chandler Carruth87c44602011-07-01 23:49:12 +00004047 if (!isa<ObjCMethodDecl>(D)) {
4048 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
4049 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004050 return;
4051 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004052
Michael Han51d8c522013-01-24 16:46:58 +00004053 D->addAttr(::new (S.Context)
4054 RegparmAttr(Attr.getRange(), S.Context, numParams,
4055 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00004056}
4057
4058/// Checks a regparm attribute, returning true if it is ill-formed and
4059/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00004060bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
4061 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00004062 return true;
4063
Aaron Ballmanffa9d572013-07-18 18:01:48 +00004064 if (!checkAttributeNumArgs(*this, Attr, 1)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004065 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004066 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004067 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004068
Chandler Carruth87c44602011-07-01 23:49:12 +00004069 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004070 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00004071 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00004072 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004073 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004074 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004075 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004076 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004077 }
4078
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004079 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004080 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004081 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004082 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004083 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004084 }
4085
John McCall711c52b2011-01-05 12:14:39 +00004086 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004087 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004088 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00004089 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00004090 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00004091 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00004092 }
4093
John McCall711c52b2011-01-05 12:14:39 +00004094 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004095}
4096
Chandler Carruth1b03c872011-07-02 00:01:44 +00004097static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004098 if (S.LangOpts.CUDA) {
4099 // check the attribute arguments.
4100 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004101 // FIXME: 0 is not okay.
4102 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004103 return;
4104 }
4105
Chandler Carruth87c44602011-07-01 23:49:12 +00004106 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004107 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004108 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004109 return;
4110 }
4111
4112 Expr *MaxThreadsExpr = Attr.getArg(0);
4113 llvm::APSInt MaxThreads(32);
4114 if (MaxThreadsExpr->isTypeDependent() ||
4115 MaxThreadsExpr->isValueDependent() ||
4116 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004117 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004118 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004119 << MaxThreadsExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004120 return;
4121 }
4122
4123 llvm::APSInt MinBlocks(32);
4124 if (Attr.getNumArgs() > 1) {
4125 Expr *MinBlocksExpr = Attr.getArg(1);
4126 if (MinBlocksExpr->isTypeDependent() ||
4127 MinBlocksExpr->isValueDependent() ||
4128 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004129 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004130 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant
Aaron Ballman437d43f2013-07-23 14:03:57 +00004131 << MinBlocksExpr->getSourceRange();
Peter Collingbourne7b381982010-12-12 23:03:07 +00004132 return;
4133 }
4134 }
4135
Michael Han51d8c522013-01-24 16:46:58 +00004136 D->addAttr(::new (S.Context)
4137 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4138 MaxThreads.getZExtValue(),
4139 MinBlocks.getZExtValue(),
4140 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004141 } else {
4142 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4143 }
4144}
4145
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004146static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4147 const AttributeList &Attr) {
4148 StringRef AttrName = Attr.getName()->getName();
4149 if (!Attr.getParameterName()) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004150 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004151 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004152 return;
4153 }
4154
4155 if (Attr.getNumArgs() != 2) {
4156 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
Aaron Ballmanbaec7782013-07-23 19:30:11 +00004157 << Attr.getName() << /* required args = */ 3;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004158 return;
4159 }
4160
4161 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4162
4163 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4164 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4165 << Attr.getName() << ExpectedFunctionOrMethod;
4166 return;
4167 }
4168
4169 uint64_t ArgumentIdx;
4170 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4171 Attr.getLoc(), 2,
4172 Attr.getArg(0), ArgumentIdx))
4173 return;
4174
4175 uint64_t TypeTagIdx;
4176 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4177 Attr.getLoc(), 3,
4178 Attr.getArg(1), TypeTagIdx))
4179 return;
4180
4181 bool IsPointer = (AttrName == "pointer_with_type_tag");
4182 if (IsPointer) {
4183 // Ensure that buffer has a pointer type.
4184 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4185 if (!BufferTy->isPointerType()) {
4186 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004187 << Attr.getName();
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004188 }
4189 }
4190
Michael Han51d8c522013-01-24 16:46:58 +00004191 D->addAttr(::new (S.Context)
4192 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4193 ArgumentIdx, TypeTagIdx, IsPointer,
4194 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004195}
4196
4197static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4198 const AttributeList &Attr) {
4199 IdentifierInfo *PointerKind = Attr.getParameterName();
4200 if (!PointerKind) {
Aaron Ballman437d43f2013-07-23 14:03:57 +00004201 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type)
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004202 << Attr.getName() << 1 << AANT_ArgumentIdentifier;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004203 return;
4204 }
4205
4206 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4207
Michael Han51d8c522013-01-24 16:46:58 +00004208 D->addAttr(::new (S.Context)
4209 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4210 MatchingCType,
4211 Attr.getLayoutCompatible(),
4212 Attr.getMustBeNull(),
4213 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004214}
4215
Chris Lattner0744e5f2008-06-29 00:23:49 +00004216//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004217// Checker-specific attribute handlers.
4218//===----------------------------------------------------------------------===//
4219
John McCallc7ad3812011-01-25 03:31:58 +00004220static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004221 return type->isDependentType() ||
4222 type->isObjCObjectPointerType() ||
4223 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004224}
4225static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004226 return type->isDependentType() ||
4227 type->isPointerType() ||
4228 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004229}
4230
Chandler Carruth1b03c872011-07-02 00:01:44 +00004231static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004232 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004233 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004234 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004235 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004236 return;
4237 }
4238
4239 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004240 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004241 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4242 cf = false;
4243 } else {
4244 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4245 cf = true;
4246 }
4247
4248 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004249 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004250 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004251 return;
4252 }
4253
4254 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004255 param->addAttr(::new (S.Context)
4256 CFConsumedAttr(Attr.getRange(), S.Context,
4257 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004258 else
Michael Han51d8c522013-01-24 16:46:58 +00004259 param->addAttr(::new (S.Context)
4260 NSConsumedAttr(Attr.getRange(), S.Context,
4261 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004262}
4263
Chandler Carruth1b03c872011-07-02 00:01:44 +00004264static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4265 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004266 if (!isa<ObjCMethodDecl>(D)) {
4267 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004268 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004269 return;
4270 }
4271
Michael Han51d8c522013-01-24 16:46:58 +00004272 D->addAttr(::new (S.Context)
4273 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4274 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004275}
4276
Chandler Carruth1b03c872011-07-02 00:01:44 +00004277static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4278 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004279
John McCallc7ad3812011-01-25 03:31:58 +00004280 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004281
Chandler Carruth87c44602011-07-01 23:49:12 +00004282 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004283 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004284 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004285 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004286 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004287 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4288 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004289 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004290 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004291 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004292 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004293 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004294 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004295 return;
4296 }
Mike Stumpbf916502009-07-24 19:02:52 +00004297
John McCallc7ad3812011-01-25 03:31:58 +00004298 bool typeOK;
4299 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004300 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004301 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004302 case AttributeList::AT_NSReturnsAutoreleased:
4303 case AttributeList::AT_NSReturnsRetained:
4304 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004305 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4306 cf = false;
4307 break;
4308
Sean Hunt8e083e72012-06-19 23:57:03 +00004309 case AttributeList::AT_CFReturnsRetained:
4310 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004311 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4312 cf = true;
4313 break;
4314 }
4315
4316 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004317 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004318 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004319 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004320 }
Mike Stumpbf916502009-07-24 19:02:52 +00004321
Chandler Carruth87c44602011-07-01 23:49:12 +00004322 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004323 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004324 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004325 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004326 D->addAttr(::new (S.Context)
4327 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4328 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004329 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004330 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004331 D->addAttr(::new (S.Context)
4332 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4333 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004334 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004335 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004336 D->addAttr(::new (S.Context)
4337 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4338 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004339 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004340 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004341 D->addAttr(::new (S.Context)
4342 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4343 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004344 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004345 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004346 D->addAttr(::new (S.Context)
4347 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4348 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004349 return;
4350 };
4351}
4352
John McCalldc7c5ad2011-07-22 08:53:00 +00004353static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4354 const AttributeList &attr) {
4355 SourceLocation loc = attr.getLoc();
4356
4357 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4358
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004359 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004360 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004361 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004362 return;
4363 }
4364
4365 // Check that the method returns a normal pointer.
4366 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004367
4368 if (!resultType->isReferenceType() &&
4369 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004370 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4371 << SourceRange(loc)
4372 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4373
4374 // Drop the attribute.
4375 return;
4376 }
4377
Michael Han51d8c522013-01-24 16:46:58 +00004378 method->addAttr(::new (S.Context)
4379 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4380 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004381}
4382
Fariborz Jahanian84101132012-09-07 23:46:23 +00004383static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4384 const AttributeList &attr) {
4385 SourceLocation loc = attr.getLoc();
4386 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4387
4388 if (!method) {
4389 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4390 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4391 return;
4392 }
4393 DeclContext *DC = method->getDeclContext();
4394 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4395 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4396 << attr.getName() << 0;
4397 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4398 return;
4399 }
4400 if (method->getMethodFamily() == OMF_dealloc) {
4401 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4402 << attr.getName() << 1;
4403 return;
4404 }
4405
Michael Han51d8c522013-01-24 16:46:58 +00004406 method->addAttr(::new (S.Context)
4407 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4408 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004409}
4410
John McCall8dfac0b2011-09-30 05:12:12 +00004411/// Handle cf_audited_transfer and cf_unknown_transfer.
4412static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4413 if (!isa<FunctionDecl>(D)) {
4414 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004415 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004416 return;
4417 }
4418
Sean Hunt8e083e72012-06-19 23:57:03 +00004419 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004420
4421 // Check whether there's a conflicting attribute already present.
4422 Attr *Existing;
4423 if (IsAudited) {
4424 Existing = D->getAttr<CFUnknownTransferAttr>();
4425 } else {
4426 Existing = D->getAttr<CFAuditedTransferAttr>();
4427 }
4428 if (Existing) {
4429 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4430 << A.getName()
4431 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4432 << A.getRange() << Existing->getRange();
4433 return;
4434 }
4435
4436 // All clear; add the attribute.
4437 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004438 D->addAttr(::new (S.Context)
4439 CFAuditedTransferAttr(A.getRange(), S.Context,
4440 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004441 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004442 D->addAttr(::new (S.Context)
4443 CFUnknownTransferAttr(A.getRange(), S.Context,
4444 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004445 }
4446}
4447
John McCallfe98da02011-09-29 07:17:38 +00004448static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4449 const AttributeList &Attr) {
4450 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4451 if (!RD || RD->isUnion()) {
4452 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004453 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004454 }
4455
4456 IdentifierInfo *ParmName = Attr.getParameterName();
4457
4458 // In Objective-C, verify that the type names an Objective-C type.
4459 // We don't want to check this outside of ObjC because people sometimes
4460 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004461 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004462 // Check for an existing type with this name.
4463 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4464 Sema::LookupOrdinaryName);
4465 if (S.LookupName(R, Sc)) {
4466 NamedDecl *Target = R.getFoundDecl();
4467 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4468 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4469 S.Diag(Target->getLocStart(), diag::note_declared_at);
4470 }
4471 }
4472 }
4473
Michael Han51d8c522013-01-24 16:46:58 +00004474 D->addAttr(::new (S.Context)
4475 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4476 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004477}
4478
Chandler Carruth1b03c872011-07-02 00:01:44 +00004479static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4480 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004481 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004482
Chandler Carruth87c44602011-07-01 23:49:12 +00004483 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004484 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004485}
4486
Chandler Carruth1b03c872011-07-02 00:01:44 +00004487static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4488 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004489 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004490 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004491 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004492 return;
4493 }
4494
Chandler Carruth87c44602011-07-01 23:49:12 +00004495 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004496 QualType type = vd->getType();
4497
4498 if (!type->isDependentType() &&
4499 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004500 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004501 << type;
4502 return;
4503 }
4504
4505 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4506
4507 // If we have no lifetime yet, check the lifetime we're presumably
4508 // going to infer.
4509 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4510 lifetime = type->getObjCARCImplicitLifetime();
4511
4512 switch (lifetime) {
4513 case Qualifiers::OCL_None:
4514 assert(type->isDependentType() &&
4515 "didn't infer lifetime for non-dependent type?");
4516 break;
4517
4518 case Qualifiers::OCL_Weak: // meaningful
4519 case Qualifiers::OCL_Strong: // meaningful
4520 break;
4521
4522 case Qualifiers::OCL_ExplicitNone:
4523 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004524 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004525 << (lifetime == Qualifiers::OCL_Autoreleasing);
4526 break;
4527 }
4528
Chandler Carruth87c44602011-07-01 23:49:12 +00004529 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004530 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4531 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004532}
4533
Francois Pichet11542142010-12-19 06:50:37 +00004534//===----------------------------------------------------------------------===//
4535// Microsoft specific attribute handlers.
4536//===----------------------------------------------------------------------===//
4537
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004538// Check if MS extensions or some other language extensions are enabled. If
4539// not, issue a diagnostic that the given attribute is unused.
4540static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr,
4541 bool OtherExtension = false) {
4542 if (S.LangOpts.MicrosoftExt || OtherExtension)
4543 return true;
4544 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4545 return false;
4546}
4547
Chandler Carruth1b03c872011-07-02 00:01:44 +00004548static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004549 if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland))
4550 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004551
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004552 // check the attribute arguments.
4553 if (!checkAttributeNumArgs(S, Attr, 1))
4554 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004555
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004556 Expr *Arg = Attr.getArg(0);
4557 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
4558 if (!Str || !Str->isAscii()) {
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00004559 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
4560 << Attr.getName() << AANT_ArgumentString;
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004561 return;
4562 }
Francois Pichetd3d3be92010-12-20 01:41:49 +00004563
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004564 StringRef StrRef = Str->getString();
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004565
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004566 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4567 StrRef.back() == '}';
Francois Pichetd3d3be92010-12-20 01:41:49 +00004568
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004569 // Validate GUID length.
4570 if (IsCurly && StrRef.size() != 38) {
4571 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4572 return;
4573 }
4574 if (!IsCurly && StrRef.size() != 36) {
4575 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4576 return;
4577 }
Anders Carlssonf89e0422011-01-23 21:07:30 +00004578
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004579 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
4580 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
4581 StringRef::iterator I = StrRef.begin();
4582 if (IsCurly) // Skip the optional '{'
4583 ++I;
4584
4585 for (int i = 0; i < 36; ++i) {
4586 if (i == 8 || i == 13 || i == 18 || i == 23) {
4587 if (*I != '-') {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004588 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4589 return;
4590 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004591 } else if (!isHexDigit(*I)) {
4592 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4593 return;
Francois Pichetd3d3be92010-12-20 01:41:49 +00004594 }
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004595 I++;
4596 }
Francois Pichet11542142010-12-19 06:50:37 +00004597
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004598 D->addAttr(::new (S.Context)
4599 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4600 Attr.getAttributeSpellingListIndex()));
Charles Davisf0122fe2010-02-16 18:27:26 +00004601}
4602
John McCallc052dbb2012-05-22 21:28:12 +00004603static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004604 if (!checkMicrosoftExt(S, Attr))
Nico Weber7b89ab72012-11-07 21:31:36 +00004605 return;
Nico Weber7b89ab72012-11-07 21:31:36 +00004606
4607 AttributeList::Kind Kind = Attr.getKind();
4608 if (Kind == AttributeList::AT_SingleInheritance)
4609 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004610 ::new (S.Context)
4611 SingleInheritanceAttr(Attr.getRange(), S.Context,
4612 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004613 else if (Kind == AttributeList::AT_MultipleInheritance)
4614 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004615 ::new (S.Context)
4616 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4617 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004618 else if (Kind == AttributeList::AT_VirtualInheritance)
4619 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004620 ::new (S.Context)
4621 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4622 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004623}
4624
4625static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004626 if (!checkMicrosoftExt(S, Attr))
4627 return;
4628
4629 AttributeList::Kind Kind = Attr.getKind();
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004630 if (Kind == AttributeList::AT_Win64)
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004631 D->addAttr(
4632 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4633 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004634}
4635
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004636static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Reid Kleckner8fbda8e2013-05-17 14:04:52 +00004637 if (!checkMicrosoftExt(S, Attr))
4638 return;
4639 D->addAttr(::new (S.Context)
4640 ForceInlineAttr(Attr.getRange(), S.Context,
4641 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004642}
4643
Reid Klecknera7225342013-05-20 14:02:37 +00004644static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4645 if (!checkMicrosoftExt(S, Attr))
4646 return;
4647 // Check linkage after possibly merging declaratinos. See
4648 // checkAttributesAfterMerging().
4649 D->addAttr(::new (S.Context)
4650 SelectAnyAttr(Attr.getRange(), S.Context,
4651 Attr.getAttributeSpellingListIndex()));
4652}
4653
Ted Kremenekb71368d2009-05-09 02:44:38 +00004654//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004655// Top Level Sema Entry Points
4656//===----------------------------------------------------------------------===//
4657
Chandler Carruth1b03c872011-07-02 00:01:44 +00004658static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4659 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004660 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004661 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4662 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4663 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004664 default:
4665 break;
4666 }
4667}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004668
Chandler Carruth1b03c872011-07-02 00:01:44 +00004669static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4670 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004671 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004672 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4673 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4674 case AttributeList::AT_IBOutletCollection:
4675 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004676 case AttributeList::AT_AddressSpace:
Sean Hunt8e083e72012-06-19 23:57:03 +00004677 case AttributeList::AT_ObjCGC:
4678 case AttributeList::AT_VectorSize:
4679 case AttributeList::AT_NeonVectorType:
4680 case AttributeList::AT_NeonPolyVectorType:
Aaron Ballmanaa9df092013-05-22 23:25:32 +00004681 case AttributeList::AT_Ptr32:
4682 case AttributeList::AT_Ptr64:
4683 case AttributeList::AT_SPtr:
4684 case AttributeList::AT_UPtr:
Mike Stumpbf916502009-07-24 19:02:52 +00004685 // Ignore these, these are type attributes, handled by
4686 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004687 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004688 case AttributeList::AT_CUDADevice:
4689 case AttributeList::AT_CUDAHost:
4690 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004691 // Ignore, this is a non-inheritable attribute, handled
4692 // by ProcessNonInheritableDeclAttr.
4693 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004694 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4695 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4696 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4697 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004698 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004699 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004700 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004701 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004702 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4703 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4704 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004705 handleDependencyAttr(S, scope, D, Attr);
4706 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004707 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4708 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4709 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004710 case AttributeList::AT_CXX11NoReturn:
4711 handleCXX11NoReturnAttr(S, D, Attr);
4712 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004713 case AttributeList::AT_Deprecated:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004714 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004715 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004716 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4717 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004718 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004719 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004720 case AttributeList::AT_MinSize:
4721 handleMinSizeAttr(S, D, Attr);
4722 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004723 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4724 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4725 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4726 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4727 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004728 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004729 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004730 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4731 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4732 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4733 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4734 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004735 case AttributeList::AT_ownership_returns:
4736 case AttributeList::AT_ownership_takes:
4737 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004738 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004739 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4740 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4741 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4742 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4743 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4744 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4745 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004746
Sean Hunt8e083e72012-06-19 23:57:03 +00004747 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004748 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004749 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004750 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004751
Sean Hunt8e083e72012-06-19 23:57:03 +00004752 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004753 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4754
Fariborz Jahanian84101132012-09-07 23:46:23 +00004755 case AttributeList::AT_ObjCRequiresSuper:
4756 handleObjCRequiresSuperAttr(S, D, Attr); break;
4757
Sean Hunt8e083e72012-06-19 23:57:03 +00004758 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004759 handleNSBridgedAttr(S, scope, D, Attr); break;
4760
Sean Hunt8e083e72012-06-19 23:57:03 +00004761 case AttributeList::AT_CFAuditedTransfer:
4762 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004763 handleCFTransferAttr(S, D, Attr); break;
4764
Ted Kremenekb71368d2009-05-09 02:44:38 +00004765 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004766 case AttributeList::AT_CFConsumed:
4767 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4768 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004769 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004770
Sean Hunt8e083e72012-06-19 23:57:03 +00004771 case AttributeList::AT_NSReturnsAutoreleased:
4772 case AttributeList::AT_NSReturnsNotRetained:
4773 case AttributeList::AT_CFReturnsNotRetained:
4774 case AttributeList::AT_NSReturnsRetained:
4775 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004776 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004777
Tanya Lattner0df579e2012-07-09 22:06:01 +00004778 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004779 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004780 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004781
Joey Gouly37453b92013-03-08 09:42:32 +00004782 case AttributeList::AT_VecTypeHint:
4783 handleVecTypeHint(S, D, Attr); break;
4784
Joey Gouly96cead52013-03-14 09:54:43 +00004785 case AttributeList::AT_Endian:
4786 handleEndianAttr(S, D, Attr);
4787 break;
4788
Sean Hunt8e083e72012-06-19 23:57:03 +00004789 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004790 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004791
Sean Hunt8e083e72012-06-19 23:57:03 +00004792 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4793 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4794 case AttributeList::AT_Unavailable:
Aaron Ballman2dbdef22013-07-18 13:13:52 +00004795 handleAttrWithMessage<UnavailableAttr>(S, D, Attr);
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004796 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004797 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004798 handleArcWeakrefUnavailableAttr (S, D, Attr);
4799 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004800 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004801 handleObjCRootClassAttr(S, D, Attr);
4802 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004803 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004804 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004805 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004806 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4807 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004808 handleReturnsTwiceAttr(S, D, Attr);
4809 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004810 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
John McCalld4c3d662013-02-20 01:54:26 +00004811 case AttributeList::AT_Visibility:
4812 handleVisibilityAttr(S, D, Attr, false);
4813 break;
4814 case AttributeList::AT_TypeVisibility:
4815 handleVisibilityAttr(S, D, Attr, true);
4816 break;
Lubos Lunak1d3ce652013-07-20 15:05:36 +00004817 case AttributeList::AT_WarnUnused:
4818 handleWarnUnusedAttr(S, D, Attr);
4819 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004820 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004821 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004822 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4823 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4824 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4825 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004826 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004827 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004828 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004829 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004830 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004831 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004832 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004833 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004834 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4835 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4836 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4837 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4838 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4839 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4840 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4841 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4842 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004843 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004844 // Just ignore
4845 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004846 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004847 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004848 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004849 case AttributeList::AT_StdCall:
4850 case AttributeList::AT_CDecl:
4851 case AttributeList::AT_FastCall:
4852 case AttributeList::AT_ThisCall:
4853 case AttributeList::AT_Pascal:
4854 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004855 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004856 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004857 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004858 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004859 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004860 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004861 break;
Guy Benyei1db70402013-03-24 13:58:12 +00004862 case AttributeList::AT_OpenCLImageAccess:
4863 handleOpenCLImageAccessAttr(S, D, Attr);
4864 break;
John McCallc052dbb2012-05-22 21:28:12 +00004865
4866 // Microsoft attributes:
John McCall76da55d2013-04-16 07:28:30 +00004867 case AttributeList::AT_MsProperty: break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004868 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004869 handleMsStructAttr(S, D, Attr);
4870 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004871 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004872 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004873 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004874 case AttributeList::AT_SingleInheritance:
4875 case AttributeList::AT_MultipleInheritance:
4876 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004877 handleInheritanceAttr(S, D, Attr);
4878 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004879 case AttributeList::AT_Win64:
John McCallc052dbb2012-05-22 21:28:12 +00004880 handlePortabilityAttr(S, D, Attr);
4881 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004882 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004883 handleForceInlineAttr(S, D, Attr);
4884 break;
Reid Klecknera7225342013-05-20 14:02:37 +00004885 case AttributeList::AT_SelectAny:
4886 handleSelectAnyAttr(S, D, Attr);
4887 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004888
4889 // Thread safety attributes:
DeLesley Hutchins5c6134f2013-05-17 23:02:59 +00004890 case AttributeList::AT_AssertExclusiveLock:
4891 handleAssertExclusiveLockAttr(S, D, Attr);
4892 break;
4893 case AttributeList::AT_AssertSharedLock:
4894 handleAssertSharedLockAttr(S, D, Attr);
4895 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004896 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004897 handleGuardedVarAttr(S, D, Attr);
4898 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004899 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004900 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004901 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004902 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004903 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004904 break;
Kostya Serebryany85aee962013-02-26 06:58:27 +00004905 case AttributeList::AT_NoSanitizeAddress:
4906 handleNoSanitizeAddressAttr(S, D, Attr);
Kostya Serebryany71efba02012-01-24 19:25:38 +00004907 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004908 case AttributeList::AT_NoThreadSafetyAnalysis:
Kostya Serebryany85aee962013-02-26 06:58:27 +00004909 handleNoThreadSafetyAnalysis(S, D, Attr);
4910 break;
4911 case AttributeList::AT_NoSanitizeThread:
4912 handleNoSanitizeThread(S, D, Attr);
4913 break;
4914 case AttributeList::AT_NoSanitizeMemory:
4915 handleNoSanitizeMemory(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004916 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004917 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004918 handleLockableAttr(S, D, Attr);
4919 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004920 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004921 handleGuardedByAttr(S, D, Attr);
4922 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004923 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004924 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004925 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004926 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004927 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004928 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004929 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004930 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004931 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004932 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004933 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004934 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004935 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004936 handleLockReturnedAttr(S, D, Attr);
4937 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004938 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004939 handleLocksExcludedAttr(S, D, Attr);
4940 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004941 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004942 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004943 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004944 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004945 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004946 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004947 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004948 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004949 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004950 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004951 handleUnlockFunAttr(S, D, Attr);
4952 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004953 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004954 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004955 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004956 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004957 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004958 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004959
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004960 // Type safety attributes.
4961 case AttributeList::AT_ArgumentWithTypeTag:
4962 handleArgumentWithTypeTagAttr(S, D, Attr);
4963 break;
4964 case AttributeList::AT_TypeTagForDatatype:
4965 handleTypeTagForDatatypeAttr(S, D, Attr);
4966 break;
4967
Chris Lattner803d0802008-06-29 00:43:07 +00004968 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004969 // Ask target about the attribute.
4970 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4971 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004972 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4973 diag::warn_unhandled_ms_attribute_ignored :
4974 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004975 break;
4976 }
4977}
4978
Peter Collingbourne60700392011-01-21 02:08:45 +00004979/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4980/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004981/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004982static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4983 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00004984 bool NonInheritable, bool Inheritable,
4985 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004986 if (Attr.isInvalid())
4987 return;
4988
Richard Smithcd8ab512013-01-17 01:30:42 +00004989 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4990 // instead.
4991 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4992 return;
4993
Peter Collingbourne60700392011-01-21 02:08:45 +00004994 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004995 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004996
4997 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004998 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004999}
5000
Chris Lattner803d0802008-06-29 00:43:07 +00005001/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
5002/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00005003void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00005004 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00005005 bool NonInheritable, bool Inheritable,
5006 bool IncludeCXX11Attributes) {
5007 for (const AttributeList* l = AttrList; l; l = l->getNext())
5008 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
5009 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005010
5011 // GCC accepts
5012 // static int a9 __attribute__((weakref));
5013 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00005014 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005015 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00005016 cast<NamedDecl>(D)->getNameAsString();
5017 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00005018 return;
Chris Lattner803d0802008-06-29 00:43:07 +00005019 }
5020}
5021
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005022// Annotation attributes are the only attributes allowed after an access
5023// specifier.
5024bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
5025 const AttributeList *AttrList) {
5026 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00005027 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00005028 handleAnnotateAttr(*this, ASDecl, *l);
5029 } else {
5030 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
5031 return true;
5032 }
5033 }
5034
5035 return false;
5036}
5037
John McCalle82247a2011-10-01 05:17:03 +00005038/// checkUnusedDeclAttributes - Check a list of attributes to see if it
5039/// contains any decl attributes that we should warn about.
5040static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
5041 for ( ; A; A = A->getNext()) {
5042 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00005043 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00005044 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
5045
5046 if (A->getKind() == AttributeList::UnknownAttribute) {
5047 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
5048 << A->getName() << A->getRange();
5049 } else {
5050 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
5051 << A->getName() << A->getRange();
5052 }
5053 }
5054}
5055
5056/// checkUnusedDeclAttributes - Given a declarator which is not being
5057/// used to build a declaration, complain about any decl attributes
5058/// which might be lying around on it.
5059void Sema::checkUnusedDeclAttributes(Declarator &D) {
5060 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
5061 ::checkUnusedDeclAttributes(*this, D.getAttributes());
5062 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
5063 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
5064}
5065
Ryan Flynne25ff832009-07-30 03:15:39 +00005066/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00005067/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00005068NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
5069 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005070 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00005071 NamedDecl *NewD = 0;
5072 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00005073 FunctionDecl *NewFD;
5074 // FIXME: Missing call to CheckFunctionDeclaration().
5075 // FIXME: Mangling?
5076 // FIXME: Is the qualifier info correct?
5077 // FIXME: Is the DeclContext correct?
5078 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
5079 Loc, Loc, DeclarationName(II),
5080 FD->getType(), FD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005081 SC_None, false/*isInlineSpecified*/,
Eli Friedman900693b2011-09-07 04:05:06 +00005082 FD->hasPrototype(),
5083 false/*isConstexprSpecified*/);
5084 NewD = NewFD;
5085
5086 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005087 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00005088
5089 // Fake up parameter variables; they are declared as if this were
5090 // a typedef.
5091 QualType FDTy = FD->getType();
5092 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5093 SmallVector<ParmVarDecl*, 16> Params;
5094 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5095 AE = FT->arg_type_end(); AI != AE; ++AI) {
5096 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
5097 Param->setScopeInfo(0, Params.size());
5098 Params.push_back(Param);
5099 }
David Blaikie4278c652011-09-21 18:16:56 +00005100 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00005101 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005102 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
5103 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005104 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00005105 VD->getType(), VD->getTypeSourceInfo(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005106 VD->getStorageClass());
John McCallb6217662010-03-15 10:12:16 +00005107 if (VD->getQualifier()) {
5108 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005109 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00005110 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005111 }
5112 return NewD;
5113}
5114
James Dennett1dfbd922012-06-14 21:40:34 +00005115/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00005116/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00005117void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005118 if (W.getUsed()) return; // only do this once
5119 W.setUsed(true);
5120 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
5121 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00005122 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00005123 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
5124 NDId->getName()));
5125 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00005126 WeakTopLevelDecl.push_back(NewD);
5127 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
5128 // to insert Decl at TU scope, sorry.
5129 DeclContext *SavedContext = CurContext;
5130 CurContext = Context.getTranslationUnitDecl();
5131 PushOnScopeChains(NewD, S);
5132 CurContext = SavedContext;
5133 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00005134 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00005135 }
5136}
5137
Rafael Espindola65611bf2013-03-02 21:41:48 +00005138void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
5139 // It's valid to "forward-declare" #pragma weak, in which case we
5140 // have to do this.
5141 LoadExternalWeakUndeclaredIdentifiers();
5142 if (!WeakUndeclaredIdentifiers.empty()) {
5143 NamedDecl *ND = NULL;
5144 if (VarDecl *VD = dyn_cast<VarDecl>(D))
5145 if (VD->isExternC())
5146 ND = VD;
5147 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
5148 if (FD->isExternC())
5149 ND = FD;
5150 if (ND) {
5151 if (IdentifierInfo *Id = ND->getIdentifier()) {
5152 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5153 = WeakUndeclaredIdentifiers.find(Id);
5154 if (I != WeakUndeclaredIdentifiers.end()) {
5155 WeakInfo W = I->second;
5156 DeclApplyPragmaWeak(S, ND, W);
5157 WeakUndeclaredIdentifiers[Id] = W;
5158 }
5159 }
5160 }
5161 }
5162}
5163
Chris Lattner0744e5f2008-06-29 00:23:49 +00005164/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5165/// it, apply them to D. This is a bit tricky because PD can have attributes
5166/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005167void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5168 bool NonInheritable, bool Inheritable) {
Chris Lattner0744e5f2008-06-29 00:23:49 +00005169 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005170 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005171 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005172
Chris Lattner0744e5f2008-06-29 00:23:49 +00005173 // Walk the declarator structure, applying decl attributes that were in a type
5174 // position to the decl itself. This handles cases like:
5175 // int *__attr__(x)** D;
5176 // when X is a decl attribute.
5177 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5178 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005179 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5180 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005181
Chris Lattner0744e5f2008-06-29 00:23:49 +00005182 // Finally, apply any attributes on the decl itself.
5183 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005184 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005185}
John McCall54abf7d2009-11-04 02:18:39 +00005186
John McCallf85e1932011-06-15 23:02:42 +00005187/// Is the given declaration allowed to use a forbidden type?
5188static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5189 // Private ivars are always okay. Unfortunately, people don't
5190 // always properly make their ivars private, even in system headers.
5191 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005192 // Function declarations in sys headers will be marked unavailable.
5193 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5194 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005195 return false;
5196
5197 // Require it to be declared in a system header.
5198 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5199}
5200
5201/// Handle a delayed forbidden-type diagnostic.
5202static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5203 Decl *decl) {
5204 if (decl && isForbiddenTypeAllowed(S, decl)) {
5205 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5206 "this system declaration uses an unsupported type"));
5207 return;
5208 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005209 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005210 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005211 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005212 // kind of forbidden type messages on unavailable functions.
5213 if (FD->hasAttr<UnavailableAttr>() &&
5214 diag.getForbiddenTypeDiagnostic() ==
5215 diag::err_arc_array_param_no_ownership) {
5216 diag.Triggered = true;
5217 return;
5218 }
5219 }
John McCallf85e1932011-06-15 23:02:42 +00005220
5221 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5222 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5223 diag.Triggered = true;
5224}
5225
John McCall92576642012-05-07 06:16:41 +00005226void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5227 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005228 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005229 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005230
John McCall92576642012-05-07 06:16:41 +00005231 // When delaying diagnostics to run in the context of a parsed
5232 // declaration, we only want to actually emit anything if parsing
5233 // succeeds.
5234 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005235
John McCall92576642012-05-07 06:16:41 +00005236 // We emit all the active diagnostics in this pool or any of its
5237 // parents. In general, we'll get one pool for the decl spec
5238 // and a child pool for each declarator; in a decl group like:
5239 // deprecated_typedef foo, *bar, baz();
5240 // only the declarator pops will be passed decls. This is correct;
5241 // we really do need to consider delayed diagnostics from the decl spec
5242 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005243 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005244 do {
John McCall13489672012-05-07 06:16:58 +00005245 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005246 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5247 // This const_cast is a bit lame. Really, Triggered should be mutable.
5248 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005249 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005250 continue;
5251
John McCalleee1d542011-02-14 07:13:47 +00005252 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005253 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005254 // Don't bother giving deprecation diagnostics if the decl is invalid.
5255 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005256 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005257 break;
5258
5259 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005260 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005261 break;
John McCallf85e1932011-06-15 23:02:42 +00005262
5263 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005264 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005265 break;
John McCall2f514482010-01-27 03:50:35 +00005266 }
5267 }
John McCall92576642012-05-07 06:16:41 +00005268 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005269}
5270
John McCall13489672012-05-07 06:16:58 +00005271/// Given a set of delayed diagnostics, re-emit them as if they had
5272/// been delayed in the current context instead of in the given pool.
5273/// Essentially, this just moves them to the current pool.
5274void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5275 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5276 assert(curPool && "re-emitting in undelayed context not supported");
5277 curPool->steal(pool);
5278}
5279
John McCall54abf7d2009-11-04 02:18:39 +00005280static bool isDeclDeprecated(Decl *D) {
5281 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005282 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005283 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005284 // A category implicitly has the availability of the interface.
5285 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5286 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005287 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5288 return false;
5289}
5290
Eli Friedmanc3b23082012-08-08 21:52:41 +00005291static void
5292DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5293 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005294 const ObjCInterfaceDecl *UnknownObjCClass,
5295 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005296 DeclarationName Name = D->getDeclName();
5297 if (!Message.empty()) {
5298 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5299 S.Diag(D->getLocation(),
5300 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5301 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005302 if (ObjCPropery)
5303 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5304 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005305 } else if (!UnknownObjCClass) {
5306 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5307 S.Diag(D->getLocation(),
5308 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5309 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005310 if (ObjCPropery)
5311 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5312 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005313 } else {
5314 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5315 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5316 }
5317}
5318
John McCall9c3087b2010-08-26 02:13:20 +00005319void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005320 Decl *Ctx) {
5321 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005322 return;
5323
John McCall2f514482010-01-27 03:50:35 +00005324 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005325 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5326 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005327 DD.getUnknownObjCClass(),
5328 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005329}
5330
Chris Lattner5f9e2722011-07-23 10:55:15 +00005331void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005332 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005333 const ObjCInterfaceDecl *UnknownObjCClass,
5334 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005335 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005336 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005337 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5338 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005339 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005340 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005341 return;
5342 }
5343
5344 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005345 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005346 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005347 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005348}