blob: 2f3634a278ca78878294fc0fc2dd4c41b72ebad2 [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"
Jordan Rose3f6f51e2013-02-08 22:30:41 +000022#include "clang/Basic/CharInfo.h"
John McCallf85e1932011-06-15 23:02:42 +000023#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000024#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000025#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000026#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000027#include "clang/Sema/Lookup.h"
Richard Smith3a2b7a12013-01-28 22:42:45 +000028#include "clang/Sema/Scope.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000029#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000030using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000031using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000032
John McCall883cc2c2011-03-02 12:29:23 +000033/// These constants match the enumerated choices of
34/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000035enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000036 ExpectedFunction,
37 ExpectedUnion,
38 ExpectedVariableOrFunction,
39 ExpectedFunctionOrMethod,
40 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000041 ExpectedFunctionMethodOrBlock,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000042 ExpectedFunctionMethodOrClass,
John McCall883cc2c2011-03-02 12:29:23 +000043 ExpectedFunctionMethodOrParameter,
44 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000045 ExpectedVariable,
46 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000047 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000048 ExpectedFieldOrGlobalVar,
Hans Wennborg5e2d5de2012-06-23 11:51:46 +000049 ExpectedStruct,
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +000050 ExpectedVariableFunctionOrTag,
Richard Smith5f838aa2013-02-01 08:25:07 +000051 ExpectedTLSVar,
52 ExpectedVariableOrField,
53 ExpectedVariableFieldOrTag
John McCall883cc2c2011-03-02 12:29:23 +000054};
55
Chris Lattnere5c5ee12008-06-29 00:16:31 +000056//===----------------------------------------------------------------------===//
57// Helper functions
58//===----------------------------------------------------------------------===//
59
Chandler Carruth87c44602011-07-01 23:49:12 +000060static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000061 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000062 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000063 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000064 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000065 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000067 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000068 Ty = decl->getUnderlyingType();
69 else
70 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000071
Chris Lattner6b6b5372008-06-26 18:38:35 +000072 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000073 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000074 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000075 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000076
John McCall183700f2009-09-21 23:43:11 +000077 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000078}
79
Daniel Dunbar35682492008-09-26 04:12:28 +000080// FIXME: We should provide an abstraction around a method or function
81// to provide the following bits of information.
82
Nuno Lopesd20254f2009-12-20 23:11:08 +000083/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000084/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000085static bool isFunction(const Decl *D) {
86 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000087}
88
89/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000090/// type (function or function-typed variable) or an Objective-C
91/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000092static bool isFunctionOrMethod(const Decl *D) {
Nick Lewycky4ae89bc2012-07-24 01:31:55 +000093 return isFunction(D) || isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000094}
95
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000096/// isFunctionOrMethodOrBlock - Return true if the given decl has function
97/// type (function or function-typed variable) or an Objective-C
98/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000099static bool isFunctionOrMethodOrBlock(const Decl *D) {
100 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000101 return true;
102 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +0000103 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000104 QualType Ty = V->getType();
105 return Ty->isBlockPointerType();
106 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000107 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000108}
109
John McCall711c52b2011-01-05 12:14:39 +0000110/// Return true if the given decl has a declarator that should have
111/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000112static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000113 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000114 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
115 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000116}
117
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000118/// hasFunctionProto - Return true if the given decl has a argument
119/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000120/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000121static bool hasFunctionProto(const Decl *D) {
122 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000123 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000124 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000125 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000126 return true;
127 }
128}
129
130/// getFunctionOrMethodNumArgs - Return number of function or method
131/// arguments. It is an error to call this on a K&R function (use
132/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000133static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
134 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000135 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000136 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000137 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000138 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000139}
140
Chandler Carruth87c44602011-07-01 23:49:12 +0000141static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
142 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000143 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000144 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000145 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000146
Chandler Carruth87c44602011-07-01 23:49:12 +0000147 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000148}
149
Chandler Carruth87c44602011-07-01 23:49:12 +0000150static QualType getFunctionOrMethodResultType(const Decl *D) {
151 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000152 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000153 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000154}
155
Chandler Carruth87c44602011-07-01 23:49:12 +0000156static bool isFunctionOrMethodVariadic(const Decl *D) {
157 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000158 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000159 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000160 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000161 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000162 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000163 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000164 }
165}
166
Chandler Carruth87c44602011-07-01 23:49:12 +0000167static bool isInstanceMethod(const Decl *D) {
168 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000169 return MethodDecl->isInstance();
170 return false;
171}
172
Chris Lattner6b6b5372008-06-26 18:38:35 +0000173static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000174 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000175 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000177
John McCall506b57e2010-05-17 21:00:27 +0000178 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
179 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000180 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000181
John McCall506b57e2010-05-17 21:00:27 +0000182 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000183
Chris Lattner6b6b5372008-06-26 18:38:35 +0000184 // FIXME: Should we walk the chain of classes?
185 return ClsName == &Ctx.Idents.get("NSString") ||
186 ClsName == &Ctx.Idents.get("NSMutableString");
187}
188
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000189static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000190 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000191 if (!PT)
192 return false;
193
Ted Kremenek6217b802009-07-29 21:53:49 +0000194 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000195 if (!RT)
196 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000197
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000198 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000199 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000200 return false;
201
202 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
203}
204
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000205/// \brief Check if the attribute has exactly as many args as Num. May
206/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000207static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
208 unsigned int Num) {
209 if (Attr.getNumArgs() != Num) {
210 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
211 return false;
212 }
213
214 return true;
215}
216
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000217
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000218/// \brief Check if the attribute has at least as many args as Num. May
219/// output an error.
220static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
221 unsigned int Num) {
222 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000223 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
224 return false;
225 }
226
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000227 return true;
228}
229
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +0000230/// \brief Check if IdxExpr is a valid argument index for a function or
231/// instance method D. May output an error.
232///
233/// \returns true if IdxExpr is a valid index.
234static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D,
235 StringRef AttrName,
236 SourceLocation AttrLoc,
237 unsigned AttrArgNum,
238 const Expr *IdxExpr,
239 uint64_t &Idx)
240{
241 assert(isFunctionOrMethod(D) && hasFunctionProto(D));
242
243 // In C++ the implicit 'this' function parameter also counts.
244 // Parameters are counted from one.
245 const bool HasImplicitThisParam = isInstanceMethod(D);
246 const unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
247 const unsigned FirstIdx = 1;
248
249 llvm::APSInt IdxInt;
250 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
251 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
252 S.Diag(AttrLoc, diag::err_attribute_argument_n_not_int)
253 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
254 return false;
255 }
256
257 Idx = IdxInt.getLimitedValue();
258 if (Idx < FirstIdx || (!isFunctionOrMethodVariadic(D) && Idx > NumArgs)) {
259 S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds)
260 << AttrName << AttrArgNum << IdxExpr->getSourceRange();
261 return false;
262 }
263 Idx--; // Convert to zero-based.
264 if (HasImplicitThisParam) {
265 if (Idx == 0) {
266 S.Diag(AttrLoc,
267 diag::err_attribute_invalid_implicit_this_argument)
268 << AttrName << IdxExpr->getSourceRange();
269 return false;
270 }
271 --Idx;
272 }
273
274 return true;
275}
276
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000277///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000278/// \brief Check if passed in Decl is a field or potentially shared global var
279/// \return true if the Decl is a field or potentially shared global variable
280///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000281static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000282 if (isa<FieldDecl>(D))
283 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000284 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000285 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
286
287 return false;
288}
289
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000290/// \brief Check if the passed-in expression is of type int or bool.
291static bool isIntOrBool(Expr *Exp) {
292 QualType QT = Exp->getType();
293 return QT->isBooleanType() || QT->isIntegerType();
294}
295
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000296
297// Check to see if the type is a smart pointer of some kind. We assume
298// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000299static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
300 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
301 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
David Blaikie3bc93e32012-12-19 00:45:41 +0000302 if (Res1.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000303 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000304
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000305 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
306 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
David Blaikie3bc93e32012-12-19 00:45:41 +0000307 if (Res2.empty())
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000308 return false;
309
310 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000311}
312
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000313/// \brief Check if passed in Decl is a pointer type.
314/// Note that this function may produce an error message.
315/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000316static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
317 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000318 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000319 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000320 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000321 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000322
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000323 if (const RecordType *RT = QT->getAs<RecordType>()) {
324 // If it's an incomplete type, it could be a smart pointer; skip it.
325 // (We don't want to force template instantiation if we can avoid it,
326 // since that would alter the order in which templates are instantiated.)
327 if (RT->isIncompleteType())
328 return true;
329
330 if (threadSafetyCheckIsSmartPointer(S, RT))
331 return true;
332 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000333
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000334 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000335 << Attr.getName()->getName() << QT;
336 } else {
337 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
338 << Attr.getName();
339 }
340 return false;
341}
342
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000343/// \brief Checks that the passed in QualType either is of RecordType or points
344/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000345static const RecordType *getRecordType(QualType QT) {
346 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000347 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000348
349 // Now check if we point to record type.
350 if (const PointerType *PT = QT->getAs<PointerType>())
351 return PT->getPointeeType()->getAs<RecordType>();
352
353 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000354}
355
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000356
Jordy Rosefad5de92012-05-08 03:27:22 +0000357static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
358 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000359 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
360 if (RT->getDecl()->getAttr<LockableAttr>())
361 return true;
362 return false;
363}
364
365
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000366/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000367/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000368static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
369 QualType Ty) {
370 const RecordType *RT = getRecordType(Ty);
Michael Hanf1aae3b2012-08-03 17:40:43 +0000371
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000372 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000373 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000374 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000375 << Attr.getName() << Ty.getAsString();
376 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000377 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000378
Michael Hanf1aae3b2012-08-03 17:40:43 +0000379 // Don't check for lockable if the class hasn't been defined yet.
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000380 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000381 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000382
383 // Allow smart pointers to be used as lockable objects.
384 // FIXME -- Check the type that the smart pointer points to.
385 if (threadSafetyCheckIsSmartPointer(S, RT))
386 return;
387
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000388 // Check if the type is lockable.
389 RecordDecl *RD = RT->getDecl();
390 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000391 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000392
393 // Else check if any base classes are lockable.
394 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
395 CXXBasePaths BPaths(false, false);
396 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
397 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000398 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000399
400 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
401 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000402}
403
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000404/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000405/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000406/// \param Sidx The attribute argument index to start checking with.
407/// \param ParamIdxOk Whether an argument can be indexing into a function
408/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000409static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000410 const AttributeList &Attr,
411 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000412 int Sidx = 0,
413 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000414 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000415 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000416
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000417 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000418 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000419 Args.push_back(ArgExp);
420 continue;
421 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000422
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000423 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000424 if (StrLit->getLength() == 0 ||
425 StrLit->getString() == StringRef("*")) {
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000426 // Pass empty strings to the analyzer without warnings.
DeLesley Hutchins0b4db3e2012-09-07 17:34:53 +0000427 // Treat "*" as the universal lock.
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000428 Args.push_back(ArgExp);
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000429 continue;
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000430 }
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000431
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000432 // We allow constant strings to be used as a placeholder for expressions
433 // that are not valid C++ syntax, but warn that they are ignored.
434 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
435 Attr.getName();
DeLesley Hutchins4e4c1572012-08-31 21:57:32 +0000436 Args.push_back(ArgExp);
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000437 continue;
438 }
439
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000440 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000441
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000442 // A pointer to member expression of the form &MyClass::mu is treated
443 // specially -- we need to look at the type of the member.
444 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
445 if (UOp->getOpcode() == UO_AddrOf)
446 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
447 if (DRE->getDecl()->isCXXInstanceMember())
448 ArgTy = DRE->getDecl()->getType();
449
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000450 // First see if we can just cast to record type, or point to record type.
451 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000452
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000453 // Now check if we index into a record type function param.
454 if(!RT && ParamIdxOk) {
455 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000456 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
457 if(FD && IL) {
458 unsigned int NumParams = FD->getNumParams();
459 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000460 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
461 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
462 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000463 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
464 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000465 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000466 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000467 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000468 }
469 }
470
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000471 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000472
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000473 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000474 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475}
476
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000477//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000478// Attribute Implementations
479//===----------------------------------------------------------------------===//
480
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000481// FIXME: All this manual attribute parsing code is gross. At the
482// least add some helper functions to check most argument patterns (#
483// and types of args).
484
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000485enum ThreadAttributeDeclKind {
486 ThreadExpectedFieldOrGlobalVar,
487 ThreadExpectedFunctionOrMethod,
488 ThreadExpectedClassOrStruct
489};
490
Michael Hanf1aae3b2012-08-03 17:40:43 +0000491static bool checkGuardedVarAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000492 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000493 assert(!Attr.isInvalid());
494
495 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000496 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000497
498 // D must be either a member field or global (potentially shared) variable.
499 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000500 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
501 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000502 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000503 }
504
Michael Handc691572012-07-23 18:48:41 +0000505 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000506}
507
Michael Handc691572012-07-23 18:48:41 +0000508static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) {
509 if (!checkGuardedVarAttrCommon(S, D, Attr))
510 return;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000511
Michael Han51d8c522013-01-24 16:46:58 +0000512 D->addAttr(::new (S.Context)
513 GuardedVarAttr(Attr.getRange(), S.Context,
514 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000515}
516
Michael Hanf1aae3b2012-08-03 17:40:43 +0000517static void handlePtGuardedVarAttr(Sema &S, Decl *D,
Michael Han51d8c522013-01-24 16:46:58 +0000518 const AttributeList &Attr) {
Michael Handc691572012-07-23 18:48:41 +0000519 if (!checkGuardedVarAttrCommon(S, D, Attr))
520 return;
521
522 if (!threadSafetyCheckIsPointer(S, D, Attr))
523 return;
524
Michael Han51d8c522013-01-24 16:46:58 +0000525 D->addAttr(::new (S.Context)
526 PtGuardedVarAttr(Attr.getRange(), S.Context,
527 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000528}
529
Michael Hanf1aae3b2012-08-03 17:40:43 +0000530static bool checkGuardedByAttrCommon(Sema &S, Decl *D,
531 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000532 Expr* &Arg) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000533 assert(!Attr.isInvalid());
534
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000535 if (!checkAttributeNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000536 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000537
538 // D must be either a member field or global (potentially shared) variable.
539 if (!mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000540 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
541 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000542 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000543 }
544
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000545 SmallVector<Expr*, 1> Args;
546 // check that all arguments are lockable objects
547 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
548 unsigned Size = Args.size();
549 if (Size != 1)
Michael Handc691572012-07-23 18:48:41 +0000550 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000551
Michael Handc691572012-07-23 18:48:41 +0000552 Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000553
Michael Handc691572012-07-23 18:48:41 +0000554 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000555}
556
Michael Handc691572012-07-23 18:48:41 +0000557static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) {
558 Expr *Arg = 0;
559 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
560 return;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000561
Michael Handc691572012-07-23 18:48:41 +0000562 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
563}
564
Michael Hanf1aae3b2012-08-03 17:40:43 +0000565static void handlePtGuardedByAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000566 const AttributeList &Attr) {
567 Expr *Arg = 0;
568 if (!checkGuardedByAttrCommon(S, D, Attr, Arg))
569 return;
570
571 if (!threadSafetyCheckIsPointer(S, D, Attr))
572 return;
573
574 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
575 S.Context, Arg));
576}
577
Michael Hanf1aae3b2012-08-03 17:40:43 +0000578static bool checkLockableAttrCommon(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000579 const AttributeList &Attr) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000580 assert(!Attr.isInvalid());
581
582 if (!checkAttributeNumArgs(S, Attr, 0))
Michael Handc691572012-07-23 18:48:41 +0000583 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000584
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000585 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000586 if (!isa<CXXRecordDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000587 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
588 << Attr.getName() << ThreadExpectedClassOrStruct;
Michael Handc691572012-07-23 18:48:41 +0000589 return false;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000590 }
591
Michael Handc691572012-07-23 18:48:41 +0000592 return true;
593}
594
595static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
596 if (!checkLockableAttrCommon(S, D, Attr))
597 return;
598
599 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
600}
601
Michael Hanf1aae3b2012-08-03 17:40:43 +0000602static void handleScopedLockableAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000603 const AttributeList &Attr) {
604 if (!checkLockableAttrCommon(S, D, Attr))
605 return;
606
Michael Han51d8c522013-01-24 16:46:58 +0000607 D->addAttr(::new (S.Context)
608 ScopedLockableAttr(Attr.getRange(), S.Context,
609 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000610}
611
612static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
613 const AttributeList &Attr) {
614 assert(!Attr.isInvalid());
615
616 if (!checkAttributeNumArgs(S, Attr, 0))
617 return;
618
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000619 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000620 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
621 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000622 return;
623 }
624
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000625 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000626 S.Context));
627}
628
Kostya Serebryany71efba02012-01-24 19:25:38 +0000629static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000630 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000631 assert(!Attr.isInvalid());
632
633 if (!checkAttributeNumArgs(S, Attr, 0))
634 return;
635
636 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
637 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
638 << Attr.getName() << ExpectedFunctionOrMethod;
639 return;
640 }
641
Michael Han51d8c522013-01-24 16:46:58 +0000642 D->addAttr(::new (S.Context)
643 NoAddressSafetyAnalysisAttr(Attr.getRange(), S.Context,
644 Attr.getAttributeSpellingListIndex()));
Kostya Serebryany71efba02012-01-24 19:25:38 +0000645}
646
Michael Hanf1aae3b2012-08-03 17:40:43 +0000647static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D,
648 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000649 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000650 assert(!Attr.isInvalid());
651
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000652 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000653 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000654
655 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000656 ValueDecl *VD = dyn_cast<ValueDecl>(D);
657 if (!VD || !mayBeSharedVariable(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000658 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
659 << Attr.getName() << ThreadExpectedFieldOrGlobalVar;
Michael Handc691572012-07-23 18:48:41 +0000660 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000661 }
662
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000663 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000664 QualType QT = VD->getType();
665 if (!QT->isDependentType()) {
666 const RecordType *RT = getRecordType(QT);
667 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000668 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Michael Handc691572012-07-23 18:48:41 +0000669 << Attr.getName();
670 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000671 }
672 }
673
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000674 // Check that all arguments are lockable objects.
675 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000676 if (Args.size() == 0)
677 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000678
Michael Handc691572012-07-23 18:48:41 +0000679 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000680}
681
Michael Hanf1aae3b2012-08-03 17:40:43 +0000682static void handleAcquiredAfterAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000683 const AttributeList &Attr) {
684 SmallVector<Expr*, 1> Args;
685 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
686 return;
687
688 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000689 D->addAttr(::new (S.Context)
690 AcquiredAfterAttr(Attr.getRange(), S.Context,
691 StartArg, Args.size(),
692 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000693}
694
Michael Hanf1aae3b2012-08-03 17:40:43 +0000695static void handleAcquiredBeforeAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000696 const AttributeList &Attr) {
697 SmallVector<Expr*, 1> Args;
698 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args))
699 return;
700
701 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000702 D->addAttr(::new (S.Context)
703 AcquiredBeforeAttr(Attr.getRange(), S.Context,
704 StartArg, Args.size(),
705 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000706}
707
Michael Hanf1aae3b2012-08-03 17:40:43 +0000708static bool checkLockFunAttrCommon(Sema &S, Decl *D,
709 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000710 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000711 assert(!Attr.isInvalid());
712
713 // zero or more arguments ok
714
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000715 // check that the attribute is applied to a function
716 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000717 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
718 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000719 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000720 }
721
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000722 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000723 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000724
Michael Handc691572012-07-23 18:48:41 +0000725 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000726}
727
Michael Hanf1aae3b2012-08-03 17:40:43 +0000728static void handleSharedLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000729 const AttributeList &Attr) {
730 SmallVector<Expr*, 1> Args;
731 if (!checkLockFunAttrCommon(S, D, Attr, Args))
732 return;
733
734 unsigned Size = Args.size();
735 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000736 D->addAttr(::new (S.Context)
737 SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
738 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000739}
740
Michael Hanf1aae3b2012-08-03 17:40:43 +0000741static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000742 const AttributeList &Attr) {
743 SmallVector<Expr*, 1> Args;
744 if (!checkLockFunAttrCommon(S, D, Attr, Args))
745 return;
746
747 unsigned Size = Args.size();
748 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000749 D->addAttr(::new (S.Context)
750 ExclusiveLockFunctionAttr(Attr.getRange(), S.Context,
751 StartArg, Size,
752 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000753}
754
Michael Hanf1aae3b2012-08-03 17:40:43 +0000755static bool checkTryLockFunAttrCommon(Sema &S, Decl *D,
756 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000757 SmallVector<Expr*, 2> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000758 assert(!Attr.isInvalid());
759
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000760 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000761 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000762
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000763 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000764 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
765 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000766 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000767 }
768
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000769 if (!isIntOrBool(Attr.getArg(0))) {
770 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
Michael Handc691572012-07-23 18:48:41 +0000771 << Attr.getName();
772 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000773 }
774
775 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000776 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000777
Michael Handc691572012-07-23 18:48:41 +0000778 return true;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000779}
780
Michael Hanf1aae3b2012-08-03 17:40:43 +0000781static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000782 const AttributeList &Attr) {
783 SmallVector<Expr*, 2> Args;
784 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
785 return;
786
787 unsigned Size = Args.size();
788 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000789 D->addAttr(::new (S.Context)
790 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
791 Attr.getArg(0), StartArg, Size,
792 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000793}
794
Michael Hanf1aae3b2012-08-03 17:40:43 +0000795static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000796 const AttributeList &Attr) {
797 SmallVector<Expr*, 2> Args;
798 if (!checkTryLockFunAttrCommon(S, D, Attr, Args))
799 return;
800
801 unsigned Size = Args.size();
802 Expr **StartArg = Size == 0 ? 0 : &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000803 D->addAttr(::new (S.Context)
804 ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context,
805 Attr.getArg(0), StartArg, Size,
806 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000807}
808
Michael Hanf1aae3b2012-08-03 17:40:43 +0000809static bool checkLocksRequiredCommon(Sema &S, Decl *D,
810 const AttributeList &Attr,
Michael Handc691572012-07-23 18:48:41 +0000811 SmallVector<Expr*, 1> &Args) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000812 assert(!Attr.isInvalid());
813
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000814 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Michael Handc691572012-07-23 18:48:41 +0000815 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000816
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000817 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000818 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
819 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Michael Handc691572012-07-23 18:48:41 +0000820 return false;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000821 }
822
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000823 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000824 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Michael Handc691572012-07-23 18:48:41 +0000825 if (Args.size() == 0)
826 return false;
Michael Hanf1aae3b2012-08-03 17:40:43 +0000827
Michael Handc691572012-07-23 18:48:41 +0000828 return true;
829}
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000830
Michael Hanf1aae3b2012-08-03 17:40:43 +0000831static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000832 const AttributeList &Attr) {
833 SmallVector<Expr*, 1> Args;
834 if (!checkLocksRequiredCommon(S, D, Attr, Args))
835 return;
836
837 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000838 D->addAttr(::new (S.Context)
839 ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context,
840 StartArg, Args.size(),
841 Attr.getAttributeSpellingListIndex()));
Michael Handc691572012-07-23 18:48:41 +0000842}
843
Michael Hanf1aae3b2012-08-03 17:40:43 +0000844static void handleSharedLocksRequiredAttr(Sema &S, Decl *D,
Michael Handc691572012-07-23 18:48:41 +0000845 const AttributeList &Attr) {
846 SmallVector<Expr*, 1> Args;
847 if (!checkLocksRequiredCommon(S, D, Attr, Args))
848 return;
849
850 Expr **StartArg = &Args[0];
Michael Han51d8c522013-01-24 16:46:58 +0000851 D->addAttr(::new (S.Context)
852 SharedLocksRequiredAttr(Attr.getRange(), S.Context,
853 StartArg, Args.size(),
854 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000855}
856
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000857static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000858 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000859 assert(!Attr.isInvalid());
860
861 // zero or more arguments ok
862
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000863 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000864 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
865 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000866 return;
867 }
868
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000869 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000870 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000871 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000872 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000873 Expr **StartArg = Size == 0 ? 0 : &Args[0];
874
Michael Han51d8c522013-01-24 16:46:58 +0000875 D->addAttr(::new (S.Context)
876 UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size,
877 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000878}
879
880static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000881 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000882 assert(!Attr.isInvalid());
883
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000884 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000885 return;
886
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000887 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000888 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
889 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000890 return;
891 }
892
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000893 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000894 SmallVector<Expr*, 1> Args;
895 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
896 unsigned Size = Args.size();
897 if (Size == 0)
898 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000899
Michael Han51d8c522013-01-24 16:46:58 +0000900 D->addAttr(::new (S.Context)
901 LockReturnedAttr(Attr.getRange(), S.Context, Args[0],
902 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000903}
904
905static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000906 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000907 assert(!Attr.isInvalid());
908
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000909 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000910 return;
911
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000912 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
DeLesley Hutchins0aa52aa2012-06-19 23:25:19 +0000913 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type)
914 << Attr.getName() << ThreadExpectedFunctionOrMethod;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000915 return;
916 }
917
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000918 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000919 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000920 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000921 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000922 if (Size == 0)
923 return;
924 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000925
Michael Han51d8c522013-01-24 16:46:58 +0000926 D->addAttr(::new (S.Context)
927 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size,
928 Attr.getAttributeSpellingListIndex()));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000929}
930
931
Chandler Carruth1b03c872011-07-02 00:01:44 +0000932static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
933 const AttributeList &Attr) {
Richard Smitha4fa9002013-01-13 02:11:23 +0000934 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
935 if (TD == 0) {
936 // __attribute__((ext_vector_type(N))) can only be applied to typedefs
937 // and type-ids.
Chris Lattner803d0802008-06-29 00:43:07 +0000938 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000939 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000940 }
Mike Stumpbf916502009-07-24 19:02:52 +0000941
Richard Smitha4fa9002013-01-13 02:11:23 +0000942 // Remember this typedef decl, we will need it later for diagnostics.
943 S.ExtVectorDecls.push_back(TD);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000944}
945
Chandler Carruth1b03c872011-07-02 00:01:44 +0000946static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000947 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000948 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000949 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000950
Chandler Carruth87c44602011-07-01 23:49:12 +0000951 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000952 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000953 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000954 // If the alignment is less than or equal to 8 bits, the packed attribute
955 // has no effect.
Eli Friedmanb68ec6b2012-11-07 00:35:20 +0000956 if (!FD->getType()->isDependentType() &&
957 !FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000958 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000959 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000960 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000961 else
Michael Han51d8c522013-01-24 16:46:58 +0000962 FD->addAttr(::new (S.Context)
963 PackedAttr(Attr.getRange(), S.Context,
964 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000965 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000966 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000967}
968
Chandler Carruth1b03c872011-07-02 00:01:44 +0000969static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Eli Friedman5f608ae2012-10-12 23:29:20 +0000970 if (RecordDecl *RD = dyn_cast<RecordDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +0000971 RD->addAttr(::new (S.Context)
972 MsStructAttr(Attr.getRange(), S.Context,
973 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000974 else
975 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
976}
977
Chandler Carruth1b03c872011-07-02 00:01:44 +0000978static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000979 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000980 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000981 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000982
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000983 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000984 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000985 if (MD->isInstanceMethod()) {
Michael Han51d8c522013-01-24 16:46:58 +0000986 D->addAttr(::new (S.Context)
987 IBActionAttr(Attr.getRange(), S.Context,
988 Attr.getAttributeSpellingListIndex()));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000989 return;
990 }
991
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000992 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000993}
994
Ted Kremenek2f041d02011-09-29 07:02:25 +0000995static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
996 // The IBOutlet/IBOutletCollection attributes only apply to instance
997 // variables or properties of Objective-C classes. The outlet must also
998 // have an object reference type.
999 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
1000 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +00001001 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001002 << Attr.getName() << VD->getType() << 0;
1003 return false;
1004 }
1005 }
1006 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1007 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001008 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +00001009 << Attr.getName() << PD->getType() << 1;
1010 return false;
1011 }
1012 }
1013 else {
1014 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
1015 return false;
1016 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +00001017
Ted Kremenek2f041d02011-09-29 07:02:25 +00001018 return true;
1019}
1020
Chandler Carruth1b03c872011-07-02 00:01:44 +00001021static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001022 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001023 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001024 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001025
1026 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001027 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +00001028
Michael Han51d8c522013-01-24 16:46:58 +00001029 D->addAttr(::new (S.Context)
1030 IBOutletAttr(Attr.getRange(), S.Context,
1031 Attr.getAttributeSpellingListIndex()));
Ted Kremenek96329d42008-07-15 22:26:48 +00001032}
1033
Chandler Carruth1b03c872011-07-02 00:01:44 +00001034static void handleIBOutletCollection(Sema &S, Decl *D,
1035 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001036
1037 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001038 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +00001039 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1040 return;
1041 }
1042
Ted Kremenek2f041d02011-09-29 07:02:25 +00001043 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +00001044 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +00001045
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001046 IdentifierInfo *II = Attr.getParameterName();
1047 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001048 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +00001049
John McCallb3d87482010-08-24 05:47:05 +00001050 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +00001051 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001052 if (!TypeRep) {
1053 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1054 return;
1055 }
John McCallb3d87482010-08-24 05:47:05 +00001056 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001057 // Diagnose use of non-object type in iboutletcollection attribute.
1058 // FIXME. Gnu attribute extension ignores use of builtin types in
1059 // attributes. So, __attribute__((iboutletcollection(char))) will be
1060 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +00001061 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +00001062 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
1063 return;
1064 }
Michael Han51d8c522013-01-24 16:46:58 +00001065 D->addAttr(::new (S.Context)
1066 IBOutletCollectionAttr(Attr.getRange(),S.Context,
1067 QT, Attr.getParameterLoc(),
1068 Attr.getAttributeSpellingListIndex()));
Ted Kremenek857e9182010-05-19 17:38:06 +00001069}
1070
Chandler Carruthd309c812011-07-01 23:49:16 +00001071static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001072 if (const RecordType *UT = T->getAsUnionType())
1073 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1074 RecordDecl *UD = UT->getDecl();
1075 for (RecordDecl::field_iterator it = UD->field_begin(),
1076 itend = UD->field_end(); it != itend; ++it) {
1077 QualType QT = it->getType();
1078 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
1079 T = QT;
1080 return;
1081 }
1082 }
1083 }
1084}
1085
Nuno Lopes587de5b2012-05-24 00:22:00 +00001086static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nuno Lopes174930d2012-06-18 16:39:04 +00001087 if (!isFunctionOrMethod(D)) {
1088 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1089 << "alloc_size" << ExpectedFunctionOrMethod;
1090 return;
1091 }
1092
Nuno Lopes587de5b2012-05-24 00:22:00 +00001093 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
1094 return;
1095
1096 // In C++ the implicit 'this' function parameter also counts, and they are
1097 // counted from one.
1098 bool HasImplicitThisParam = isInstanceMethod(D);
1099 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
1100
1101 SmallVector<unsigned, 8> SizeArgs;
1102
1103 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1104 E = Attr.arg_end(); I!=E; ++I) {
1105 // The argument must be an integer constant expression.
1106 Expr *Ex = *I;
1107 llvm::APSInt ArgNum;
1108 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1109 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
1110 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1111 << "alloc_size" << Ex->getSourceRange();
1112 return;
1113 }
1114
1115 uint64_t x = ArgNum.getZExtValue();
1116
1117 if (x < 1 || x > NumArgs) {
1118 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
1119 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
1120 return;
1121 }
1122
1123 --x;
1124 if (HasImplicitThisParam) {
1125 if (x == 0) {
1126 S.Diag(Attr.getLoc(),
1127 diag::err_attribute_invalid_implicit_this_argument)
1128 << "alloc_size" << Ex->getSourceRange();
1129 return;
1130 }
1131 --x;
1132 }
1133
1134 // check if the function argument is of an integer type
1135 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
1136 if (!T->isIntegerType()) {
1137 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1138 << "alloc_size" << Ex->getSourceRange();
1139 return;
1140 }
1141
Nuno Lopes587de5b2012-05-24 00:22:00 +00001142 SizeArgs.push_back(x);
1143 }
1144
1145 // check if the function returns a pointer
1146 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
1147 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
1148 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
1149 }
1150
Michael Han51d8c522013-01-24 16:46:58 +00001151 D->addAttr(::new (S.Context)
1152 AllocSizeAttr(Attr.getRange(), S.Context,
1153 SizeArgs.data(), SizeArgs.size(),
1154 Attr.getAttributeSpellingListIndex()));
Nuno Lopes587de5b2012-05-24 00:22:00 +00001155}
1156
Chandler Carruth1b03c872011-07-02 00:01:44 +00001157static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001158 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1159 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001160 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001161 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001162 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001163 return;
1164 }
Mike Stumpbf916502009-07-24 19:02:52 +00001165
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001166 // In C++ the implicit 'this' function parameter also counts, and they are
1167 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001168 bool HasImplicitThisParam = isInstanceMethod(D);
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001169 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001170
1171 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001172 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001173
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001174 for (AttributeList::arg_iterator I = Attr.arg_begin(),
1175 E = Attr.arg_end(); I != E; ++I) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001176 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001177 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001178 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001179 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1180 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001181 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1182 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001183 return;
1184 }
Mike Stumpbf916502009-07-24 19:02:52 +00001185
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001186 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001187
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001188 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001189 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001190 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001191 return;
1192 }
Mike Stumpbf916502009-07-24 19:02:52 +00001193
Ted Kremenek465172f2008-07-21 22:09:15 +00001194 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001195 if (HasImplicitThisParam) {
1196 if (x == 0) {
1197 S.Diag(Attr.getLoc(),
1198 diag::err_attribute_invalid_implicit_this_argument)
1199 << "nonnull" << Ex->getSourceRange();
1200 return;
1201 }
1202 --x;
1203 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001204
1205 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001206 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001207 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001208
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001209 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001210 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001211 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001212 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001213 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001214 }
Mike Stumpbf916502009-07-24 19:02:52 +00001215
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001216 NonNullArgs.push_back(x);
1217 }
Mike Stumpbf916502009-07-24 19:02:52 +00001218
1219 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1220 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001221 if (NonNullArgs.empty()) {
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001222 for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) {
1223 QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001224 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001225 if (T->isAnyPointerType() || T->isBlockPointerType())
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001226 NonNullArgs.push_back(i);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001227 }
Mike Stumpbf916502009-07-24 19:02:52 +00001228
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001229 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001230 if (NonNullArgs.empty()) {
1231 // Warn the trivial case only if attribute is not coming from a
1232 // macro instantiation.
1233 if (Attr.getLoc().isFileID())
1234 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001235 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001236 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001237 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001238
Nick Lewycky5d9484d2013-01-24 01:12:16 +00001239 unsigned *start = &NonNullArgs[0];
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001240 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001241 llvm::array_pod_sort(start, start + size);
Michael Han51d8c522013-01-24 16:46:58 +00001242 D->addAttr(::new (S.Context)
1243 NonNullAttr(Attr.getRange(), S.Context, start, size,
1244 Attr.getAttributeSpellingListIndex()));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001245}
1246
Chandler Carruth1b03c872011-07-02 00:01:44 +00001247static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001248 // This attribute must be applied to a function declaration.
1249 // The first argument to the attribute must be a string,
1250 // the name of the resource, for example "malloc".
1251 // The following arguments must be argument indexes, the arguments must be
1252 // of integer type for Returns, otherwise of pointer type.
1253 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001254 // after being held. free() should be __attribute((ownership_takes)), whereas
1255 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001256
1257 if (!AL.getParameterName()) {
1258 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1259 << AL.getName()->getName() << 1;
1260 return;
1261 }
1262 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001263 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001264 switch (AL.getKind()) {
1265 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001266 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001267 if (AL.getNumArgs() < 1) {
1268 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1269 return;
1270 }
Jordy Rose2a479922010-08-12 08:54:03 +00001271 break;
1272 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001273 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001274 if (AL.getNumArgs() < 1) {
1275 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1276 return;
1277 }
Jordy Rose2a479922010-08-12 08:54:03 +00001278 break;
1279 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001280 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001281 if (AL.getNumArgs() > 1) {
1282 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1283 << AL.getNumArgs() + 1;
1284 return;
1285 }
Jordy Rose2a479922010-08-12 08:54:03 +00001286 break;
1287 default:
1288 // This should never happen given how we are called.
1289 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001290 }
1291
Chandler Carruth87c44602011-07-01 23:49:12 +00001292 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001293 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1294 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001295 return;
1296 }
1297
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001298 // In C++ the implicit 'this' function parameter also counts, and they are
1299 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001300 bool HasImplicitThisParam = isInstanceMethod(D);
1301 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001302
Chris Lattner5f9e2722011-07-23 10:55:15 +00001303 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001304
1305 // Normalize the argument, __foo__ becomes foo.
1306 if (Module.startswith("__") && Module.endswith("__"))
1307 Module = Module.substr(2, Module.size() - 4);
1308
Chris Lattner5f9e2722011-07-23 10:55:15 +00001309 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001310
Jordy Rose2a479922010-08-12 08:54:03 +00001311 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1312 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001313
Peter Collingbourne7a730022010-11-23 20:45:58 +00001314 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001315 llvm::APSInt ArgNum(32);
1316 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1317 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1318 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1319 << AL.getName()->getName() << IdxExpr->getSourceRange();
1320 continue;
1321 }
1322
1323 unsigned x = (unsigned) ArgNum.getZExtValue();
1324
1325 if (x > NumArgs || x < 1) {
1326 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1327 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1328 continue;
1329 }
1330 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001331 if (HasImplicitThisParam) {
1332 if (x == 0) {
1333 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1334 << "ownership" << IdxExpr->getSourceRange();
1335 return;
1336 }
1337 --x;
1338 }
1339
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001340 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001341 case OwnershipAttr::Takes:
1342 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001343 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001344 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001345 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1346 // FIXME: Should also highlight argument in decl.
1347 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001348 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001349 << "pointer"
1350 << IdxExpr->getSourceRange();
1351 continue;
1352 }
1353 break;
1354 }
Sean Huntcf807c42010-08-18 23:23:40 +00001355 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001356 if (AL.getNumArgs() > 1) {
1357 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001358 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001359 llvm::APSInt ArgNum(32);
1360 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1361 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1362 S.Diag(AL.getLoc(), diag::err_ownership_type)
1363 << "ownership_returns" << "integer"
1364 << IdxExpr->getSourceRange();
1365 return;
1366 }
1367 }
1368 break;
1369 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001370 } // switch
1371
1372 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001373 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001374 i = D->specific_attr_begin<OwnershipAttr>(),
1375 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001376 i != e; ++i) {
1377 if ((*i)->getOwnKind() != K) {
1378 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1379 I!=E; ++I) {
1380 if (x == *I) {
1381 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1382 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001383 }
1384 }
1385 }
1386 }
1387 OwnershipArgs.push_back(x);
1388 }
1389
1390 unsigned* start = OwnershipArgs.data();
1391 unsigned size = OwnershipArgs.size();
1392 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001393
1394 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1395 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1396 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001397 }
Sean Huntcf807c42010-08-18 23:23:40 +00001398
Michael Han51d8c522013-01-24 16:46:58 +00001399 D->addAttr(::new (S.Context)
1400 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
1401 AL.getAttributeSpellingListIndex()));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001402}
1403
Chandler Carruth1b03c872011-07-02 00:01:44 +00001404static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001405 // Check the attribute arguments.
1406 if (Attr.getNumArgs() > 1) {
1407 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1408 return;
1409 }
1410
Chandler Carruth87c44602011-07-01 23:49:12 +00001411 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001412 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001413 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001414 return;
1415 }
1416
Chandler Carruth87c44602011-07-01 23:49:12 +00001417 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001418
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001419 // gcc rejects
1420 // class c {
1421 // static int a __attribute__((weakref ("v2")));
1422 // static int b() __attribute__((weakref ("f3")));
1423 // };
1424 // and ignores the attributes of
1425 // void f(void) {
1426 // static int a __attribute__((weakref ("v2")));
1427 // }
1428 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001429 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001430 if (!Ctx->isFileContext()) {
1431 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001432 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001433 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001434 }
1435
1436 // The GCC manual says
1437 //
1438 // At present, a declaration to which `weakref' is attached can only
1439 // be `static'.
1440 //
1441 // It also says
1442 //
1443 // Without a TARGET,
1444 // given as an argument to `weakref' or to `alias', `weakref' is
1445 // equivalent to `weak'.
1446 //
1447 // gcc 4.4.1 will accept
1448 // int a7 __attribute__((weakref));
1449 // as
1450 // int a7 __attribute__((weak));
1451 // This looks like a bug in gcc. We reject that for now. We should revisit
1452 // it if this behaviour is actually used.
1453
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001454 // GCC rejects
1455 // static ((alias ("y"), weakref)).
1456 // Should we? How to check that weakref is before or after alias?
1457
1458 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001459 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001460 Arg = Arg->IgnoreParenCasts();
1461 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1462
Douglas Gregor5cee1192011-07-27 05:40:30 +00001463 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001464 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1465 << "weakref" << 1;
1466 return;
1467 }
1468 // GCC will accept anything as the argument of weakref. Should we
1469 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001470 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001471 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001472 }
1473
Michael Han51d8c522013-01-24 16:46:58 +00001474 D->addAttr(::new (S.Context)
1475 WeakRefAttr(Attr.getRange(), S.Context,
1476 Attr.getAttributeSpellingListIndex()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001477}
1478
Chandler Carruth1b03c872011-07-02 00:01:44 +00001479static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001480 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001481 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001482 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001483 return;
1484 }
Mike Stumpbf916502009-07-24 19:02:52 +00001485
Peter Collingbourne7a730022010-11-23 20:45:58 +00001486 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001487 Arg = Arg->IgnoreParenCasts();
1488 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001489
Douglas Gregor5cee1192011-07-27 05:40:30 +00001490 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001491 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001492 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001493 return;
1494 }
Mike Stumpbf916502009-07-24 19:02:52 +00001495
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001496 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001497 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1498 return;
1499 }
1500
Chris Lattner6b6b5372008-06-26 18:38:35 +00001501 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001502
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001503 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00001504 Str->getString(),
1505 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001506}
1507
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001508static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1509 // Check the attribute arguments.
1510 if (!checkAttributeNumArgs(S, Attr, 0))
1511 return;
1512
1513 if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) {
1514 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1515 << Attr.getName() << ExpectedFunctionOrMethod;
1516 return;
1517 }
1518
Michael Han51d8c522013-01-24 16:46:58 +00001519 D->addAttr(::new (S.Context)
1520 MinSizeAttr(Attr.getRange(), S.Context,
1521 Attr.getAttributeSpellingListIndex()));
Quentin Colombetaee56fa2012-11-01 23:55:47 +00001522}
1523
Benjamin Krameree409a92012-05-12 21:10:52 +00001524static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1525 // Check the attribute arguments.
1526 if (!checkAttributeNumArgs(S, Attr, 0))
1527 return;
1528
1529 if (!isa<FunctionDecl>(D)) {
1530 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1531 << Attr.getName() << ExpectedFunction;
1532 return;
1533 }
1534
1535 if (D->hasAttr<HotAttr>()) {
1536 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1537 << Attr.getName() << "hot";
1538 return;
1539 }
1540
Michael Han51d8c522013-01-24 16:46:58 +00001541 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context,
1542 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001543}
1544
1545static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1546 // Check the attribute arguments.
1547 if (!checkAttributeNumArgs(S, Attr, 0))
1548 return;
1549
1550 if (!isa<FunctionDecl>(D)) {
1551 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1552 << Attr.getName() << ExpectedFunction;
1553 return;
1554 }
1555
1556 if (D->hasAttr<ColdAttr>()) {
1557 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1558 << Attr.getName() << "cold";
1559 return;
1560 }
1561
Michael Han51d8c522013-01-24 16:46:58 +00001562 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context,
1563 Attr.getAttributeSpellingListIndex()));
Benjamin Krameree409a92012-05-12 21:10:52 +00001564}
1565
Chandler Carruth1b03c872011-07-02 00:01:44 +00001566static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001567 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001568 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001569 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001570
Chandler Carruth87c44602011-07-01 23:49:12 +00001571 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001572 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001573 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001574 return;
1575 }
1576
Michael Han51d8c522013-01-24 16:46:58 +00001577 D->addAttr(::new (S.Context)
1578 NakedAttr(Attr.getRange(), S.Context,
1579 Attr.getAttributeSpellingListIndex()));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001580}
1581
Chandler Carruth1b03c872011-07-02 00:01:44 +00001582static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1583 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001584 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001585 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001586 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1587 return;
1588 }
1589
Chandler Carruth87c44602011-07-01 23:49:12 +00001590 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001591 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001592 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001593 return;
1594 }
Mike Stumpbf916502009-07-24 19:02:52 +00001595
Michael Han51d8c522013-01-24 16:46:58 +00001596 D->addAttr(::new (S.Context)
1597 AlwaysInlineAttr(Attr.getRange(), S.Context,
1598 Attr.getAttributeSpellingListIndex()));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001599}
1600
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001601static void handleTLSModelAttr(Sema &S, Decl *D,
1602 const AttributeList &Attr) {
1603 // Check the attribute arguments.
1604 if (Attr.getNumArgs() != 1) {
1605 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1606 return;
1607 }
1608
1609 Expr *Arg = Attr.getArg(0);
1610 Arg = Arg->IgnoreParenCasts();
1611 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1612
1613 // Check that it is a string.
1614 if (!Str) {
1615 S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model";
1616 return;
1617 }
1618
1619 if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->isThreadSpecified()) {
1620 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1621 << Attr.getName() << ExpectedTLSVar;
1622 return;
1623 }
1624
1625 // Check that the value.
1626 StringRef Model = Str->getString();
1627 if (Model != "global-dynamic" && Model != "local-dynamic"
1628 && Model != "initial-exec" && Model != "local-exec") {
1629 S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg);
1630 return;
1631 }
1632
Michael Han51d8c522013-01-24 16:46:58 +00001633 D->addAttr(::new (S.Context)
1634 TLSModelAttr(Attr.getRange(), S.Context, Model,
1635 Attr.getAttributeSpellingListIndex()));
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00001636}
1637
Chandler Carruth1b03c872011-07-02 00:01:44 +00001638static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001639 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001640 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001641 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1642 return;
1643 }
Mike Stump1eb44332009-09-09 15:08:12 +00001644
Chandler Carruth87c44602011-07-01 23:49:12 +00001645 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001646 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001647 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Michael Han51d8c522013-01-24 16:46:58 +00001648 D->addAttr(::new (S.Context)
1649 MallocAttr(Attr.getRange(), S.Context,
1650 Attr.getAttributeSpellingListIndex()));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001651 return;
1652 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001653 }
1654
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001655 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001656}
1657
Chandler Carruth1b03c872011-07-02 00:01:44 +00001658static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001659 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001660 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001661 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001662
Michael Han51d8c522013-01-24 16:46:58 +00001663 D->addAttr(::new (S.Context)
1664 MayAliasAttr(Attr.getRange(), S.Context,
1665 Attr.getAttributeSpellingListIndex()));
Dan Gohman34c26302010-11-17 00:03:07 +00001666}
1667
Chandler Carruth1b03c872011-07-02 00:01:44 +00001668static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001669 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001670 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001671 D->addAttr(::new (S.Context)
1672 NoCommonAttr(Attr.getRange(), S.Context,
1673 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001674 else
1675 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001676 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001677}
1678
Chandler Carruth1b03c872011-07-02 00:01:44 +00001679static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001680 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001681 if (isa<VarDecl>(D))
Michael Han51d8c522013-01-24 16:46:58 +00001682 D->addAttr(::new (S.Context)
1683 CommonAttr(Attr.getRange(), S.Context,
1684 Attr.getAttributeSpellingListIndex()));
Eric Christopher722109c2010-12-03 06:58:14 +00001685 else
1686 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001687 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001688}
1689
Chandler Carruth1b03c872011-07-02 00:01:44 +00001690static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001691 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001692
1693 if (S.CheckNoReturnAttr(attr)) return;
1694
Chandler Carruth87c44602011-07-01 23:49:12 +00001695 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001696 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001697 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001698 return;
1699 }
1700
Michael Han51d8c522013-01-24 16:46:58 +00001701 D->addAttr(::new (S.Context)
1702 NoReturnAttr(attr.getRange(), S.Context,
1703 attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00001704}
1705
1706bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001707 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001708 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1709 attr.setInvalid();
1710 return true;
1711 }
1712
1713 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001714}
1715
Chandler Carruth1b03c872011-07-02 00:01:44 +00001716static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1717 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001718
1719 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1720 // because 'analyzer_noreturn' does not impact the type.
1721
Chandler Carruth1731e202011-07-11 23:30:35 +00001722 if(!checkAttributeNumArgs(S, Attr, 0))
1723 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001724
Chandler Carruth87c44602011-07-01 23:49:12 +00001725 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1726 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001727 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1728 && !VD->getType()->isFunctionPointerType())) {
1729 S.Diag(Attr.getLoc(),
Richard Smith4e24f0f2013-01-02 12:01:23 +00001730 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001731 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001732 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001733 return;
1734 }
1735 }
1736
Michael Han51d8c522013-01-24 16:46:58 +00001737 D->addAttr(::new (S.Context)
1738 AnalyzerNoReturnAttr(Attr.getRange(), S.Context,
1739 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001740}
1741
Richard Smithcd8ab512013-01-17 01:30:42 +00001742static void handleCXX11NoReturnAttr(Sema &S, Decl *D,
1743 const AttributeList &Attr) {
1744 // C++11 [dcl.attr.noreturn]p1:
1745 // The attribute may be applied to the declarator-id in a function
1746 // declaration.
1747 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
1748 if (!FD) {
1749 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
1750 << Attr.getName() << ExpectedFunctionOrMethod;
1751 return;
1752 }
1753
Michael Han51d8c522013-01-24 16:46:58 +00001754 D->addAttr(::new (S.Context)
1755 CXX11NoReturnAttr(Attr.getRange(), S.Context,
1756 Attr.getAttributeSpellingListIndex()));
Richard Smithcd8ab512013-01-17 01:30:42 +00001757}
1758
John Thompson35cc9622010-08-09 21:53:52 +00001759// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001760static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001761/*
1762 Returning a Vector Class in Registers
1763
Eric Christopherf48f3672010-12-01 22:13:54 +00001764 According to the PPU ABI specifications, a class with a single member of
1765 vector type is returned in memory when used as the return value of a function.
1766 This results in inefficient code when implementing vector classes. To return
1767 the value in a single vector register, add the vecreturn attribute to the
1768 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001769
1770 Example:
1771
1772 struct Vector
1773 {
1774 __vector float xyzw;
1775 } __attribute__((vecreturn));
1776
1777 Vector Add(Vector lhs, Vector rhs)
1778 {
1779 Vector result;
1780 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1781 return result; // This will be returned in a register
1782 }
1783*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001784 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001785 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001786 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001787 return;
1788 }
1789
Chandler Carruth87c44602011-07-01 23:49:12 +00001790 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001791 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1792 return;
1793 }
1794
Chandler Carruth87c44602011-07-01 23:49:12 +00001795 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001796 int count = 0;
1797
1798 if (!isa<CXXRecordDecl>(record)) {
1799 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1800 return;
1801 }
1802
1803 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1804 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1805 return;
1806 }
1807
Eric Christopherf48f3672010-12-01 22:13:54 +00001808 for (RecordDecl::field_iterator iter = record->field_begin();
1809 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001810 if ((count == 1) || !iter->getType()->isVectorType()) {
1811 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1812 return;
1813 }
1814 count++;
1815 }
1816
Michael Han51d8c522013-01-24 16:46:58 +00001817 D->addAttr(::new (S.Context)
1818 VecReturnAttr(Attr.getRange(), S.Context,
1819 Attr.getAttributeSpellingListIndex()));
John Thompson35cc9622010-08-09 21:53:52 +00001820}
1821
Richard Smith3a2b7a12013-01-28 22:42:45 +00001822static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
1823 const AttributeList &Attr) {
1824 if (isa<ParmVarDecl>(D)) {
1825 // [[carries_dependency]] can only be applied to a parameter if it is a
1826 // parameter of a function declaration or lambda.
1827 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
1828 S.Diag(Attr.getLoc(),
1829 diag::err_carries_dependency_param_not_function_decl);
1830 return;
1831 }
1832 } else if (!isa<FunctionDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001833 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001834 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001835 return;
1836 }
Richard Smith3a2b7a12013-01-28 22:42:45 +00001837
1838 D->addAttr(::new (S.Context) CarriesDependencyAttr(
1839 Attr.getRange(), S.Context,
1840 Attr.getAttributeSpellingListIndex()));
Sean Huntbbd37c62009-11-21 08:43:09 +00001841}
1842
Chandler Carruth1b03c872011-07-02 00:01:44 +00001843static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001844 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001845 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001846 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001847 return;
1848 }
Mike Stumpbf916502009-07-24 19:02:52 +00001849
Chandler Carruth87c44602011-07-01 23:49:12 +00001850 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
Daniel Jasper568eae42012-06-13 18:31:09 +00001851 !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001852 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001853 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001854 return;
1855 }
Mike Stumpbf916502009-07-24 19:02:52 +00001856
Michael Han51d8c522013-01-24 16:46:58 +00001857 D->addAttr(::new (S.Context)
1858 UnusedAttr(Attr.getRange(), S.Context,
1859 Attr.getAttributeSpellingListIndex()));
Ted Kremenek73798892008-07-25 04:39:19 +00001860}
1861
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001862static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1863 const AttributeList &Attr) {
1864 // check the attribute arguments.
1865 if (Attr.hasParameterOrArguments()) {
1866 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1867 return;
1868 }
1869
1870 if (!isa<FunctionDecl>(D)) {
1871 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1872 << Attr.getName() << ExpectedFunction;
1873 return;
1874 }
1875
Michael Han51d8c522013-01-24 16:46:58 +00001876 D->addAttr(::new (S.Context)
1877 ReturnsTwiceAttr(Attr.getRange(), S.Context,
1878 Attr.getAttributeSpellingListIndex()));
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001879}
1880
Chandler Carruth1b03c872011-07-02 00:01:44 +00001881static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001882 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001883 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001884 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1885 return;
1886 }
Mike Stumpbf916502009-07-24 19:02:52 +00001887
Chandler Carruth87c44602011-07-01 23:49:12 +00001888 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001889 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001890 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1891 return;
1892 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001893 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001894 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001895 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001896 return;
1897 }
Mike Stumpbf916502009-07-24 19:02:52 +00001898
Michael Han51d8c522013-01-24 16:46:58 +00001899 D->addAttr(::new (S.Context)
1900 UsedAttr(Attr.getRange(), S.Context,
1901 Attr.getAttributeSpellingListIndex()));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001902}
1903
Chandler Carruth1b03c872011-07-02 00:01:44 +00001904static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001905 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001906 if (Attr.getNumArgs() > 1) {
1907 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001908 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001909 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001910
1911 int priority = 65535; // FIXME: Do not hardcode such constants.
1912 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001913 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001914 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001915 if (E->isTypeDependent() || E->isValueDependent() ||
1916 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001917 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001918 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001919 return;
1920 }
1921 priority = Idx.getZExtValue();
1922 }
Mike Stumpbf916502009-07-24 19:02:52 +00001923
Chandler Carruth87c44602011-07-01 23:49:12 +00001924 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001925 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001926 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001927 return;
1928 }
1929
Michael Han51d8c522013-01-24 16:46:58 +00001930 D->addAttr(::new (S.Context)
1931 ConstructorAttr(Attr.getRange(), S.Context, priority,
1932 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001933}
1934
Chandler Carruth1b03c872011-07-02 00:01:44 +00001935static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001936 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001937 if (Attr.getNumArgs() > 1) {
1938 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001939 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001940 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001941
1942 int priority = 65535; // FIXME: Do not hardcode such constants.
1943 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001944 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001945 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001946 if (E->isTypeDependent() || E->isValueDependent() ||
1947 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001948 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001949 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001950 return;
1951 }
1952 priority = Idx.getZExtValue();
1953 }
Mike Stumpbf916502009-07-24 19:02:52 +00001954
Chandler Carruth87c44602011-07-01 23:49:12 +00001955 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001956 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001957 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001958 return;
1959 }
1960
Michael Han51d8c522013-01-24 16:46:58 +00001961 D->addAttr(::new (S.Context)
1962 DestructorAttr(Attr.getRange(), S.Context, priority,
1963 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001964}
1965
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001966template <typename AttrTy>
1967static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1968 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001969 unsigned NumArgs = Attr.getNumArgs();
1970 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001971 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001972 return;
1973 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001974
1975 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001976 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001977 if (NumArgs == 1) {
1978 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001979 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001980 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001981 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001982 return;
1983 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001984 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001985 }
Mike Stumpbf916502009-07-24 19:02:52 +00001986
Michael Han51d8c522013-01-24 16:46:58 +00001987 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str,
1988 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001989}
1990
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001991static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1992 const AttributeList &Attr) {
1993 unsigned NumArgs = Attr.getNumArgs();
1994 if (NumArgs > 0) {
1995 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1996 return;
1997 }
1998
Michael Han51d8c522013-01-24 16:46:58 +00001999 D->addAttr(::new (S.Context)
2000 ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context,
2001 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00002002}
2003
Patrick Beardb2f68202012-04-06 18:12:22 +00002004static void handleObjCRootClassAttr(Sema &S, Decl *D,
2005 const AttributeList &Attr) {
2006 if (!isa<ObjCInterfaceDecl>(D)) {
2007 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2008 return;
2009 }
2010
2011 unsigned NumArgs = Attr.getNumArgs();
2012 if (NumArgs > 0) {
2013 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2014 return;
2015 }
2016
Michael Han51d8c522013-01-24 16:46:58 +00002017 D->addAttr(::new (S.Context)
2018 ObjCRootClassAttr(Attr.getRange(), S.Context,
2019 Attr.getAttributeSpellingListIndex()));
Patrick Beardb2f68202012-04-06 18:12:22 +00002020}
2021
Michael Han51d8c522013-01-24 16:46:58 +00002022static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
2023 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00002024 if (!isa<ObjCInterfaceDecl>(D)) {
2025 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
2026 return;
2027 }
2028
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002029 unsigned NumArgs = Attr.getNumArgs();
2030 if (NumArgs > 0) {
2031 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
2032 return;
2033 }
2034
Michael Han51d8c522013-01-24 16:46:58 +00002035 D->addAttr(::new (S.Context)
2036 ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context,
2037 Attr.getAttributeSpellingListIndex()));
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00002038}
2039
Jordy Rosefad5de92012-05-08 03:27:22 +00002040static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2041 IdentifierInfo *Platform,
2042 VersionTuple Introduced,
2043 VersionTuple Deprecated,
2044 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00002045 StringRef PlatformName
2046 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2047 if (PlatformName.empty())
2048 PlatformName = Platform->getName();
2049
2050 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2051 // of these steps are needed).
2052 if (!Introduced.empty() && !Deprecated.empty() &&
2053 !(Introduced <= Deprecated)) {
2054 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2055 << 1 << PlatformName << Deprecated.getAsString()
2056 << 0 << Introduced.getAsString();
2057 return true;
2058 }
2059
2060 if (!Introduced.empty() && !Obsoleted.empty() &&
2061 !(Introduced <= Obsoleted)) {
2062 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2063 << 2 << PlatformName << Obsoleted.getAsString()
2064 << 0 << Introduced.getAsString();
2065 return true;
2066 }
2067
2068 if (!Deprecated.empty() && !Obsoleted.empty() &&
2069 !(Deprecated <= Obsoleted)) {
2070 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2071 << 2 << PlatformName << Obsoleted.getAsString()
2072 << 1 << Deprecated.getAsString();
2073 return true;
2074 }
2075
2076 return false;
2077}
2078
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002079/// \brief Check whether the two versions match.
2080///
2081/// If either version tuple is empty, then they are assumed to match. If
2082/// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2083static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2084 bool BeforeIsOkay) {
2085 if (X.empty() || Y.empty())
2086 return true;
2087
2088 if (X == Y)
2089 return true;
2090
2091 if (BeforeIsOkay && X < Y)
2092 return true;
2093
2094 return false;
2095}
2096
Rafael Espindola51be6e32013-01-08 22:04:34 +00002097AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range,
Rafael Espindola599f1b72012-05-13 03:25:18 +00002098 IdentifierInfo *Platform,
2099 VersionTuple Introduced,
2100 VersionTuple Deprecated,
2101 VersionTuple Obsoleted,
2102 bool IsUnavailable,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002103 StringRef Message,
Michael Han51d8c522013-01-24 16:46:58 +00002104 bool Override,
2105 unsigned AttrSpellingListIndex) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00002106 VersionTuple MergedIntroduced = Introduced;
2107 VersionTuple MergedDeprecated = Deprecated;
2108 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00002109 bool FoundAny = false;
2110
Rafael Espindola98ae8342012-05-10 02:50:16 +00002111 if (D->hasAttrs()) {
2112 AttrVec &Attrs = D->getAttrs();
2113 for (unsigned i = 0, e = Attrs.size(); i != e;) {
2114 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2115 if (!OldAA) {
2116 ++i;
2117 continue;
2118 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002119
Rafael Espindola98ae8342012-05-10 02:50:16 +00002120 IdentifierInfo *OldPlatform = OldAA->getPlatform();
2121 if (OldPlatform != Platform) {
2122 ++i;
2123 continue;
2124 }
2125
2126 FoundAny = true;
2127 VersionTuple OldIntroduced = OldAA->getIntroduced();
2128 VersionTuple OldDeprecated = OldAA->getDeprecated();
2129 VersionTuple OldObsoleted = OldAA->getObsoleted();
2130 bool OldIsUnavailable = OldAA->getUnavailable();
Rafael Espindola98ae8342012-05-10 02:50:16 +00002131
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002132 if (!versionsMatch(OldIntroduced, Introduced, Override) ||
2133 !versionsMatch(Deprecated, OldDeprecated, Override) ||
2134 !versionsMatch(Obsoleted, OldObsoleted, Override) ||
2135 !(OldIsUnavailable == IsUnavailable ||
Douglas Gregor72daa3f2013-01-16 00:54:48 +00002136 (Override && !OldIsUnavailable && IsUnavailable))) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002137 if (Override) {
2138 int Which = -1;
2139 VersionTuple FirstVersion;
2140 VersionTuple SecondVersion;
2141 if (!versionsMatch(OldIntroduced, Introduced, Override)) {
2142 Which = 0;
2143 FirstVersion = OldIntroduced;
2144 SecondVersion = Introduced;
2145 } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) {
2146 Which = 1;
2147 FirstVersion = Deprecated;
2148 SecondVersion = OldDeprecated;
2149 } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) {
2150 Which = 2;
2151 FirstVersion = Obsoleted;
2152 SecondVersion = OldObsoleted;
2153 }
2154
2155 if (Which == -1) {
2156 Diag(OldAA->getLocation(),
2157 diag::warn_mismatched_availability_override_unavail)
2158 << AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2159 } else {
2160 Diag(OldAA->getLocation(),
2161 diag::warn_mismatched_availability_override)
2162 << Which
2163 << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2164 << FirstVersion.getAsString() << SecondVersion.getAsString();
2165 }
2166 Diag(Range.getBegin(), diag::note_overridden_method);
2167 } else {
2168 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2169 Diag(Range.getBegin(), diag::note_previous_attribute);
2170 }
2171
Rafael Espindola98ae8342012-05-10 02:50:16 +00002172 Attrs.erase(Attrs.begin() + i);
2173 --e;
2174 continue;
2175 }
2176
2177 VersionTuple MergedIntroduced2 = MergedIntroduced;
2178 VersionTuple MergedDeprecated2 = MergedDeprecated;
2179 VersionTuple MergedObsoleted2 = MergedObsoleted;
2180
2181 if (MergedIntroduced2.empty())
2182 MergedIntroduced2 = OldIntroduced;
2183 if (MergedDeprecated2.empty())
2184 MergedDeprecated2 = OldDeprecated;
2185 if (MergedObsoleted2.empty())
2186 MergedObsoleted2 = OldObsoleted;
2187
2188 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2189 MergedIntroduced2, MergedDeprecated2,
2190 MergedObsoleted2)) {
2191 Attrs.erase(Attrs.begin() + i);
2192 --e;
2193 continue;
2194 }
2195
2196 MergedIntroduced = MergedIntroduced2;
2197 MergedDeprecated = MergedDeprecated2;
2198 MergedObsoleted = MergedObsoleted2;
2199 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00002200 }
Rafael Espindola3b294362012-05-06 19:56:25 +00002201 }
2202
2203 if (FoundAny &&
2204 MergedIntroduced == Introduced &&
2205 MergedDeprecated == Deprecated &&
2206 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002207 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002208
Rafael Espindola98ae8342012-05-10 02:50:16 +00002209 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00002210 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00002211 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
2212 Introduced, Deprecated,
Michael Han51d8c522013-01-24 16:46:58 +00002213 Obsoleted, IsUnavailable, Message,
2214 AttrSpellingListIndex);
Rafael Espindola3b294362012-05-06 19:56:25 +00002215 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002216 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00002217}
2218
Chandler Carruth1b03c872011-07-02 00:01:44 +00002219static void handleAvailabilityAttr(Sema &S, Decl *D,
2220 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002221 IdentifierInfo *Platform = Attr.getParameterName();
2222 SourceLocation PlatformLoc = Attr.getParameterLoc();
Michael Han51d8c522013-01-24 16:46:58 +00002223 unsigned Index = Attr.getAttributeSpellingListIndex();
2224
Rafael Espindola3b294362012-05-06 19:56:25 +00002225 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002226 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
2227 << Platform;
2228
Rafael Espindola8c4222a2013-01-08 21:30:32 +00002229 NamedDecl *ND = dyn_cast<NamedDecl>(D);
2230 if (!ND) {
2231 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2232 return;
2233 }
2234
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002235 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
2236 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
2237 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00002238 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00002239 StringRef Str;
2240 const StringLiteral *SE =
2241 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
2242 if (SE)
2243 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00002244
Rafael Espindola51be6e32013-01-08 22:04:34 +00002245 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(),
Rafael Espindola599f1b72012-05-13 03:25:18 +00002246 Platform,
2247 Introduced.Version,
2248 Deprecated.Version,
2249 Obsoleted.Version,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002250 IsUnavailable, Str,
Michael Han51d8c522013-01-24 16:46:58 +00002251 /*Override=*/false,
2252 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002253 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002254 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00002255}
2256
Rafael Espindola599f1b72012-05-13 03:25:18 +00002257VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002258 VisibilityAttr::VisibilityType Vis,
2259 unsigned AttrSpellingListIndex) {
Rafael Espindoladd44f342012-05-10 03:01:34 +00002260 if (isa<TypedefNameDecl>(D)) {
2261 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "visibility";
Rafael Espindola599f1b72012-05-13 03:25:18 +00002262 return NULL;
Rafael Espindoladd44f342012-05-10 03:01:34 +00002263 }
Rafael Espindola98ae8342012-05-10 02:50:16 +00002264 VisibilityAttr *ExistingAttr = D->getAttr<VisibilityAttr>();
2265 if (ExistingAttr) {
2266 VisibilityAttr::VisibilityType ExistingVis = ExistingAttr->getVisibility();
2267 if (ExistingVis == Vis)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002268 return NULL;
Rafael Espindola98ae8342012-05-10 02:50:16 +00002269 Diag(ExistingAttr->getLocation(), diag::err_mismatched_visibility);
2270 Diag(Range.getBegin(), diag::note_previous_attribute);
2271 D->dropAttr<VisibilityAttr>();
2272 }
Michael Han51d8c522013-01-24 16:46:58 +00002273 return ::new (Context) VisibilityAttr(Range, Context, Vis,
2274 AttrSpellingListIndex);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002275}
2276
Chandler Carruth1b03c872011-07-02 00:01:44 +00002277static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002278 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002279 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002280 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002281
Peter Collingbourne7a730022010-11-23 20:45:58 +00002282 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002283 Arg = Arg->IgnoreParenCasts();
2284 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00002285
Douglas Gregor5cee1192011-07-27 05:40:30 +00002286 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002287 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002288 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002289 return;
2290 }
Mike Stumpbf916502009-07-24 19:02:52 +00002291
Chris Lattner5f9e2722011-07-23 10:55:15 +00002292 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00002293 VisibilityAttr::VisibilityType type;
Michael Han51d8c522013-01-24 16:46:58 +00002294
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002295 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00002296 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002297 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00002298 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00002299 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00002300 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00002301 else if (TypeStr == "protected") {
2302 // Complain about attempts to use protected visibility on targets
2303 // (like Darwin) that don't support it.
2304 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
2305 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
2306 type = VisibilityAttr::Default;
2307 } else {
2308 type = VisibilityAttr::Protected;
2309 }
2310 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00002311 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002312 return;
2313 }
Mike Stumpbf916502009-07-24 19:02:52 +00002314
Michael Han51d8c522013-01-24 16:46:58 +00002315 unsigned Index = Attr.getAttributeSpellingListIndex();
2316 VisibilityAttr *NewAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type,
2317 Index);
Rafael Espindola838dc592013-01-12 06:42:30 +00002318 if (NewAttr)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002319 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002320}
2321
Chandler Carruth1b03c872011-07-02 00:01:44 +00002322static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2323 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002324 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2325 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002326 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002327 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002328 return;
2329 }
2330
Chandler Carruth87c44602011-07-01 23:49:12 +00002331 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2332 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2333 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002334 << "objc_method_family" << 1;
2335 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002336 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002337 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002338 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002339 return;
2340 }
2341
Chris Lattner5f9e2722011-07-23 10:55:15 +00002342 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002343 ObjCMethodFamilyAttr::FamilyKind family;
2344 if (param == "none")
2345 family = ObjCMethodFamilyAttr::OMF_None;
2346 else if (param == "alloc")
2347 family = ObjCMethodFamilyAttr::OMF_alloc;
2348 else if (param == "copy")
2349 family = ObjCMethodFamilyAttr::OMF_copy;
2350 else if (param == "init")
2351 family = ObjCMethodFamilyAttr::OMF_init;
2352 else if (param == "mutableCopy")
2353 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2354 else if (param == "new")
2355 family = ObjCMethodFamilyAttr::OMF_new;
2356 else {
2357 // Just warn and ignore it. This is future-proof against new
2358 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002359 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002360 return;
2361 }
2362
John McCallf85e1932011-06-15 23:02:42 +00002363 if (family == ObjCMethodFamilyAttr::OMF_init &&
2364 !method->getResultType()->isObjCObjectPointerType()) {
2365 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2366 << method->getResultType();
2367 // Ignore the attribute.
2368 return;
2369 }
2370
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002371 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002372 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002373}
2374
Chandler Carruth1b03c872011-07-02 00:01:44 +00002375static void handleObjCExceptionAttr(Sema &S, Decl *D,
2376 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002377 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002378 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002379
Chris Lattner0db29ec2009-02-14 08:09:34 +00002380 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2381 if (OCI == 0) {
2382 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2383 return;
2384 }
Mike Stumpbf916502009-07-24 19:02:52 +00002385
Michael Han51d8c522013-01-24 16:46:58 +00002386 D->addAttr(::new (S.Context)
2387 ObjCExceptionAttr(Attr.getRange(), S.Context,
2388 Attr.getAttributeSpellingListIndex()));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002389}
2390
Chandler Carruth1b03c872011-07-02 00:01:44 +00002391static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002392 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002393 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002394 return;
2395 }
Richard Smith162e1c12011-04-15 14:24:37 +00002396 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002397 QualType T = TD->getUnderlyingType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002398 if (!T->isCARCBridgableType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002399 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2400 return;
2401 }
2402 }
Fariborz Jahanian34276822012-05-31 23:18:32 +00002403 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2404 QualType T = PD->getType();
Ted Kremenek9af91222012-08-29 22:54:47 +00002405 if (!T->isCARCBridgableType()) {
Fariborz Jahanian34276822012-05-31 23:18:32 +00002406 S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2407 return;
2408 }
2409 }
2410 else {
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002411 // It is okay to include this attribute on properties, e.g.:
2412 //
2413 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2414 //
2415 // In this case it follows tradition and suppresses an error in the above
2416 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002417 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002418 }
Michael Han51d8c522013-01-24 16:46:58 +00002419 D->addAttr(::new (S.Context)
2420 ObjCNSObjectAttr(Attr.getRange(), S.Context,
2421 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002422}
2423
Mike Stumpbf916502009-07-24 19:02:52 +00002424static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002425handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002426 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002427 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002428 return;
2429 }
2430
2431 if (!isa<FunctionDecl>(D)) {
2432 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2433 return;
2434 }
2435
Michael Han51d8c522013-01-24 16:46:58 +00002436 D->addAttr(::new (S.Context)
2437 OverloadableAttr(Attr.getRange(), S.Context,
2438 Attr.getAttributeSpellingListIndex()));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002439}
2440
Chandler Carruth1b03c872011-07-02 00:01:44 +00002441static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002442 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002443 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002444 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002445 return;
2446 }
Mike Stumpbf916502009-07-24 19:02:52 +00002447
Steve Naroff9eae5762008-09-18 16:44:58 +00002448 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002449 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002450 return;
2451 }
Mike Stumpbf916502009-07-24 19:02:52 +00002452
Sean Huntcf807c42010-08-18 23:23:40 +00002453 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002454 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002455 type = BlocksAttr::ByRef;
2456 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002457 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002458 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002459 return;
2460 }
Mike Stumpbf916502009-07-24 19:02:52 +00002461
Michael Han51d8c522013-01-24 16:46:58 +00002462 D->addAttr(::new (S.Context)
2463 BlocksAttr(Attr.getRange(), S.Context, type,
2464 Attr.getAttributeSpellingListIndex()));
Steve Naroff9eae5762008-09-18 16:44:58 +00002465}
2466
Chandler Carruth1b03c872011-07-02 00:01:44 +00002467static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002468 // check the attribute arguments.
2469 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002470 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002471 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002472 }
2473
John McCall3323fad2011-09-09 07:56:05 +00002474 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002475 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002476 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002477 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002478 if (E->isTypeDependent() || E->isValueDependent() ||
2479 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002480 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002481 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002482 return;
2483 }
Mike Stumpbf916502009-07-24 19:02:52 +00002484
John McCall3323fad2011-09-09 07:56:05 +00002485 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002486 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2487 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002488 return;
2489 }
John McCall3323fad2011-09-09 07:56:05 +00002490
2491 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002492 }
2493
John McCall3323fad2011-09-09 07:56:05 +00002494 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002495 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002496 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002497 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002498 if (E->isTypeDependent() || E->isValueDependent() ||
2499 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002500 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002501 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002502 return;
2503 }
2504 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002505
John McCall3323fad2011-09-09 07:56:05 +00002506 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002507 // FIXME: This error message could be improved, it would be nice
2508 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002509 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2510 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002511 return;
2512 }
2513 }
2514
Chandler Carruth87c44602011-07-01 23:49:12 +00002515 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002516 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002517 if (isa<FunctionNoProtoType>(FT)) {
2518 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2519 return;
2520 }
Mike Stumpbf916502009-07-24 19:02:52 +00002521
Chris Lattner897cd902009-03-17 23:03:47 +00002522 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002523 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002524 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002525 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002526 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002527 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002528 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002529 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002530 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002531 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2532 if (!BD->isVariadic()) {
2533 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2534 return;
2535 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002536 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002537 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002538 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002539 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002540 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002541 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002542 int m = Ty->isFunctionPointerType() ? 0 : 1;
2543 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002544 return;
2545 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002546 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002547 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002548 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002549 return;
2550 }
Anders Carlsson77091822008-10-05 18:05:59 +00002551 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002552 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002553 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002554 return;
2555 }
Michael Han51d8c522013-01-24 16:46:58 +00002556 D->addAttr(::new (S.Context)
2557 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos,
2558 Attr.getAttributeSpellingListIndex()));
Anders Carlsson77091822008-10-05 18:05:59 +00002559}
2560
Chandler Carruth1b03c872011-07-02 00:01:44 +00002561static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002562 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002563 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002564 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002565
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00002566 if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002567 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Kaelyn Uhraind449c792012-11-13 00:18:47 +00002568 << Attr.getName() << ExpectedFunctionMethodOrClass;
Chris Lattner026dc962009-02-14 07:37:35 +00002569 return;
2570 }
Mike Stumpbf916502009-07-24 19:02:52 +00002571
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002572 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2573 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2574 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002575 return;
2576 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002577 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2578 if (MD->getResultType()->isVoidType()) {
2579 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2580 << Attr.getName() << 1;
2581 return;
2582 }
2583
Michael Han51d8c522013-01-24 16:46:58 +00002584 D->addAttr(::new (S.Context)
2585 WarnUnusedResultAttr(Attr.getRange(), S.Context,
2586 Attr.getAttributeSpellingListIndex()));
Chris Lattner026dc962009-02-14 07:37:35 +00002587}
2588
Chandler Carruth1b03c872011-07-02 00:01:44 +00002589static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002590 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002591 if (Attr.hasParameterOrArguments()) {
2592 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002593 return;
2594 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002595
Chandler Carruth87c44602011-07-01 23:49:12 +00002596 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002597 if (isa<CXXRecordDecl>(D)) {
2598 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2599 return;
2600 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002601 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2602 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002603 return;
2604 }
2605
Chandler Carruth87c44602011-07-01 23:49:12 +00002606 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002607
Michael Han51d8c522013-01-24 16:46:58 +00002608 nd->addAttr(::new (S.Context)
2609 WeakAttr(Attr.getRange(), S.Context,
2610 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002611}
2612
Chandler Carruth1b03c872011-07-02 00:01:44 +00002613static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002614 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002615 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002616 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002617
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002618
2619 // weak_import only applies to variable & function declarations.
2620 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002621 if (!D->canBeWeakImported(isDef)) {
2622 if (isDef)
2623 S.Diag(Attr.getLoc(),
2624 diag::warn_attribute_weak_import_invalid_on_definition)
2625 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002626 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002627 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002628 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002629 // Nothing to warn about here.
2630 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002631 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002632 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002633
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002634 return;
2635 }
2636
Michael Han51d8c522013-01-24 16:46:58 +00002637 D->addAttr(::new (S.Context)
2638 WeakImportAttr(Attr.getRange(), S.Context,
2639 Attr.getAttributeSpellingListIndex()));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002640}
2641
Tanya Lattner0df579e2012-07-09 22:06:01 +00002642// Handles reqd_work_group_size and work_group_size_hint.
2643static void handleWorkGroupSize(Sema &S, Decl *D,
Nick Lewycky4ae89bc2012-07-24 01:31:55 +00002644 const AttributeList &Attr) {
Tanya Lattner0df579e2012-07-09 22:06:01 +00002645 assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2646 || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint);
2647
Nate Begeman6f3d8382009-06-26 06:32:41 +00002648 // Attribute has 3 arguments.
Tanya Lattner0df579e2012-07-09 22:06:01 +00002649 if (!checkAttributeNumArgs(S, Attr, 3)) return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002650
2651 unsigned WGSize[3];
2652 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002653 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002654 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002655 if (E->isTypeDependent() || E->isValueDependent() ||
2656 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002657 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Tanya Lattner0df579e2012-07-09 22:06:01 +00002658 << Attr.getName()->getName() << E->getSourceRange();
Nate Begeman6f3d8382009-06-26 06:32:41 +00002659 return;
2660 }
2661 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2662 }
Tanya Lattner0df579e2012-07-09 22:06:01 +00002663
2664 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize
2665 && D->hasAttr<ReqdWorkGroupSizeAttr>()) {
2666 ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>();
2667 if (!(A->getXDim() == WGSize[0] &&
2668 A->getYDim() == WGSize[1] &&
2669 A->getZDim() == WGSize[2])) {
2670 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2671 Attr.getName();
2672 }
2673 }
2674
2675 if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint
2676 && D->hasAttr<WorkGroupSizeHintAttr>()) {
2677 WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>();
2678 if (!(A->getXDim() == WGSize[0] &&
2679 A->getYDim() == WGSize[1] &&
2680 A->getZDim() == WGSize[2])) {
2681 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) <<
2682 Attr.getName();
2683 }
2684 }
2685
2686 if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize)
2687 D->addAttr(::new (S.Context)
2688 ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002689 WGSize[0], WGSize[1], WGSize[2],
2690 Attr.getAttributeSpellingListIndex()));
Tanya Lattner0df579e2012-07-09 22:06:01 +00002691 else
2692 D->addAttr(::new (S.Context)
2693 WorkGroupSizeHintAttr(Attr.getRange(), S.Context,
Michael Han51d8c522013-01-24 16:46:58 +00002694 WGSize[0], WGSize[1], WGSize[2],
2695 Attr.getAttributeSpellingListIndex()));
Nate Begeman6f3d8382009-06-26 06:32:41 +00002696}
2697
Rafael Espindola599f1b72012-05-13 03:25:18 +00002698SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
Michael Han51d8c522013-01-24 16:46:58 +00002699 StringRef Name,
2700 unsigned AttrSpellingListIndex) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002701 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2702 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002703 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002704 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2705 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002706 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002707 }
Michael Han51d8c522013-01-24 16:46:58 +00002708 return ::new (Context) SectionAttr(Range, Context, Name,
2709 AttrSpellingListIndex);
Rafael Espindola420efd82012-05-13 02:42:42 +00002710}
2711
Chandler Carruth1b03c872011-07-02 00:01:44 +00002712static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002713 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002714 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002715 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002716
2717 // Make sure that there is a string literal as the sections's single
2718 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002719 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002720 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002721 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002722 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002723 return;
2724 }
Mike Stump1eb44332009-09-09 15:08:12 +00002725
Chris Lattner797c3c42009-08-10 19:03:04 +00002726 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002727 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002728 if (!Error.empty()) {
2729 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2730 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002731 return;
2732 }
Mike Stump1eb44332009-09-09 15:08:12 +00002733
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002734 // This attribute cannot be applied to local variables.
2735 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2736 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2737 return;
2738 }
Michael Han51d8c522013-01-24 16:46:58 +00002739
2740 unsigned Index = Attr.getAttributeSpellingListIndex();
Rafael Espindola599f1b72012-05-13 03:25:18 +00002741 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
Michael Han51d8c522013-01-24 16:46:58 +00002742 SE->getString(), Index);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002743 if (NewAttr)
2744 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002745}
2746
Chris Lattner6b6b5372008-06-26 18:38:35 +00002747
Chandler Carruth1b03c872011-07-02 00:01:44 +00002748static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002749 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002750 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002751 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002752 return;
2753 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002754
Chandler Carruth87c44602011-07-01 23:49:12 +00002755 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002756 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002757 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002758 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002759 D->addAttr(::new (S.Context)
2760 NoThrowAttr(Attr.getRange(), S.Context,
2761 Attr.getAttributeSpellingListIndex()));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002762 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002763}
2764
Chandler Carruth1b03c872011-07-02 00:01:44 +00002765static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002766 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002767 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002768 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002769 return;
2770 }
Mike Stumpbf916502009-07-24 19:02:52 +00002771
Chandler Carruth87c44602011-07-01 23:49:12 +00002772 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002773 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002774 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002775 } else {
Michael Han51d8c522013-01-24 16:46:58 +00002776 D->addAttr(::new (S.Context)
2777 ConstAttr(Attr.getRange(), S.Context,
2778 Attr.getAttributeSpellingListIndex() ));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002779 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002780}
2781
Chandler Carruth1b03c872011-07-02 00:01:44 +00002782static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002783 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002784 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002785 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002786
Michael Han51d8c522013-01-24 16:46:58 +00002787 D->addAttr(::new (S.Context)
2788 PureAttr(Attr.getRange(), S.Context,
2789 Attr.getAttributeSpellingListIndex()));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002790}
2791
Chandler Carruth1b03c872011-07-02 00:01:44 +00002792static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002793 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002794 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2795 return;
2796 }
Mike Stumpbf916502009-07-24 19:02:52 +00002797
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002798 if (Attr.getNumArgs() != 0) {
2799 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2800 return;
2801 }
Mike Stumpbf916502009-07-24 19:02:52 +00002802
Chandler Carruth87c44602011-07-01 23:49:12 +00002803 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002804
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002805 if (!VD || !VD->hasLocalStorage()) {
2806 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2807 return;
2808 }
Mike Stumpbf916502009-07-24 19:02:52 +00002809
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002810 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002811 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002812 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002813 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2814 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002815 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002816 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002817 Attr.getParameterName();
2818 return;
2819 }
Mike Stumpbf916502009-07-24 19:02:52 +00002820
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002821 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2822 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002823 S.Diag(Attr.getParameterLoc(),
2824 diag::err_attribute_cleanup_arg_not_function)
2825 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002826 return;
2827 }
2828
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002829 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002830 S.Diag(Attr.getParameterLoc(),
2831 diag::err_attribute_cleanup_func_must_take_one_arg)
2832 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002833 return;
2834 }
Mike Stumpbf916502009-07-24 19:02:52 +00002835
Anders Carlsson89941c12009-02-07 23:16:50 +00002836 // We're currently more strict than GCC about what function types we accept.
2837 // If this ever proves to be a problem it should be easy to fix.
2838 QualType Ty = S.Context.getPointerType(VD->getType());
2839 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002840 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2841 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002842 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002843 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2844 Attr.getParameterName() << ParamTy << Ty;
2845 return;
2846 }
Mike Stumpbf916502009-07-24 19:02:52 +00002847
Michael Han51d8c522013-01-24 16:46:58 +00002848 D->addAttr(::new (S.Context)
2849 CleanupAttr(Attr.getRange(), S.Context, FD,
2850 Attr.getAttributeSpellingListIndex()));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002851 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Nick Lewycky3c86a5c2013-02-12 08:08:54 +00002852 S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc());
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002853}
2854
Mike Stumpbf916502009-07-24 19:02:52 +00002855/// Handle __attribute__((format_arg((idx)))) attribute based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002856/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002857static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002858 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002859 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002860
Chandler Carruth87c44602011-07-01 23:49:12 +00002861 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002862 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002863 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002864 return;
2865 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002866
2867 // In C++ the implicit 'this' function parameter also counts, and they are
2868 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002869 bool HasImplicitThisParam = isInstanceMethod(D);
2870 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002871 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002872
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002873 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002874 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002875 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002876 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2877 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002878 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2879 << "format" << 2 << IdxExpr->getSourceRange();
2880 return;
2881 }
Mike Stumpbf916502009-07-24 19:02:52 +00002882
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002883 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2884 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2885 << "format" << 2 << IdxExpr->getSourceRange();
2886 return;
2887 }
Mike Stumpbf916502009-07-24 19:02:52 +00002888
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002889 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002890
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002891 if (HasImplicitThisParam) {
2892 if (ArgIdx == 0) {
2893 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2894 << "format_arg" << IdxExpr->getSourceRange();
2895 return;
2896 }
2897 ArgIdx--;
2898 }
2899
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002900 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002901 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002902
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002903 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2904 if (not_nsstring_type &&
2905 !isCFStringType(Ty, S.Context) &&
2906 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002907 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002908 // FIXME: Should highlight the actual expression that has the wrong type.
2909 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002910 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002911 << IdxExpr->getSourceRange();
2912 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002913 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002914 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002915 if (!isNSStringType(Ty, S.Context) &&
2916 !isCFStringType(Ty, S.Context) &&
2917 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002918 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002919 // FIXME: Should highlight the actual expression that has the wrong type.
2920 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002921 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002922 << IdxExpr->getSourceRange();
2923 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002924 }
2925
Michael Han51d8c522013-01-24 16:46:58 +00002926 D->addAttr(::new (S.Context)
2927 FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(),
2928 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002929}
2930
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002931enum FormatAttrKind {
2932 CFStringFormat,
2933 NSStringFormat,
2934 StrftimeFormat,
2935 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002936 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002937 InvalidFormat
2938};
2939
2940/// getFormatAttrKind - Map from format attribute names to supported format
2941/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002942static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002943 return llvm::StringSwitch<FormatAttrKind>(Format)
2944 // Check for formats that get handled specially.
2945 .Case("NSString", NSStringFormat)
2946 .Case("CFString", CFStringFormat)
2947 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002948
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002949 // Otherwise, check for supported formats.
2950 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2951 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2952 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002953
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002954 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2955 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002956}
2957
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002958/// Handle __attribute__((init_priority(priority))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00002959/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002960static void handleInitPriorityAttr(Sema &S, Decl *D,
2961 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002962 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002963 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2964 return;
2965 }
2966
Chandler Carruth87c44602011-07-01 23:49:12 +00002967 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002968 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2969 Attr.setInvalid();
2970 return;
2971 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002972 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002973 if (S.Context.getAsArrayType(T))
2974 T = S.Context.getBaseElementType(T);
2975 if (!T->getAs<RecordType>()) {
2976 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2977 Attr.setInvalid();
2978 return;
2979 }
2980
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002981 if (Attr.getNumArgs() != 1) {
2982 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2983 Attr.setInvalid();
2984 return;
2985 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002986 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002987
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002988 llvm::APSInt priority(32);
2989 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2990 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2991 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2992 << "init_priority" << priorityExpr->getSourceRange();
2993 Attr.setInvalid();
2994 return;
2995 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002996 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002997 if (prioritynum < 101 || prioritynum > 65535) {
2998 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2999 << priorityExpr->getSourceRange();
3000 Attr.setInvalid();
3001 return;
3002 }
Michael Han51d8c522013-01-24 16:46:58 +00003003 D->addAttr(::new (S.Context)
3004 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum,
3005 Attr.getAttributeSpellingListIndex()));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003006}
3007
Rafael Espindola599f1b72012-05-13 03:25:18 +00003008FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
Michael Han51d8c522013-01-24 16:46:58 +00003009 int FormatIdx, int FirstArg,
3010 unsigned AttrSpellingListIndex) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003011 // Check whether we already have an equivalent format attribute.
3012 for (specific_attr_iterator<FormatAttr>
3013 i = D->specific_attr_begin<FormatAttr>(),
3014 e = D->specific_attr_end<FormatAttr>();
3015 i != e ; ++i) {
3016 FormatAttr *f = *i;
3017 if (f->getType() == Format &&
3018 f->getFormatIdx() == FormatIdx &&
3019 f->getFirstArg() == FirstArg) {
3020 // If we don't have a valid location for this attribute, adopt the
3021 // location.
3022 if (f->getLocation().isInvalid())
3023 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00003024 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003025 }
3026 }
3027
Michael Han51d8c522013-01-24 16:46:58 +00003028 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg,
3029 AttrSpellingListIndex);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00003030}
3031
Mike Stumpbf916502009-07-24 19:02:52 +00003032/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
Bill Wendlingad017fa2012-12-20 19:22:21 +00003033/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00003034static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003035
Chris Lattner545dd342008-06-28 23:36:30 +00003036 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003037 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00003038 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003039 return;
3040 }
3041
Chris Lattner545dd342008-06-28 23:36:30 +00003042 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003043 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003044 return;
3045 }
3046
Chandler Carruth87c44602011-07-01 23:49:12 +00003047 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003048 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003049 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003050 return;
3051 }
3052
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003053 // In C++ the implicit 'this' function parameter also counts, and they are
3054 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00003055 bool HasImplicitThisParam = isInstanceMethod(D);
3056 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003057 unsigned FirstIdx = 1;
3058
Chris Lattner5f9e2722011-07-23 10:55:15 +00003059 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003060
3061 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003062 if (Format.startswith("__") && Format.endswith("__"))
3063 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003064
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003065 // Check for supported formats.
3066 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00003067
3068 if (Kind == IgnoredFormat)
3069 return;
3070
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003071 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003072 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003073 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003074 return;
3075 }
3076
3077 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003078 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00003079 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003080 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
3081 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003082 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003083 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003084 return;
3085 }
3086
3087 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003088 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003089 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003090 return;
3091 }
3092
3093 // FIXME: Do we need to bounds check?
3094 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00003095
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003096 if (HasImplicitThisParam) {
3097 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00003098 S.Diag(Attr.getLoc(),
3099 diag::err_format_attribute_implicit_this_format_string)
3100 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00003101 return;
3102 }
3103 ArgIdx--;
3104 }
Mike Stump1eb44332009-09-09 15:08:12 +00003105
Chris Lattner6b6b5372008-06-26 18:38:35 +00003106 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00003107 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003108
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003109 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003110 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003111 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3112 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00003113 return;
3114 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003115 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003116 // FIXME: do we need to check if the type is NSString*? What are the
3117 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00003118 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003119 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003120 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3121 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003122 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003123 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003124 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00003125 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00003126 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003127 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
3128 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003129 return;
3130 }
3131
3132 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00003133 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00003134 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003135 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
3136 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003137 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00003138 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003139 return;
3140 }
3141
3142 // check if the function is variadic if the 3rd argument non-zero
3143 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003144 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003145 ++NumArgs; // +1 for ...
3146 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003147 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003148 return;
3149 }
3150 }
3151
Chris Lattner3c73c412008-11-19 08:23:25 +00003152 // strftime requires FirstArg to be 0 because it doesn't read from any
3153 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00003154 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003155 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003156 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
3157 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003158 return;
3159 }
3160 // if 0 it disables parameter checking (to use with e.g. va_list)
3161 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003162 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00003163 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00003164 return;
3165 }
3166
Rafael Espindola599f1b72012-05-13 03:25:18 +00003167 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
3168 Idx.getZExtValue(),
Michael Han51d8c522013-01-24 16:46:58 +00003169 FirstArg.getZExtValue(),
3170 Attr.getAttributeSpellingListIndex());
Rafael Espindola599f1b72012-05-13 03:25:18 +00003171 if (NewAttr)
3172 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00003173}
3174
Chandler Carruth1b03c872011-07-02 00:01:44 +00003175static void handleTransparentUnionAttr(Sema &S, Decl *D,
3176 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003177 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003178 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003179 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003180
Chris Lattner6b6b5372008-06-26 18:38:35 +00003181
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003182 // Try to find the underlying union declaration.
3183 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00003184 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003185 if (TD && TD->getUnderlyingType()->isUnionType())
3186 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3187 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003188 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003189
3190 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003191 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003192 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003193 return;
3194 }
3195
John McCall5e1cdac2011-10-07 06:10:15 +00003196 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003197 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003198 diag::warn_transparent_union_attribute_not_definition);
3199 return;
3200 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00003201
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003202 RecordDecl::field_iterator Field = RD->field_begin(),
3203 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003204 if (Field == FieldEnd) {
3205 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3206 return;
3207 }
Eli Friedmanbc887452008-09-02 05:19:23 +00003208
David Blaikie581deb32012-06-06 20:45:41 +00003209 FieldDecl *FirstField = *Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003210 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00003211 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00003212 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00003213 diag::warn_transparent_union_attribute_floating)
3214 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003215 return;
3216 }
3217
3218 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3219 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3220 for (; Field != FieldEnd; ++Field) {
3221 QualType FieldType = Field->getType();
3222 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3223 S.Context.getTypeAlign(FieldType) != FirstAlign) {
3224 // Warn if we drop the attribute.
3225 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00003226 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003227 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00003228 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003229 diag::warn_transparent_union_attribute_field_size_align)
3230 << isSize << Field->getDeclName() << FieldBits;
3231 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00003232 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003233 diag::note_transparent_union_first_field_size_align)
3234 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00003235 return;
3236 }
3237 }
3238
Michael Han51d8c522013-01-24 16:46:58 +00003239 RD->addAttr(::new (S.Context)
3240 TransparentUnionAttr(Attr.getRange(), S.Context,
3241 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003242}
3243
Chandler Carruth1b03c872011-07-02 00:01:44 +00003244static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003245 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003246 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00003247 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003248
Peter Collingbourne7a730022010-11-23 20:45:58 +00003249 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00003250 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00003251
Chris Lattner6b6b5372008-06-26 18:38:35 +00003252 // Make sure that there is a string literal as the annotation's single
3253 // argument.
3254 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00003255 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00003256 return;
3257 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00003258
3259 // Don't duplicate annotations that are already set.
3260 for (specific_attr_iterator<AnnotateAttr>
3261 i = D->specific_attr_begin<AnnotateAttr>(),
3262 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
3263 if ((*i)->getAnnotation() == SE->getString())
3264 return;
3265 }
Michael Han51d8c522013-01-24 16:46:58 +00003266
3267 D->addAttr(::new (S.Context)
3268 AnnotateAttr(Attr.getRange(), S.Context, SE->getString(),
3269 Attr.getAttributeSpellingListIndex()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00003270}
3271
Chandler Carruth1b03c872011-07-02 00:01:44 +00003272static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00003273 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00003274 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00003275 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003276 return;
3277 }
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003278
Richard Smithbe507b62013-02-01 08:12:08 +00003279 // FIXME: The C++11 version of this attribute should error out when it is
3280 // used to specify a weaker alignment, rather than being silently
3281 // ignored. This constraint cannot be applied until we have seen
3282 // all the attributes which apply to the variable.
3283
3284 if (Attr.getNumArgs() == 0) {
3285 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context,
3286 true, 0, Attr.getAttributeSpellingListIndex()));
3287 return;
3288 }
3289
3290 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0),
3291 Attr.getAttributeSpellingListIndex());
3292}
3293
3294void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
3295 unsigned SpellingListIndex) {
3296 // FIXME: Handle pack-expansions here.
3297 if (DiagnoseUnexpandedParameterPack(E))
3298 return;
3299
3300 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3301 SourceLocation AttrLoc = AttrRange.getBegin();
3302
Richard Smith4cd81c52013-01-29 09:02:09 +00003303 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
Richard Smithbe507b62013-02-01 08:12:08 +00003304 if (TmpAttr.isAlignas()) {
Richard Smith4cd81c52013-01-29 09:02:09 +00003305 // C++11 [dcl.align]p1:
3306 // An alignment-specifier may be applied to a variable or to a class
3307 // data member, but it shall not be applied to a bit-field, a function
3308 // parameter, the formal parameter of a catch clause, or a variable
3309 // declared with the register storage class specifier. An
3310 // alignment-specifier may also be applied to the declaration of a class
3311 // or enumeration type.
3312 // C11 6.7.5/2:
3313 // An alignment attribute shall not be specified in a declaration of
3314 // a typedef, or a bit-field, or a function, or a parameter, or an
3315 // object declared with the register storage-class specifier.
3316 int DiagKind = -1;
3317 if (isa<ParmVarDecl>(D)) {
3318 DiagKind = 0;
3319 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
3320 if (VD->getStorageClass() == SC_Register)
3321 DiagKind = 1;
3322 if (VD->isExceptionVariable())
3323 DiagKind = 2;
3324 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
3325 if (FD->isBitField())
3326 DiagKind = 3;
3327 } else if (!isa<TagDecl>(D)) {
Richard Smithbe507b62013-02-01 08:12:08 +00003328 Diag(AttrLoc, diag::err_attribute_wrong_decl_type)
3329 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
Richard Smith5f838aa2013-02-01 08:25:07 +00003330 << (TmpAttr.isC11() ? ExpectedVariableOrField
3331 : ExpectedVariableFieldOrTag);
Richard Smith4cd81c52013-01-29 09:02:09 +00003332 return;
3333 }
3334 if (DiagKind != -1) {
Richard Smithbe507b62013-02-01 08:12:08 +00003335 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
3336 << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'")
3337 << DiagKind;
Richard Smith4cd81c52013-01-29 09:02:09 +00003338 return;
3339 }
3340 }
3341
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003342 if (E->isTypeDependent() || E->isValueDependent()) {
3343 // Save dependent expressions in the AST to be instantiated.
Richard Smithbe507b62013-02-01 08:12:08 +00003344 D->addAttr(::new (Context) AlignedAttr(TmpAttr));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003345 return;
3346 }
Michael Hana31f65b2013-02-01 01:19:17 +00003347
Sean Huntcf807c42010-08-18 23:23:40 +00003348 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00003349 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00003350 ExprResult ICE
3351 = VerifyIntegerConstantExpression(E, &Alignment,
3352 diag::err_aligned_attribute_argument_not_int,
3353 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00003354 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00003355 return;
Richard Smithbe507b62013-02-01 08:12:08 +00003356
3357 // C++11 [dcl.align]p2:
3358 // -- if the constant expression evaluates to zero, the alignment
3359 // specifier shall have no effect
3360 // C11 6.7.5p6:
3361 // An alignment specification of zero has no effect.
3362 if (!(TmpAttr.isAlignas() && !Alignment) &&
3363 !llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00003364 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
3365 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003366 return;
3367 }
Michael Hana31f65b2013-02-01 01:19:17 +00003368
Richard Smithbe507b62013-02-01 08:12:08 +00003369 if (TmpAttr.isDeclspec()) {
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003370 // We've already verified it's a power of 2, now let's make sure it's
3371 // 8192 or less.
3372 if (Alignment.getZExtValue() > 8192) {
Michael Hana31f65b2013-02-01 01:19:17 +00003373 Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192)
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00003374 << E->getSourceRange();
3375 return;
3376 }
3377 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00003378
Richard Smithbe507b62013-02-01 08:12:08 +00003379 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true,
3380 ICE.take(), SpellingListIndex));
Sean Huntcf807c42010-08-18 23:23:40 +00003381}
3382
Michael Hana31f65b2013-02-01 01:19:17 +00003383void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
3384 unsigned SpellingListIndex) {
Sean Huntcf807c42010-08-18 23:23:40 +00003385 // FIXME: Cache the number on the Attr object if non-dependent?
3386 // FIXME: Perform checking of type validity
Michael Hana31f65b2013-02-01 01:19:17 +00003387 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3388 SpellingListIndex));
Sean Huntcf807c42010-08-18 23:23:40 +00003389 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00003390}
Chris Lattnerfbf13472008-06-27 22:18:37 +00003391
Richard Smithbe507b62013-02-01 08:12:08 +00003392void Sema::CheckAlignasUnderalignment(Decl *D) {
3393 assert(D->hasAttrs() && "no attributes on decl");
3394
3395 QualType Ty;
3396 if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3397 Ty = VD->getType();
3398 else
3399 Ty = Context.getTagDeclType(cast<TagDecl>(D));
3400 if (Ty->isDependentType())
3401 return;
3402
3403 // C++11 [dcl.align]p5, C11 6.7.5/4:
3404 // The combined effect of all alignment attributes in a declaration shall
3405 // not specify an alignment that is less strict than the alignment that
3406 // would otherwise be required for the entity being declared.
3407 AlignedAttr *AlignasAttr = 0;
3408 unsigned Align = 0;
3409 for (specific_attr_iterator<AlignedAttr>
3410 I = D->specific_attr_begin<AlignedAttr>(),
3411 E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) {
3412 if (I->isAlignmentDependent())
3413 return;
3414 if (I->isAlignas())
3415 AlignasAttr = *I;
3416 Align = std::max(Align, I->getAlignment(Context));
3417 }
3418
3419 if (AlignasAttr && Align) {
3420 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3421 CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty);
3422 if (NaturalAlign > RequestedAlign)
3423 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3424 << Ty << (unsigned)NaturalAlign.getQuantity();
3425 }
3426}
3427
Chandler Carruthd309c812011-07-01 23:49:16 +00003428/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00003429/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00003430///
Mike Stumpbf916502009-07-24 19:02:52 +00003431/// Despite what would be logical, the mode attribute is a decl attribute, not a
3432/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
3433/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003434static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003435 // This attribute isn't documented, but glibc uses it. It changes
3436 // the width of an int or unsigned int to the specified size.
3437
3438 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00003439 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003440 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003441
Chris Lattnerfbf13472008-06-27 22:18:37 +00003442
3443 IdentifierInfo *Name = Attr.getParameterName();
3444 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003445 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003446 return;
3447 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00003448
Chris Lattner5f9e2722011-07-23 10:55:15 +00003449 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003450
3451 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003452 if (Str.startswith("__") && Str.endswith("__"))
3453 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003454
3455 unsigned DestWidth = 0;
3456 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00003457 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00003458 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00003459 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00003460 switch (Str[0]) {
3461 case 'Q': DestWidth = 8; break;
3462 case 'H': DestWidth = 16; break;
3463 case 'S': DestWidth = 32; break;
3464 case 'D': DestWidth = 64; break;
3465 case 'X': DestWidth = 96; break;
3466 case 'T': DestWidth = 128; break;
3467 }
3468 if (Str[1] == 'F') {
3469 IntegerMode = false;
3470 } else if (Str[1] == 'C') {
3471 IntegerMode = false;
3472 ComplexMode = true;
3473 } else if (Str[1] != 'I') {
3474 DestWidth = 0;
3475 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003476 break;
3477 case 4:
3478 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
3479 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00003480 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003481 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00003482 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003483 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003484 break;
3485 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003486 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003487 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003488 break;
Rafael Espindola8e721b72013-01-07 19:58:54 +00003489 case 11:
3490 if (Str == "unwind_word")
Rafael Espindola0b1de542013-01-07 20:01:57 +00003491 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
Rafael Espindola8e721b72013-01-07 19:58:54 +00003492 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003493 }
3494
3495 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003496 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003497 OldTy = TD->getUnderlyingType();
3498 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3499 OldTy = VD->getType();
3500 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003501 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003502 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003503 return;
3504 }
Eli Friedman73397492009-03-03 06:41:03 +00003505
John McCall183700f2009-09-21 23:43:11 +00003506 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003507 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3508 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003509 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003510 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3511 } else if (ComplexMode) {
3512 if (!OldTy->isComplexType())
3513 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3514 } else {
3515 if (!OldTy->isFloatingType())
3516 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3517 }
3518
Mike Stump390b4cc2009-05-16 07:39:55 +00003519 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3520 // and friends, at least with glibc.
3521 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3522 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003523 // FIXME: Make sure floating-point mappings are accurate
3524 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003525 QualType NewTy;
3526 switch (DestWidth) {
3527 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003528 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003529 return;
3530 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003531 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003532 return;
3533 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003534 if (!IntegerMode) {
3535 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3536 return;
3537 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003538 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003539 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003540 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003541 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003542 break;
3543 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003544 if (!IntegerMode) {
3545 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3546 return;
3547 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003548 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003549 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003550 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003551 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003552 break;
3553 case 32:
3554 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003555 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003556 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003557 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003558 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003559 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003560 break;
3561 case 64:
3562 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003563 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003564 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003565 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003566 NewTy = S.Context.LongTy;
3567 else
3568 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003569 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003570 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003571 NewTy = S.Context.UnsignedLongTy;
3572 else
3573 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003574 break;
Eli Friedman73397492009-03-03 06:41:03 +00003575 case 96:
3576 NewTy = S.Context.LongDoubleTy;
3577 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003578 case 128:
3579 if (!IntegerMode) {
3580 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3581 return;
3582 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003583 if (OldTy->isSignedIntegerType())
3584 NewTy = S.Context.Int128Ty;
3585 else
3586 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003587 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003588 }
3589
Eli Friedman73397492009-03-03 06:41:03 +00003590 if (ComplexMode) {
3591 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003592 }
3593
3594 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003595 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003596 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003597 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003598 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003599 cast<ValueDecl>(D)->setType(NewTy);
3600}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003601
Chandler Carruth1b03c872011-07-02 00:01:44 +00003602static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003603 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003604 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003605 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003606
Nick Lewycky78d1a102012-07-24 01:40:49 +00003607 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
3608 if (!VD->hasGlobalStorage())
3609 S.Diag(Attr.getLoc(),
3610 diag::warn_attribute_requires_functions_or_static_globals)
3611 << Attr.getName();
3612 } else if (!isFunctionOrMethod(D)) {
3613 S.Diag(Attr.getLoc(),
3614 diag::warn_attribute_requires_functions_or_static_globals)
3615 << Attr.getName();
Anders Carlssond87df372009-02-13 06:46:13 +00003616 return;
3617 }
Mike Stumpbf916502009-07-24 19:02:52 +00003618
Michael Han51d8c522013-01-24 16:46:58 +00003619 D->addAttr(::new (S.Context)
3620 NoDebugAttr(Attr.getRange(), S.Context,
3621 Attr.getAttributeSpellingListIndex()));
Anders Carlssond87df372009-02-13 06:46:13 +00003622}
3623
Chandler Carruth1b03c872011-07-02 00:01:44 +00003624static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003625 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003626 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003627 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003628
Mike Stumpbf916502009-07-24 19:02:52 +00003629
Chandler Carruth87c44602011-07-01 23:49:12 +00003630 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003631 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003632 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003633 return;
3634 }
Mike Stumpbf916502009-07-24 19:02:52 +00003635
Michael Han51d8c522013-01-24 16:46:58 +00003636 D->addAttr(::new (S.Context)
3637 NoInlineAttr(Attr.getRange(), S.Context,
3638 Attr.getAttributeSpellingListIndex()));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003639}
3640
Chandler Carruth1b03c872011-07-02 00:01:44 +00003641static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3642 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003643 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003644 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003645 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003646
Chris Lattner7255a2d2010-06-22 00:03:40 +00003647
Chandler Carruth87c44602011-07-01 23:49:12 +00003648 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003649 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003650 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003651 return;
3652 }
3653
Michael Han51d8c522013-01-24 16:46:58 +00003654 D->addAttr(::new (S.Context)
3655 NoInstrumentFunctionAttr(Attr.getRange(), S.Context,
3656 Attr.getAttributeSpellingListIndex()));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003657}
3658
Chandler Carruth1b03c872011-07-02 00:01:44 +00003659static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003660 if (S.LangOpts.CUDA) {
3661 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003662 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003663 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3664 return;
3665 }
3666
Chandler Carruth87c44602011-07-01 23:49:12 +00003667 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003668 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003669 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003670 return;
3671 }
3672
Michael Han51d8c522013-01-24 16:46:58 +00003673 D->addAttr(::new (S.Context)
3674 CUDAConstantAttr(Attr.getRange(), S.Context,
3675 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003676 } else {
3677 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3678 }
3679}
3680
Chandler Carruth1b03c872011-07-02 00:01:44 +00003681static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003682 if (S.LangOpts.CUDA) {
3683 // check the attribute arguments.
3684 if (Attr.getNumArgs() != 0) {
3685 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3686 return;
3687 }
3688
Chandler Carruth87c44602011-07-01 23:49:12 +00003689 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003690 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003691 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003692 return;
3693 }
3694
Michael Han51d8c522013-01-24 16:46:58 +00003695 D->addAttr(::new (S.Context)
3696 CUDADeviceAttr(Attr.getRange(), S.Context,
3697 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003698 } else {
3699 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3700 }
3701}
3702
Chandler Carruth1b03c872011-07-02 00:01:44 +00003703static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003704 if (S.LangOpts.CUDA) {
3705 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003706 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003707 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003708
Chandler Carruth87c44602011-07-01 23:49:12 +00003709 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003710 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003711 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003712 return;
3713 }
3714
Chandler Carruth87c44602011-07-01 23:49:12 +00003715 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003716 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003717 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
David Blaikie39e6ab42013-02-18 22:06:02 +00003718 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003719 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3720 << FD->getType()
David Blaikie39e6ab42013-02-18 22:06:02 +00003721 << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(),
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003722 "void");
3723 } else {
3724 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3725 << FD->getType();
3726 }
3727 return;
3728 }
3729
Michael Han51d8c522013-01-24 16:46:58 +00003730 D->addAttr(::new (S.Context)
3731 CUDAGlobalAttr(Attr.getRange(), S.Context,
3732 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003733 } else {
3734 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3735 }
3736}
3737
Chandler Carruth1b03c872011-07-02 00:01:44 +00003738static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003739 if (S.LangOpts.CUDA) {
3740 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003741 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003742 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003743
Peter Collingbourneced76712010-12-01 03:15:31 +00003744
Chandler Carruth87c44602011-07-01 23:49:12 +00003745 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003746 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003747 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003748 return;
3749 }
3750
Michael Han51d8c522013-01-24 16:46:58 +00003751 D->addAttr(::new (S.Context)
3752 CUDAHostAttr(Attr.getRange(), S.Context,
3753 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003754 } else {
3755 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3756 }
3757}
3758
Chandler Carruth1b03c872011-07-02 00:01:44 +00003759static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003760 if (S.LangOpts.CUDA) {
3761 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003762 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003763 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003764
Chandler Carruth87c44602011-07-01 23:49:12 +00003765 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003766 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003767 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003768 return;
3769 }
3770
Michael Han51d8c522013-01-24 16:46:58 +00003771 D->addAttr(::new (S.Context)
3772 CUDASharedAttr(Attr.getRange(), S.Context,
3773 Attr.getAttributeSpellingListIndex()));
Peter Collingbourneced76712010-12-01 03:15:31 +00003774 } else {
3775 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3776 }
3777}
3778
Chandler Carruth1b03c872011-07-02 00:01:44 +00003779static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003780 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003781 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003782 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003783
Chandler Carruth87c44602011-07-01 23:49:12 +00003784 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003785 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003786 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003787 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003788 return;
3789 }
Mike Stumpbf916502009-07-24 19:02:52 +00003790
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003791 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003792 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003793 return;
3794 }
Mike Stumpbf916502009-07-24 19:02:52 +00003795
Michael Han51d8c522013-01-24 16:46:58 +00003796 D->addAttr(::new (S.Context)
3797 GNUInlineAttr(Attr.getRange(), S.Context,
3798 Attr.getAttributeSpellingListIndex()));
Chris Lattner26e25542009-04-14 16:30:50 +00003799}
3800
Chandler Carruth1b03c872011-07-02 00:01:44 +00003801static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003802 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003803
Aaron Ballmanfff32482012-12-09 17:45:41 +00003804 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Chandler Carruth87c44602011-07-01 23:49:12 +00003805 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003806 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3807 CallingConv CC;
Aaron Ballmanfff32482012-12-09 17:45:41 +00003808 if (S.CheckCallingConvAttr(Attr, CC, FD))
John McCall711c52b2011-01-05 12:14:39 +00003809 return;
3810
Chandler Carruth87c44602011-07-01 23:49:12 +00003811 if (!isa<ObjCMethodDecl>(D)) {
3812 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3813 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003814 return;
3815 }
3816
Chandler Carruth87c44602011-07-01 23:49:12 +00003817 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003818 case AttributeList::AT_FastCall:
Michael Han51d8c522013-01-24 16:46:58 +00003819 D->addAttr(::new (S.Context)
3820 FastCallAttr(Attr.getRange(), S.Context,
3821 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003822 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003823 case AttributeList::AT_StdCall:
Michael Han51d8c522013-01-24 16:46:58 +00003824 D->addAttr(::new (S.Context)
3825 StdCallAttr(Attr.getRange(), S.Context,
3826 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003827 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003828 case AttributeList::AT_ThisCall:
Michael Han51d8c522013-01-24 16:46:58 +00003829 D->addAttr(::new (S.Context)
3830 ThisCallAttr(Attr.getRange(), S.Context,
3831 Attr.getAttributeSpellingListIndex()));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003832 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003833 case AttributeList::AT_CDecl:
Michael Han51d8c522013-01-24 16:46:58 +00003834 D->addAttr(::new (S.Context)
3835 CDeclAttr(Attr.getRange(), S.Context,
3836 Attr.getAttributeSpellingListIndex()));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003837 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003838 case AttributeList::AT_Pascal:
Michael Han51d8c522013-01-24 16:46:58 +00003839 D->addAttr(::new (S.Context)
3840 PascalAttr(Attr.getRange(), S.Context,
3841 Attr.getAttributeSpellingListIndex()));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003842 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00003843 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003844 PcsAttr::PCSType PCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003845 switch (CC) {
3846 case CC_AAPCS:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003847 PCS = PcsAttr::AAPCS;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003848 break;
3849 case CC_AAPCS_VFP:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003850 PCS = PcsAttr::AAPCS_VFP;
Benjamin Kramer9071def2012-08-14 13:24:39 +00003851 break;
3852 default:
3853 llvm_unreachable("unexpected calling convention in pcs attribute");
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003854 }
3855
Michael Han51d8c522013-01-24 16:46:58 +00003856 D->addAttr(::new (S.Context)
3857 PcsAttr(Attr.getRange(), S.Context, PCS,
3858 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003859 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003860 }
Derek Schuff263366f2012-10-16 22:30:41 +00003861 case AttributeList::AT_PnaclCall:
Michael Han51d8c522013-01-24 16:46:58 +00003862 D->addAttr(::new (S.Context)
3863 PnaclCallAttr(Attr.getRange(), S.Context,
3864 Attr.getAttributeSpellingListIndex()));
Derek Schuff263366f2012-10-16 22:30:41 +00003865 return;
Guy Benyei38980082012-12-25 08:53:55 +00003866 case AttributeList::AT_IntelOclBicc:
Michael Han51d8c522013-01-24 16:46:58 +00003867 D->addAttr(::new (S.Context)
3868 IntelOclBiccAttr(Attr.getRange(), S.Context,
3869 Attr.getAttributeSpellingListIndex()));
Guy Benyei38980082012-12-25 08:53:55 +00003870 return;
Derek Schuff263366f2012-10-16 22:30:41 +00003871
Abramo Bagnarae215f722010-04-30 13:10:51 +00003872 default:
3873 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003874 }
3875}
3876
Chandler Carruth1b03c872011-07-02 00:01:44 +00003877static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003878 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003879 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003880}
3881
Aaron Ballmanfff32482012-12-09 17:45:41 +00003882bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC,
3883 const FunctionDecl *FD) {
John McCall711c52b2011-01-05 12:14:39 +00003884 if (attr.isInvalid())
3885 return true;
3886
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003887 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0;
3888 if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) {
3889 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs;
John McCall711c52b2011-01-05 12:14:39 +00003890 attr.setInvalid();
3891 return true;
3892 }
3893
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003894 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3895 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003896 switch (attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00003897 case AttributeList::AT_CDecl: CC = CC_C; break;
3898 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break;
3899 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break;
3900 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break;
3901 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break;
3902 case AttributeList::AT_Pcs: {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003903 Expr *Arg = attr.getArg(0);
3904 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003905 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003906 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3907 << "pcs" << 1;
3908 attr.setInvalid();
3909 return true;
3910 }
3911
Chris Lattner5f9e2722011-07-23 10:55:15 +00003912 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003913 if (StrRef == "aapcs") {
3914 CC = CC_AAPCS;
3915 break;
3916 } else if (StrRef == "aapcs-vfp") {
3917 CC = CC_AAPCS_VFP;
3918 break;
3919 }
Benjamin Kramerfac8e432012-08-14 13:13:47 +00003920
3921 attr.setInvalid();
3922 Diag(attr.getLoc(), diag::err_invalid_pcs);
3923 return true;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003924 }
Derek Schuff263366f2012-10-16 22:30:41 +00003925 case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break;
Guy Benyei38980082012-12-25 08:53:55 +00003926 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break;
David Blaikie7530c032012-01-17 06:56:22 +00003927 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003928 }
3929
Aaron Ballman82bfa192012-10-02 14:26:08 +00003930 const TargetInfo &TI = Context.getTargetInfo();
3931 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3932 if (A == TargetInfo::CCCR_Warning) {
3933 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName();
Aaron Ballmanfff32482012-12-09 17:45:41 +00003934
3935 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown;
3936 if (FD)
3937 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member :
3938 TargetInfo::CCMT_NonMember;
3939 CC = TI.getDefaultCallingConv(MT);
Aaron Ballman82bfa192012-10-02 14:26:08 +00003940 }
3941
John McCall711c52b2011-01-05 12:14:39 +00003942 return false;
3943}
3944
Chandler Carruth1b03c872011-07-02 00:01:44 +00003945static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003946 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003947
3948 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003949 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003950 return;
3951
Chandler Carruth87c44602011-07-01 23:49:12 +00003952 if (!isa<ObjCMethodDecl>(D)) {
3953 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3954 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003955 return;
3956 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003957
Michael Han51d8c522013-01-24 16:46:58 +00003958 D->addAttr(::new (S.Context)
3959 RegparmAttr(Attr.getRange(), S.Context, numParams,
3960 Attr.getAttributeSpellingListIndex()));
John McCall711c52b2011-01-05 12:14:39 +00003961}
3962
3963/// Checks a regparm attribute, returning true if it is ill-formed and
3964/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003965bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3966 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003967 return true;
3968
Chandler Carruth87c44602011-07-01 23:49:12 +00003969 if (Attr.getNumArgs() != 1) {
3970 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3971 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003972 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003973 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003974
Chandler Carruth87c44602011-07-01 23:49:12 +00003975 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003976 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003977 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003978 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003979 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003980 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003981 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003982 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003983 }
3984
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003985 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003986 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003987 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003988 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003989 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003990 }
3991
John McCall711c52b2011-01-05 12:14:39 +00003992 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003993 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003994 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003995 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003996 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003997 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003998 }
3999
John McCall711c52b2011-01-05 12:14:39 +00004000 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00004001}
4002
Chandler Carruth1b03c872011-07-02 00:01:44 +00004003static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00004004 if (S.LangOpts.CUDA) {
4005 // check the attribute arguments.
4006 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00004007 // FIXME: 0 is not okay.
4008 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004009 return;
4010 }
4011
Chandler Carruth87c44602011-07-01 23:49:12 +00004012 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00004013 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00004014 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00004015 return;
4016 }
4017
4018 Expr *MaxThreadsExpr = Attr.getArg(0);
4019 llvm::APSInt MaxThreads(32);
4020 if (MaxThreadsExpr->isTypeDependent() ||
4021 MaxThreadsExpr->isValueDependent() ||
4022 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
4023 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4024 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
4025 return;
4026 }
4027
4028 llvm::APSInt MinBlocks(32);
4029 if (Attr.getNumArgs() > 1) {
4030 Expr *MinBlocksExpr = Attr.getArg(1);
4031 if (MinBlocksExpr->isTypeDependent() ||
4032 MinBlocksExpr->isValueDependent() ||
4033 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
4034 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
4035 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
4036 return;
4037 }
4038 }
4039
Michael Han51d8c522013-01-24 16:46:58 +00004040 D->addAttr(::new (S.Context)
4041 CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
4042 MaxThreads.getZExtValue(),
4043 MinBlocks.getZExtValue(),
4044 Attr.getAttributeSpellingListIndex()));
Peter Collingbourne7b381982010-12-12 23:03:07 +00004045 } else {
4046 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
4047 }
4048}
4049
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004050static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4051 const AttributeList &Attr) {
4052 StringRef AttrName = Attr.getName()->getName();
4053 if (!Attr.getParameterName()) {
4054 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4055 << Attr.getName() << /* arg num = */ 1;
4056 return;
4057 }
4058
4059 if (Attr.getNumArgs() != 2) {
4060 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
4061 << /* required args = */ 3;
4062 return;
4063 }
4064
4065 IdentifierInfo *ArgumentKind = Attr.getParameterName();
4066
4067 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
4068 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
4069 << Attr.getName() << ExpectedFunctionOrMethod;
4070 return;
4071 }
4072
4073 uint64_t ArgumentIdx;
4074 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4075 Attr.getLoc(), 2,
4076 Attr.getArg(0), ArgumentIdx))
4077 return;
4078
4079 uint64_t TypeTagIdx;
4080 if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName,
4081 Attr.getLoc(), 3,
4082 Attr.getArg(1), TypeTagIdx))
4083 return;
4084
4085 bool IsPointer = (AttrName == "pointer_with_type_tag");
4086 if (IsPointer) {
4087 // Ensure that buffer has a pointer type.
4088 QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx);
4089 if (!BufferTy->isPointerType()) {
4090 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only)
4091 << AttrName;
4092 }
4093 }
4094
Michael Han51d8c522013-01-24 16:46:58 +00004095 D->addAttr(::new (S.Context)
4096 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind,
4097 ArgumentIdx, TypeTagIdx, IsPointer,
4098 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004099}
4100
4101static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
4102 const AttributeList &Attr) {
4103 IdentifierInfo *PointerKind = Attr.getParameterName();
4104 if (!PointerKind) {
4105 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier)
4106 << "type_tag_for_datatype" << 1;
4107 return;
4108 }
4109
4110 QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL);
4111
Michael Han51d8c522013-01-24 16:46:58 +00004112 D->addAttr(::new (S.Context)
4113 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind,
4114 MatchingCType,
4115 Attr.getLayoutCompatible(),
4116 Attr.getMustBeNull(),
4117 Attr.getAttributeSpellingListIndex()));
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004118}
4119
Chris Lattner0744e5f2008-06-29 00:23:49 +00004120//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00004121// Checker-specific attribute handlers.
4122//===----------------------------------------------------------------------===//
4123
John McCallc7ad3812011-01-25 03:31:58 +00004124static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004125 return type->isDependentType() ||
4126 type->isObjCObjectPointerType() ||
4127 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00004128}
4129static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00004130 return type->isDependentType() ||
4131 type->isPointerType() ||
4132 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00004133}
4134
Chandler Carruth1b03c872011-07-02 00:01:44 +00004135static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004136 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00004137 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004138 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004139 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00004140 return;
4141 }
4142
4143 bool typeOK, cf;
Sean Hunt8e083e72012-06-19 23:57:03 +00004144 if (Attr.getKind() == AttributeList::AT_NSConsumed) {
John McCallc7ad3812011-01-25 03:31:58 +00004145 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
4146 cf = false;
4147 } else {
4148 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
4149 cf = true;
4150 }
4151
4152 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004153 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004154 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00004155 return;
4156 }
4157
4158 if (cf)
Michael Han51d8c522013-01-24 16:46:58 +00004159 param->addAttr(::new (S.Context)
4160 CFConsumedAttr(Attr.getRange(), S.Context,
4161 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004162 else
Michael Han51d8c522013-01-24 16:46:58 +00004163 param->addAttr(::new (S.Context)
4164 NSConsumedAttr(Attr.getRange(), S.Context,
4165 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004166}
4167
Chandler Carruth1b03c872011-07-02 00:01:44 +00004168static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
4169 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004170 if (!isa<ObjCMethodDecl>(D)) {
4171 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004172 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00004173 return;
4174 }
4175
Michael Han51d8c522013-01-24 16:46:58 +00004176 D->addAttr(::new (S.Context)
4177 NSConsumesSelfAttr(Attr.getRange(), S.Context,
4178 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004179}
4180
Chandler Carruth1b03c872011-07-02 00:01:44 +00004181static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
4182 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004183
John McCallc7ad3812011-01-25 03:31:58 +00004184 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00004185
Chandler Carruth87c44602011-07-01 23:49:12 +00004186 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004187 returnType = MD->getResultType();
David Blaikie4e4d0842012-03-11 07:00:24 +00004188 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Sean Hunt8e083e72012-06-19 23:57:03 +00004189 (Attr.getKind() == AttributeList::AT_NSReturnsRetained))
John McCallf85e1932011-06-15 23:02:42 +00004190 return; // ignore: was handled as a type attribute
Fariborz Jahaniana23bd4c2012-08-28 22:26:21 +00004191 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
4192 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00004193 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00004194 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004195 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00004196 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004197 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00004198 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004199 return;
4200 }
Mike Stumpbf916502009-07-24 19:02:52 +00004201
John McCallc7ad3812011-01-25 03:31:58 +00004202 bool typeOK;
4203 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00004204 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00004205 default: llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004206 case AttributeList::AT_NSReturnsAutoreleased:
4207 case AttributeList::AT_NSReturnsRetained:
4208 case AttributeList::AT_NSReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004209 typeOK = isValidSubjectOfNSAttribute(S, returnType);
4210 cf = false;
4211 break;
4212
Sean Hunt8e083e72012-06-19 23:57:03 +00004213 case AttributeList::AT_CFReturnsRetained:
4214 case AttributeList::AT_CFReturnsNotRetained:
John McCallc7ad3812011-01-25 03:31:58 +00004215 typeOK = isValidSubjectOfCFAttribute(S, returnType);
4216 cf = true;
4217 break;
4218 }
4219
4220 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004221 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00004222 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00004223 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00004224 }
Mike Stumpbf916502009-07-24 19:02:52 +00004225
Chandler Carruth87c44602011-07-01 23:49:12 +00004226 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00004227 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00004228 llvm_unreachable("invalid ownership attribute");
Sean Hunt8e083e72012-06-19 23:57:03 +00004229 case AttributeList::AT_NSReturnsAutoreleased:
Michael Han51d8c522013-01-24 16:46:58 +00004230 D->addAttr(::new (S.Context)
4231 NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context,
4232 Attr.getAttributeSpellingListIndex()));
John McCallc7ad3812011-01-25 03:31:58 +00004233 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004234 case AttributeList::AT_CFReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004235 D->addAttr(::new (S.Context)
4236 CFReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4237 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004238 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004239 case AttributeList::AT_NSReturnsNotRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004240 D->addAttr(::new (S.Context)
4241 NSReturnsNotRetainedAttr(Attr.getRange(), S.Context,
4242 Attr.getAttributeSpellingListIndex()));
Ted Kremenek31c780d2010-02-18 00:05:45 +00004243 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004244 case AttributeList::AT_CFReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004245 D->addAttr(::new (S.Context)
4246 CFReturnsRetainedAttr(Attr.getRange(), S.Context,
4247 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004248 return;
Sean Hunt8e083e72012-06-19 23:57:03 +00004249 case AttributeList::AT_NSReturnsRetained:
Michael Han51d8c522013-01-24 16:46:58 +00004250 D->addAttr(::new (S.Context)
4251 NSReturnsRetainedAttr(Attr.getRange(), S.Context,
4252 Attr.getAttributeSpellingListIndex()));
Ted Kremenekb71368d2009-05-09 02:44:38 +00004253 return;
4254 };
4255}
4256
John McCalldc7c5ad2011-07-22 08:53:00 +00004257static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
4258 const AttributeList &attr) {
4259 SourceLocation loc = attr.getLoc();
4260
4261 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4262
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00004263 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00004264 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004265 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00004266 return;
4267 }
4268
4269 // Check that the method returns a normal pointer.
4270 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00004271
4272 if (!resultType->isReferenceType() &&
4273 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00004274 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
4275 << SourceRange(loc)
4276 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
4277
4278 // Drop the attribute.
4279 return;
4280 }
4281
Michael Han51d8c522013-01-24 16:46:58 +00004282 method->addAttr(::new (S.Context)
4283 ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context,
4284 attr.getAttributeSpellingListIndex()));
John McCalldc7c5ad2011-07-22 08:53:00 +00004285}
4286
Fariborz Jahanian84101132012-09-07 23:46:23 +00004287static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
4288 const AttributeList &attr) {
4289 SourceLocation loc = attr.getLoc();
4290 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
4291
4292 if (!method) {
4293 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
4294 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
4295 return;
4296 }
4297 DeclContext *DC = method->getDeclContext();
4298 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
4299 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4300 << attr.getName() << 0;
4301 S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
4302 return;
4303 }
4304 if (method->getMethodFamily() == OMF_dealloc) {
4305 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol)
4306 << attr.getName() << 1;
4307 return;
4308 }
4309
Michael Han51d8c522013-01-24 16:46:58 +00004310 method->addAttr(::new (S.Context)
4311 ObjCRequiresSuperAttr(attr.getRange(), S.Context,
4312 attr.getAttributeSpellingListIndex()));
Fariborz Jahanian84101132012-09-07 23:46:23 +00004313}
4314
John McCall8dfac0b2011-09-30 05:12:12 +00004315/// Handle cf_audited_transfer and cf_unknown_transfer.
4316static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
4317 if (!isa<FunctionDecl>(D)) {
4318 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004319 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00004320 return;
4321 }
4322
Sean Hunt8e083e72012-06-19 23:57:03 +00004323 bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer);
John McCall8dfac0b2011-09-30 05:12:12 +00004324
4325 // Check whether there's a conflicting attribute already present.
4326 Attr *Existing;
4327 if (IsAudited) {
4328 Existing = D->getAttr<CFUnknownTransferAttr>();
4329 } else {
4330 Existing = D->getAttr<CFAuditedTransferAttr>();
4331 }
4332 if (Existing) {
4333 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
4334 << A.getName()
4335 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
4336 << A.getRange() << Existing->getRange();
4337 return;
4338 }
4339
4340 // All clear; add the attribute.
4341 if (IsAudited) {
Michael Han51d8c522013-01-24 16:46:58 +00004342 D->addAttr(::new (S.Context)
4343 CFAuditedTransferAttr(A.getRange(), S.Context,
4344 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004345 } else {
Michael Han51d8c522013-01-24 16:46:58 +00004346 D->addAttr(::new (S.Context)
4347 CFUnknownTransferAttr(A.getRange(), S.Context,
4348 A.getAttributeSpellingListIndex()));
John McCall8dfac0b2011-09-30 05:12:12 +00004349 }
4350}
4351
John McCallfe98da02011-09-29 07:17:38 +00004352static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
4353 const AttributeList &Attr) {
4354 RecordDecl *RD = dyn_cast<RecordDecl>(D);
4355 if (!RD || RD->isUnion()) {
4356 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004357 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00004358 }
4359
4360 IdentifierInfo *ParmName = Attr.getParameterName();
4361
4362 // In Objective-C, verify that the type names an Objective-C type.
4363 // We don't want to check this outside of ObjC because people sometimes
4364 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00004365 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00004366 // Check for an existing type with this name.
4367 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
4368 Sema::LookupOrdinaryName);
4369 if (S.LookupName(R, Sc)) {
4370 NamedDecl *Target = R.getFoundDecl();
4371 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
4372 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
4373 S.Diag(Target->getLocStart(), diag::note_declared_at);
4374 }
4375 }
4376 }
4377
Michael Han51d8c522013-01-24 16:46:58 +00004378 D->addAttr(::new (S.Context)
4379 NSBridgedAttr(Attr.getRange(), S.Context, ParmName,
4380 Attr.getAttributeSpellingListIndex()));
John McCallfe98da02011-09-29 07:17:38 +00004381}
4382
Chandler Carruth1b03c872011-07-02 00:01:44 +00004383static void handleObjCOwnershipAttr(Sema &S, Decl *D,
4384 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004385 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00004386
Chandler Carruth87c44602011-07-01 23:49:12 +00004387 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004388 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004389}
4390
Chandler Carruth1b03c872011-07-02 00:01:44 +00004391static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
4392 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004393 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004394 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004395 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00004396 return;
4397 }
4398
Chandler Carruth87c44602011-07-01 23:49:12 +00004399 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00004400 QualType type = vd->getType();
4401
4402 if (!type->isDependentType() &&
4403 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00004404 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00004405 << type;
4406 return;
4407 }
4408
4409 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4410
4411 // If we have no lifetime yet, check the lifetime we're presumably
4412 // going to infer.
4413 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
4414 lifetime = type->getObjCARCImplicitLifetime();
4415
4416 switch (lifetime) {
4417 case Qualifiers::OCL_None:
4418 assert(type->isDependentType() &&
4419 "didn't infer lifetime for non-dependent type?");
4420 break;
4421
4422 case Qualifiers::OCL_Weak: // meaningful
4423 case Qualifiers::OCL_Strong: // meaningful
4424 break;
4425
4426 case Qualifiers::OCL_ExplicitNone:
4427 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00004428 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00004429 << (lifetime == Qualifiers::OCL_Autoreleasing);
4430 break;
4431 }
4432
Chandler Carruth87c44602011-07-01 23:49:12 +00004433 D->addAttr(::new (S.Context)
Michael Han51d8c522013-01-24 16:46:58 +00004434 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context,
4435 Attr.getAttributeSpellingListIndex()));
John McCallf85e1932011-06-15 23:02:42 +00004436}
4437
Francois Pichet11542142010-12-19 06:50:37 +00004438//===----------------------------------------------------------------------===//
4439// Microsoft specific attribute handlers.
4440//===----------------------------------------------------------------------===//
4441
Chandler Carruth1b03c872011-07-02 00:01:44 +00004442static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00004443 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00004444 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00004445 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00004446 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00004447
Francois Pichet11542142010-12-19 06:50:37 +00004448 Expr *Arg = Attr.getArg(0);
4449 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00004450 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004451 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
4452 << "uuid" << 1;
4453 return;
4454 }
4455
Chris Lattner5f9e2722011-07-23 10:55:15 +00004456 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00004457
4458 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
4459 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004460
Francois Pichetd3d3be92010-12-20 01:41:49 +00004461 // Validate GUID length.
4462 if (IsCurly && StrRef.size() != 38) {
4463 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4464 return;
4465 }
4466 if (!IsCurly && StrRef.size() != 36) {
4467 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4468 return;
4469 }
4470
Douglas Gregorf6b8b582012-03-14 16:55:17 +00004471 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00004472 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00004473 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00004474 if (IsCurly) // Skip the optional '{'
4475 ++I;
4476
4477 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004478 if (i == 8 || i == 13 || i == 18 || i == 23) {
4479 if (*I != '-') {
4480 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4481 return;
4482 }
Jordan Rose3f6f51e2013-02-08 22:30:41 +00004483 } else if (!isHexDigit(*I)) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00004484 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
4485 return;
4486 }
4487 I++;
4488 }
Francois Pichet11542142010-12-19 06:50:37 +00004489
Michael Han51d8c522013-01-24 16:46:58 +00004490 D->addAttr(::new (S.Context)
4491 UuidAttr(Attr.getRange(), S.Context, Str->getString(),
4492 Attr.getAttributeSpellingListIndex()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00004493 } else
Francois Pichet11542142010-12-19 06:50:37 +00004494 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00004495}
4496
John McCallc052dbb2012-05-22 21:28:12 +00004497static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Nico Weber7b89ab72012-11-07 21:31:36 +00004498 if (!S.LangOpts.MicrosoftExt) {
John McCallc052dbb2012-05-22 21:28:12 +00004499 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Nico Weber7b89ab72012-11-07 21:31:36 +00004500 return;
4501 }
4502
4503 AttributeList::Kind Kind = Attr.getKind();
4504 if (Kind == AttributeList::AT_SingleInheritance)
4505 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004506 ::new (S.Context)
4507 SingleInheritanceAttr(Attr.getRange(), S.Context,
4508 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004509 else if (Kind == AttributeList::AT_MultipleInheritance)
4510 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004511 ::new (S.Context)
4512 MultipleInheritanceAttr(Attr.getRange(), S.Context,
4513 Attr.getAttributeSpellingListIndex()));
Nico Weber7b89ab72012-11-07 21:31:36 +00004514 else if (Kind == AttributeList::AT_VirtualInheritance)
4515 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004516 ::new (S.Context)
4517 VirtualInheritanceAttr(Attr.getRange(), S.Context,
4518 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004519}
4520
4521static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4522 if (S.LangOpts.MicrosoftExt) {
4523 AttributeList::Kind Kind = Attr.getKind();
Sean Hunt8e083e72012-06-19 23:57:03 +00004524 if (Kind == AttributeList::AT_Ptr32)
John McCallc052dbb2012-05-22 21:28:12 +00004525 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004526 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context,
4527 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004528 else if (Kind == AttributeList::AT_Ptr64)
John McCallc052dbb2012-05-22 21:28:12 +00004529 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004530 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context,
4531 Attr.getAttributeSpellingListIndex()));
Sean Hunt8e083e72012-06-19 23:57:03 +00004532 else if (Kind == AttributeList::AT_Win64)
John McCallc052dbb2012-05-22 21:28:12 +00004533 D->addAttr(
Michael Han51d8c522013-01-24 16:46:58 +00004534 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context,
4535 Attr.getAttributeSpellingListIndex()));
John McCallc052dbb2012-05-22 21:28:12 +00004536 } else
4537 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4538}
4539
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004540static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
4541 if (S.LangOpts.MicrosoftExt)
Michael Han51d8c522013-01-24 16:46:58 +00004542 D->addAttr(::new (S.Context)
4543 ForceInlineAttr(Attr.getRange(), S.Context,
4544 Attr.getAttributeSpellingListIndex()));
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004545 else
4546 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
4547}
4548
Ted Kremenekb71368d2009-05-09 02:44:38 +00004549//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00004550// Top Level Sema Entry Points
4551//===----------------------------------------------------------------------===//
4552
Chandler Carruth1b03c872011-07-02 00:01:44 +00004553static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4554 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004555 switch (Attr.getKind()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004556 case AttributeList::AT_CUDADevice: handleDeviceAttr (S, D, Attr); break;
4557 case AttributeList::AT_CUDAHost: handleHostAttr (S, D, Attr); break;
4558 case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00004559 default:
4560 break;
4561 }
4562}
Abramo Bagnarae215f722010-04-30 13:10:51 +00004563
Chandler Carruth1b03c872011-07-02 00:01:44 +00004564static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
4565 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00004566 switch (Attr.getKind()) {
Richard Smithcd8ab512013-01-17 01:30:42 +00004567 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
4568 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
4569 case AttributeList::AT_IBOutletCollection:
4570 handleIBOutletCollection(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004571 case AttributeList::AT_AddressSpace:
4572 case AttributeList::AT_OpenCLImageAccess:
4573 case AttributeList::AT_ObjCGC:
4574 case AttributeList::AT_VectorSize:
4575 case AttributeList::AT_NeonVectorType:
4576 case AttributeList::AT_NeonPolyVectorType:
Mike Stumpbf916502009-07-24 19:02:52 +00004577 // Ignore these, these are type attributes, handled by
4578 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00004579 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004580 case AttributeList::AT_CUDADevice:
4581 case AttributeList::AT_CUDAHost:
4582 case AttributeList::AT_Overloadable:
Peter Collingbourne60700392011-01-21 02:08:45 +00004583 // Ignore, this is a non-inheritable attribute, handled
4584 // by ProcessNonInheritableDeclAttr.
4585 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004586 case AttributeList::AT_Alias: handleAliasAttr (S, D, Attr); break;
4587 case AttributeList::AT_Aligned: handleAlignedAttr (S, D, Attr); break;
4588 case AttributeList::AT_AllocSize: handleAllocSizeAttr (S, D, Attr); break;
4589 case AttributeList::AT_AlwaysInline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004590 handleAlwaysInlineAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004591 case AttributeList::AT_AnalyzerNoReturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004592 handleAnalyzerNoReturnAttr (S, D, Attr); break;
Hans Wennborg5e2d5de2012-06-23 11:51:46 +00004593 case AttributeList::AT_TLSModel: handleTLSModelAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004594 case AttributeList::AT_Annotate: handleAnnotateAttr (S, D, Attr); break;
4595 case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break;
4596 case AttributeList::AT_CarriesDependency:
Richard Smith3a2b7a12013-01-28 22:42:45 +00004597 handleDependencyAttr(S, scope, D, Attr);
4598 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004599 case AttributeList::AT_Common: handleCommonAttr (S, D, Attr); break;
4600 case AttributeList::AT_CUDAConstant:handleConstantAttr (S, D, Attr); break;
4601 case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break;
Richard Smithcd8ab512013-01-17 01:30:42 +00004602 case AttributeList::AT_CXX11NoReturn:
4603 handleCXX11NoReturnAttr(S, D, Attr);
4604 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004605 case AttributeList::AT_Deprecated:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004606 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
4607 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004608 case AttributeList::AT_Destructor: handleDestructorAttr (S, D, Attr); break;
4609 case AttributeList::AT_ExtVectorType:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004610 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004611 break;
Quentin Colombetaee56fa2012-11-01 23:55:47 +00004612 case AttributeList::AT_MinSize:
4613 handleMinSizeAttr(S, D, Attr);
4614 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004615 case AttributeList::AT_Format: handleFormatAttr (S, D, Attr); break;
4616 case AttributeList::AT_FormatArg: handleFormatArgAttr (S, D, Attr); break;
4617 case AttributeList::AT_CUDAGlobal: handleGlobalAttr (S, D, Attr); break;
4618 case AttributeList::AT_GNUInline: handleGNUInlineAttr (S, D, Attr); break;
4619 case AttributeList::AT_CUDALaunchBounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004620 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00004621 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004622 case AttributeList::AT_Mode: handleModeAttr (S, D, Attr); break;
4623 case AttributeList::AT_Malloc: handleMallocAttr (S, D, Attr); break;
4624 case AttributeList::AT_MayAlias: handleMayAliasAttr (S, D, Attr); break;
4625 case AttributeList::AT_NoCommon: handleNoCommonAttr (S, D, Attr); break;
4626 case AttributeList::AT_NonNull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004627 case AttributeList::AT_ownership_returns:
4628 case AttributeList::AT_ownership_takes:
4629 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004630 handleOwnershipAttr (S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004631 case AttributeList::AT_Cold: handleColdAttr (S, D, Attr); break;
4632 case AttributeList::AT_Hot: handleHotAttr (S, D, Attr); break;
4633 case AttributeList::AT_Naked: handleNakedAttr (S, D, Attr); break;
4634 case AttributeList::AT_NoReturn: handleNoReturnAttr (S, D, Attr); break;
4635 case AttributeList::AT_NoThrow: handleNothrowAttr (S, D, Attr); break;
4636 case AttributeList::AT_CUDAShared: handleSharedAttr (S, D, Attr); break;
4637 case AttributeList::AT_VecReturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004638
Sean Hunt8e083e72012-06-19 23:57:03 +00004639 case AttributeList::AT_ObjCOwnership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004640 handleObjCOwnershipAttr(S, D, Attr); break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004641 case AttributeList::AT_ObjCPreciseLifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004642 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00004643
Sean Hunt8e083e72012-06-19 23:57:03 +00004644 case AttributeList::AT_ObjCReturnsInnerPointer:
John McCalldc7c5ad2011-07-22 08:53:00 +00004645 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
4646
Fariborz Jahanian84101132012-09-07 23:46:23 +00004647 case AttributeList::AT_ObjCRequiresSuper:
4648 handleObjCRequiresSuperAttr(S, D, Attr); break;
4649
Sean Hunt8e083e72012-06-19 23:57:03 +00004650 case AttributeList::AT_NSBridged:
John McCallfe98da02011-09-29 07:17:38 +00004651 handleNSBridgedAttr(S, scope, D, Attr); break;
4652
Sean Hunt8e083e72012-06-19 23:57:03 +00004653 case AttributeList::AT_CFAuditedTransfer:
4654 case AttributeList::AT_CFUnknownTransfer:
John McCall8dfac0b2011-09-30 05:12:12 +00004655 handleCFTransferAttr(S, D, Attr); break;
4656
Ted Kremenekb71368d2009-05-09 02:44:38 +00004657 // Checker-specific.
Sean Hunt8e083e72012-06-19 23:57:03 +00004658 case AttributeList::AT_CFConsumed:
4659 case AttributeList::AT_NSConsumed: handleNSConsumedAttr (S, D, Attr); break;
4660 case AttributeList::AT_NSConsumesSelf:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004661 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00004662
Sean Hunt8e083e72012-06-19 23:57:03 +00004663 case AttributeList::AT_NSReturnsAutoreleased:
4664 case AttributeList::AT_NSReturnsNotRetained:
4665 case AttributeList::AT_CFReturnsNotRetained:
4666 case AttributeList::AT_NSReturnsRetained:
4667 case AttributeList::AT_CFReturnsRetained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004668 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00004669
Tanya Lattner0df579e2012-07-09 22:06:01 +00004670 case AttributeList::AT_WorkGroupSizeHint:
Sean Hunt8e083e72012-06-19 23:57:03 +00004671 case AttributeList::AT_ReqdWorkGroupSize:
Tanya Lattner0df579e2012-07-09 22:06:01 +00004672 handleWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00004673
Sean Hunt8e083e72012-06-19 23:57:03 +00004674 case AttributeList::AT_InitPriority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004675 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00004676
Sean Hunt8e083e72012-06-19 23:57:03 +00004677 case AttributeList::AT_Packed: handlePackedAttr (S, D, Attr); break;
4678 case AttributeList::AT_Section: handleSectionAttr (S, D, Attr); break;
4679 case AttributeList::AT_Unavailable:
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004680 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4681 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004682 case AttributeList::AT_ArcWeakrefUnavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004683 handleArcWeakrefUnavailableAttr (S, D, Attr);
4684 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004685 case AttributeList::AT_ObjCRootClass:
Patrick Beardb2f68202012-04-06 18:12:22 +00004686 handleObjCRootClassAttr(S, D, Attr);
4687 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004688 case AttributeList::AT_ObjCRequiresPropertyDefs:
Ted Kremenek71207fc2012-01-05 22:47:47 +00004689 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004690 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004691 case AttributeList::AT_Unused: handleUnusedAttr (S, D, Attr); break;
4692 case AttributeList::AT_ReturnsTwice:
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004693 handleReturnsTwiceAttr(S, D, Attr);
4694 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004695 case AttributeList::AT_Used: handleUsedAttr (S, D, Attr); break;
4696 case AttributeList::AT_Visibility: handleVisibilityAttr (S, D, Attr); break;
4697 case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004698 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004699 case AttributeList::AT_Weak: handleWeakAttr (S, D, Attr); break;
4700 case AttributeList::AT_WeakRef: handleWeakRefAttr (S, D, Attr); break;
4701 case AttributeList::AT_WeakImport: handleWeakImportAttr (S, D, Attr); break;
4702 case AttributeList::AT_TransparentUnion:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004703 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004704 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004705 case AttributeList::AT_ObjCException:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004706 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004707 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004708 case AttributeList::AT_ObjCMethodFamily:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004709 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004710 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004711 case AttributeList::AT_ObjCNSObject:handleObjCNSObject (S, D, Attr); break;
4712 case AttributeList::AT_Blocks: handleBlocksAttr (S, D, Attr); break;
4713 case AttributeList::AT_Sentinel: handleSentinelAttr (S, D, Attr); break;
4714 case AttributeList::AT_Const: handleConstAttr (S, D, Attr); break;
4715 case AttributeList::AT_Pure: handlePureAttr (S, D, Attr); break;
4716 case AttributeList::AT_Cleanup: handleCleanupAttr (S, D, Attr); break;
4717 case AttributeList::AT_NoDebug: handleNoDebugAttr (S, D, Attr); break;
4718 case AttributeList::AT_NoInline: handleNoInlineAttr (S, D, Attr); break;
4719 case AttributeList::AT_Regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004720 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004721 // Just ignore
4722 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004723 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004724 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004725 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004726 case AttributeList::AT_StdCall:
4727 case AttributeList::AT_CDecl:
4728 case AttributeList::AT_FastCall:
4729 case AttributeList::AT_ThisCall:
4730 case AttributeList::AT_Pascal:
4731 case AttributeList::AT_Pcs:
Derek Schuff263366f2012-10-16 22:30:41 +00004732 case AttributeList::AT_PnaclCall:
Guy Benyei38980082012-12-25 08:53:55 +00004733 case AttributeList::AT_IntelOclBicc:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004734 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004735 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004736 case AttributeList::AT_OpenCLKernel:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004737 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004738 break;
John McCallc052dbb2012-05-22 21:28:12 +00004739
4740 // Microsoft attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004741 case AttributeList::AT_MsStruct:
John McCallc052dbb2012-05-22 21:28:12 +00004742 handleMsStructAttr(S, D, Attr);
4743 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004744 case AttributeList::AT_Uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004745 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004746 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004747 case AttributeList::AT_SingleInheritance:
4748 case AttributeList::AT_MultipleInheritance:
4749 case AttributeList::AT_VirtualInheritance:
John McCallc052dbb2012-05-22 21:28:12 +00004750 handleInheritanceAttr(S, D, Attr);
4751 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004752 case AttributeList::AT_Win64:
4753 case AttributeList::AT_Ptr32:
4754 case AttributeList::AT_Ptr64:
John McCallc052dbb2012-05-22 21:28:12 +00004755 handlePortabilityAttr(S, D, Attr);
4756 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004757 case AttributeList::AT_ForceInline:
Michael J. Spenceradc6cbf2012-06-18 07:00:48 +00004758 handleForceInlineAttr(S, D, Attr);
4759 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004760
4761 // Thread safety attributes:
Sean Hunt8e083e72012-06-19 23:57:03 +00004762 case AttributeList::AT_GuardedVar:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004763 handleGuardedVarAttr(S, D, Attr);
4764 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004765 case AttributeList::AT_PtGuardedVar:
Michael Handc691572012-07-23 18:48:41 +00004766 handlePtGuardedVarAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004767 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004768 case AttributeList::AT_ScopedLockable:
Michael Handc691572012-07-23 18:48:41 +00004769 handleScopedLockableAttr(S, D, Attr);
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004770 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004771 case AttributeList::AT_NoAddressSafetyAnalysis:
Kostya Serebryany71efba02012-01-24 19:25:38 +00004772 handleNoAddressSafetyAttr(S, D, Attr);
4773 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004774 case AttributeList::AT_NoThreadSafetyAnalysis:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004775 handleNoThreadSafetyAttr(S, D, Attr);
4776 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004777 case AttributeList::AT_Lockable:
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004778 handleLockableAttr(S, D, Attr);
4779 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004780 case AttributeList::AT_GuardedBy:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004781 handleGuardedByAttr(S, D, Attr);
4782 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004783 case AttributeList::AT_PtGuardedBy:
Michael Handc691572012-07-23 18:48:41 +00004784 handlePtGuardedByAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004785 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004786 case AttributeList::AT_ExclusiveLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004787 handleExclusiveLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004788 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004789 case AttributeList::AT_ExclusiveLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004790 handleExclusiveLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004791 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004792 case AttributeList::AT_ExclusiveTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004793 handleExclusiveTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004794 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004795 case AttributeList::AT_LockReturned:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004796 handleLockReturnedAttr(S, D, Attr);
4797 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004798 case AttributeList::AT_LocksExcluded:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004799 handleLocksExcludedAttr(S, D, Attr);
4800 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004801 case AttributeList::AT_SharedLockFunction:
Michael Handc691572012-07-23 18:48:41 +00004802 handleSharedLockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004803 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004804 case AttributeList::AT_SharedLocksRequired:
Michael Handc691572012-07-23 18:48:41 +00004805 handleSharedLocksRequiredAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004806 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004807 case AttributeList::AT_SharedTrylockFunction:
Michael Handc691572012-07-23 18:48:41 +00004808 handleSharedTrylockFunctionAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004809 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004810 case AttributeList::AT_UnlockFunction:
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004811 handleUnlockFunAttr(S, D, Attr);
4812 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004813 case AttributeList::AT_AcquiredBefore:
Michael Handc691572012-07-23 18:48:41 +00004814 handleAcquiredBeforeAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004815 break;
Sean Hunt8e083e72012-06-19 23:57:03 +00004816 case AttributeList::AT_AcquiredAfter:
Michael Handc691572012-07-23 18:48:41 +00004817 handleAcquiredAfterAttr(S, D, Attr);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004818 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004819
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00004820 // Type safety attributes.
4821 case AttributeList::AT_ArgumentWithTypeTag:
4822 handleArgumentWithTypeTagAttr(S, D, Attr);
4823 break;
4824 case AttributeList::AT_TypeTagForDatatype:
4825 handleTypeTagForDatatypeAttr(S, D, Attr);
4826 break;
4827
Chris Lattner803d0802008-06-29 00:43:07 +00004828 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004829 // Ask target about the attribute.
4830 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4831 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Aaron Ballmanfc685ac2012-06-19 22:09:27 +00004832 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ?
4833 diag::warn_unhandled_ms_attribute_ignored :
4834 diag::warn_unknown_attribute_ignored) << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004835 break;
4836 }
4837}
4838
Peter Collingbourne60700392011-01-21 02:08:45 +00004839/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4840/// the attribute applies to decls. If the attribute is a type attribute, just
Richard Smithcd8ab512013-01-17 01:30:42 +00004841/// silently ignore it if a GNU attribute.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004842static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4843 const AttributeList &Attr,
Richard Smithcd8ab512013-01-17 01:30:42 +00004844 bool NonInheritable, bool Inheritable,
4845 bool IncludeCXX11Attributes) {
Peter Collingbourne60700392011-01-21 02:08:45 +00004846 if (Attr.isInvalid())
4847 return;
4848
Richard Smithcd8ab512013-01-17 01:30:42 +00004849 // Ignore C++11 attributes on declarator chunks: they appertain to the type
4850 // instead.
4851 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes)
4852 return;
4853
Peter Collingbourne60700392011-01-21 02:08:45 +00004854 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004855 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004856
4857 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004858 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004859}
4860
Chris Lattner803d0802008-06-29 00:43:07 +00004861/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4862/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004863void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004864 const AttributeList *AttrList,
Richard Smithcd8ab512013-01-17 01:30:42 +00004865 bool NonInheritable, bool Inheritable,
4866 bool IncludeCXX11Attributes) {
4867 for (const AttributeList* l = AttrList; l; l = l->getNext())
4868 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable,
4869 IncludeCXX11Attributes);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004870
4871 // GCC accepts
4872 // static int a9 __attribute__((weakref));
4873 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004874 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004875 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004876 cast<NamedDecl>(D)->getNameAsString();
4877 D->dropAttr<WeakRefAttr>();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004878 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004879 }
4880}
4881
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004882// Annotation attributes are the only attributes allowed after an access
4883// specifier.
4884bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4885 const AttributeList *AttrList) {
4886 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Sean Hunt8e083e72012-06-19 23:57:03 +00004887 if (l->getKind() == AttributeList::AT_Annotate) {
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004888 handleAnnotateAttr(*this, ASDecl, *l);
4889 } else {
4890 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4891 return true;
4892 }
4893 }
4894
4895 return false;
4896}
4897
John McCalle82247a2011-10-01 05:17:03 +00004898/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4899/// contains any decl attributes that we should warn about.
4900static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4901 for ( ; A; A = A->getNext()) {
4902 // Only warn if the attribute is an unignored, non-type attribute.
Richard Smithd03de6a2013-01-29 10:02:16 +00004903 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue;
John McCalle82247a2011-10-01 05:17:03 +00004904 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4905
4906 if (A->getKind() == AttributeList::UnknownAttribute) {
4907 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4908 << A->getName() << A->getRange();
4909 } else {
4910 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4911 << A->getName() << A->getRange();
4912 }
4913 }
4914}
4915
4916/// checkUnusedDeclAttributes - Given a declarator which is not being
4917/// used to build a declaration, complain about any decl attributes
4918/// which might be lying around on it.
4919void Sema::checkUnusedDeclAttributes(Declarator &D) {
4920 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4921 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4922 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4923 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4924}
4925
Ryan Flynne25ff832009-07-30 03:15:39 +00004926/// DeclClonePragmaWeak - clone existing decl (maybe definition),
James Dennett1dfbd922012-06-14 21:40:34 +00004927/// \#pragma weak needs a non-definition decl and source may not have one.
Eli Friedman900693b2011-09-07 04:05:06 +00004928NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4929 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004930 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004931 NamedDecl *NewD = 0;
4932 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004933 FunctionDecl *NewFD;
4934 // FIXME: Missing call to CheckFunctionDeclaration().
4935 // FIXME: Mangling?
4936 // FIXME: Is the qualifier info correct?
4937 // FIXME: Is the DeclContext correct?
4938 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4939 Loc, Loc, DeclarationName(II),
4940 FD->getType(), FD->getTypeSourceInfo(),
4941 SC_None, SC_None,
4942 false/*isInlineSpecified*/,
4943 FD->hasPrototype(),
4944 false/*isConstexprSpecified*/);
4945 NewD = NewFD;
4946
4947 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004948 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004949
4950 // Fake up parameter variables; they are declared as if this were
4951 // a typedef.
4952 QualType FDTy = FD->getType();
4953 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4954 SmallVector<ParmVarDecl*, 16> Params;
4955 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4956 AE = FT->arg_type_end(); AI != AE; ++AI) {
4957 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4958 Param->setScopeInfo(0, Params.size());
4959 Params.push_back(Param);
4960 }
David Blaikie4278c652011-09-21 18:16:56 +00004961 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004962 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004963 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4964 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004965 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004966 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00004967 VD->getStorageClass(),
4968 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00004969 if (VD->getQualifier()) {
4970 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004971 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004972 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004973 }
4974 return NewD;
4975}
4976
James Dennett1dfbd922012-06-14 21:40:34 +00004977/// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
Ryan Flynne25ff832009-07-30 03:15:39 +00004978/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004979void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004980 if (W.getUsed()) return; // only do this once
4981 W.setUsed(true);
4982 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4983 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004984 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004985 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4986 NDId->getName()));
4987 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004988 WeakTopLevelDecl.push_back(NewD);
4989 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4990 // to insert Decl at TU scope, sorry.
4991 DeclContext *SavedContext = CurContext;
4992 CurContext = Context.getTranslationUnitDecl();
4993 PushOnScopeChains(NewD, S);
4994 CurContext = SavedContext;
4995 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00004996 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00004997 }
4998}
4999
Chris Lattner0744e5f2008-06-29 00:23:49 +00005000/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
5001/// it, apply them to D. This is a bit tricky because PD can have attributes
5002/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00005003void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
5004 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00005005 // It's valid to "forward-declare" #pragma weak, in which case we
5006 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00005007 if (Inheritable) {
5008 LoadExternalWeakUndeclaredIdentifiers();
5009 if (!WeakUndeclaredIdentifiers.empty()) {
5010 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
5011 if (IdentifierInfo *Id = ND->getIdentifier()) {
5012 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
5013 = WeakUndeclaredIdentifiers.find(Id);
5014 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
5015 WeakInfo W = I->second;
5016 DeclApplyPragmaWeak(S, ND, W);
5017 WeakUndeclaredIdentifiers[Id] = W;
5018 }
John McCalld4aff0e2010-10-27 00:59:00 +00005019 }
Ryan Flynne25ff832009-07-30 03:15:39 +00005020 }
5021 }
5022 }
5023
Chris Lattner0744e5f2008-06-29 00:23:49 +00005024 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00005025 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00005026 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00005027
Chris Lattner0744e5f2008-06-29 00:23:49 +00005028 // Walk the declarator structure, applying decl attributes that were in a type
5029 // position to the decl itself. This handles cases like:
5030 // int *__attr__(x)** D;
5031 // when X is a decl attribute.
5032 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
5033 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Richard Smithcd8ab512013-01-17 01:30:42 +00005034 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable,
5035 /*IncludeCXX11Attributes=*/false);
Mike Stumpbf916502009-07-24 19:02:52 +00005036
Chris Lattner0744e5f2008-06-29 00:23:49 +00005037 // Finally, apply any attributes on the decl itself.
5038 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00005039 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00005040}
John McCall54abf7d2009-11-04 02:18:39 +00005041
John McCallf85e1932011-06-15 23:02:42 +00005042/// Is the given declaration allowed to use a forbidden type?
5043static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
5044 // Private ivars are always okay. Unfortunately, people don't
5045 // always properly make their ivars private, even in system headers.
5046 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00005047 // Function declarations in sys headers will be marked unavailable.
5048 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
5049 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00005050 return false;
5051
5052 // Require it to be declared in a system header.
5053 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
5054}
5055
5056/// Handle a delayed forbidden-type diagnostic.
5057static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
5058 Decl *decl) {
5059 if (decl && isForbiddenTypeAllowed(S, decl)) {
5060 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
5061 "this system declaration uses an unsupported type"));
5062 return;
5063 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005064 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005065 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
Benjamin Kramer48d798c2012-06-02 10:20:41 +00005066 // FIXME: we may want to suppress diagnostics for all
Fariborz Jahanian175fb102011-10-03 22:11:57 +00005067 // kind of forbidden type messages on unavailable functions.
5068 if (FD->hasAttr<UnavailableAttr>() &&
5069 diag.getForbiddenTypeDiagnostic() ==
5070 diag::err_arc_array_param_no_ownership) {
5071 diag.Triggered = true;
5072 return;
5073 }
5074 }
John McCallf85e1932011-06-15 23:02:42 +00005075
5076 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
5077 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
5078 diag.Triggered = true;
5079}
5080
John McCall92576642012-05-07 06:16:41 +00005081void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
5082 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00005083 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00005084 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00005085
John McCall92576642012-05-07 06:16:41 +00005086 // When delaying diagnostics to run in the context of a parsed
5087 // declaration, we only want to actually emit anything if parsing
5088 // succeeds.
5089 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00005090
John McCall92576642012-05-07 06:16:41 +00005091 // We emit all the active diagnostics in this pool or any of its
5092 // parents. In general, we'll get one pool for the decl spec
5093 // and a child pool for each declarator; in a decl group like:
5094 // deprecated_typedef foo, *bar, baz();
5095 // only the declarator pops will be passed decls. This is correct;
5096 // we really do need to consider delayed diagnostics from the decl spec
5097 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00005098 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00005099 do {
John McCall13489672012-05-07 06:16:58 +00005100 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00005101 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
5102 // This const_cast is a bit lame. Really, Triggered should be mutable.
5103 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00005104 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00005105 continue;
5106
John McCalleee1d542011-02-14 07:13:47 +00005107 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00005108 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00005109 // Don't bother giving deprecation diagnostics if the decl is invalid.
5110 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00005111 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005112 break;
5113
5114 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00005115 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00005116 break;
John McCallf85e1932011-06-15 23:02:42 +00005117
5118 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00005119 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00005120 break;
John McCall2f514482010-01-27 03:50:35 +00005121 }
5122 }
John McCall92576642012-05-07 06:16:41 +00005123 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00005124}
5125
John McCall13489672012-05-07 06:16:58 +00005126/// Given a set of delayed diagnostics, re-emit them as if they had
5127/// been delayed in the current context instead of in the given pool.
5128/// Essentially, this just moves them to the current pool.
5129void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
5130 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
5131 assert(curPool && "re-emitting in undelayed context not supported");
5132 curPool->steal(pool);
5133}
5134
John McCall54abf7d2009-11-04 02:18:39 +00005135static bool isDeclDeprecated(Decl *D) {
5136 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00005137 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00005138 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00005139 // A category implicitly has the availability of the interface.
5140 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
5141 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00005142 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
5143 return false;
5144}
5145
Eli Friedmanc3b23082012-08-08 21:52:41 +00005146static void
5147DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message,
5148 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005149 const ObjCInterfaceDecl *UnknownObjCClass,
5150 const ObjCPropertyDecl *ObjCPropery) {
Eli Friedmanc3b23082012-08-08 21:52:41 +00005151 DeclarationName Name = D->getDeclName();
5152 if (!Message.empty()) {
5153 S.Diag(Loc, diag::warn_deprecated_message) << Name << Message;
5154 S.Diag(D->getLocation(),
5155 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5156 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005157 if (ObjCPropery)
5158 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5159 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005160 } else if (!UnknownObjCClass) {
5161 S.Diag(Loc, diag::warn_deprecated) << D->getDeclName();
5162 S.Diag(D->getLocation(),
5163 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
5164 : diag::note_previous_decl) << Name;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005165 if (ObjCPropery)
5166 S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute)
5167 << ObjCPropery->getDeclName() << 0;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005168 } else {
5169 S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name;
5170 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
5171 }
5172}
5173
John McCall9c3087b2010-08-26 02:13:20 +00005174void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00005175 Decl *Ctx) {
5176 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00005177 return;
5178
John McCall2f514482010-01-27 03:50:35 +00005179 DD.Triggered = true;
Eli Friedmanc3b23082012-08-08 21:52:41 +00005180 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5181 DD.getDeprecationMessage(), DD.Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005182 DD.getUnknownObjCClass(),
5183 DD.getObjCProperty());
John McCall54abf7d2009-11-04 02:18:39 +00005184}
5185
Chris Lattner5f9e2722011-07-23 10:55:15 +00005186void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00005187 SourceLocation Loc,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005188 const ObjCInterfaceDecl *UnknownObjCClass,
5189 const ObjCPropertyDecl *ObjCProperty) {
John McCall54abf7d2009-11-04 02:18:39 +00005190 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00005191 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005192 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
5193 UnknownObjCClass,
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005194 ObjCProperty,
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00005195 Message));
John McCall54abf7d2009-11-04 02:18:39 +00005196 return;
5197 }
5198
5199 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00005200 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00005201 return;
Fariborz Jahanianfd090882012-09-21 20:46:37 +00005202 DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty);
John McCall54abf7d2009-11-04 02:18:39 +00005203}