blob: e9b715c01ceae4293cdb9cc6032c462ac9624ab8 [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"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000019#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000020#include "clang/AST/DeclObjC.h"
21#include "clang/AST/Expr.h"
John McCallf85e1932011-06-15 23:02:42 +000022#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000023#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000024#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000025#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000026#include "clang/Sema/Lookup.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000027#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000028using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000029using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000030
John McCall883cc2c2011-03-02 12:29:23 +000031/// These constants match the enumerated choices of
32/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000033enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000034 ExpectedFunction,
35 ExpectedUnion,
36 ExpectedVariableOrFunction,
37 ExpectedFunctionOrMethod,
38 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000039 ExpectedFunctionMethodOrBlock,
John McCall883cc2c2011-03-02 12:29:23 +000040 ExpectedFunctionMethodOrParameter,
41 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000042 ExpectedVariable,
43 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000044 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000045 ExpectedFieldOrGlobalVar,
46 ExpectedStruct
John McCall883cc2c2011-03-02 12:29:23 +000047};
48
Chris Lattnere5c5ee12008-06-29 00:16:31 +000049//===----------------------------------------------------------------------===//
50// Helper functions
51//===----------------------------------------------------------------------===//
52
Chandler Carruth87c44602011-07-01 23:49:12 +000053static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000054 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000055 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000056 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000057 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000058 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000059 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000060 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000061 Ty = decl->getUnderlyingType();
62 else
63 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000064
Chris Lattner6b6b5372008-06-26 18:38:35 +000065 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000066 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000067 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000068 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000069
John McCall183700f2009-09-21 23:43:11 +000070 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000071}
72
Daniel Dunbar35682492008-09-26 04:12:28 +000073// FIXME: We should provide an abstraction around a method or function
74// to provide the following bits of information.
75
Nuno Lopesd20254f2009-12-20 23:11:08 +000076/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000077/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000078static bool isFunction(const Decl *D) {
79 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000080}
81
82/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000083/// type (function or function-typed variable) or an Objective-C
84/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000085static bool isFunctionOrMethod(const Decl *D) {
86 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000087}
88
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000089/// isFunctionOrMethodOrBlock - Return true if the given decl has function
90/// type (function or function-typed variable) or an Objective-C
91/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000092static bool isFunctionOrMethodOrBlock(const Decl *D) {
93 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000094 return true;
95 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +000096 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000097 QualType Ty = V->getType();
98 return Ty->isBlockPointerType();
99 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000100 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000101}
102
John McCall711c52b2011-01-05 12:14:39 +0000103/// Return true if the given decl has a declarator that should have
104/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000105static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000106 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000107 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
108 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000109}
110
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000111/// hasFunctionProto - Return true if the given decl has a argument
112/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000113/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000114static bool hasFunctionProto(const Decl *D) {
115 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000116 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000117 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000118 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000119 return true;
120 }
121}
122
123/// getFunctionOrMethodNumArgs - Return number of function or method
124/// arguments. It is an error to call this on a K&R function (use
125/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000126static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
127 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000128 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000129 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000130 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000131 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000132}
133
Chandler Carruth87c44602011-07-01 23:49:12 +0000134static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
135 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000136 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000137 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000138 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000139
Chandler Carruth87c44602011-07-01 23:49:12 +0000140 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000141}
142
Chandler Carruth87c44602011-07-01 23:49:12 +0000143static QualType getFunctionOrMethodResultType(const Decl *D) {
144 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000145 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000146 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000147}
148
Chandler Carruth87c44602011-07-01 23:49:12 +0000149static bool isFunctionOrMethodVariadic(const Decl *D) {
150 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000151 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000152 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000153 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000154 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000155 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000156 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000157 }
158}
159
Chandler Carruth87c44602011-07-01 23:49:12 +0000160static bool isInstanceMethod(const Decl *D) {
161 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000162 return MethodDecl->isInstance();
163 return false;
164}
165
Chris Lattner6b6b5372008-06-26 18:38:35 +0000166static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000167 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000168 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000169 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000170
John McCall506b57e2010-05-17 21:00:27 +0000171 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
172 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000173 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000174
John McCall506b57e2010-05-17 21:00:27 +0000175 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000176
Chris Lattner6b6b5372008-06-26 18:38:35 +0000177 // FIXME: Should we walk the chain of classes?
178 return ClsName == &Ctx.Idents.get("NSString") ||
179 ClsName == &Ctx.Idents.get("NSMutableString");
180}
181
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000182static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000183 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000184 if (!PT)
185 return false;
186
Ted Kremenek6217b802009-07-29 21:53:49 +0000187 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000188 if (!RT)
189 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000190
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000191 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000192 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000193 return false;
194
195 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
196}
197
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000198/// \brief Check if the attribute has exactly as many args as Num. May
199/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000200static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
201 unsigned int Num) {
202 if (Attr.getNumArgs() != Num) {
203 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
204 return false;
205 }
206
207 return true;
208}
209
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000210
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000211/// \brief Check if the attribute has at least as many args as Num. May
212/// output an error.
213static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
214 unsigned int Num) {
215 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000216 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
217 return false;
218 }
219
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000220 return true;
221}
222
223///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000224/// \brief Check if passed in Decl is a field or potentially shared global var
225/// \return true if the Decl is a field or potentially shared global variable
226///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000227static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000228 if (isa<FieldDecl>(D))
229 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000230 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000231 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
232
233 return false;
234}
235
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000236/// \brief Check if the passed-in expression is of type int or bool.
237static bool isIntOrBool(Expr *Exp) {
238 QualType QT = Exp->getType();
239 return QT->isBooleanType() || QT->isIntegerType();
240}
241
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000242
243// Check to see if the type is a smart pointer of some kind. We assume
244// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000245static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
246 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
247 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
248 if (Res1.first == Res1.second)
249 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000250
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000251 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
252 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
253 if (Res2.first == Res2.second)
254 return false;
255
256 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000257}
258
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000259/// \brief Check if passed in Decl is a pointer type.
260/// Note that this function may produce an error message.
261/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000262static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
263 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000264 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000265 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000266 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000267 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000268
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000269 if (const RecordType *RT = QT->getAs<RecordType>()) {
270 // If it's an incomplete type, it could be a smart pointer; skip it.
271 // (We don't want to force template instantiation if we can avoid it,
272 // since that would alter the order in which templates are instantiated.)
273 if (RT->isIncompleteType())
274 return true;
275
276 if (threadSafetyCheckIsSmartPointer(S, RT))
277 return true;
278 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000279
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000280 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000281 << Attr.getName()->getName() << QT;
282 } else {
283 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
284 << Attr.getName();
285 }
286 return false;
287}
288
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000289/// \brief Checks that the passed in QualType either is of RecordType or points
290/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000291static const RecordType *getRecordType(QualType QT) {
292 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000293 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000294
295 // Now check if we point to record type.
296 if (const PointerType *PT = QT->getAs<PointerType>())
297 return PT->getPointeeType()->getAs<RecordType>();
298
299 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000300}
301
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000302
Jordy Rosefad5de92012-05-08 03:27:22 +0000303static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier,
304 CXXBasePath &Path, void *Unused) {
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000305 const RecordType *RT = Specifier->getType()->getAs<RecordType>();
306 if (RT->getDecl()->getAttr<LockableAttr>())
307 return true;
308 return false;
309}
310
311
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000312/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000313/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000314static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
315 QualType Ty) {
316 const RecordType *RT = getRecordType(Ty);
317
318 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000319 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000320 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000321 << Attr.getName() << Ty.getAsString();
322 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000323 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000324
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000325 // Don't check for lockable if the class hasn't been defined yet.
326 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000327 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000328
329 // Allow smart pointers to be used as lockable objects.
330 // FIXME -- Check the type that the smart pointer points to.
331 if (threadSafetyCheckIsSmartPointer(S, RT))
332 return;
333
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000334 // Check if the type is lockable.
335 RecordDecl *RD = RT->getDecl();
336 if (RD->getAttr<LockableAttr>())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000337 return;
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000338
339 // Else check if any base classes are lockable.
340 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
341 CXXBasePaths BPaths(false, false);
342 if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths))
343 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000344 }
DeLesley Hutchinsbbba25f2012-05-04 16:28:38 +0000345
346 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
347 << Attr.getName() << Ty.getAsString();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000348}
349
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000350/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000351/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000352/// \param Sidx The attribute argument index to start checking with.
353/// \param ParamIdxOk Whether an argument can be indexing into a function
354/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000355static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000356 const AttributeList &Attr,
357 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000358 int Sidx = 0,
359 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000360 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000361 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000362
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000363 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000364 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000365 Args.push_back(ArgExp);
366 continue;
367 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000368
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000369 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
370 // Ignore empty strings without warnings
371 if (StrLit->getLength() == 0)
372 continue;
373
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000374 // We allow constant strings to be used as a placeholder for expressions
375 // that are not valid C++ syntax, but warn that they are ignored.
376 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
377 Attr.getName();
378 continue;
379 }
380
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000381 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000382
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000383 // A pointer to member expression of the form &MyClass::mu is treated
384 // specially -- we need to look at the type of the member.
385 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
386 if (UOp->getOpcode() == UO_AddrOf)
387 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
388 if (DRE->getDecl()->isCXXInstanceMember())
389 ArgTy = DRE->getDecl()->getType();
390
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000391 // First see if we can just cast to record type, or point to record type.
392 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000393
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000394 // Now check if we index into a record type function param.
395 if(!RT && ParamIdxOk) {
396 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000397 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
398 if(FD && IL) {
399 unsigned int NumParams = FD->getNumParams();
400 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000401 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
402 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
403 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000404 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
405 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000406 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000407 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000408 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000409 }
410 }
411
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000412 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000413
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000414 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000415 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000416}
417
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000418//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000419// Attribute Implementations
420//===----------------------------------------------------------------------===//
421
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000422// FIXME: All this manual attribute parsing code is gross. At the
423// least add some helper functions to check most argument patterns (#
424// and types of args).
425
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000426static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
427 bool pointer = false) {
428 assert(!Attr.isInvalid());
429
430 if (!checkAttributeNumArgs(S, Attr, 0))
431 return;
432
433 // D must be either a member field or global (potentially shared) variable.
434 if (!mayBeSharedVariable(D)) {
435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000436 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000437 return;
438 }
439
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000440 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000441 return;
442
443 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000444 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000445 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000446 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000447}
448
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000449static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000450 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000451 assert(!Attr.isInvalid());
452
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000453 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000454 return;
455
456 // D must be either a member field or global (potentially shared) variable.
457 if (!mayBeSharedVariable(D)) {
458 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000459 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000460 return;
461 }
462
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000463 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000464 return;
465
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000466 SmallVector<Expr*, 1> Args;
467 // check that all arguments are lockable objects
468 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
469 unsigned Size = Args.size();
470 if (Size != 1)
471 return;
472 Expr *Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000473
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000474 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000475 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000476 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000477 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000478 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000479}
480
481
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000482static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
483 bool scoped = false) {
484 assert(!Attr.isInvalid());
485
486 if (!checkAttributeNumArgs(S, Attr, 0))
487 return;
488
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000489 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000490 if (!isa<CXXRecordDecl>(D)) {
491 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
492 << Attr.getName() << ExpectedClass;
493 return;
494 }
495
496 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000497 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000498 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000499 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000500}
501
502static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
503 const AttributeList &Attr) {
504 assert(!Attr.isInvalid());
505
506 if (!checkAttributeNumArgs(S, Attr, 0))
507 return;
508
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000509 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000510 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
511 << Attr.getName() << ExpectedFunctionOrMethod;
512 return;
513 }
514
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000515 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000516 S.Context));
517}
518
Kostya Serebryany71efba02012-01-24 19:25:38 +0000519static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000520 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000521 assert(!Attr.isInvalid());
522
523 if (!checkAttributeNumArgs(S, Attr, 0))
524 return;
525
526 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
527 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
528 << Attr.getName() << ExpectedFunctionOrMethod;
529 return;
530 }
531
532 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
533 S.Context));
534}
535
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000536static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
537 bool before) {
538 assert(!Attr.isInvalid());
539
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000540 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541 return;
542
543 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000544 ValueDecl *VD = dyn_cast<ValueDecl>(D);
545 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000546 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000547 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000548 return;
549 }
550
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000551 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000552 QualType QT = VD->getType();
553 if (!QT->isDependentType()) {
554 const RecordType *RT = getRecordType(QT);
555 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000556 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000557 << Attr.getName();
558 return;
559 }
560 }
561
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000562 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000563 // Check that all arguments are lockable objects.
564 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000565 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000566 if (Size == 0)
567 return;
568 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000569
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000570 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000571 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000572 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000573 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000574 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000575 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000576}
577
578static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000579 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000580 assert(!Attr.isInvalid());
581
582 // zero or more arguments ok
583
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000584 // check that the attribute is applied to a function
585 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000586 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
587 << Attr.getName() << ExpectedFunctionOrMethod;
588 return;
589 }
590
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000591 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000592 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000593 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000594 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000595 Expr **StartArg = Size == 0 ? 0 : &Args[0];
596
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000597 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000598 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000599 S.Context, StartArg,
600 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000601 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000602 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000603 S.Context, StartArg,
604 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000605}
606
607static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000608 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000609 assert(!Attr.isInvalid());
610
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000611 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000612 return;
613
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000614 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000615 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
616 << Attr.getName() << ExpectedFunctionOrMethod;
617 return;
618 }
619
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000620 if (!isIntOrBool(Attr.getArg(0))) {
621 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
622 << Attr.getName();
623 return;
624 }
625
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000626 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000627 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000628 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000629 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000630 Expr **StartArg = Size == 0 ? 0 : &Args[0];
631
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000632 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000633 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000634 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000635 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000636 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000637 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000638 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000639 S.Context,
640 Attr.getArg(0),
641 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000642}
643
644static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000645 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000646 assert(!Attr.isInvalid());
647
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000648 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000649 return;
650
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000651 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000652 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
653 << Attr.getName() << ExpectedFunctionOrMethod;
654 return;
655 }
656
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000658 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000659 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000660 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000661 if (Size == 0)
662 return;
663 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000664
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000666 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000667 S.Context, StartArg,
668 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000669 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000670 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000671 S.Context, StartArg,
672 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000673}
674
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000675static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000677 assert(!Attr.isInvalid());
678
679 // zero or more arguments ok
680
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000681 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000682 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
683 << Attr.getName() << ExpectedFunctionOrMethod;
684 return;
685 }
686
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000687 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000688 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000689 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000690 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000691 Expr **StartArg = Size == 0 ? 0 : &Args[0];
692
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000693 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000694 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000695}
696
697static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000698 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000699 assert(!Attr.isInvalid());
700
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000701 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000702 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000703 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000704
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000705 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000706 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
707 << Attr.getName() << ExpectedFunctionOrMethod;
708 return;
709 }
710
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000711 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000712 return;
713
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000714 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000715 SmallVector<Expr*, 1> Args;
716 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
717 unsigned Size = Args.size();
718 if (Size == 0)
719 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000720
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000721 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context,
722 Args[0]));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000723}
724
725static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000726 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000727 assert(!Attr.isInvalid());
728
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000729 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000730 return;
731
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000732 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000733 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
734 << Attr.getName() << ExpectedFunctionOrMethod;
735 return;
736 }
737
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000738 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000739 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000740 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000741 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000742 if (Size == 0)
743 return;
744 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000745
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000746 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000747 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000748}
749
750
Chandler Carruth1b03c872011-07-02 00:01:44 +0000751static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
752 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000753 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000754 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000755 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000756 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000757 }
Mike Stumpbf916502009-07-24 19:02:52 +0000758
Chris Lattner6b6b5372008-06-26 18:38:35 +0000759 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000760
761 Expr *sizeExpr;
762
763 // Special case where the argument is a template id.
764 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000765 CXXScopeSpec SS;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000766 SourceLocation TemplateKWLoc;
John McCallf7a1a742009-11-24 19:00:30 +0000767 UnqualifiedId id;
768 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000769
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000770 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
771 false, false);
Douglas Gregor4ac01402011-06-15 16:02:29 +0000772 if (Size.isInvalid())
773 return;
774
775 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000776 } else {
777 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000778 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000779 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000780
Peter Collingbourne7a730022010-11-23 20:45:58 +0000781 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000782 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000783
784 // Instantiate/Install the vector type, and let Sema build the type for us.
785 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000786 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000787 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000788 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000789 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000790
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000791 // Remember this typedef decl, we will need it later for diagnostics.
792 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000793 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000794}
795
Chandler Carruth1b03c872011-07-02 00:01:44 +0000796static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000797 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000798 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000799 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000800
Chandler Carruth87c44602011-07-01 23:49:12 +0000801 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000802 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000803 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000804 // If the alignment is less than or equal to 8 bits, the packed attribute
805 // has no effect.
806 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000807 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000808 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000809 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000810 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000811 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000812 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000813 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000814}
815
Chandler Carruth1b03c872011-07-02 00:01:44 +0000816static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000817 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000818 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000819 else
820 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
821}
822
Chandler Carruth1b03c872011-07-02 00:01:44 +0000823static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000824 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000825 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000826 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000827
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000828 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000829 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000830 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000831 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000832 return;
833 }
834
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000835 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000836}
837
Ted Kremenek2f041d02011-09-29 07:02:25 +0000838static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
839 // The IBOutlet/IBOutletCollection attributes only apply to instance
840 // variables or properties of Objective-C classes. The outlet must also
841 // have an object reference type.
842 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
843 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000844 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000845 << Attr.getName() << VD->getType() << 0;
846 return false;
847 }
848 }
849 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
850 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000851 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000852 << Attr.getName() << PD->getType() << 1;
853 return false;
854 }
855 }
856 else {
857 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
858 return false;
859 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000860
Ted Kremenek2f041d02011-09-29 07:02:25 +0000861 return true;
862}
863
Chandler Carruth1b03c872011-07-02 00:01:44 +0000864static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000865 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000866 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000867 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000868
869 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000870 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000871
Ted Kremenek2f041d02011-09-29 07:02:25 +0000872 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000873}
874
Chandler Carruth1b03c872011-07-02 00:01:44 +0000875static void handleIBOutletCollection(Sema &S, Decl *D,
876 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000877
878 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000879 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000880 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
881 return;
882 }
883
Ted Kremenek2f041d02011-09-29 07:02:25 +0000884 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000885 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000886
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000887 IdentifierInfo *II = Attr.getParameterName();
888 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000889 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000890
John McCallb3d87482010-08-24 05:47:05 +0000891 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000892 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000893 if (!TypeRep) {
894 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
895 return;
896 }
John McCallb3d87482010-08-24 05:47:05 +0000897 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000898 // Diagnose use of non-object type in iboutletcollection attribute.
899 // FIXME. Gnu attribute extension ignores use of builtin types in
900 // attributes. So, __attribute__((iboutletcollection(char))) will be
901 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000902 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000903 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
904 return;
905 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000906 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
907 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000908}
909
Chandler Carruthd309c812011-07-01 23:49:16 +0000910static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000911 if (const RecordType *UT = T->getAsUnionType())
912 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
913 RecordDecl *UD = UT->getDecl();
914 for (RecordDecl::field_iterator it = UD->field_begin(),
915 itend = UD->field_end(); it != itend; ++it) {
916 QualType QT = it->getType();
917 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
918 T = QT;
919 return;
920 }
921 }
922 }
923}
924
Chandler Carruth1b03c872011-07-02 00:01:44 +0000925static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000926 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
927 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000928 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000929 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000930 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000931 return;
932 }
Mike Stumpbf916502009-07-24 19:02:52 +0000933
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000934 // In C++ the implicit 'this' function parameter also counts, and they are
935 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000936 bool HasImplicitThisParam = isInstanceMethod(D);
937 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000938
939 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000940 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000941
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000942 for (AttributeList::arg_iterator I=Attr.arg_begin(),
943 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000944
945
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000946 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000947 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000948 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000949 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
950 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000951 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
952 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000953 return;
954 }
Mike Stumpbf916502009-07-24 19:02:52 +0000955
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000956 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000957
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000958 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000959 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000960 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000961 return;
962 }
Mike Stumpbf916502009-07-24 19:02:52 +0000963
Ted Kremenek465172f2008-07-21 22:09:15 +0000964 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000965 if (HasImplicitThisParam) {
966 if (x == 0) {
967 S.Diag(Attr.getLoc(),
968 diag::err_attribute_invalid_implicit_this_argument)
969 << "nonnull" << Ex->getSourceRange();
970 return;
971 }
972 --x;
973 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000974
975 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000976 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000977 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000978
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000979 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000980 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000981 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000982 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000983 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000984 }
Mike Stumpbf916502009-07-24 19:02:52 +0000985
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000986 NonNullArgs.push_back(x);
987 }
Mike Stumpbf916502009-07-24 19:02:52 +0000988
989 // If no arguments were specified to __attribute__((nonnull)) then all pointer
990 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000991 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000992 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
993 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000994 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000995 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000996 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000997 }
Mike Stumpbf916502009-07-24 19:02:52 +0000998
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000999 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001000 if (NonNullArgs.empty()) {
1001 // Warn the trivial case only if attribute is not coming from a
1002 // macro instantiation.
1003 if (Attr.getLoc().isFileID())
1004 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001005 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001006 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001007 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001008
1009 unsigned* start = &NonNullArgs[0];
1010 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001011 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001012 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +00001013 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001014}
1015
Chandler Carruth1b03c872011-07-02 00:01:44 +00001016static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001017 // This attribute must be applied to a function declaration.
1018 // The first argument to the attribute must be a string,
1019 // the name of the resource, for example "malloc".
1020 // The following arguments must be argument indexes, the arguments must be
1021 // of integer type for Returns, otherwise of pointer type.
1022 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001023 // after being held. free() should be __attribute((ownership_takes)), whereas
1024 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001025
1026 if (!AL.getParameterName()) {
1027 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1028 << AL.getName()->getName() << 1;
1029 return;
1030 }
1031 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001032 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001033 switch (AL.getKind()) {
1034 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001035 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001036 if (AL.getNumArgs() < 1) {
1037 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1038 return;
1039 }
Jordy Rose2a479922010-08-12 08:54:03 +00001040 break;
1041 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001042 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001043 if (AL.getNumArgs() < 1) {
1044 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1045 return;
1046 }
Jordy Rose2a479922010-08-12 08:54:03 +00001047 break;
1048 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001049 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001050 if (AL.getNumArgs() > 1) {
1051 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1052 << AL.getNumArgs() + 1;
1053 return;
1054 }
Jordy Rose2a479922010-08-12 08:54:03 +00001055 break;
1056 default:
1057 // This should never happen given how we are called.
1058 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001059 }
1060
Chandler Carruth87c44602011-07-01 23:49:12 +00001061 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001062 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1063 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001064 return;
1065 }
1066
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001067 // In C++ the implicit 'this' function parameter also counts, and they are
1068 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001069 bool HasImplicitThisParam = isInstanceMethod(D);
1070 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001071
Chris Lattner5f9e2722011-07-23 10:55:15 +00001072 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001073
1074 // Normalize the argument, __foo__ becomes foo.
1075 if (Module.startswith("__") && Module.endswith("__"))
1076 Module = Module.substr(2, Module.size() - 4);
1077
Chris Lattner5f9e2722011-07-23 10:55:15 +00001078 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001079
Jordy Rose2a479922010-08-12 08:54:03 +00001080 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1081 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001082
Peter Collingbourne7a730022010-11-23 20:45:58 +00001083 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001084 llvm::APSInt ArgNum(32);
1085 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1086 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1087 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1088 << AL.getName()->getName() << IdxExpr->getSourceRange();
1089 continue;
1090 }
1091
1092 unsigned x = (unsigned) ArgNum.getZExtValue();
1093
1094 if (x > NumArgs || x < 1) {
1095 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1096 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1097 continue;
1098 }
1099 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001100 if (HasImplicitThisParam) {
1101 if (x == 0) {
1102 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1103 << "ownership" << IdxExpr->getSourceRange();
1104 return;
1105 }
1106 --x;
1107 }
1108
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001109 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001110 case OwnershipAttr::Takes:
1111 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001112 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001113 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001114 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1115 // FIXME: Should also highlight argument in decl.
1116 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001117 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001118 << "pointer"
1119 << IdxExpr->getSourceRange();
1120 continue;
1121 }
1122 break;
1123 }
Sean Huntcf807c42010-08-18 23:23:40 +00001124 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001125 if (AL.getNumArgs() > 1) {
1126 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001127 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001128 llvm::APSInt ArgNum(32);
1129 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1130 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1131 S.Diag(AL.getLoc(), diag::err_ownership_type)
1132 << "ownership_returns" << "integer"
1133 << IdxExpr->getSourceRange();
1134 return;
1135 }
1136 }
1137 break;
1138 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001139 } // switch
1140
1141 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001142 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001143 i = D->specific_attr_begin<OwnershipAttr>(),
1144 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001145 i != e; ++i) {
1146 if ((*i)->getOwnKind() != K) {
1147 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1148 I!=E; ++I) {
1149 if (x == *I) {
1150 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1151 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001152 }
1153 }
1154 }
1155 }
1156 OwnershipArgs.push_back(x);
1157 }
1158
1159 unsigned* start = OwnershipArgs.data();
1160 unsigned size = OwnershipArgs.size();
1161 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001162
1163 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1164 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1165 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001166 }
Sean Huntcf807c42010-08-18 23:23:40 +00001167
Chandler Carruth87c44602011-07-01 23:49:12 +00001168 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001169 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001170}
1171
John McCall332bb2a2011-02-08 22:35:49 +00001172/// Whether this declaration has internal linkage for the purposes of
1173/// things that want to complain about things not have internal linkage.
1174static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1175 switch (D->getLinkage()) {
1176 case NoLinkage:
1177 case InternalLinkage:
1178 return true;
1179
1180 // Template instantiations that go from external to unique-external
1181 // shouldn't get diagnosed.
1182 case UniqueExternalLinkage:
1183 return true;
1184
1185 case ExternalLinkage:
1186 return false;
1187 }
1188 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001189}
1190
Chandler Carruth1b03c872011-07-02 00:01:44 +00001191static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001192 // Check the attribute arguments.
1193 if (Attr.getNumArgs() > 1) {
1194 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1195 return;
1196 }
1197
Chandler Carruth87c44602011-07-01 23:49:12 +00001198 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001199 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001200 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001201 return;
1202 }
1203
Chandler Carruth87c44602011-07-01 23:49:12 +00001204 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001205
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001206 // gcc rejects
1207 // class c {
1208 // static int a __attribute__((weakref ("v2")));
1209 // static int b() __attribute__((weakref ("f3")));
1210 // };
1211 // and ignores the attributes of
1212 // void f(void) {
1213 // static int a __attribute__((weakref ("v2")));
1214 // }
1215 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001216 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001217 if (!Ctx->isFileContext()) {
1218 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001219 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001220 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001221 }
1222
1223 // The GCC manual says
1224 //
1225 // At present, a declaration to which `weakref' is attached can only
1226 // be `static'.
1227 //
1228 // It also says
1229 //
1230 // Without a TARGET,
1231 // given as an argument to `weakref' or to `alias', `weakref' is
1232 // equivalent to `weak'.
1233 //
1234 // gcc 4.4.1 will accept
1235 // int a7 __attribute__((weakref));
1236 // as
1237 // int a7 __attribute__((weak));
1238 // This looks like a bug in gcc. We reject that for now. We should revisit
1239 // it if this behaviour is actually used.
1240
John McCall332bb2a2011-02-08 22:35:49 +00001241 if (!hasEffectivelyInternalLinkage(nd)) {
1242 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001243 return;
1244 }
1245
1246 // GCC rejects
1247 // static ((alias ("y"), weakref)).
1248 // Should we? How to check that weakref is before or after alias?
1249
1250 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001251 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001252 Arg = Arg->IgnoreParenCasts();
1253 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1254
Douglas Gregor5cee1192011-07-27 05:40:30 +00001255 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001256 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1257 << "weakref" << 1;
1258 return;
1259 }
1260 // GCC will accept anything as the argument of weakref. Should we
1261 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001262 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001263 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001264 }
1265
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001266 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001267}
1268
Chandler Carruth1b03c872011-07-02 00:01:44 +00001269static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001270 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001271 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001272 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001273 return;
1274 }
Mike Stumpbf916502009-07-24 19:02:52 +00001275
Peter Collingbourne7a730022010-11-23 20:45:58 +00001276 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001277 Arg = Arg->IgnoreParenCasts();
1278 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001279
Douglas Gregor5cee1192011-07-27 05:40:30 +00001280 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001281 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001282 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001283 return;
1284 }
Mike Stumpbf916502009-07-24 19:02:52 +00001285
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001286 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001287 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1288 return;
1289 }
1290
Chris Lattner6b6b5372008-06-26 18:38:35 +00001291 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001292
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001293 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001294 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001295}
1296
Benjamin Krameree409a92012-05-12 21:10:52 +00001297static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1298 // Check the attribute arguments.
1299 if (!checkAttributeNumArgs(S, Attr, 0))
1300 return;
1301
1302 if (!isa<FunctionDecl>(D)) {
1303 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1304 << Attr.getName() << ExpectedFunction;
1305 return;
1306 }
1307
1308 if (D->hasAttr<HotAttr>()) {
1309 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1310 << Attr.getName() << "hot";
1311 return;
1312 }
1313
1314 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context));
1315}
1316
1317static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1318 // Check the attribute arguments.
1319 if (!checkAttributeNumArgs(S, Attr, 0))
1320 return;
1321
1322 if (!isa<FunctionDecl>(D)) {
1323 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1324 << Attr.getName() << ExpectedFunction;
1325 return;
1326 }
1327
1328 if (D->hasAttr<ColdAttr>()) {
1329 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1330 << Attr.getName() << "cold";
1331 return;
1332 }
1333
1334 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context));
1335}
1336
Chandler Carruth1b03c872011-07-02 00:01:44 +00001337static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001338 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001339 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001340 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001341
Chandler Carruth87c44602011-07-01 23:49:12 +00001342 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001343 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001344 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001345 return;
1346 }
1347
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001348 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001349}
1350
Chandler Carruth1b03c872011-07-02 00:01:44 +00001351static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1352 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001353 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001354 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001355 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1356 return;
1357 }
1358
Chandler Carruth87c44602011-07-01 23:49:12 +00001359 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001360 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001361 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001362 return;
1363 }
Mike Stumpbf916502009-07-24 19:02:52 +00001364
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001365 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001366}
1367
Chandler Carruth1b03c872011-07-02 00:01:44 +00001368static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001369 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001370 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001371 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1372 return;
1373 }
Mike Stump1eb44332009-09-09 15:08:12 +00001374
Chandler Carruth87c44602011-07-01 23:49:12 +00001375 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001376 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001377 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001378 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001379 return;
1380 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001381 }
1382
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001383 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001384}
1385
Chandler Carruth1b03c872011-07-02 00:01:44 +00001386static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001387 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001388 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001389 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001390
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001391 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001392}
1393
Chandler Carruth1b03c872011-07-02 00:01:44 +00001394static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001395 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001396 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001397 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001398 else
1399 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001400 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001401}
1402
Chandler Carruth1b03c872011-07-02 00:01:44 +00001403static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001404 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001405 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001406 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001407 else
1408 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001409 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001410}
1411
Chandler Carruth1b03c872011-07-02 00:01:44 +00001412static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001413 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001414
1415 if (S.CheckNoReturnAttr(attr)) return;
1416
Chandler Carruth87c44602011-07-01 23:49:12 +00001417 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001418 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001419 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001420 return;
1421 }
1422
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001423 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001424}
1425
1426bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001427 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001428 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1429 attr.setInvalid();
1430 return true;
1431 }
1432
1433 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001434}
1435
Chandler Carruth1b03c872011-07-02 00:01:44 +00001436static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1437 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001438
1439 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1440 // because 'analyzer_noreturn' does not impact the type.
1441
Chandler Carruth1731e202011-07-11 23:30:35 +00001442 if(!checkAttributeNumArgs(S, Attr, 0))
1443 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001444
Chandler Carruth87c44602011-07-01 23:49:12 +00001445 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1446 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001447 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1448 && !VD->getType()->isFunctionPointerType())) {
1449 S.Diag(Attr.getLoc(),
1450 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1451 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001452 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001453 return;
1454 }
1455 }
1456
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001457 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001458}
1459
John Thompson35cc9622010-08-09 21:53:52 +00001460// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001461static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001462/*
1463 Returning a Vector Class in Registers
1464
Eric Christopherf48f3672010-12-01 22:13:54 +00001465 According to the PPU ABI specifications, a class with a single member of
1466 vector type is returned in memory when used as the return value of a function.
1467 This results in inefficient code when implementing vector classes. To return
1468 the value in a single vector register, add the vecreturn attribute to the
1469 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001470
1471 Example:
1472
1473 struct Vector
1474 {
1475 __vector float xyzw;
1476 } __attribute__((vecreturn));
1477
1478 Vector Add(Vector lhs, Vector rhs)
1479 {
1480 Vector result;
1481 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1482 return result; // This will be returned in a register
1483 }
1484*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001485 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001486 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001487 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001488 return;
1489 }
1490
Chandler Carruth87c44602011-07-01 23:49:12 +00001491 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001492 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1493 return;
1494 }
1495
Chandler Carruth87c44602011-07-01 23:49:12 +00001496 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001497 int count = 0;
1498
1499 if (!isa<CXXRecordDecl>(record)) {
1500 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1501 return;
1502 }
1503
1504 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1505 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1506 return;
1507 }
1508
Eric Christopherf48f3672010-12-01 22:13:54 +00001509 for (RecordDecl::field_iterator iter = record->field_begin();
1510 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001511 if ((count == 1) || !iter->getType()->isVectorType()) {
1512 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1513 return;
1514 }
1515 count++;
1516 }
1517
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001518 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001519}
1520
Chandler Carruth1b03c872011-07-02 00:01:44 +00001521static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001522 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001523 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001524 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001525 return;
1526 }
1527 // FIXME: Actually store the attribute on the declaration
1528}
1529
Chandler Carruth1b03c872011-07-02 00:01:44 +00001530static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001531 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001532 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001533 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001534 return;
1535 }
Mike Stumpbf916502009-07-24 19:02:52 +00001536
Chandler Carruth87c44602011-07-01 23:49:12 +00001537 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1538 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001539 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001540 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001541 return;
1542 }
Mike Stumpbf916502009-07-24 19:02:52 +00001543
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001544 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001545}
1546
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001547static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1548 const AttributeList &Attr) {
1549 // check the attribute arguments.
1550 if (Attr.hasParameterOrArguments()) {
1551 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1552 return;
1553 }
1554
1555 if (!isa<FunctionDecl>(D)) {
1556 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1557 << Attr.getName() << ExpectedFunction;
1558 return;
1559 }
1560
1561 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1562}
1563
Chandler Carruth1b03c872011-07-02 00:01:44 +00001564static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001565 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001566 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001567 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1568 return;
1569 }
Mike Stumpbf916502009-07-24 19:02:52 +00001570
Chandler Carruth87c44602011-07-01 23:49:12 +00001571 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001572 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001573 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1574 return;
1575 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001576 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001577 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001578 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001579 return;
1580 }
Mike Stumpbf916502009-07-24 19:02:52 +00001581
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001582 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001583}
1584
Chandler Carruth1b03c872011-07-02 00:01:44 +00001585static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001586 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001587 if (Attr.getNumArgs() > 1) {
1588 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001589 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001590 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001591
1592 int priority = 65535; // FIXME: Do not hardcode such constants.
1593 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001594 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001595 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001596 if (E->isTypeDependent() || E->isValueDependent() ||
1597 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001598 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001599 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001600 return;
1601 }
1602 priority = Idx.getZExtValue();
1603 }
Mike Stumpbf916502009-07-24 19:02:52 +00001604
Chandler Carruth87c44602011-07-01 23:49:12 +00001605 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001606 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001607 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001608 return;
1609 }
1610
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001611 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001612 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001613}
1614
Chandler Carruth1b03c872011-07-02 00:01:44 +00001615static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001616 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001617 if (Attr.getNumArgs() > 1) {
1618 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001619 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001620 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001621
1622 int priority = 65535; // FIXME: Do not hardcode such constants.
1623 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001624 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001625 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001626 if (E->isTypeDependent() || E->isValueDependent() ||
1627 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001628 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001629 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001630 return;
1631 }
1632 priority = Idx.getZExtValue();
1633 }
Mike Stumpbf916502009-07-24 19:02:52 +00001634
Chandler Carruth87c44602011-07-01 23:49:12 +00001635 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001636 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001637 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001638 return;
1639 }
1640
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001641 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001642 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001643}
1644
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001645template <typename AttrTy>
1646static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1647 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001648 unsigned NumArgs = Attr.getNumArgs();
1649 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001650 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001651 return;
1652 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001653
1654 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001655 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001656 if (NumArgs == 1) {
1657 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001658 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001659 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001660 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001661 return;
1662 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001663 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001664 }
Mike Stumpbf916502009-07-24 19:02:52 +00001665
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001666 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001667}
1668
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001669static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1670 const AttributeList &Attr) {
1671 unsigned NumArgs = Attr.getNumArgs();
1672 if (NumArgs > 0) {
1673 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1674 return;
1675 }
1676
1677 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001678 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001679}
1680
Patrick Beardb2f68202012-04-06 18:12:22 +00001681static void handleObjCRootClassAttr(Sema &S, Decl *D,
1682 const AttributeList &Attr) {
1683 if (!isa<ObjCInterfaceDecl>(D)) {
1684 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1685 return;
1686 }
1687
1688 unsigned NumArgs = Attr.getNumArgs();
1689 if (NumArgs > 0) {
1690 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1691 return;
1692 }
1693
1694 D->addAttr(::new (S.Context) ObjCRootClassAttr(Attr.getRange(), S.Context));
1695}
1696
Ted Kremenek71207fc2012-01-05 22:47:47 +00001697static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001698 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001699 if (!isa<ObjCInterfaceDecl>(D)) {
1700 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1701 return;
1702 }
1703
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001704 unsigned NumArgs = Attr.getNumArgs();
1705 if (NumArgs > 0) {
1706 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1707 return;
1708 }
1709
Ted Kremenek71207fc2012-01-05 22:47:47 +00001710 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001711 Attr.getRange(), S.Context));
1712}
1713
Jordy Rosefad5de92012-05-08 03:27:22 +00001714static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
1715 IdentifierInfo *Platform,
1716 VersionTuple Introduced,
1717 VersionTuple Deprecated,
1718 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00001719 StringRef PlatformName
1720 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1721 if (PlatformName.empty())
1722 PlatformName = Platform->getName();
1723
1724 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
1725 // of these steps are needed).
1726 if (!Introduced.empty() && !Deprecated.empty() &&
1727 !(Introduced <= Deprecated)) {
1728 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1729 << 1 << PlatformName << Deprecated.getAsString()
1730 << 0 << Introduced.getAsString();
1731 return true;
1732 }
1733
1734 if (!Introduced.empty() && !Obsoleted.empty() &&
1735 !(Introduced <= Obsoleted)) {
1736 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1737 << 2 << PlatformName << Obsoleted.getAsString()
1738 << 0 << Introduced.getAsString();
1739 return true;
1740 }
1741
1742 if (!Deprecated.empty() && !Obsoleted.empty() &&
1743 !(Deprecated <= Obsoleted)) {
1744 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1745 << 2 << PlatformName << Obsoleted.getAsString()
1746 << 1 << Deprecated.getAsString();
1747 return true;
1748 }
1749
1750 return false;
1751}
1752
Rafael Espindola599f1b72012-05-13 03:25:18 +00001753AvailabilityAttr *Sema::mergeAvailabilityAttr(Decl *D, SourceRange Range,
1754 IdentifierInfo *Platform,
1755 VersionTuple Introduced,
1756 VersionTuple Deprecated,
1757 VersionTuple Obsoleted,
1758 bool IsUnavailable,
1759 StringRef Message) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00001760 VersionTuple MergedIntroduced = Introduced;
1761 VersionTuple MergedDeprecated = Deprecated;
1762 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00001763 bool FoundAny = false;
1764
Rafael Espindola98ae8342012-05-10 02:50:16 +00001765 if (D->hasAttrs()) {
1766 AttrVec &Attrs = D->getAttrs();
1767 for (unsigned i = 0, e = Attrs.size(); i != e;) {
1768 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
1769 if (!OldAA) {
1770 ++i;
1771 continue;
1772 }
Rafael Espindola3b294362012-05-06 19:56:25 +00001773
Rafael Espindola98ae8342012-05-10 02:50:16 +00001774 IdentifierInfo *OldPlatform = OldAA->getPlatform();
1775 if (OldPlatform != Platform) {
1776 ++i;
1777 continue;
1778 }
1779
1780 FoundAny = true;
1781 VersionTuple OldIntroduced = OldAA->getIntroduced();
1782 VersionTuple OldDeprecated = OldAA->getDeprecated();
1783 VersionTuple OldObsoleted = OldAA->getObsoleted();
1784 bool OldIsUnavailable = OldAA->getUnavailable();
1785 StringRef OldMessage = OldAA->getMessage();
1786
1787 if ((!OldIntroduced.empty() && !Introduced.empty() &&
1788 OldIntroduced != Introduced) ||
1789 (!OldDeprecated.empty() && !Deprecated.empty() &&
1790 OldDeprecated != Deprecated) ||
1791 (!OldObsoleted.empty() && !Obsoleted.empty() &&
1792 OldObsoleted != Obsoleted) ||
1793 (OldIsUnavailable != IsUnavailable) ||
1794 (OldMessage != Message)) {
1795 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
1796 Diag(Range.getBegin(), diag::note_previous_attribute);
1797 Attrs.erase(Attrs.begin() + i);
1798 --e;
1799 continue;
1800 }
1801
1802 VersionTuple MergedIntroduced2 = MergedIntroduced;
1803 VersionTuple MergedDeprecated2 = MergedDeprecated;
1804 VersionTuple MergedObsoleted2 = MergedObsoleted;
1805
1806 if (MergedIntroduced2.empty())
1807 MergedIntroduced2 = OldIntroduced;
1808 if (MergedDeprecated2.empty())
1809 MergedDeprecated2 = OldDeprecated;
1810 if (MergedObsoleted2.empty())
1811 MergedObsoleted2 = OldObsoleted;
1812
1813 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
1814 MergedIntroduced2, MergedDeprecated2,
1815 MergedObsoleted2)) {
1816 Attrs.erase(Attrs.begin() + i);
1817 --e;
1818 continue;
1819 }
1820
1821 MergedIntroduced = MergedIntroduced2;
1822 MergedDeprecated = MergedDeprecated2;
1823 MergedObsoleted = MergedObsoleted2;
1824 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00001825 }
Rafael Espindola3b294362012-05-06 19:56:25 +00001826 }
1827
1828 if (FoundAny &&
1829 MergedIntroduced == Introduced &&
1830 MergedDeprecated == Deprecated &&
1831 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00001832 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00001833
Rafael Espindola98ae8342012-05-10 02:50:16 +00001834 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00001835 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00001836 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
1837 Introduced, Deprecated,
1838 Obsoleted, IsUnavailable, Message);
Rafael Espindola3b294362012-05-06 19:56:25 +00001839 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00001840 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00001841}
1842
Chandler Carruth1b03c872011-07-02 00:01:44 +00001843static void handleAvailabilityAttr(Sema &S, Decl *D,
1844 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001845 IdentifierInfo *Platform = Attr.getParameterName();
1846 SourceLocation PlatformLoc = Attr.getParameterLoc();
1847
Rafael Espindola3b294362012-05-06 19:56:25 +00001848 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001849 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1850 << Platform;
1851
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001852 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1853 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1854 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001855 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001856 StringRef Str;
1857 const StringLiteral *SE =
1858 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1859 if (SE)
1860 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00001861
Rafael Espindola599f1b72012-05-13 03:25:18 +00001862 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(D, Attr.getRange(),
1863 Platform,
1864 Introduced.Version,
1865 Deprecated.Version,
1866 Obsoleted.Version,
1867 IsUnavailable, Str);
1868 if (NewAttr)
1869 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00001870}
1871
Rafael Espindola599f1b72012-05-13 03:25:18 +00001872VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
1873 VisibilityAttr::VisibilityType Vis) {
Rafael Espindoladd44f342012-05-10 03:01:34 +00001874 if (isa<TypedefNameDecl>(D)) {
1875 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "visibility";
Rafael Espindola599f1b72012-05-13 03:25:18 +00001876 return NULL;
Rafael Espindoladd44f342012-05-10 03:01:34 +00001877 }
Rafael Espindola98ae8342012-05-10 02:50:16 +00001878 VisibilityAttr *ExistingAttr = D->getAttr<VisibilityAttr>();
1879 if (ExistingAttr) {
1880 VisibilityAttr::VisibilityType ExistingVis = ExistingAttr->getVisibility();
1881 if (ExistingVis == Vis)
Rafael Espindola599f1b72012-05-13 03:25:18 +00001882 return NULL;
Rafael Espindola98ae8342012-05-10 02:50:16 +00001883 Diag(ExistingAttr->getLocation(), diag::err_mismatched_visibility);
1884 Diag(Range.getBegin(), diag::note_previous_attribute);
1885 D->dropAttr<VisibilityAttr>();
1886 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00001887 return ::new (Context) VisibilityAttr(Range, Context, Vis);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001888}
1889
Chandler Carruth1b03c872011-07-02 00:01:44 +00001890static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001891 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001892 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001893 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001894
Peter Collingbourne7a730022010-11-23 20:45:58 +00001895 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001896 Arg = Arg->IgnoreParenCasts();
1897 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001898
Douglas Gregor5cee1192011-07-27 05:40:30 +00001899 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001900 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001901 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001902 return;
1903 }
Mike Stumpbf916502009-07-24 19:02:52 +00001904
Chris Lattner5f9e2722011-07-23 10:55:15 +00001905 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001906 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001907
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001908 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001909 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001910 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001911 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001912 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001913 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00001914 else if (TypeStr == "protected") {
1915 // Complain about attempts to use protected visibility on targets
1916 // (like Darwin) that don't support it.
1917 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1918 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1919 type = VisibilityAttr::Default;
1920 } else {
1921 type = VisibilityAttr::Protected;
1922 }
1923 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00001924 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001925 return;
1926 }
Mike Stumpbf916502009-07-24 19:02:52 +00001927
Rafael Espindola599f1b72012-05-13 03:25:18 +00001928 VisibilityAttr *NewAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type);
1929 if (NewAttr)
1930 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001931}
1932
Chandler Carruth1b03c872011-07-02 00:01:44 +00001933static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1934 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001935 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1936 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001937 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001938 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001939 return;
1940 }
1941
Chandler Carruth87c44602011-07-01 23:49:12 +00001942 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1943 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1944 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001945 << "objc_method_family" << 1;
1946 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001947 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001948 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001949 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001950 return;
1951 }
1952
Chris Lattner5f9e2722011-07-23 10:55:15 +00001953 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001954 ObjCMethodFamilyAttr::FamilyKind family;
1955 if (param == "none")
1956 family = ObjCMethodFamilyAttr::OMF_None;
1957 else if (param == "alloc")
1958 family = ObjCMethodFamilyAttr::OMF_alloc;
1959 else if (param == "copy")
1960 family = ObjCMethodFamilyAttr::OMF_copy;
1961 else if (param == "init")
1962 family = ObjCMethodFamilyAttr::OMF_init;
1963 else if (param == "mutableCopy")
1964 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1965 else if (param == "new")
1966 family = ObjCMethodFamilyAttr::OMF_new;
1967 else {
1968 // Just warn and ignore it. This is future-proof against new
1969 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001970 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001971 return;
1972 }
1973
John McCallf85e1932011-06-15 23:02:42 +00001974 if (family == ObjCMethodFamilyAttr::OMF_init &&
1975 !method->getResultType()->isObjCObjectPointerType()) {
1976 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1977 << method->getResultType();
1978 // Ignore the attribute.
1979 return;
1980 }
1981
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001982 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001983 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001984}
1985
Chandler Carruth1b03c872011-07-02 00:01:44 +00001986static void handleObjCExceptionAttr(Sema &S, Decl *D,
1987 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001988 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001989 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001990
Chris Lattner0db29ec2009-02-14 08:09:34 +00001991 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1992 if (OCI == 0) {
1993 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1994 return;
1995 }
Mike Stumpbf916502009-07-24 19:02:52 +00001996
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001997 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001998}
1999
Chandler Carruth1b03c872011-07-02 00:01:44 +00002000static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002001 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002002 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002003 return;
2004 }
Richard Smith162e1c12011-04-15 14:24:37 +00002005 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002006 QualType T = TD->getUnderlyingType();
2007 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002008 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002009 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2010 return;
2011 }
2012 }
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002013 else if (!isa<ObjCPropertyDecl>(D)) {
2014 // It is okay to include this attribute on properties, e.g.:
2015 //
2016 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2017 //
2018 // In this case it follows tradition and suppresses an error in the above
2019 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002020 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002021 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002022 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002023}
2024
Mike Stumpbf916502009-07-24 19:02:52 +00002025static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002026handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002027 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002028 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002029 return;
2030 }
2031
2032 if (!isa<FunctionDecl>(D)) {
2033 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2034 return;
2035 }
2036
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002037 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002038}
2039
Chandler Carruth1b03c872011-07-02 00:01:44 +00002040static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002041 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002042 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002043 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002044 return;
2045 }
Mike Stumpbf916502009-07-24 19:02:52 +00002046
Steve Naroff9eae5762008-09-18 16:44:58 +00002047 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002048 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002049 return;
2050 }
Mike Stumpbf916502009-07-24 19:02:52 +00002051
Sean Huntcf807c42010-08-18 23:23:40 +00002052 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002053 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002054 type = BlocksAttr::ByRef;
2055 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002056 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002057 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002058 return;
2059 }
Mike Stumpbf916502009-07-24 19:02:52 +00002060
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002061 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00002062}
2063
Chandler Carruth1b03c872011-07-02 00:01:44 +00002064static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002065 // check the attribute arguments.
2066 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002067 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002068 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002069 }
2070
John McCall3323fad2011-09-09 07:56:05 +00002071 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002072 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002073 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002074 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002075 if (E->isTypeDependent() || E->isValueDependent() ||
2076 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002077 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002078 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002079 return;
2080 }
Mike Stumpbf916502009-07-24 19:02:52 +00002081
John McCall3323fad2011-09-09 07:56:05 +00002082 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002083 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2084 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002085 return;
2086 }
John McCall3323fad2011-09-09 07:56:05 +00002087
2088 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002089 }
2090
John McCall3323fad2011-09-09 07:56:05 +00002091 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002092 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002093 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002094 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002095 if (E->isTypeDependent() || E->isValueDependent() ||
2096 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002097 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002098 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002099 return;
2100 }
2101 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002102
John McCall3323fad2011-09-09 07:56:05 +00002103 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002104 // FIXME: This error message could be improved, it would be nice
2105 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002106 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2107 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002108 return;
2109 }
2110 }
2111
Chandler Carruth87c44602011-07-01 23:49:12 +00002112 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002113 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002114 if (isa<FunctionNoProtoType>(FT)) {
2115 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2116 return;
2117 }
Mike Stumpbf916502009-07-24 19:02:52 +00002118
Chris Lattner897cd902009-03-17 23:03:47 +00002119 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002120 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002121 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002122 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002123 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002124 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002125 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002126 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002127 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002128 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2129 if (!BD->isVariadic()) {
2130 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2131 return;
2132 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002133 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002134 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002135 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002136 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002137 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002138 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002139 int m = Ty->isFunctionPointerType() ? 0 : 1;
2140 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002141 return;
2142 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002143 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002144 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002145 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002146 return;
2147 }
Anders Carlsson77091822008-10-05 18:05:59 +00002148 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002149 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002150 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002151 return;
2152 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002153 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00002154 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00002155}
2156
Chandler Carruth1b03c872011-07-02 00:01:44 +00002157static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002158 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002159 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002160 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002161
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002162 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002163 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002164 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00002165 return;
2166 }
Mike Stumpbf916502009-07-24 19:02:52 +00002167
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002168 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2169 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2170 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002171 return;
2172 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002173 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2174 if (MD->getResultType()->isVoidType()) {
2175 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2176 << Attr.getName() << 1;
2177 return;
2178 }
2179
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002180 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00002181}
2182
Chandler Carruth1b03c872011-07-02 00:01:44 +00002183static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002184 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002185 if (Attr.hasParameterOrArguments()) {
2186 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002187 return;
2188 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002189
Chandler Carruth87c44602011-07-01 23:49:12 +00002190 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002191 if (isa<CXXRecordDecl>(D)) {
2192 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2193 return;
2194 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002195 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2196 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002197 return;
2198 }
2199
Chandler Carruth87c44602011-07-01 23:49:12 +00002200 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002201
2202 // 'weak' only applies to declarations with external linkage.
2203 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002204 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002205 return;
2206 }
Mike Stumpbf916502009-07-24 19:02:52 +00002207
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002208 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002209}
2210
Chandler Carruth1b03c872011-07-02 00:01:44 +00002211static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002212 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002213 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002214 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002215
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002216
2217 // weak_import only applies to variable & function declarations.
2218 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002219 if (!D->canBeWeakImported(isDef)) {
2220 if (isDef)
2221 S.Diag(Attr.getLoc(),
2222 diag::warn_attribute_weak_import_invalid_on_definition)
2223 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002224 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002225 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002226 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002227 // Nothing to warn about here.
2228 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002229 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002230 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002231
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002232 return;
2233 }
2234
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002235 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002236}
2237
Chandler Carruth1b03c872011-07-02 00:01:44 +00002238static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2239 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002240 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002241 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002242 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002243
2244 unsigned WGSize[3];
2245 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002246 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002247 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002248 if (E->isTypeDependent() || E->isValueDependent() ||
2249 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002250 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2251 << "reqd_work_group_size" << E->getSourceRange();
2252 return;
2253 }
2254 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2255 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002256 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002257 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002258 WGSize[2]));
2259}
2260
Rafael Espindola599f1b72012-05-13 03:25:18 +00002261SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
2262 StringRef Name) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002263 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2264 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002265 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002266 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2267 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002268 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002269 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002270 return ::new (Context) SectionAttr(Range, Context, Name);
Rafael Espindola420efd82012-05-13 02:42:42 +00002271}
2272
Chandler Carruth1b03c872011-07-02 00:01:44 +00002273static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002274 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002275 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002276 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002277
2278 // Make sure that there is a string literal as the sections's single
2279 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002280 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002281 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002282 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002283 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002284 return;
2285 }
Mike Stump1eb44332009-09-09 15:08:12 +00002286
Chris Lattner797c3c42009-08-10 19:03:04 +00002287 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002288 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002289 if (!Error.empty()) {
2290 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2291 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002292 return;
2293 }
Mike Stump1eb44332009-09-09 15:08:12 +00002294
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002295 // This attribute cannot be applied to local variables.
2296 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2297 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2298 return;
2299 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002300 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
2301 SE->getString());
2302 if (NewAttr)
2303 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002304}
2305
Chris Lattner6b6b5372008-06-26 18:38:35 +00002306
Chandler Carruth1b03c872011-07-02 00:01:44 +00002307static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002308 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002309 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002310 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002311 return;
2312 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002313
Chandler Carruth87c44602011-07-01 23:49:12 +00002314 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002315 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002316 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002317 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002318 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002319 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002320}
2321
Chandler Carruth1b03c872011-07-02 00:01:44 +00002322static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002323 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002324 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002325 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002326 return;
2327 }
Mike Stumpbf916502009-07-24 19:02:52 +00002328
Chandler Carruth87c44602011-07-01 23:49:12 +00002329 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002330 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002331 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002332 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002333 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002334 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002335}
2336
Chandler Carruth1b03c872011-07-02 00:01:44 +00002337static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002338 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002339 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002340 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002341
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002342 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002343}
2344
Chandler Carruth1b03c872011-07-02 00:01:44 +00002345static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002346 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002347 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2348 return;
2349 }
Mike Stumpbf916502009-07-24 19:02:52 +00002350
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002351 if (Attr.getNumArgs() != 0) {
2352 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2353 return;
2354 }
Mike Stumpbf916502009-07-24 19:02:52 +00002355
Chandler Carruth87c44602011-07-01 23:49:12 +00002356 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002357
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002358 if (!VD || !VD->hasLocalStorage()) {
2359 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2360 return;
2361 }
Mike Stumpbf916502009-07-24 19:02:52 +00002362
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002363 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002364 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002365 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002366 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2367 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002368 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002369 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002370 Attr.getParameterName();
2371 return;
2372 }
Mike Stumpbf916502009-07-24 19:02:52 +00002373
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002374 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2375 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002376 S.Diag(Attr.getParameterLoc(),
2377 diag::err_attribute_cleanup_arg_not_function)
2378 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002379 return;
2380 }
2381
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002382 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002383 S.Diag(Attr.getParameterLoc(),
2384 diag::err_attribute_cleanup_func_must_take_one_arg)
2385 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002386 return;
2387 }
Mike Stumpbf916502009-07-24 19:02:52 +00002388
Anders Carlsson89941c12009-02-07 23:16:50 +00002389 // We're currently more strict than GCC about what function types we accept.
2390 // If this ever proves to be a problem it should be easy to fix.
2391 QualType Ty = S.Context.getPointerType(VD->getType());
2392 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002393 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2394 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002395 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002396 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2397 Attr.getParameterName() << ParamTy << Ty;
2398 return;
2399 }
Mike Stumpbf916502009-07-24 19:02:52 +00002400
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002401 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002402 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002403}
2404
Mike Stumpbf916502009-07-24 19:02:52 +00002405/// Handle __attribute__((format_arg((idx)))) attribute based on
2406/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002407static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002408 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002409 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002410
Chandler Carruth87c44602011-07-01 23:49:12 +00002411 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002412 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002413 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002414 return;
2415 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002416
2417 // In C++ the implicit 'this' function parameter also counts, and they are
2418 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002419 bool HasImplicitThisParam = isInstanceMethod(D);
2420 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002421 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002422
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002423 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002424 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002425 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002426 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2427 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002428 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2429 << "format" << 2 << IdxExpr->getSourceRange();
2430 return;
2431 }
Mike Stumpbf916502009-07-24 19:02:52 +00002432
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002433 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2434 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2435 << "format" << 2 << IdxExpr->getSourceRange();
2436 return;
2437 }
Mike Stumpbf916502009-07-24 19:02:52 +00002438
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002439 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002440
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002441 if (HasImplicitThisParam) {
2442 if (ArgIdx == 0) {
2443 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2444 << "format_arg" << IdxExpr->getSourceRange();
2445 return;
2446 }
2447 ArgIdx--;
2448 }
2449
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002450 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002451 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002452
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002453 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2454 if (not_nsstring_type &&
2455 !isCFStringType(Ty, S.Context) &&
2456 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002457 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002458 // FIXME: Should highlight the actual expression that has the wrong type.
2459 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002460 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002461 << IdxExpr->getSourceRange();
2462 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002463 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002464 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002465 if (!isNSStringType(Ty, S.Context) &&
2466 !isCFStringType(Ty, S.Context) &&
2467 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002468 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002469 // FIXME: Should highlight the actual expression that has the wrong type.
2470 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002471 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002472 << IdxExpr->getSourceRange();
2473 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002474 }
2475
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002476 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002477 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002478}
2479
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002480enum FormatAttrKind {
2481 CFStringFormat,
2482 NSStringFormat,
2483 StrftimeFormat,
2484 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002485 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002486 InvalidFormat
2487};
2488
2489/// getFormatAttrKind - Map from format attribute names to supported format
2490/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002491static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002492 // Check for formats that get handled specially.
2493 if (Format == "NSString")
2494 return NSStringFormat;
2495 if (Format == "CFString")
2496 return CFStringFormat;
2497 if (Format == "strftime")
2498 return StrftimeFormat;
2499
2500 // Otherwise, check for supported formats.
2501 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
Jean-Daniel Dupas69d53842012-01-27 09:14:17 +00002502 Format == "strfmon" || Format == "cmn_err" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002503 Format == "zcmn_err" ||
2504 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002505 return SupportedFormat;
2506
Duncan Sandsbc525952010-03-23 14:44:19 +00002507 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2508 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002509 return IgnoredFormat;
2510
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002511 return InvalidFormat;
2512}
2513
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002514/// Handle __attribute__((init_priority(priority))) attributes based on
2515/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002516static void handleInitPriorityAttr(Sema &S, Decl *D,
2517 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002518 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002519 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2520 return;
2521 }
2522
Chandler Carruth87c44602011-07-01 23:49:12 +00002523 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002524 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2525 Attr.setInvalid();
2526 return;
2527 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002528 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002529 if (S.Context.getAsArrayType(T))
2530 T = S.Context.getBaseElementType(T);
2531 if (!T->getAs<RecordType>()) {
2532 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2533 Attr.setInvalid();
2534 return;
2535 }
2536
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002537 if (Attr.getNumArgs() != 1) {
2538 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2539 Attr.setInvalid();
2540 return;
2541 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002542 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002543
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002544 llvm::APSInt priority(32);
2545 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2546 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2547 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2548 << "init_priority" << priorityExpr->getSourceRange();
2549 Attr.setInvalid();
2550 return;
2551 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002552 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002553 if (prioritynum < 101 || prioritynum > 65535) {
2554 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2555 << priorityExpr->getSourceRange();
2556 Attr.setInvalid();
2557 return;
2558 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002559 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002560 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002561}
2562
Rafael Espindola599f1b72012-05-13 03:25:18 +00002563FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
2564 int FormatIdx, int FirstArg) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002565 // Check whether we already have an equivalent format attribute.
2566 for (specific_attr_iterator<FormatAttr>
2567 i = D->specific_attr_begin<FormatAttr>(),
2568 e = D->specific_attr_end<FormatAttr>();
2569 i != e ; ++i) {
2570 FormatAttr *f = *i;
2571 if (f->getType() == Format &&
2572 f->getFormatIdx() == FormatIdx &&
2573 f->getFirstArg() == FirstArg) {
2574 // If we don't have a valid location for this attribute, adopt the
2575 // location.
2576 if (f->getLocation().isInvalid())
2577 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002578 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002579 }
2580 }
2581
Rafael Espindola599f1b72012-05-13 03:25:18 +00002582 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
2583 FirstArg);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002584}
2585
Mike Stumpbf916502009-07-24 19:02:52 +00002586/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2587/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002588static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002589
Chris Lattner545dd342008-06-28 23:36:30 +00002590 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002591 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002592 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002593 return;
2594 }
2595
Chris Lattner545dd342008-06-28 23:36:30 +00002596 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002597 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002598 return;
2599 }
2600
Chandler Carruth87c44602011-07-01 23:49:12 +00002601 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002602 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002603 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002604 return;
2605 }
2606
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002607 // In C++ the implicit 'this' function parameter also counts, and they are
2608 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002609 bool HasImplicitThisParam = isInstanceMethod(D);
2610 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002611 unsigned FirstIdx = 1;
2612
Chris Lattner5f9e2722011-07-23 10:55:15 +00002613 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002614
2615 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002616 if (Format.startswith("__") && Format.endswith("__"))
2617 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002618
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002619 // Check for supported formats.
2620 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002621
2622 if (Kind == IgnoredFormat)
2623 return;
2624
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002625 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002626 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002627 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002628 return;
2629 }
2630
2631 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002632 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002633 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002634 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2635 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002636 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002637 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002638 return;
2639 }
2640
2641 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002642 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002643 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002644 return;
2645 }
2646
2647 // FIXME: Do we need to bounds check?
2648 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002649
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002650 if (HasImplicitThisParam) {
2651 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002652 S.Diag(Attr.getLoc(),
2653 diag::err_format_attribute_implicit_this_format_string)
2654 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002655 return;
2656 }
2657 ArgIdx--;
2658 }
Mike Stump1eb44332009-09-09 15:08:12 +00002659
Chris Lattner6b6b5372008-06-26 18:38:35 +00002660 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002661 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002662
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002663 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002664 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002665 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2666 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002667 return;
2668 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002669 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002670 // FIXME: do we need to check if the type is NSString*? What are the
2671 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002672 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002673 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002674 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2675 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002676 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002677 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002678 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002679 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002680 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002681 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2682 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002683 return;
2684 }
2685
2686 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002687 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002688 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002689 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2690 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002691 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002692 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002693 return;
2694 }
2695
2696 // check if the function is variadic if the 3rd argument non-zero
2697 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002698 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002699 ++NumArgs; // +1 for ...
2700 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002701 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002702 return;
2703 }
2704 }
2705
Chris Lattner3c73c412008-11-19 08:23:25 +00002706 // strftime requires FirstArg to be 0 because it doesn't read from any
2707 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002708 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002709 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002710 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2711 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002712 return;
2713 }
2714 // if 0 it disables parameter checking (to use with e.g. va_list)
2715 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002716 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002717 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002718 return;
2719 }
2720
Rafael Espindola599f1b72012-05-13 03:25:18 +00002721 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
2722 Idx.getZExtValue(),
2723 FirstArg.getZExtValue());
2724 if (NewAttr)
2725 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002726}
2727
Chandler Carruth1b03c872011-07-02 00:01:44 +00002728static void handleTransparentUnionAttr(Sema &S, Decl *D,
2729 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002730 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002731 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002732 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002733
Chris Lattner6b6b5372008-06-26 18:38:35 +00002734
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002735 // Try to find the underlying union declaration.
2736 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002737 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002738 if (TD && TD->getUnderlyingType()->isUnionType())
2739 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2740 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002741 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002742
2743 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002744 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002745 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002746 return;
2747 }
2748
John McCall5e1cdac2011-10-07 06:10:15 +00002749 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002750 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002751 diag::warn_transparent_union_attribute_not_definition);
2752 return;
2753 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002754
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002755 RecordDecl::field_iterator Field = RD->field_begin(),
2756 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002757 if (Field == FieldEnd) {
2758 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2759 return;
2760 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002761
David Blaikie262bc182012-04-30 02:36:29 +00002762 FieldDecl *FirstField = &*Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002763 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002764 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002765 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002766 diag::warn_transparent_union_attribute_floating)
2767 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002768 return;
2769 }
2770
2771 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2772 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2773 for (; Field != FieldEnd; ++Field) {
2774 QualType FieldType = Field->getType();
2775 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2776 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2777 // Warn if we drop the attribute.
2778 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002779 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002780 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002781 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002782 diag::warn_transparent_union_attribute_field_size_align)
2783 << isSize << Field->getDeclName() << FieldBits;
2784 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002785 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002786 diag::note_transparent_union_first_field_size_align)
2787 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002788 return;
2789 }
2790 }
2791
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002792 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002793}
2794
Chandler Carruth1b03c872011-07-02 00:01:44 +00002795static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002796 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002797 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002798 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002799
Peter Collingbourne7a730022010-11-23 20:45:58 +00002800 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002801 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002802
Chris Lattner6b6b5372008-06-26 18:38:35 +00002803 // Make sure that there is a string literal as the annotation's single
2804 // argument.
2805 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002806 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002807 return;
2808 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002809
2810 // Don't duplicate annotations that are already set.
2811 for (specific_attr_iterator<AnnotateAttr>
2812 i = D->specific_attr_begin<AnnotateAttr>(),
2813 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2814 if ((*i)->getAnnotation() == SE->getString())
2815 return;
2816 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002817 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002818 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002819}
2820
Chandler Carruth1b03c872011-07-02 00:01:44 +00002821static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002822 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002823 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002824 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002825 return;
2826 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002827
2828 //FIXME: The C++0x version of this attribute has more limited applicabilty
2829 // than GNU's, and should error out when it is used to specify a
2830 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002831
Chris Lattner545dd342008-06-28 23:36:30 +00002832 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002833 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002834 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002835 }
Mike Stumpbf916502009-07-24 19:02:52 +00002836
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002837 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002838}
2839
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002840void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002841 // FIXME: Handle pack-expansions here.
2842 if (DiagnoseUnexpandedParameterPack(E))
2843 return;
2844
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002845 if (E->isTypeDependent() || E->isValueDependent()) {
2846 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002847 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002848 return;
2849 }
2850
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002851 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002852 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002853 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00002854 ExprResult ICE
2855 = VerifyIntegerConstantExpression(E, &Alignment,
2856 diag::err_aligned_attribute_argument_not_int,
2857 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00002858 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00002859 return;
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002860 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002861 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2862 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002863 return;
2864 }
2865
Richard Smith282e7e62012-02-04 09:53:13 +00002866 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take()));
Sean Huntcf807c42010-08-18 23:23:40 +00002867}
2868
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002869void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002870 // FIXME: Cache the number on the Attr object if non-dependent?
2871 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002872 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002873 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002874}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002875
Chandler Carruthd309c812011-07-01 23:49:16 +00002876/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002877/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002878///
Mike Stumpbf916502009-07-24 19:02:52 +00002879/// Despite what would be logical, the mode attribute is a decl attribute, not a
2880/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2881/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002882static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002883 // This attribute isn't documented, but glibc uses it. It changes
2884 // the width of an int or unsigned int to the specified size.
2885
2886 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002887 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002888 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002889
Chris Lattnerfbf13472008-06-27 22:18:37 +00002890
2891 IdentifierInfo *Name = Attr.getParameterName();
2892 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002893 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002894 return;
2895 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002896
Chris Lattner5f9e2722011-07-23 10:55:15 +00002897 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002898
2899 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002900 if (Str.startswith("__") && Str.endswith("__"))
2901 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002902
2903 unsigned DestWidth = 0;
2904 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002905 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002906 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002907 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002908 switch (Str[0]) {
2909 case 'Q': DestWidth = 8; break;
2910 case 'H': DestWidth = 16; break;
2911 case 'S': DestWidth = 32; break;
2912 case 'D': DestWidth = 64; break;
2913 case 'X': DestWidth = 96; break;
2914 case 'T': DestWidth = 128; break;
2915 }
2916 if (Str[1] == 'F') {
2917 IntegerMode = false;
2918 } else if (Str[1] == 'C') {
2919 IntegerMode = false;
2920 ComplexMode = true;
2921 } else if (Str[1] != 'I') {
2922 DestWidth = 0;
2923 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002924 break;
2925 case 4:
2926 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2927 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002928 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002929 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002930 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002931 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002932 break;
2933 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002934 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002935 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002936 break;
2937 }
2938
2939 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002940 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002941 OldTy = TD->getUnderlyingType();
2942 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2943 OldTy = VD->getType();
2944 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002945 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002946 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002947 return;
2948 }
Eli Friedman73397492009-03-03 06:41:03 +00002949
John McCall183700f2009-09-21 23:43:11 +00002950 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002951 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2952 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002953 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002954 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2955 } else if (ComplexMode) {
2956 if (!OldTy->isComplexType())
2957 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2958 } else {
2959 if (!OldTy->isFloatingType())
2960 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2961 }
2962
Mike Stump390b4cc2009-05-16 07:39:55 +00002963 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2964 // and friends, at least with glibc.
2965 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2966 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002967 // FIXME: Make sure floating-point mappings are accurate
2968 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002969 QualType NewTy;
2970 switch (DestWidth) {
2971 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002972 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002973 return;
2974 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002975 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002976 return;
2977 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002978 if (!IntegerMode) {
2979 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2980 return;
2981 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002982 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002983 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002984 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002985 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002986 break;
2987 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002988 if (!IntegerMode) {
2989 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2990 return;
2991 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002992 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002993 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002994 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002995 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002996 break;
2997 case 32:
2998 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002999 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003000 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003001 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003002 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003003 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003004 break;
3005 case 64:
3006 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003007 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003008 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003009 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003010 NewTy = S.Context.LongTy;
3011 else
3012 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003013 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003014 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003015 NewTy = S.Context.UnsignedLongTy;
3016 else
3017 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003018 break;
Eli Friedman73397492009-03-03 06:41:03 +00003019 case 96:
3020 NewTy = S.Context.LongDoubleTy;
3021 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003022 case 128:
3023 if (!IntegerMode) {
3024 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3025 return;
3026 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003027 if (OldTy->isSignedIntegerType())
3028 NewTy = S.Context.Int128Ty;
3029 else
3030 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003031 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003032 }
3033
Eli Friedman73397492009-03-03 06:41:03 +00003034 if (ComplexMode) {
3035 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003036 }
3037
3038 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003039 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003040 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003041 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003042 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003043 cast<ValueDecl>(D)->setType(NewTy);
3044}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003045
Chandler Carruth1b03c872011-07-02 00:01:44 +00003046static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003047 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003048 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003049 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003050
Chandler Carruth87c44602011-07-01 23:49:12 +00003051 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00003052 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003053 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00003054 return;
3055 }
Mike Stumpbf916502009-07-24 19:02:52 +00003056
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003057 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00003058}
3059
Chandler Carruth1b03c872011-07-02 00:01:44 +00003060static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003061 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003062 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003063 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003064
Mike Stumpbf916502009-07-24 19:02:52 +00003065
Chandler Carruth87c44602011-07-01 23:49:12 +00003066 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003067 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003068 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003069 return;
3070 }
Mike Stumpbf916502009-07-24 19:02:52 +00003071
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003072 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003073}
3074
Chandler Carruth1b03c872011-07-02 00:01:44 +00003075static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3076 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003077 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003078 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003079 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003080
Chris Lattner7255a2d2010-06-22 00:03:40 +00003081
Chandler Carruth87c44602011-07-01 23:49:12 +00003082 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003083 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003084 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003085 return;
3086 }
3087
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003088 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003089 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003090}
3091
Chandler Carruth1b03c872011-07-02 00:01:44 +00003092static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003093 if (S.LangOpts.CUDA) {
3094 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003095 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003096 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3097 return;
3098 }
3099
Chandler Carruth87c44602011-07-01 23:49:12 +00003100 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003101 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003102 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003103 return;
3104 }
3105
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003106 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003107 } else {
3108 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3109 }
3110}
3111
Chandler Carruth1b03c872011-07-02 00:01:44 +00003112static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003113 if (S.LangOpts.CUDA) {
3114 // check the attribute arguments.
3115 if (Attr.getNumArgs() != 0) {
3116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3117 return;
3118 }
3119
Chandler Carruth87c44602011-07-01 23:49:12 +00003120 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003121 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003122 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003123 return;
3124 }
3125
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003126 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003127 } else {
3128 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3129 }
3130}
3131
Chandler Carruth1b03c872011-07-02 00:01:44 +00003132static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003133 if (S.LangOpts.CUDA) {
3134 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003135 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003136 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003137
Chandler Carruth87c44602011-07-01 23:49:12 +00003138 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003139 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003140 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003141 return;
3142 }
3143
Chandler Carruth87c44602011-07-01 23:49:12 +00003144 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003145 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003146 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003147 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
3148 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3149 << FD->getType()
3150 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
3151 "void");
3152 } else {
3153 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3154 << FD->getType();
3155 }
3156 return;
3157 }
3158
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003159 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003160 } else {
3161 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3162 }
3163}
3164
Chandler Carruth1b03c872011-07-02 00:01:44 +00003165static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003166 if (S.LangOpts.CUDA) {
3167 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003168 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003169 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003170
Peter Collingbourneced76712010-12-01 03:15:31 +00003171
Chandler Carruth87c44602011-07-01 23:49:12 +00003172 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003173 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003174 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003175 return;
3176 }
3177
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003178 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003179 } else {
3180 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3181 }
3182}
3183
Chandler Carruth1b03c872011-07-02 00:01:44 +00003184static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003185 if (S.LangOpts.CUDA) {
3186 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003187 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003188 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003189
Peter Collingbourneced76712010-12-01 03:15:31 +00003190
Chandler Carruth87c44602011-07-01 23:49:12 +00003191 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003192 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003193 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003194 return;
3195 }
3196
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003197 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003198 } else {
3199 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3200 }
3201}
3202
Chandler Carruth1b03c872011-07-02 00:01:44 +00003203static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003204 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003205 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003206 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003207
Chandler Carruth87c44602011-07-01 23:49:12 +00003208 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003209 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003210 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003211 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003212 return;
3213 }
Mike Stumpbf916502009-07-24 19:02:52 +00003214
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003215 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003216 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003217 return;
3218 }
Mike Stumpbf916502009-07-24 19:02:52 +00003219
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003220 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00003221}
3222
Chandler Carruth1b03c872011-07-02 00:01:44 +00003223static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003224 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003225
Chandler Carruth87c44602011-07-01 23:49:12 +00003226 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003227 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3228 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00003229 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00003230 return;
3231
Chandler Carruth87c44602011-07-01 23:49:12 +00003232 if (!isa<ObjCMethodDecl>(D)) {
3233 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3234 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003235 return;
3236 }
3237
Chandler Carruth87c44602011-07-01 23:49:12 +00003238 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00003239 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003240 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003241 return;
3242 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003243 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003244 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003245 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003246 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003247 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003248 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003249 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003250 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003251 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003252 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003253 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003254 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00003255 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003256 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003257 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003258 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003259 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003260 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003261 return;
3262 }
3263
Chris Lattner5f9e2722011-07-23 10:55:15 +00003264 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003265 PcsAttr::PCSType PCS;
3266 if (StrRef == "aapcs")
3267 PCS = PcsAttr::AAPCS;
3268 else if (StrRef == "aapcs-vfp")
3269 PCS = PcsAttr::AAPCS_VFP;
3270 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003271 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3272 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003273 return;
3274 }
3275
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003276 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003277 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003278 default:
3279 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003280 }
3281}
3282
Chandler Carruth1b03c872011-07-02 00:01:44 +00003283static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003284 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003285 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003286}
3287
John McCall711c52b2011-01-05 12:14:39 +00003288bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3289 if (attr.isInvalid())
3290 return true;
3291
Ted Kremenek831efae2011-04-15 05:49:29 +00003292 if ((attr.getNumArgs() != 0 &&
3293 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3294 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003295 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3296 attr.setInvalid();
3297 return true;
3298 }
3299
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003300 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3301 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003302 switch (attr.getKind()) {
3303 case AttributeList::AT_cdecl: CC = CC_C; break;
3304 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3305 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3306 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3307 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003308 case AttributeList::AT_pcs: {
3309 Expr *Arg = attr.getArg(0);
3310 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003311 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003312 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3313 << "pcs" << 1;
3314 attr.setInvalid();
3315 return true;
3316 }
3317
Chris Lattner5f9e2722011-07-23 10:55:15 +00003318 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003319 if (StrRef == "aapcs") {
3320 CC = CC_AAPCS;
3321 break;
3322 } else if (StrRef == "aapcs-vfp") {
3323 CC = CC_AAPCS_VFP;
3324 break;
3325 }
3326 // FALLS THROUGH
3327 }
David Blaikie7530c032012-01-17 06:56:22 +00003328 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003329 }
3330
3331 return false;
3332}
3333
Chandler Carruth1b03c872011-07-02 00:01:44 +00003334static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003335 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003336
3337 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003338 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003339 return;
3340
Chandler Carruth87c44602011-07-01 23:49:12 +00003341 if (!isa<ObjCMethodDecl>(D)) {
3342 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3343 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003344 return;
3345 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003346
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003347 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003348}
3349
3350/// Checks a regparm attribute, returning true if it is ill-formed and
3351/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003352bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3353 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003354 return true;
3355
Chandler Carruth87c44602011-07-01 23:49:12 +00003356 if (Attr.getNumArgs() != 1) {
3357 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3358 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003359 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003360 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003361
Chandler Carruth87c44602011-07-01 23:49:12 +00003362 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003363 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003364 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003365 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003366 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003367 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003368 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003369 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003370 }
3371
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003372 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003373 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003374 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003375 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003376 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003377 }
3378
John McCall711c52b2011-01-05 12:14:39 +00003379 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003380 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003381 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003382 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003383 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003384 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003385 }
3386
John McCall711c52b2011-01-05 12:14:39 +00003387 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003388}
3389
Chandler Carruth1b03c872011-07-02 00:01:44 +00003390static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003391 if (S.LangOpts.CUDA) {
3392 // check the attribute arguments.
3393 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003394 // FIXME: 0 is not okay.
3395 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003396 return;
3397 }
3398
Chandler Carruth87c44602011-07-01 23:49:12 +00003399 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003400 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003401 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003402 return;
3403 }
3404
3405 Expr *MaxThreadsExpr = Attr.getArg(0);
3406 llvm::APSInt MaxThreads(32);
3407 if (MaxThreadsExpr->isTypeDependent() ||
3408 MaxThreadsExpr->isValueDependent() ||
3409 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3410 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3411 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3412 return;
3413 }
3414
3415 llvm::APSInt MinBlocks(32);
3416 if (Attr.getNumArgs() > 1) {
3417 Expr *MinBlocksExpr = Attr.getArg(1);
3418 if (MinBlocksExpr->isTypeDependent() ||
3419 MinBlocksExpr->isValueDependent() ||
3420 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3421 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3422 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3423 return;
3424 }
3425 }
3426
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003427 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003428 MaxThreads.getZExtValue(),
3429 MinBlocks.getZExtValue()));
3430 } else {
3431 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3432 }
3433}
3434
Chris Lattner0744e5f2008-06-29 00:23:49 +00003435//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003436// Checker-specific attribute handlers.
3437//===----------------------------------------------------------------------===//
3438
John McCallc7ad3812011-01-25 03:31:58 +00003439static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003440 return type->isDependentType() ||
3441 type->isObjCObjectPointerType() ||
3442 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003443}
3444static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003445 return type->isDependentType() ||
3446 type->isPointerType() ||
3447 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003448}
3449
Chandler Carruth1b03c872011-07-02 00:01:44 +00003450static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003451 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003452 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003453 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003454 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003455 return;
3456 }
3457
3458 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003459 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003460 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3461 cf = false;
3462 } else {
3463 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3464 cf = true;
3465 }
3466
3467 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003468 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003469 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003470 return;
3471 }
3472
3473 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003474 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003475 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003476 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003477}
3478
Chandler Carruth1b03c872011-07-02 00:01:44 +00003479static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3480 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003481 if (!isa<ObjCMethodDecl>(D)) {
3482 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003483 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003484 return;
3485 }
3486
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003487 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003488}
3489
Chandler Carruth1b03c872011-07-02 00:01:44 +00003490static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3491 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003492
John McCallc7ad3812011-01-25 03:31:58 +00003493 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003494
Chandler Carruth87c44602011-07-01 23:49:12 +00003495 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003496 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003497 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003498 returnType = PD->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +00003499 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Chandler Carruth87c44602011-07-01 23:49:12 +00003500 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003501 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003502 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003503 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003504 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003505 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003506 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003507 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003508 return;
3509 }
Mike Stumpbf916502009-07-24 19:02:52 +00003510
John McCallc7ad3812011-01-25 03:31:58 +00003511 bool typeOK;
3512 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003513 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003514 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003515 case AttributeList::AT_ns_returns_autoreleased:
3516 case AttributeList::AT_ns_returns_retained:
3517 case AttributeList::AT_ns_returns_not_retained:
3518 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3519 cf = false;
3520 break;
3521
3522 case AttributeList::AT_cf_returns_retained:
3523 case AttributeList::AT_cf_returns_not_retained:
3524 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3525 cf = true;
3526 break;
3527 }
3528
3529 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003530 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003531 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003532 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003533 }
Mike Stumpbf916502009-07-24 19:02:52 +00003534
Chandler Carruth87c44602011-07-01 23:49:12 +00003535 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003536 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003537 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003538 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003539 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003540 S.Context));
3541 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003542 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003543 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003544 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003545 return;
3546 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003547 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003548 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003549 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003550 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003551 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003552 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003553 return;
3554 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003555 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003556 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003557 return;
3558 };
3559}
3560
John McCalldc7c5ad2011-07-22 08:53:00 +00003561static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3562 const AttributeList &attr) {
3563 SourceLocation loc = attr.getLoc();
3564
3565 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3566
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00003567 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00003568 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003569 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00003570 return;
3571 }
3572
3573 // Check that the method returns a normal pointer.
3574 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003575
3576 if (!resultType->isReferenceType() &&
3577 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003578 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3579 << SourceRange(loc)
3580 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3581
3582 // Drop the attribute.
3583 return;
3584 }
3585
3586 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003587 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003588}
3589
John McCall8dfac0b2011-09-30 05:12:12 +00003590/// Handle cf_audited_transfer and cf_unknown_transfer.
3591static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3592 if (!isa<FunctionDecl>(D)) {
3593 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003594 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00003595 return;
3596 }
3597
3598 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3599
3600 // Check whether there's a conflicting attribute already present.
3601 Attr *Existing;
3602 if (IsAudited) {
3603 Existing = D->getAttr<CFUnknownTransferAttr>();
3604 } else {
3605 Existing = D->getAttr<CFAuditedTransferAttr>();
3606 }
3607 if (Existing) {
3608 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3609 << A.getName()
3610 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3611 << A.getRange() << Existing->getRange();
3612 return;
3613 }
3614
3615 // All clear; add the attribute.
3616 if (IsAudited) {
3617 D->addAttr(
3618 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3619 } else {
3620 D->addAttr(
3621 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3622 }
3623}
3624
John McCallfe98da02011-09-29 07:17:38 +00003625static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3626 const AttributeList &Attr) {
3627 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3628 if (!RD || RD->isUnion()) {
3629 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003630 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00003631 }
3632
3633 IdentifierInfo *ParmName = Attr.getParameterName();
3634
3635 // In Objective-C, verify that the type names an Objective-C type.
3636 // We don't want to check this outside of ObjC because people sometimes
3637 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00003638 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00003639 // Check for an existing type with this name.
3640 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3641 Sema::LookupOrdinaryName);
3642 if (S.LookupName(R, Sc)) {
3643 NamedDecl *Target = R.getFoundDecl();
3644 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3645 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3646 S.Diag(Target->getLocStart(), diag::note_declared_at);
3647 }
3648 }
3649 }
3650
3651 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3652 ParmName));
3653}
3654
Chandler Carruth1b03c872011-07-02 00:01:44 +00003655static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3656 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003657 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003658
Chandler Carruth87c44602011-07-01 23:49:12 +00003659 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003660 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003661}
3662
Chandler Carruth1b03c872011-07-02 00:01:44 +00003663static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3664 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003665 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003666 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003667 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003668 return;
3669 }
3670
Chandler Carruth87c44602011-07-01 23:49:12 +00003671 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003672 QualType type = vd->getType();
3673
3674 if (!type->isDependentType() &&
3675 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003676 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003677 << type;
3678 return;
3679 }
3680
3681 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3682
3683 // If we have no lifetime yet, check the lifetime we're presumably
3684 // going to infer.
3685 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3686 lifetime = type->getObjCARCImplicitLifetime();
3687
3688 switch (lifetime) {
3689 case Qualifiers::OCL_None:
3690 assert(type->isDependentType() &&
3691 "didn't infer lifetime for non-dependent type?");
3692 break;
3693
3694 case Qualifiers::OCL_Weak: // meaningful
3695 case Qualifiers::OCL_Strong: // meaningful
3696 break;
3697
3698 case Qualifiers::OCL_ExplicitNone:
3699 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003700 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003701 << (lifetime == Qualifiers::OCL_Autoreleasing);
3702 break;
3703 }
3704
Chandler Carruth87c44602011-07-01 23:49:12 +00003705 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003706 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003707}
3708
Charles Davisf0122fe2010-02-16 18:27:26 +00003709static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
Aaron Ballman94287722012-02-23 22:46:33 +00003710 switch (Attr.getKind()) {
3711 default:
3712 return false;
3713 case AttributeList::AT_dllimport:
3714 case AttributeList::AT_dllexport:
3715 case AttributeList::AT_uuid:
3716 case AttributeList::AT_deprecated:
3717 case AttributeList::AT_noreturn:
3718 case AttributeList::AT_nothrow:
3719 case AttributeList::AT_naked:
3720 case AttributeList::AT_noinline:
3721 return true;
3722 }
Francois Pichet11542142010-12-19 06:50:37 +00003723}
3724
3725//===----------------------------------------------------------------------===//
3726// Microsoft specific attribute handlers.
3727//===----------------------------------------------------------------------===//
3728
Chandler Carruth1b03c872011-07-02 00:01:44 +00003729static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003730 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003731 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003732 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003733 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003734
Francois Pichet11542142010-12-19 06:50:37 +00003735 Expr *Arg = Attr.getArg(0);
3736 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003737 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003738 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3739 << "uuid" << 1;
3740 return;
3741 }
3742
Chris Lattner5f9e2722011-07-23 10:55:15 +00003743 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003744
3745 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3746 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003747
Francois Pichetd3d3be92010-12-20 01:41:49 +00003748 // Validate GUID length.
3749 if (IsCurly && StrRef.size() != 38) {
3750 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3751 return;
3752 }
3753 if (!IsCurly && StrRef.size() != 36) {
3754 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3755 return;
3756 }
3757
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003758 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00003759 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003760 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003761 if (IsCurly) // Skip the optional '{'
3762 ++I;
3763
3764 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003765 if (i == 8 || i == 13 || i == 18 || i == 23) {
3766 if (*I != '-') {
3767 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3768 return;
3769 }
3770 } else if (!isxdigit(*I)) {
3771 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3772 return;
3773 }
3774 I++;
3775 }
Francois Pichet11542142010-12-19 06:50:37 +00003776
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003777 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003778 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003779 } else
Francois Pichet11542142010-12-19 06:50:37 +00003780 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003781}
3782
Ted Kremenekb71368d2009-05-09 02:44:38 +00003783//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003784// Top Level Sema Entry Points
3785//===----------------------------------------------------------------------===//
3786
Chandler Carruth1b03c872011-07-02 00:01:44 +00003787static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3788 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003789 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003790 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3791 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3792 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003793 default:
3794 break;
3795 }
3796}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003797
Chandler Carruth1b03c872011-07-02 00:01:44 +00003798static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3799 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003800 switch (Attr.getKind()) {
Michael Hane53ac8a2012-03-07 00:12:16 +00003801 case AttributeList::AT_ibaction: handleIBAction(S, D, Attr); break;
3802 case AttributeList::AT_iboutlet: handleIBOutlet(S, D, Attr); break;
3803 case AttributeList::AT_iboutletcollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003804 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003805 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003806 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003807 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003808 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003809 case AttributeList::AT_neon_vector_type:
3810 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003811 // Ignore these, these are type attributes, handled by
3812 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003813 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003814 case AttributeList::AT_device:
3815 case AttributeList::AT_host:
3816 case AttributeList::AT_overloadable:
3817 // Ignore, this is a non-inheritable attribute, handled
3818 // by ProcessNonInheritableDeclAttr.
3819 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003820 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3821 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003822 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003823 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003824 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003825 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3826 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3827 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003828 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003829 handleDependencyAttr (S, D, Attr); break;
3830 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3831 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3832 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00003833 case AttributeList::AT_deprecated:
3834 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
3835 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003836 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003837 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003838 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003839 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003840 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3841 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3842 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3843 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003844 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003845 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003846 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003847 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3848 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3849 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3850 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3851 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003852 case AttributeList::AT_ownership_returns:
3853 case AttributeList::AT_ownership_takes:
3854 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003855 handleOwnershipAttr (S, D, Attr); break;
Benjamin Krameree409a92012-05-12 21:10:52 +00003856 case AttributeList::AT_cold: handleColdAttr (S, D, Attr); break;
3857 case AttributeList::AT_hot: handleHotAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003858 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3859 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3860 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3861 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3862 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003863
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003864 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003865 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003866 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003867 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003868
John McCalldc7c5ad2011-07-22 08:53:00 +00003869 case AttributeList::AT_objc_returns_inner_pointer:
3870 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3871
John McCallfe98da02011-09-29 07:17:38 +00003872 case AttributeList::AT_ns_bridged:
3873 handleNSBridgedAttr(S, scope, D, Attr); break;
3874
John McCall8dfac0b2011-09-30 05:12:12 +00003875 case AttributeList::AT_cf_audited_transfer:
3876 case AttributeList::AT_cf_unknown_transfer:
3877 handleCFTransferAttr(S, D, Attr); break;
3878
Ted Kremenekb71368d2009-05-09 02:44:38 +00003879 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003880 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003881 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003882 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003883 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003884
3885 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003886 case AttributeList::AT_ns_returns_not_retained:
3887 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003888 case AttributeList::AT_ns_returns_retained:
3889 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003890 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003891
Michael Hane53ac8a2012-03-07 00:12:16 +00003892 case AttributeList::AT_reqd_work_group_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003893 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003894
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003895 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003896 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003897
Chandler Carruth1b03c872011-07-02 00:01:44 +00003898 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003899 case AttributeList::AT_ms_struct: handleMsStructAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003900 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00003901 case AttributeList::AT_unavailable:
3902 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
3903 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003904 case AttributeList::AT_objc_arc_weak_reference_unavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003905 handleArcWeakrefUnavailableAttr (S, D, Attr);
3906 break;
Patrick Beardb2f68202012-04-06 18:12:22 +00003907 case AttributeList::AT_objc_root_class:
3908 handleObjCRootClassAttr(S, D, Attr);
3909 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00003910 case AttributeList::AT_objc_requires_property_definitions:
3911 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00003912 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003913 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003914 case AttributeList::AT_returns_twice:
3915 handleReturnsTwiceAttr(S, D, Attr);
3916 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003917 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3918 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3919 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003920 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003921 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3922 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3923 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003924 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003925 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003926 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003927 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003928 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003929 break;
John McCalld5313b02011-03-02 11:33:24 +00003930 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003931 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003932 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003933 case AttributeList::AT_NSObject: handleObjCNSObject (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003934 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3935 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3936 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3937 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3938 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3939 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3940 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3941 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003942 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003943 // Just ignore
3944 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003945 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003946 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003947 break;
John McCall04a67a62010-02-05 21:31:56 +00003948 case AttributeList::AT_stdcall:
3949 case AttributeList::AT_cdecl:
3950 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003951 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003952 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003953 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003954 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003955 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003956 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003957 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003958 break;
Francois Pichet11542142010-12-19 06:50:37 +00003959 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003960 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003961 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003962
3963 // Thread safety attributes:
3964 case AttributeList::AT_guarded_var:
3965 handleGuardedVarAttr(S, D, Attr);
3966 break;
3967 case AttributeList::AT_pt_guarded_var:
3968 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3969 break;
3970 case AttributeList::AT_scoped_lockable:
3971 handleLockableAttr(S, D, Attr, /*scoped = */true);
3972 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00003973 case AttributeList::AT_no_address_safety_analysis:
3974 handleNoAddressSafetyAttr(S, D, Attr);
3975 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003976 case AttributeList::AT_no_thread_safety_analysis:
3977 handleNoThreadSafetyAttr(S, D, Attr);
3978 break;
3979 case AttributeList::AT_lockable:
3980 handleLockableAttr(S, D, Attr);
3981 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003982 case AttributeList::AT_guarded_by:
3983 handleGuardedByAttr(S, D, Attr);
3984 break;
3985 case AttributeList::AT_pt_guarded_by:
3986 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3987 break;
3988 case AttributeList::AT_exclusive_lock_function:
3989 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3990 break;
3991 case AttributeList::AT_exclusive_locks_required:
3992 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3993 break;
3994 case AttributeList::AT_exclusive_trylock_function:
3995 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3996 break;
3997 case AttributeList::AT_lock_returned:
3998 handleLockReturnedAttr(S, D, Attr);
3999 break;
4000 case AttributeList::AT_locks_excluded:
4001 handleLocksExcludedAttr(S, D, Attr);
4002 break;
4003 case AttributeList::AT_shared_lock_function:
4004 handleLockFunAttr(S, D, Attr);
4005 break;
4006 case AttributeList::AT_shared_locks_required:
4007 handleLocksRequiredAttr(S, D, Attr);
4008 break;
4009 case AttributeList::AT_shared_trylock_function:
4010 handleTrylockFunAttr(S, D, Attr);
4011 break;
4012 case AttributeList::AT_unlock_function:
4013 handleUnlockFunAttr(S, D, Attr);
4014 break;
4015 case AttributeList::AT_acquired_before:
4016 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
4017 break;
4018 case AttributeList::AT_acquired_after:
4019 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
4020 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004021
Chris Lattner803d0802008-06-29 00:43:07 +00004022 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004023 // Ask target about the attribute.
4024 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4025 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00004026 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
4027 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004028 break;
4029 }
4030}
4031
Peter Collingbourne60700392011-01-21 02:08:45 +00004032/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4033/// the attribute applies to decls. If the attribute is a type attribute, just
4034/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
4035/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00004036static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4037 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00004038 bool NonInheritable, bool Inheritable) {
4039 if (Attr.isInvalid())
4040 return;
4041
4042 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
4043 // FIXME: Try to deal with other __declspec attributes!
4044 return;
4045
4046 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004047 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004048
4049 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004050 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004051}
4052
Chris Lattner803d0802008-06-29 00:43:07 +00004053/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4054/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004055void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004056 const AttributeList *AttrList,
4057 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004058 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00004059 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola9b79fc92012-05-07 23:58:18 +00004060 }
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004061
4062 // GCC accepts
4063 // static int a9 __attribute__((weakref));
4064 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004065 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004066 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004067 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004068 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004069 }
4070}
4071
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004072// Annotation attributes are the only attributes allowed after an access
4073// specifier.
4074bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4075 const AttributeList *AttrList) {
4076 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4077 if (l->getKind() == AttributeList::AT_annotate) {
4078 handleAnnotateAttr(*this, ASDecl, *l);
4079 } else {
4080 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4081 return true;
4082 }
4083 }
4084
4085 return false;
4086}
4087
John McCalle82247a2011-10-01 05:17:03 +00004088/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4089/// contains any decl attributes that we should warn about.
4090static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4091 for ( ; A; A = A->getNext()) {
4092 // Only warn if the attribute is an unignored, non-type attribute.
4093 if (A->isUsedAsTypeAttr()) continue;
4094 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4095
4096 if (A->getKind() == AttributeList::UnknownAttribute) {
4097 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4098 << A->getName() << A->getRange();
4099 } else {
4100 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4101 << A->getName() << A->getRange();
4102 }
4103 }
4104}
4105
4106/// checkUnusedDeclAttributes - Given a declarator which is not being
4107/// used to build a declaration, complain about any decl attributes
4108/// which might be lying around on it.
4109void Sema::checkUnusedDeclAttributes(Declarator &D) {
4110 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4111 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4112 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4113 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4114}
4115
Ryan Flynne25ff832009-07-30 03:15:39 +00004116/// DeclClonePragmaWeak - clone existing decl (maybe definition),
4117/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00004118NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4119 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004120 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004121 NamedDecl *NewD = 0;
4122 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004123 FunctionDecl *NewFD;
4124 // FIXME: Missing call to CheckFunctionDeclaration().
4125 // FIXME: Mangling?
4126 // FIXME: Is the qualifier info correct?
4127 // FIXME: Is the DeclContext correct?
4128 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4129 Loc, Loc, DeclarationName(II),
4130 FD->getType(), FD->getTypeSourceInfo(),
4131 SC_None, SC_None,
4132 false/*isInlineSpecified*/,
4133 FD->hasPrototype(),
4134 false/*isConstexprSpecified*/);
4135 NewD = NewFD;
4136
4137 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004138 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004139
4140 // Fake up parameter variables; they are declared as if this were
4141 // a typedef.
4142 QualType FDTy = FD->getType();
4143 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4144 SmallVector<ParmVarDecl*, 16> Params;
4145 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4146 AE = FT->arg_type_end(); AI != AE; ++AI) {
4147 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4148 Param->setScopeInfo(0, Params.size());
4149 Params.push_back(Param);
4150 }
David Blaikie4278c652011-09-21 18:16:56 +00004151 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004152 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004153 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4154 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004155 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004156 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00004157 VD->getStorageClass(),
4158 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00004159 if (VD->getQualifier()) {
4160 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004161 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004162 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004163 }
4164 return NewD;
4165}
4166
4167/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
4168/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004169void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004170 if (W.getUsed()) return; // only do this once
4171 W.setUsed(true);
4172 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4173 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004174 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004175 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4176 NDId->getName()));
4177 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004178 WeakTopLevelDecl.push_back(NewD);
4179 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4180 // to insert Decl at TU scope, sorry.
4181 DeclContext *SavedContext = CurContext;
4182 CurContext = Context.getTranslationUnitDecl();
4183 PushOnScopeChains(NewD, S);
4184 CurContext = SavedContext;
4185 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00004186 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00004187 }
4188}
4189
Chris Lattner0744e5f2008-06-29 00:23:49 +00004190/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
4191/// it, apply them to D. This is a bit tricky because PD can have attributes
4192/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00004193void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
4194 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00004195 // It's valid to "forward-declare" #pragma weak, in which case we
4196 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00004197 if (Inheritable) {
4198 LoadExternalWeakUndeclaredIdentifiers();
4199 if (!WeakUndeclaredIdentifiers.empty()) {
4200 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
4201 if (IdentifierInfo *Id = ND->getIdentifier()) {
4202 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
4203 = WeakUndeclaredIdentifiers.find(Id);
4204 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
4205 WeakInfo W = I->second;
4206 DeclApplyPragmaWeak(S, ND, W);
4207 WeakUndeclaredIdentifiers[Id] = W;
4208 }
John McCalld4aff0e2010-10-27 00:59:00 +00004209 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004210 }
4211 }
4212 }
4213
Chris Lattner0744e5f2008-06-29 00:23:49 +00004214 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00004215 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00004216 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004217
Chris Lattner0744e5f2008-06-29 00:23:49 +00004218 // Walk the declarator structure, applying decl attributes that were in a type
4219 // position to the decl itself. This handles cases like:
4220 // int *__attr__(x)** D;
4221 // when X is a decl attribute.
4222 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
4223 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00004224 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004225
Chris Lattner0744e5f2008-06-29 00:23:49 +00004226 // Finally, apply any attributes on the decl itself.
4227 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00004228 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00004229}
John McCall54abf7d2009-11-04 02:18:39 +00004230
John McCallf85e1932011-06-15 23:02:42 +00004231/// Is the given declaration allowed to use a forbidden type?
4232static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4233 // Private ivars are always okay. Unfortunately, people don't
4234 // always properly make their ivars private, even in system headers.
4235 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00004236 // Function declarations in sys headers will be marked unavailable.
4237 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4238 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00004239 return false;
4240
4241 // Require it to be declared in a system header.
4242 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4243}
4244
4245/// Handle a delayed forbidden-type diagnostic.
4246static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4247 Decl *decl) {
4248 if (decl && isForbiddenTypeAllowed(S, decl)) {
4249 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4250 "this system declaration uses an unsupported type"));
4251 return;
4252 }
David Blaikie4e4d0842012-03-11 07:00:24 +00004253 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00004254 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4255 // FIXME. we may want to supress diagnostics for all
4256 // kind of forbidden type messages on unavailable functions.
4257 if (FD->hasAttr<UnavailableAttr>() &&
4258 diag.getForbiddenTypeDiagnostic() ==
4259 diag::err_arc_array_param_no_ownership) {
4260 diag.Triggered = true;
4261 return;
4262 }
4263 }
John McCallf85e1932011-06-15 23:02:42 +00004264
4265 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4266 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4267 diag.Triggered = true;
4268}
4269
John McCall92576642012-05-07 06:16:41 +00004270void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
4271 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00004272 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00004273 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00004274
John McCall92576642012-05-07 06:16:41 +00004275 // When delaying diagnostics to run in the context of a parsed
4276 // declaration, we only want to actually emit anything if parsing
4277 // succeeds.
4278 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00004279
John McCall92576642012-05-07 06:16:41 +00004280 // We emit all the active diagnostics in this pool or any of its
4281 // parents. In general, we'll get one pool for the decl spec
4282 // and a child pool for each declarator; in a decl group like:
4283 // deprecated_typedef foo, *bar, baz();
4284 // only the declarator pops will be passed decls. This is correct;
4285 // we really do need to consider delayed diagnostics from the decl spec
4286 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00004287 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00004288 do {
John McCall13489672012-05-07 06:16:58 +00004289 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00004290 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
4291 // This const_cast is a bit lame. Really, Triggered should be mutable.
4292 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00004293 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004294 continue;
4295
John McCalleee1d542011-02-14 07:13:47 +00004296 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004297 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00004298 // Don't bother giving deprecation diagnostics if the decl is invalid.
4299 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00004300 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004301 break;
4302
4303 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00004304 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004305 break;
John McCallf85e1932011-06-15 23:02:42 +00004306
4307 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00004308 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00004309 break;
John McCall2f514482010-01-27 03:50:35 +00004310 }
4311 }
John McCall92576642012-05-07 06:16:41 +00004312 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00004313}
4314
John McCall13489672012-05-07 06:16:58 +00004315/// Given a set of delayed diagnostics, re-emit them as if they had
4316/// been delayed in the current context instead of in the given pool.
4317/// Essentially, this just moves them to the current pool.
4318void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
4319 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
4320 assert(curPool && "re-emitting in undelayed context not supported");
4321 curPool->steal(pool);
4322}
4323
John McCall54abf7d2009-11-04 02:18:39 +00004324static bool isDeclDeprecated(Decl *D) {
4325 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004326 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004327 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004328 // A category implicitly has the availability of the interface.
4329 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4330 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004331 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4332 return false;
4333}
4334
John McCall9c3087b2010-08-26 02:13:20 +00004335void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004336 Decl *Ctx) {
4337 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004338 return;
4339
John McCall2f514482010-01-27 03:50:35 +00004340 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004341 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004342 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004343 << DD.getDeprecationDecl()->getDeclName()
4344 << DD.getDeprecationMessage();
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004345 else if (DD.getUnknownObjCClass()) {
4346 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4347 << DD.getDeprecationDecl()->getDeclName();
4348 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4349 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004350 else
4351 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004352 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004353}
4354
Chris Lattner5f9e2722011-07-23 10:55:15 +00004355void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004356 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004357 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004358 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004359 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004360 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4361 UnknownObjCClass,
4362 Message));
John McCall54abf7d2009-11-04 02:18:39 +00004363 return;
4364 }
4365
4366 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004367 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004368 return;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004369 if (!Message.empty()) {
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004370 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4371 << Message;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004372 Diag(D->getLocation(),
4373 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
4374 : diag::note_previous_decl) << D->getDeclName();
4375 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004376 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004377 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004378 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004379 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004380 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004381 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4382 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004383 }
John McCall54abf7d2009-11-04 02:18:39 +00004384}