blob: bc1c3afbe21c573383d3e39c4371d36b154cdee9 [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
Nuno Lopes587de5b2012-05-24 00:22:00 +0000925static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
926 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
927 return;
928
929 // In C++ the implicit 'this' function parameter also counts, and they are
930 // counted from one.
931 bool HasImplicitThisParam = isInstanceMethod(D);
932 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
933
934 SmallVector<unsigned, 8> SizeArgs;
935
936 for (AttributeList::arg_iterator I = Attr.arg_begin(),
937 E = Attr.arg_end(); I!=E; ++I) {
938 // The argument must be an integer constant expression.
939 Expr *Ex = *I;
940 llvm::APSInt ArgNum;
941 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
942 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
943 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
944 << "alloc_size" << Ex->getSourceRange();
945 return;
946 }
947
948 uint64_t x = ArgNum.getZExtValue();
949
950 if (x < 1 || x > NumArgs) {
951 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
952 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
953 return;
954 }
955
956 --x;
957 if (HasImplicitThisParam) {
958 if (x == 0) {
959 S.Diag(Attr.getLoc(),
960 diag::err_attribute_invalid_implicit_this_argument)
961 << "alloc_size" << Ex->getSourceRange();
962 return;
963 }
964 --x;
965 }
966
967 // check if the function argument is of an integer type
968 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
969 if (!T->isIntegerType()) {
970 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
971 << "alloc_size" << Ex->getSourceRange();
972 return;
973 }
974
975 // check if the argument is a duplicate
976 SmallVectorImpl<unsigned>::iterator Pos;
977 Pos = std::find(SizeArgs.begin(), SizeArgs.end(), x);
978 if (Pos != SizeArgs.end()) {
979 S.Diag(Attr.getLoc(), diag::err_attribute_argument_duplicate)
980 << "alloc_size" << I.getArgNum() << Ex->getSourceRange();
981 return;
982 }
983
984 SizeArgs.push_back(x);
985 }
986
987 // check if the function returns a pointer
988 if (!getFunctionType(D)->getResultType()->isAnyPointerType()) {
989 S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type)
990 << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange();
991 }
992
993 unsigned size = SizeArgs.size();
994 unsigned* start = &SizeArgs[0];
995 llvm::array_pod_sort(start, start + size);
996 D->addAttr(::new (S.Context) AllocSizeAttr(Attr.getRange(), S.Context, start,
997 size));
998}
999
Chandler Carruth1b03c872011-07-02 00:01:44 +00001000static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001001 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
1002 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +00001003 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001004 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001005 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001006 return;
1007 }
Mike Stumpbf916502009-07-24 19:02:52 +00001008
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001009 // In C++ the implicit 'this' function parameter also counts, and they are
1010 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001011 bool HasImplicitThisParam = isInstanceMethod(D);
1012 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001013
1014 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001015 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +00001016
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001017 for (AttributeList::arg_iterator I=Attr.arg_begin(),
1018 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +00001019
1020
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001021 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001022 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001023 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001024 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
1025 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001026 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1027 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001028 return;
1029 }
Mike Stumpbf916502009-07-24 19:02:52 +00001030
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001031 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001032
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001033 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001034 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +00001035 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001036 return;
1037 }
Mike Stumpbf916502009-07-24 19:02:52 +00001038
Ted Kremenek465172f2008-07-21 22:09:15 +00001039 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001040 if (HasImplicitThisParam) {
1041 if (x == 0) {
1042 S.Diag(Attr.getLoc(),
1043 diag::err_attribute_invalid_implicit_this_argument)
1044 << "nonnull" << Ex->getSourceRange();
1045 return;
1046 }
1047 --x;
1048 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001049
1050 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001051 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001052 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +00001053
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001054 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001055 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +00001056 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001057 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001058 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001059 }
Mike Stumpbf916502009-07-24 19:02:52 +00001060
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001061 NonNullArgs.push_back(x);
1062 }
Mike Stumpbf916502009-07-24 19:02:52 +00001063
1064 // If no arguments were specified to __attribute__((nonnull)) then all pointer
1065 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001066 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001067 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
1068 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +00001069 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +00001070 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +00001071 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +00001072 }
Mike Stumpbf916502009-07-24 19:02:52 +00001073
Ted Kremenekee1c08c2010-10-21 18:49:36 +00001074 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001075 if (NonNullArgs.empty()) {
1076 // Warn the trivial case only if attribute is not coming from a
1077 // macro instantiation.
1078 if (Attr.getLoc().isFileID())
1079 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001080 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +00001081 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001082 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +00001083
1084 unsigned* start = &NonNullArgs[0];
1085 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001086 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001087 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +00001088 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +00001089}
1090
Chandler Carruth1b03c872011-07-02 00:01:44 +00001091static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001092 // This attribute must be applied to a function declaration.
1093 // The first argument to the attribute must be a string,
1094 // the name of the resource, for example "malloc".
1095 // The following arguments must be argument indexes, the arguments must be
1096 // of integer type for Returns, otherwise of pointer type.
1097 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001098 // after being held. free() should be __attribute((ownership_takes)), whereas
1099 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001100
1101 if (!AL.getParameterName()) {
1102 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1103 << AL.getName()->getName() << 1;
1104 return;
1105 }
1106 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001107 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001108 switch (AL.getKind()) {
1109 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001110 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001111 if (AL.getNumArgs() < 1) {
1112 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1113 return;
1114 }
Jordy Rose2a479922010-08-12 08:54:03 +00001115 break;
1116 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001117 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001118 if (AL.getNumArgs() < 1) {
1119 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1120 return;
1121 }
Jordy Rose2a479922010-08-12 08:54:03 +00001122 break;
1123 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001124 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001125 if (AL.getNumArgs() > 1) {
1126 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1127 << AL.getNumArgs() + 1;
1128 return;
1129 }
Jordy Rose2a479922010-08-12 08:54:03 +00001130 break;
1131 default:
1132 // This should never happen given how we are called.
1133 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001134 }
1135
Chandler Carruth87c44602011-07-01 23:49:12 +00001136 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001137 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1138 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001139 return;
1140 }
1141
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001142 // In C++ the implicit 'this' function parameter also counts, and they are
1143 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001144 bool HasImplicitThisParam = isInstanceMethod(D);
1145 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001146
Chris Lattner5f9e2722011-07-23 10:55:15 +00001147 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001148
1149 // Normalize the argument, __foo__ becomes foo.
1150 if (Module.startswith("__") && Module.endswith("__"))
1151 Module = Module.substr(2, Module.size() - 4);
1152
Chris Lattner5f9e2722011-07-23 10:55:15 +00001153 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001154
Jordy Rose2a479922010-08-12 08:54:03 +00001155 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1156 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001157
Peter Collingbourne7a730022010-11-23 20:45:58 +00001158 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001159 llvm::APSInt ArgNum(32);
1160 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1161 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1162 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1163 << AL.getName()->getName() << IdxExpr->getSourceRange();
1164 continue;
1165 }
1166
1167 unsigned x = (unsigned) ArgNum.getZExtValue();
1168
1169 if (x > NumArgs || x < 1) {
1170 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1171 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1172 continue;
1173 }
1174 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001175 if (HasImplicitThisParam) {
1176 if (x == 0) {
1177 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1178 << "ownership" << IdxExpr->getSourceRange();
1179 return;
1180 }
1181 --x;
1182 }
1183
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001184 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001185 case OwnershipAttr::Takes:
1186 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001187 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001188 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001189 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1190 // FIXME: Should also highlight argument in decl.
1191 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001192 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001193 << "pointer"
1194 << IdxExpr->getSourceRange();
1195 continue;
1196 }
1197 break;
1198 }
Sean Huntcf807c42010-08-18 23:23:40 +00001199 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001200 if (AL.getNumArgs() > 1) {
1201 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001202 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001203 llvm::APSInt ArgNum(32);
1204 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1205 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1206 S.Diag(AL.getLoc(), diag::err_ownership_type)
1207 << "ownership_returns" << "integer"
1208 << IdxExpr->getSourceRange();
1209 return;
1210 }
1211 }
1212 break;
1213 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001214 } // switch
1215
1216 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001217 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001218 i = D->specific_attr_begin<OwnershipAttr>(),
1219 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001220 i != e; ++i) {
1221 if ((*i)->getOwnKind() != K) {
1222 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1223 I!=E; ++I) {
1224 if (x == *I) {
1225 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1226 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001227 }
1228 }
1229 }
1230 }
1231 OwnershipArgs.push_back(x);
1232 }
1233
1234 unsigned* start = OwnershipArgs.data();
1235 unsigned size = OwnershipArgs.size();
1236 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001237
1238 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1239 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1240 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001241 }
Sean Huntcf807c42010-08-18 23:23:40 +00001242
Chandler Carruth87c44602011-07-01 23:49:12 +00001243 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001244 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001245}
1246
John McCall332bb2a2011-02-08 22:35:49 +00001247/// Whether this declaration has internal linkage for the purposes of
1248/// things that want to complain about things not have internal linkage.
1249static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1250 switch (D->getLinkage()) {
1251 case NoLinkage:
1252 case InternalLinkage:
1253 return true;
1254
1255 // Template instantiations that go from external to unique-external
1256 // shouldn't get diagnosed.
1257 case UniqueExternalLinkage:
1258 return true;
1259
1260 case ExternalLinkage:
1261 return false;
1262 }
1263 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001264}
1265
Chandler Carruth1b03c872011-07-02 00:01:44 +00001266static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001267 // Check the attribute arguments.
1268 if (Attr.getNumArgs() > 1) {
1269 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1270 return;
1271 }
1272
Chandler Carruth87c44602011-07-01 23:49:12 +00001273 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001274 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001275 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001276 return;
1277 }
1278
Chandler Carruth87c44602011-07-01 23:49:12 +00001279 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001280
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001281 // gcc rejects
1282 // class c {
1283 // static int a __attribute__((weakref ("v2")));
1284 // static int b() __attribute__((weakref ("f3")));
1285 // };
1286 // and ignores the attributes of
1287 // void f(void) {
1288 // static int a __attribute__((weakref ("v2")));
1289 // }
1290 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001291 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001292 if (!Ctx->isFileContext()) {
1293 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001294 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001295 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001296 }
1297
1298 // The GCC manual says
1299 //
1300 // At present, a declaration to which `weakref' is attached can only
1301 // be `static'.
1302 //
1303 // It also says
1304 //
1305 // Without a TARGET,
1306 // given as an argument to `weakref' or to `alias', `weakref' is
1307 // equivalent to `weak'.
1308 //
1309 // gcc 4.4.1 will accept
1310 // int a7 __attribute__((weakref));
1311 // as
1312 // int a7 __attribute__((weak));
1313 // This looks like a bug in gcc. We reject that for now. We should revisit
1314 // it if this behaviour is actually used.
1315
John McCall332bb2a2011-02-08 22:35:49 +00001316 if (!hasEffectivelyInternalLinkage(nd)) {
1317 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001318 return;
1319 }
1320
1321 // GCC rejects
1322 // static ((alias ("y"), weakref)).
1323 // Should we? How to check that weakref is before or after alias?
1324
1325 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001326 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001327 Arg = Arg->IgnoreParenCasts();
1328 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1329
Douglas Gregor5cee1192011-07-27 05:40:30 +00001330 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001331 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1332 << "weakref" << 1;
1333 return;
1334 }
1335 // GCC will accept anything as the argument of weakref. Should we
1336 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001337 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001338 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001339 }
1340
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001341 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001342}
1343
Chandler Carruth1b03c872011-07-02 00:01:44 +00001344static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001345 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001346 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001347 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001348 return;
1349 }
Mike Stumpbf916502009-07-24 19:02:52 +00001350
Peter Collingbourne7a730022010-11-23 20:45:58 +00001351 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001352 Arg = Arg->IgnoreParenCasts();
1353 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001354
Douglas Gregor5cee1192011-07-27 05:40:30 +00001355 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001356 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001357 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001358 return;
1359 }
Mike Stumpbf916502009-07-24 19:02:52 +00001360
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001361 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001362 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1363 return;
1364 }
1365
Chris Lattner6b6b5372008-06-26 18:38:35 +00001366 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001367
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001368 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001369 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001370}
1371
Benjamin Krameree409a92012-05-12 21:10:52 +00001372static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1373 // Check the attribute arguments.
1374 if (!checkAttributeNumArgs(S, Attr, 0))
1375 return;
1376
1377 if (!isa<FunctionDecl>(D)) {
1378 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1379 << Attr.getName() << ExpectedFunction;
1380 return;
1381 }
1382
1383 if (D->hasAttr<HotAttr>()) {
1384 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1385 << Attr.getName() << "hot";
1386 return;
1387 }
1388
1389 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context));
1390}
1391
1392static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) {
1393 // Check the attribute arguments.
1394 if (!checkAttributeNumArgs(S, Attr, 0))
1395 return;
1396
1397 if (!isa<FunctionDecl>(D)) {
1398 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1399 << Attr.getName() << ExpectedFunction;
1400 return;
1401 }
1402
1403 if (D->hasAttr<ColdAttr>()) {
1404 S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible)
1405 << Attr.getName() << "cold";
1406 return;
1407 }
1408
1409 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context));
1410}
1411
Chandler Carruth1b03c872011-07-02 00:01:44 +00001412static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001413 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001414 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001415 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001416
Chandler Carruth87c44602011-07-01 23:49:12 +00001417 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001418 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001419 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001420 return;
1421 }
1422
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001423 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001424}
1425
Chandler Carruth1b03c872011-07-02 00:01:44 +00001426static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1427 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001428 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001429 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001430 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1431 return;
1432 }
1433
Chandler Carruth87c44602011-07-01 23:49:12 +00001434 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001436 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001437 return;
1438 }
Mike Stumpbf916502009-07-24 19:02:52 +00001439
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001440 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001441}
1442
Chandler Carruth1b03c872011-07-02 00:01:44 +00001443static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001444 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001445 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001446 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1447 return;
1448 }
Mike Stump1eb44332009-09-09 15:08:12 +00001449
Chandler Carruth87c44602011-07-01 23:49:12 +00001450 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001451 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001452 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001453 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001454 return;
1455 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001456 }
1457
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001458 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001459}
1460
Chandler Carruth1b03c872011-07-02 00:01:44 +00001461static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001462 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001463 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001464 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001465
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001466 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001467}
1468
Chandler Carruth1b03c872011-07-02 00:01:44 +00001469static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001470 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001471 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001472 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001473 else
1474 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001475 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001476}
1477
Chandler Carruth1b03c872011-07-02 00:01:44 +00001478static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001479 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001480 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001481 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001482 else
1483 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001484 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001485}
1486
Chandler Carruth1b03c872011-07-02 00:01:44 +00001487static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001488 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001489
1490 if (S.CheckNoReturnAttr(attr)) return;
1491
Chandler Carruth87c44602011-07-01 23:49:12 +00001492 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001493 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001494 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001495 return;
1496 }
1497
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001498 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001499}
1500
1501bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001502 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001503 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1504 attr.setInvalid();
1505 return true;
1506 }
1507
1508 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001509}
1510
Chandler Carruth1b03c872011-07-02 00:01:44 +00001511static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1512 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001513
1514 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1515 // because 'analyzer_noreturn' does not impact the type.
1516
Chandler Carruth1731e202011-07-11 23:30:35 +00001517 if(!checkAttributeNumArgs(S, Attr, 0))
1518 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001519
Chandler Carruth87c44602011-07-01 23:49:12 +00001520 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1521 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001522 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1523 && !VD->getType()->isFunctionPointerType())) {
1524 S.Diag(Attr.getLoc(),
1525 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1526 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001527 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001528 return;
1529 }
1530 }
1531
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001532 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001533}
1534
John Thompson35cc9622010-08-09 21:53:52 +00001535// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001536static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001537/*
1538 Returning a Vector Class in Registers
1539
Eric Christopherf48f3672010-12-01 22:13:54 +00001540 According to the PPU ABI specifications, a class with a single member of
1541 vector type is returned in memory when used as the return value of a function.
1542 This results in inefficient code when implementing vector classes. To return
1543 the value in a single vector register, add the vecreturn attribute to the
1544 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001545
1546 Example:
1547
1548 struct Vector
1549 {
1550 __vector float xyzw;
1551 } __attribute__((vecreturn));
1552
1553 Vector Add(Vector lhs, Vector rhs)
1554 {
1555 Vector result;
1556 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1557 return result; // This will be returned in a register
1558 }
1559*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001560 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001561 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001562 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001563 return;
1564 }
1565
Chandler Carruth87c44602011-07-01 23:49:12 +00001566 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001567 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1568 return;
1569 }
1570
Chandler Carruth87c44602011-07-01 23:49:12 +00001571 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001572 int count = 0;
1573
1574 if (!isa<CXXRecordDecl>(record)) {
1575 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1576 return;
1577 }
1578
1579 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1580 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1581 return;
1582 }
1583
Eric Christopherf48f3672010-12-01 22:13:54 +00001584 for (RecordDecl::field_iterator iter = record->field_begin();
1585 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001586 if ((count == 1) || !iter->getType()->isVectorType()) {
1587 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1588 return;
1589 }
1590 count++;
1591 }
1592
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001593 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001594}
1595
Chandler Carruth1b03c872011-07-02 00:01:44 +00001596static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001597 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001598 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001599 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001600 return;
1601 }
1602 // FIXME: Actually store the attribute on the declaration
1603}
1604
Chandler Carruth1b03c872011-07-02 00:01:44 +00001605static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001606 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001607 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001608 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001609 return;
1610 }
Mike Stumpbf916502009-07-24 19:02:52 +00001611
Chandler Carruth87c44602011-07-01 23:49:12 +00001612 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1613 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001614 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001615 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001616 return;
1617 }
Mike Stumpbf916502009-07-24 19:02:52 +00001618
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001619 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001620}
1621
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001622static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1623 const AttributeList &Attr) {
1624 // check the attribute arguments.
1625 if (Attr.hasParameterOrArguments()) {
1626 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1627 return;
1628 }
1629
1630 if (!isa<FunctionDecl>(D)) {
1631 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1632 << Attr.getName() << ExpectedFunction;
1633 return;
1634 }
1635
1636 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1637}
1638
Chandler Carruth1b03c872011-07-02 00:01:44 +00001639static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001640 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001641 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001642 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1643 return;
1644 }
Mike Stumpbf916502009-07-24 19:02:52 +00001645
Chandler Carruth87c44602011-07-01 23:49:12 +00001646 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001647 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001648 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1649 return;
1650 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001651 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001652 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001653 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001654 return;
1655 }
Mike Stumpbf916502009-07-24 19:02:52 +00001656
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001657 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001658}
1659
Chandler Carruth1b03c872011-07-02 00:01:44 +00001660static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001661 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001662 if (Attr.getNumArgs() > 1) {
1663 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001664 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001665 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001666
1667 int priority = 65535; // FIXME: Do not hardcode such constants.
1668 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001669 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001670 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001671 if (E->isTypeDependent() || E->isValueDependent() ||
1672 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001673 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001674 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001675 return;
1676 }
1677 priority = Idx.getZExtValue();
1678 }
Mike Stumpbf916502009-07-24 19:02:52 +00001679
Chandler Carruth87c44602011-07-01 23:49:12 +00001680 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001681 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001682 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001683 return;
1684 }
1685
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001686 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001687 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001688}
1689
Chandler Carruth1b03c872011-07-02 00:01:44 +00001690static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001691 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001692 if (Attr.getNumArgs() > 1) {
1693 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001694 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001695 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001696
1697 int priority = 65535; // FIXME: Do not hardcode such constants.
1698 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001699 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001700 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001701 if (E->isTypeDependent() || E->isValueDependent() ||
1702 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001703 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001704 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001705 return;
1706 }
1707 priority = Idx.getZExtValue();
1708 }
Mike Stumpbf916502009-07-24 19:02:52 +00001709
Chandler Carruth87c44602011-07-01 23:49:12 +00001710 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001711 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001712 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001713 return;
1714 }
1715
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001716 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001717 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001718}
1719
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001720template <typename AttrTy>
1721static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr,
1722 const char *Name) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001723 unsigned NumArgs = Attr.getNumArgs();
1724 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001725 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001726 return;
1727 }
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001728
1729 // Handle the case where the attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001730 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001731 if (NumArgs == 1) {
1732 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001733 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001734 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001735 << Name;
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001736 return;
1737 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001738 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001739 }
Mike Stumpbf916502009-07-24 19:02:52 +00001740
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00001741 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001742}
1743
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001744static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1745 const AttributeList &Attr) {
1746 unsigned NumArgs = Attr.getNumArgs();
1747 if (NumArgs > 0) {
1748 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1749 return;
1750 }
1751
1752 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001753 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001754}
1755
Patrick Beardb2f68202012-04-06 18:12:22 +00001756static void handleObjCRootClassAttr(Sema &S, Decl *D,
1757 const AttributeList &Attr) {
1758 if (!isa<ObjCInterfaceDecl>(D)) {
1759 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1760 return;
1761 }
1762
1763 unsigned NumArgs = Attr.getNumArgs();
1764 if (NumArgs > 0) {
1765 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1766 return;
1767 }
1768
1769 D->addAttr(::new (S.Context) ObjCRootClassAttr(Attr.getRange(), S.Context));
1770}
1771
Ted Kremenek71207fc2012-01-05 22:47:47 +00001772static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001773 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001774 if (!isa<ObjCInterfaceDecl>(D)) {
1775 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1776 return;
1777 }
1778
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001779 unsigned NumArgs = Attr.getNumArgs();
1780 if (NumArgs > 0) {
1781 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1782 return;
1783 }
1784
Ted Kremenek71207fc2012-01-05 22:47:47 +00001785 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001786 Attr.getRange(), S.Context));
1787}
1788
Jordy Rosefad5de92012-05-08 03:27:22 +00001789static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
1790 IdentifierInfo *Platform,
1791 VersionTuple Introduced,
1792 VersionTuple Deprecated,
1793 VersionTuple Obsoleted) {
Rafael Espindola3b294362012-05-06 19:56:25 +00001794 StringRef PlatformName
1795 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1796 if (PlatformName.empty())
1797 PlatformName = Platform->getName();
1798
1799 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
1800 // of these steps are needed).
1801 if (!Introduced.empty() && !Deprecated.empty() &&
1802 !(Introduced <= Deprecated)) {
1803 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1804 << 1 << PlatformName << Deprecated.getAsString()
1805 << 0 << Introduced.getAsString();
1806 return true;
1807 }
1808
1809 if (!Introduced.empty() && !Obsoleted.empty() &&
1810 !(Introduced <= Obsoleted)) {
1811 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1812 << 2 << PlatformName << Obsoleted.getAsString()
1813 << 0 << Introduced.getAsString();
1814 return true;
1815 }
1816
1817 if (!Deprecated.empty() && !Obsoleted.empty() &&
1818 !(Deprecated <= Obsoleted)) {
1819 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
1820 << 2 << PlatformName << Obsoleted.getAsString()
1821 << 1 << Deprecated.getAsString();
1822 return true;
1823 }
1824
1825 return false;
1826}
1827
Rafael Espindola599f1b72012-05-13 03:25:18 +00001828AvailabilityAttr *Sema::mergeAvailabilityAttr(Decl *D, SourceRange Range,
1829 IdentifierInfo *Platform,
1830 VersionTuple Introduced,
1831 VersionTuple Deprecated,
1832 VersionTuple Obsoleted,
1833 bool IsUnavailable,
1834 StringRef Message) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00001835 VersionTuple MergedIntroduced = Introduced;
1836 VersionTuple MergedDeprecated = Deprecated;
1837 VersionTuple MergedObsoleted = Obsoleted;
Rafael Espindola3b294362012-05-06 19:56:25 +00001838 bool FoundAny = false;
1839
Rafael Espindola98ae8342012-05-10 02:50:16 +00001840 if (D->hasAttrs()) {
1841 AttrVec &Attrs = D->getAttrs();
1842 for (unsigned i = 0, e = Attrs.size(); i != e;) {
1843 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
1844 if (!OldAA) {
1845 ++i;
1846 continue;
1847 }
Rafael Espindola3b294362012-05-06 19:56:25 +00001848
Rafael Espindola98ae8342012-05-10 02:50:16 +00001849 IdentifierInfo *OldPlatform = OldAA->getPlatform();
1850 if (OldPlatform != Platform) {
1851 ++i;
1852 continue;
1853 }
1854
1855 FoundAny = true;
1856 VersionTuple OldIntroduced = OldAA->getIntroduced();
1857 VersionTuple OldDeprecated = OldAA->getDeprecated();
1858 VersionTuple OldObsoleted = OldAA->getObsoleted();
1859 bool OldIsUnavailable = OldAA->getUnavailable();
1860 StringRef OldMessage = OldAA->getMessage();
1861
1862 if ((!OldIntroduced.empty() && !Introduced.empty() &&
1863 OldIntroduced != Introduced) ||
1864 (!OldDeprecated.empty() && !Deprecated.empty() &&
1865 OldDeprecated != Deprecated) ||
1866 (!OldObsoleted.empty() && !Obsoleted.empty() &&
1867 OldObsoleted != Obsoleted) ||
1868 (OldIsUnavailable != IsUnavailable) ||
1869 (OldMessage != Message)) {
1870 Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
1871 Diag(Range.getBegin(), diag::note_previous_attribute);
1872 Attrs.erase(Attrs.begin() + i);
1873 --e;
1874 continue;
1875 }
1876
1877 VersionTuple MergedIntroduced2 = MergedIntroduced;
1878 VersionTuple MergedDeprecated2 = MergedDeprecated;
1879 VersionTuple MergedObsoleted2 = MergedObsoleted;
1880
1881 if (MergedIntroduced2.empty())
1882 MergedIntroduced2 = OldIntroduced;
1883 if (MergedDeprecated2.empty())
1884 MergedDeprecated2 = OldDeprecated;
1885 if (MergedObsoleted2.empty())
1886 MergedObsoleted2 = OldObsoleted;
1887
1888 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
1889 MergedIntroduced2, MergedDeprecated2,
1890 MergedObsoleted2)) {
1891 Attrs.erase(Attrs.begin() + i);
1892 --e;
1893 continue;
1894 }
1895
1896 MergedIntroduced = MergedIntroduced2;
1897 MergedDeprecated = MergedDeprecated2;
1898 MergedObsoleted = MergedObsoleted2;
1899 ++i;
Rafael Espindola3b294362012-05-06 19:56:25 +00001900 }
Rafael Espindola3b294362012-05-06 19:56:25 +00001901 }
1902
1903 if (FoundAny &&
1904 MergedIntroduced == Introduced &&
1905 MergedDeprecated == Deprecated &&
1906 MergedObsoleted == Obsoleted)
Rafael Espindola599f1b72012-05-13 03:25:18 +00001907 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00001908
Rafael Espindola98ae8342012-05-10 02:50:16 +00001909 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
Rafael Espindola3b294362012-05-06 19:56:25 +00001910 MergedDeprecated, MergedObsoleted)) {
Rafael Espindola599f1b72012-05-13 03:25:18 +00001911 return ::new (Context) AvailabilityAttr(Range, Context, Platform,
1912 Introduced, Deprecated,
1913 Obsoleted, IsUnavailable, Message);
Rafael Espindola3b294362012-05-06 19:56:25 +00001914 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00001915 return NULL;
Rafael Espindola3b294362012-05-06 19:56:25 +00001916}
1917
Chandler Carruth1b03c872011-07-02 00:01:44 +00001918static void handleAvailabilityAttr(Sema &S, Decl *D,
1919 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001920 IdentifierInfo *Platform = Attr.getParameterName();
1921 SourceLocation PlatformLoc = Attr.getParameterLoc();
1922
Rafael Espindola3b294362012-05-06 19:56:25 +00001923 if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001924 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1925 << Platform;
1926
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001927 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1928 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1929 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001930 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001931 StringRef Str;
1932 const StringLiteral *SE =
1933 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1934 if (SE)
1935 Str = SE->getString();
Rafael Espindola3b294362012-05-06 19:56:25 +00001936
Rafael Espindola599f1b72012-05-13 03:25:18 +00001937 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(D, Attr.getRange(),
1938 Platform,
1939 Introduced.Version,
1940 Deprecated.Version,
1941 Obsoleted.Version,
1942 IsUnavailable, Str);
1943 if (NewAttr)
1944 D->addAttr(NewAttr);
Rafael Espindola98ae8342012-05-10 02:50:16 +00001945}
1946
Rafael Espindola599f1b72012-05-13 03:25:18 +00001947VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
1948 VisibilityAttr::VisibilityType Vis) {
Rafael Espindoladd44f342012-05-10 03:01:34 +00001949 if (isa<TypedefNameDecl>(D)) {
1950 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "visibility";
Rafael Espindola599f1b72012-05-13 03:25:18 +00001951 return NULL;
Rafael Espindoladd44f342012-05-10 03:01:34 +00001952 }
Rafael Espindola98ae8342012-05-10 02:50:16 +00001953 VisibilityAttr *ExistingAttr = D->getAttr<VisibilityAttr>();
1954 if (ExistingAttr) {
1955 VisibilityAttr::VisibilityType ExistingVis = ExistingAttr->getVisibility();
1956 if (ExistingVis == Vis)
Rafael Espindola599f1b72012-05-13 03:25:18 +00001957 return NULL;
Rafael Espindola98ae8342012-05-10 02:50:16 +00001958 Diag(ExistingAttr->getLocation(), diag::err_mismatched_visibility);
1959 Diag(Range.getBegin(), diag::note_previous_attribute);
1960 D->dropAttr<VisibilityAttr>();
1961 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00001962 return ::new (Context) VisibilityAttr(Range, Context, Vis);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001963}
1964
Chandler Carruth1b03c872011-07-02 00:01:44 +00001965static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001966 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001967 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001968 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001969
Peter Collingbourne7a730022010-11-23 20:45:58 +00001970 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001971 Arg = Arg->IgnoreParenCasts();
1972 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001973
Douglas Gregor5cee1192011-07-27 05:40:30 +00001974 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001975 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001976 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001977 return;
1978 }
Mike Stumpbf916502009-07-24 19:02:52 +00001979
Chris Lattner5f9e2722011-07-23 10:55:15 +00001980 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001981 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001982
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001983 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001984 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001985 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001986 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001987 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001988 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00001989 else if (TypeStr == "protected") {
1990 // Complain about attempts to use protected visibility on targets
1991 // (like Darwin) that don't support it.
1992 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1993 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1994 type = VisibilityAttr::Default;
1995 } else {
1996 type = VisibilityAttr::Protected;
1997 }
1998 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00001999 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002000 return;
2001 }
Mike Stumpbf916502009-07-24 19:02:52 +00002002
Rafael Espindola599f1b72012-05-13 03:25:18 +00002003 VisibilityAttr *NewAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type);
2004 if (NewAttr)
2005 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002006}
2007
Chandler Carruth1b03c872011-07-02 00:01:44 +00002008static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
2009 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00002010 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
2011 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002012 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002013 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00002014 return;
2015 }
2016
Chandler Carruth87c44602011-07-01 23:49:12 +00002017 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
2018 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
2019 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00002020 << "objc_method_family" << 1;
2021 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002022 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00002023 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002024 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00002025 return;
2026 }
2027
Chris Lattner5f9e2722011-07-23 10:55:15 +00002028 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00002029 ObjCMethodFamilyAttr::FamilyKind family;
2030 if (param == "none")
2031 family = ObjCMethodFamilyAttr::OMF_None;
2032 else if (param == "alloc")
2033 family = ObjCMethodFamilyAttr::OMF_alloc;
2034 else if (param == "copy")
2035 family = ObjCMethodFamilyAttr::OMF_copy;
2036 else if (param == "init")
2037 family = ObjCMethodFamilyAttr::OMF_init;
2038 else if (param == "mutableCopy")
2039 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
2040 else if (param == "new")
2041 family = ObjCMethodFamilyAttr::OMF_new;
2042 else {
2043 // Just warn and ignore it. This is future-proof against new
2044 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00002045 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00002046 return;
2047 }
2048
John McCallf85e1932011-06-15 23:02:42 +00002049 if (family == ObjCMethodFamilyAttr::OMF_init &&
2050 !method->getResultType()->isObjCObjectPointerType()) {
2051 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
2052 << method->getResultType();
2053 // Ignore the attribute.
2054 return;
2055 }
2056
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002057 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00002058 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00002059}
2060
Chandler Carruth1b03c872011-07-02 00:01:44 +00002061static void handleObjCExceptionAttr(Sema &S, Decl *D,
2062 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002063 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00002064 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002065
Chris Lattner0db29ec2009-02-14 08:09:34 +00002066 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
2067 if (OCI == 0) {
2068 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
2069 return;
2070 }
Mike Stumpbf916502009-07-24 19:02:52 +00002071
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002072 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00002073}
2074
Chandler Carruth1b03c872011-07-02 00:01:44 +00002075static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002076 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002077 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002078 return;
2079 }
Richard Smith162e1c12011-04-15 14:24:37 +00002080 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002081 QualType T = TD->getUnderlyingType();
2082 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002083 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002084 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2085 return;
2086 }
2087 }
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002088 else if (!isa<ObjCPropertyDecl>(D)) {
2089 // It is okay to include this attribute on properties, e.g.:
2090 //
2091 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2092 //
2093 // In this case it follows tradition and suppresses an error in the above
2094 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00002095 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00002096 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002097 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00002098}
2099
Mike Stumpbf916502009-07-24 19:02:52 +00002100static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00002101handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00002102 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00002103 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00002104 return;
2105 }
2106
2107 if (!isa<FunctionDecl>(D)) {
2108 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
2109 return;
2110 }
2111
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002112 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00002113}
2114
Chandler Carruth1b03c872011-07-02 00:01:44 +00002115static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002116 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002117 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002118 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002119 return;
2120 }
Mike Stumpbf916502009-07-24 19:02:52 +00002121
Steve Naroff9eae5762008-09-18 16:44:58 +00002122 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002123 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00002124 return;
2125 }
Mike Stumpbf916502009-07-24 19:02:52 +00002126
Sean Huntcf807c42010-08-18 23:23:40 +00002127 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00002128 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00002129 type = BlocksAttr::ByRef;
2130 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002131 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00002132 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00002133 return;
2134 }
Mike Stumpbf916502009-07-24 19:02:52 +00002135
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002136 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00002137}
2138
Chandler Carruth1b03c872011-07-02 00:01:44 +00002139static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00002140 // check the attribute arguments.
2141 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00002142 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00002143 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002144 }
2145
John McCall3323fad2011-09-09 07:56:05 +00002146 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002147 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002148 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00002149 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002150 if (E->isTypeDependent() || E->isValueDependent() ||
2151 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002152 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002153 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002154 return;
2155 }
Mike Stumpbf916502009-07-24 19:02:52 +00002156
John McCall3323fad2011-09-09 07:56:05 +00002157 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002158 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2159 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002160 return;
2161 }
John McCall3323fad2011-09-09 07:56:05 +00002162
2163 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00002164 }
2165
John McCall3323fad2011-09-09 07:56:05 +00002166 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002167 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002168 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00002169 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002170 if (E->isTypeDependent() || E->isValueDependent() ||
2171 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002172 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002173 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002174 return;
2175 }
2176 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00002177
John McCall3323fad2011-09-09 07:56:05 +00002178 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00002179 // FIXME: This error message could be improved, it would be nice
2180 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002181 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2182 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00002183 return;
2184 }
2185 }
2186
Chandler Carruth87c44602011-07-01 23:49:12 +00002187 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00002188 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00002189 if (isa<FunctionNoProtoType>(FT)) {
2190 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2191 return;
2192 }
Mike Stumpbf916502009-07-24 19:02:52 +00002193
Chris Lattner897cd902009-03-17 23:03:47 +00002194 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002195 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002196 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002197 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002198 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00002199 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002200 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00002201 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002202 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00002203 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
2204 if (!BD->isVariadic()) {
2205 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2206 return;
2207 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002208 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002209 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002210 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002211 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00002212 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002213 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00002214 int m = Ty->isFunctionPointerType() ? 0 : 1;
2215 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002216 return;
2217 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002218 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002219 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002220 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002221 return;
2222 }
Anders Carlsson77091822008-10-05 18:05:59 +00002223 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002224 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002225 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002226 return;
2227 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002228 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00002229 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00002230}
2231
Chandler Carruth1b03c872011-07-02 00:01:44 +00002232static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002233 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002234 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002235 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002236
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002237 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002238 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002239 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00002240 return;
2241 }
Mike Stumpbf916502009-07-24 19:02:52 +00002242
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002243 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2244 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2245 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002246 return;
2247 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002248 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2249 if (MD->getResultType()->isVoidType()) {
2250 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2251 << Attr.getName() << 1;
2252 return;
2253 }
2254
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002255 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00002256}
2257
Chandler Carruth1b03c872011-07-02 00:01:44 +00002258static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002259 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002260 if (Attr.hasParameterOrArguments()) {
2261 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002262 return;
2263 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002264
Chandler Carruth87c44602011-07-01 23:49:12 +00002265 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002266 if (isa<CXXRecordDecl>(D)) {
2267 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2268 return;
2269 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002270 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2271 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002272 return;
2273 }
2274
Chandler Carruth87c44602011-07-01 23:49:12 +00002275 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002276
2277 // 'weak' only applies to declarations with external linkage.
2278 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002279 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002280 return;
2281 }
Mike Stumpbf916502009-07-24 19:02:52 +00002282
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002283 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002284}
2285
Chandler Carruth1b03c872011-07-02 00:01:44 +00002286static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002287 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002288 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002289 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002290
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002291
2292 // weak_import only applies to variable & function declarations.
2293 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002294 if (!D->canBeWeakImported(isDef)) {
2295 if (isDef)
2296 S.Diag(Attr.getLoc(),
2297 diag::warn_attribute_weak_import_invalid_on_definition)
2298 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002299 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002300 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002301 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002302 // Nothing to warn about here.
2303 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002304 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002305 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002306
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002307 return;
2308 }
2309
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002310 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002311}
2312
Chandler Carruth1b03c872011-07-02 00:01:44 +00002313static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2314 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002315 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002316 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002317 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002318
2319 unsigned WGSize[3];
2320 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002321 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002322 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002323 if (E->isTypeDependent() || E->isValueDependent() ||
2324 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002325 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2326 << "reqd_work_group_size" << E->getSourceRange();
2327 return;
2328 }
2329 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2330 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002331 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002332 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002333 WGSize[2]));
2334}
2335
Rafael Espindola599f1b72012-05-13 03:25:18 +00002336SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
2337 StringRef Name) {
Rafael Espindola420efd82012-05-13 02:42:42 +00002338 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2339 if (ExistingAttr->getName() == Name)
Rafael Espindola599f1b72012-05-13 03:25:18 +00002340 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002341 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section);
2342 Diag(Range.getBegin(), diag::note_previous_attribute);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002343 return NULL;
Rafael Espindola420efd82012-05-13 02:42:42 +00002344 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002345 return ::new (Context) SectionAttr(Range, Context, Name);
Rafael Espindola420efd82012-05-13 02:42:42 +00002346}
2347
Chandler Carruth1b03c872011-07-02 00:01:44 +00002348static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002349 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002350 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002351 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002352
2353 // Make sure that there is a string literal as the sections's single
2354 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002355 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002356 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002357 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002358 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002359 return;
2360 }
Mike Stump1eb44332009-09-09 15:08:12 +00002361
Chris Lattner797c3c42009-08-10 19:03:04 +00002362 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002363 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002364 if (!Error.empty()) {
2365 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2366 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002367 return;
2368 }
Mike Stump1eb44332009-09-09 15:08:12 +00002369
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002370 // This attribute cannot be applied to local variables.
2371 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2372 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2373 return;
2374 }
Rafael Espindola599f1b72012-05-13 03:25:18 +00002375 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(),
2376 SE->getString());
2377 if (NewAttr)
2378 D->addAttr(NewAttr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002379}
2380
Chris Lattner6b6b5372008-06-26 18:38:35 +00002381
Chandler Carruth1b03c872011-07-02 00:01:44 +00002382static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002383 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002384 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002385 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002386 return;
2387 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002388
Chandler Carruth87c44602011-07-01 23:49:12 +00002389 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002390 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002391 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002392 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002393 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002394 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002395}
2396
Chandler Carruth1b03c872011-07-02 00:01:44 +00002397static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002398 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002399 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002400 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002401 return;
2402 }
Mike Stumpbf916502009-07-24 19:02:52 +00002403
Chandler Carruth87c44602011-07-01 23:49:12 +00002404 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002405 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002406 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002407 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002408 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002409 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002410}
2411
Chandler Carruth1b03c872011-07-02 00:01:44 +00002412static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002413 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002414 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002415 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002416
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002417 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002418}
2419
Chandler Carruth1b03c872011-07-02 00:01:44 +00002420static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002421 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002422 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2423 return;
2424 }
Mike Stumpbf916502009-07-24 19:02:52 +00002425
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002426 if (Attr.getNumArgs() != 0) {
2427 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2428 return;
2429 }
Mike Stumpbf916502009-07-24 19:02:52 +00002430
Chandler Carruth87c44602011-07-01 23:49:12 +00002431 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002432
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002433 if (!VD || !VD->hasLocalStorage()) {
2434 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2435 return;
2436 }
Mike Stumpbf916502009-07-24 19:02:52 +00002437
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002438 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002439 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002440 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002441 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2442 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002443 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002444 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002445 Attr.getParameterName();
2446 return;
2447 }
Mike Stumpbf916502009-07-24 19:02:52 +00002448
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002449 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2450 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002451 S.Diag(Attr.getParameterLoc(),
2452 diag::err_attribute_cleanup_arg_not_function)
2453 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002454 return;
2455 }
2456
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002457 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002458 S.Diag(Attr.getParameterLoc(),
2459 diag::err_attribute_cleanup_func_must_take_one_arg)
2460 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002461 return;
2462 }
Mike Stumpbf916502009-07-24 19:02:52 +00002463
Anders Carlsson89941c12009-02-07 23:16:50 +00002464 // We're currently more strict than GCC about what function types we accept.
2465 // If this ever proves to be a problem it should be easy to fix.
2466 QualType Ty = S.Context.getPointerType(VD->getType());
2467 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002468 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2469 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002470 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002471 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2472 Attr.getParameterName() << ParamTy << Ty;
2473 return;
2474 }
Mike Stumpbf916502009-07-24 19:02:52 +00002475
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002476 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002477 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002478}
2479
Mike Stumpbf916502009-07-24 19:02:52 +00002480/// Handle __attribute__((format_arg((idx)))) attribute based on
2481/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002482static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002483 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002484 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002485
Chandler Carruth87c44602011-07-01 23:49:12 +00002486 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002487 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002488 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002489 return;
2490 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002491
2492 // In C++ the implicit 'this' function parameter also counts, and they are
2493 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002494 bool HasImplicitThisParam = isInstanceMethod(D);
2495 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002496 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002497
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002498 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002499 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002500 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002501 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2502 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002503 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2504 << "format" << 2 << IdxExpr->getSourceRange();
2505 return;
2506 }
Mike Stumpbf916502009-07-24 19:02:52 +00002507
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002508 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2509 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2510 << "format" << 2 << IdxExpr->getSourceRange();
2511 return;
2512 }
Mike Stumpbf916502009-07-24 19:02:52 +00002513
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002514 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002515
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002516 if (HasImplicitThisParam) {
2517 if (ArgIdx == 0) {
2518 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2519 << "format_arg" << IdxExpr->getSourceRange();
2520 return;
2521 }
2522 ArgIdx--;
2523 }
2524
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002525 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002526 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002527
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002528 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2529 if (not_nsstring_type &&
2530 !isCFStringType(Ty, S.Context) &&
2531 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002532 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002533 // FIXME: Should highlight the actual expression that has the wrong type.
2534 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002535 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002536 << IdxExpr->getSourceRange();
2537 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002538 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002539 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002540 if (!isNSStringType(Ty, S.Context) &&
2541 !isCFStringType(Ty, S.Context) &&
2542 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002543 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002544 // FIXME: Should highlight the actual expression that has the wrong type.
2545 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002546 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002547 << IdxExpr->getSourceRange();
2548 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002549 }
2550
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002551 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002552 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002553}
2554
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002555enum FormatAttrKind {
2556 CFStringFormat,
2557 NSStringFormat,
2558 StrftimeFormat,
2559 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002560 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002561 InvalidFormat
2562};
2563
2564/// getFormatAttrKind - Map from format attribute names to supported format
2565/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002566static FormatAttrKind getFormatAttrKind(StringRef Format) {
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002567 return llvm::StringSwitch<FormatAttrKind>(Format)
2568 // Check for formats that get handled specially.
2569 .Case("NSString", NSStringFormat)
2570 .Case("CFString", CFStringFormat)
2571 .Case("strftime", StrftimeFormat)
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002572
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002573 // Otherwise, check for supported formats.
2574 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
2575 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
2576 .Case("kprintf", SupportedFormat) // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002577
Benjamin Kramerc51bb992012-05-16 12:44:25 +00002578 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
2579 .Default(InvalidFormat);
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002580}
2581
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002582/// Handle __attribute__((init_priority(priority))) attributes based on
2583/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002584static void handleInitPriorityAttr(Sema &S, Decl *D,
2585 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002586 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002587 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2588 return;
2589 }
2590
Chandler Carruth87c44602011-07-01 23:49:12 +00002591 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002592 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2593 Attr.setInvalid();
2594 return;
2595 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002596 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002597 if (S.Context.getAsArrayType(T))
2598 T = S.Context.getBaseElementType(T);
2599 if (!T->getAs<RecordType>()) {
2600 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2601 Attr.setInvalid();
2602 return;
2603 }
2604
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002605 if (Attr.getNumArgs() != 1) {
2606 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2607 Attr.setInvalid();
2608 return;
2609 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002610 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002611
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002612 llvm::APSInt priority(32);
2613 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2614 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2615 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2616 << "init_priority" << priorityExpr->getSourceRange();
2617 Attr.setInvalid();
2618 return;
2619 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002620 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002621 if (prioritynum < 101 || prioritynum > 65535) {
2622 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2623 << priorityExpr->getSourceRange();
2624 Attr.setInvalid();
2625 return;
2626 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002627 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002628 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002629}
2630
Rafael Espindola599f1b72012-05-13 03:25:18 +00002631FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format,
2632 int FormatIdx, int FirstArg) {
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002633 // Check whether we already have an equivalent format attribute.
2634 for (specific_attr_iterator<FormatAttr>
2635 i = D->specific_attr_begin<FormatAttr>(),
2636 e = D->specific_attr_end<FormatAttr>();
2637 i != e ; ++i) {
2638 FormatAttr *f = *i;
2639 if (f->getType() == Format &&
2640 f->getFormatIdx() == FormatIdx &&
2641 f->getFirstArg() == FirstArg) {
2642 // If we don't have a valid location for this attribute, adopt the
2643 // location.
2644 if (f->getLocation().isInvalid())
2645 f->setRange(Range);
Rafael Espindola599f1b72012-05-13 03:25:18 +00002646 return NULL;
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002647 }
2648 }
2649
Rafael Espindola599f1b72012-05-13 03:25:18 +00002650 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
2651 FirstArg);
Rafael Espindolabf9da1f2012-05-11 00:36:07 +00002652}
2653
Mike Stumpbf916502009-07-24 19:02:52 +00002654/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2655/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002656static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002657
Chris Lattner545dd342008-06-28 23:36:30 +00002658 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002659 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002660 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002661 return;
2662 }
2663
Chris Lattner545dd342008-06-28 23:36:30 +00002664 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002665 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002666 return;
2667 }
2668
Chandler Carruth87c44602011-07-01 23:49:12 +00002669 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002670 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002671 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002672 return;
2673 }
2674
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002675 // In C++ the implicit 'this' function parameter also counts, and they are
2676 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002677 bool HasImplicitThisParam = isInstanceMethod(D);
2678 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002679 unsigned FirstIdx = 1;
2680
Chris Lattner5f9e2722011-07-23 10:55:15 +00002681 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002682
2683 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002684 if (Format.startswith("__") && Format.endswith("__"))
2685 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002686
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002687 // Check for supported formats.
2688 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002689
2690 if (Kind == IgnoredFormat)
2691 return;
2692
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002693 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002694 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002695 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002696 return;
2697 }
2698
2699 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002700 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002701 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002702 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2703 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002704 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002705 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002706 return;
2707 }
2708
2709 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002710 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002711 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002712 return;
2713 }
2714
2715 // FIXME: Do we need to bounds check?
2716 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002717
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002718 if (HasImplicitThisParam) {
2719 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002720 S.Diag(Attr.getLoc(),
2721 diag::err_format_attribute_implicit_this_format_string)
2722 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002723 return;
2724 }
2725 ArgIdx--;
2726 }
Mike Stump1eb44332009-09-09 15:08:12 +00002727
Chris Lattner6b6b5372008-06-26 18:38:35 +00002728 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002729 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002730
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002731 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002732 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002733 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2734 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002735 return;
2736 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002737 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002738 // FIXME: do we need to check if the type is NSString*? What are the
2739 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002740 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002741 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002742 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2743 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002744 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002745 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002746 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002747 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002748 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002749 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2750 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002751 return;
2752 }
2753
2754 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002755 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002756 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002757 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2758 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002759 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002760 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002761 return;
2762 }
2763
2764 // check if the function is variadic if the 3rd argument non-zero
2765 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002766 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002767 ++NumArgs; // +1 for ...
2768 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002769 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002770 return;
2771 }
2772 }
2773
Chris Lattner3c73c412008-11-19 08:23:25 +00002774 // strftime requires FirstArg to be 0 because it doesn't read from any
2775 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002776 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002777 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002778 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2779 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002780 return;
2781 }
2782 // if 0 it disables parameter checking (to use with e.g. va_list)
2783 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002784 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002785 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002786 return;
2787 }
2788
Rafael Espindola599f1b72012-05-13 03:25:18 +00002789 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format,
2790 Idx.getZExtValue(),
2791 FirstArg.getZExtValue());
2792 if (NewAttr)
2793 D->addAttr(NewAttr);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002794}
2795
Chandler Carruth1b03c872011-07-02 00:01:44 +00002796static void handleTransparentUnionAttr(Sema &S, Decl *D,
2797 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002798 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002799 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002800 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002801
Chris Lattner6b6b5372008-06-26 18:38:35 +00002802
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002803 // Try to find the underlying union declaration.
2804 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002805 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002806 if (TD && TD->getUnderlyingType()->isUnionType())
2807 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2808 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002809 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002810
2811 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002812 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002813 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002814 return;
2815 }
2816
John McCall5e1cdac2011-10-07 06:10:15 +00002817 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002818 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002819 diag::warn_transparent_union_attribute_not_definition);
2820 return;
2821 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002822
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002823 RecordDecl::field_iterator Field = RD->field_begin(),
2824 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002825 if (Field == FieldEnd) {
2826 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2827 return;
2828 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002829
David Blaikie262bc182012-04-30 02:36:29 +00002830 FieldDecl *FirstField = &*Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002831 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002832 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002833 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002834 diag::warn_transparent_union_attribute_floating)
2835 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002836 return;
2837 }
2838
2839 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2840 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2841 for (; Field != FieldEnd; ++Field) {
2842 QualType FieldType = Field->getType();
2843 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2844 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2845 // Warn if we drop the attribute.
2846 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002847 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002848 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002849 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002850 diag::warn_transparent_union_attribute_field_size_align)
2851 << isSize << Field->getDeclName() << FieldBits;
2852 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002853 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002854 diag::note_transparent_union_first_field_size_align)
2855 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002856 return;
2857 }
2858 }
2859
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002860 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002861}
2862
Chandler Carruth1b03c872011-07-02 00:01:44 +00002863static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002864 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002865 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002866 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002867
Peter Collingbourne7a730022010-11-23 20:45:58 +00002868 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002869 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002870
Chris Lattner6b6b5372008-06-26 18:38:35 +00002871 // Make sure that there is a string literal as the annotation's single
2872 // argument.
2873 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002874 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002875 return;
2876 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002877
2878 // Don't duplicate annotations that are already set.
2879 for (specific_attr_iterator<AnnotateAttr>
2880 i = D->specific_attr_begin<AnnotateAttr>(),
2881 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2882 if ((*i)->getAnnotation() == SE->getString())
2883 return;
2884 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002885 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002886 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002887}
2888
Chandler Carruth1b03c872011-07-02 00:01:44 +00002889static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002890 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002891 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002892 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002893 return;
2894 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002895
2896 //FIXME: The C++0x version of this attribute has more limited applicabilty
2897 // than GNU's, and should error out when it is used to specify a
2898 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002899
Chris Lattner545dd342008-06-28 23:36:30 +00002900 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002901 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002902 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002903 }
Mike Stumpbf916502009-07-24 19:02:52 +00002904
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002905 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002906}
2907
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002908void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002909 // FIXME: Handle pack-expansions here.
2910 if (DiagnoseUnexpandedParameterPack(E))
2911 return;
2912
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002913 if (E->isTypeDependent() || E->isValueDependent()) {
2914 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002915 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002916 return;
2917 }
2918
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002919 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002920 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002921 llvm::APSInt Alignment(32);
Douglas Gregorab41fe92012-05-04 22:38:52 +00002922 ExprResult ICE
2923 = VerifyIntegerConstantExpression(E, &Alignment,
2924 diag::err_aligned_attribute_argument_not_int,
2925 /*AllowFold*/ false);
Richard Smith282e7e62012-02-04 09:53:13 +00002926 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00002927 return;
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002928 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002929 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2930 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002931 return;
2932 }
2933
Richard Smith282e7e62012-02-04 09:53:13 +00002934 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take()));
Sean Huntcf807c42010-08-18 23:23:40 +00002935}
2936
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002937void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002938 // FIXME: Cache the number on the Attr object if non-dependent?
2939 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002940 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002941 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002942}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002943
Chandler Carruthd309c812011-07-01 23:49:16 +00002944/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002945/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002946///
Mike Stumpbf916502009-07-24 19:02:52 +00002947/// Despite what would be logical, the mode attribute is a decl attribute, not a
2948/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2949/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002950static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002951 // This attribute isn't documented, but glibc uses it. It changes
2952 // the width of an int or unsigned int to the specified size.
2953
2954 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002955 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002956 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002957
Chris Lattnerfbf13472008-06-27 22:18:37 +00002958
2959 IdentifierInfo *Name = Attr.getParameterName();
2960 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002961 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002962 return;
2963 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002964
Chris Lattner5f9e2722011-07-23 10:55:15 +00002965 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002966
2967 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002968 if (Str.startswith("__") && Str.endswith("__"))
2969 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002970
2971 unsigned DestWidth = 0;
2972 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002973 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002974 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002975 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002976 switch (Str[0]) {
2977 case 'Q': DestWidth = 8; break;
2978 case 'H': DestWidth = 16; break;
2979 case 'S': DestWidth = 32; break;
2980 case 'D': DestWidth = 64; break;
2981 case 'X': DestWidth = 96; break;
2982 case 'T': DestWidth = 128; break;
2983 }
2984 if (Str[1] == 'F') {
2985 IntegerMode = false;
2986 } else if (Str[1] == 'C') {
2987 IntegerMode = false;
2988 ComplexMode = true;
2989 } else if (Str[1] != 'I') {
2990 DestWidth = 0;
2991 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002992 break;
2993 case 4:
2994 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2995 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002996 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002997 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002998 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002999 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003000 break;
3001 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00003002 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003003 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003004 break;
3005 }
3006
3007 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00003008 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00003009 OldTy = TD->getUnderlyingType();
3010 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
3011 OldTy = VD->getType();
3012 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003013 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003014 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00003015 return;
3016 }
Eli Friedman73397492009-03-03 06:41:03 +00003017
John McCall183700f2009-09-21 23:43:11 +00003018 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00003019 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
3020 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00003021 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00003022 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3023 } else if (ComplexMode) {
3024 if (!OldTy->isComplexType())
3025 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3026 } else {
3027 if (!OldTy->isFloatingType())
3028 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
3029 }
3030
Mike Stump390b4cc2009-05-16 07:39:55 +00003031 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
3032 // and friends, at least with glibc.
3033 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
3034 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00003035 // FIXME: Make sure floating-point mappings are accurate
3036 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00003037 QualType NewTy;
3038 switch (DestWidth) {
3039 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00003040 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003041 return;
3042 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00003043 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003044 return;
3045 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00003046 if (!IntegerMode) {
3047 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3048 return;
3049 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003050 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003051 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003052 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003053 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003054 break;
3055 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00003056 if (!IntegerMode) {
3057 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3058 return;
3059 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00003060 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003061 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003062 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003063 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003064 break;
3065 case 32:
3066 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003067 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003068 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003069 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003070 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003071 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003072 break;
3073 case 64:
3074 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00003075 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003076 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003077 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003078 NewTy = S.Context.LongTy;
3079 else
3080 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003081 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003082 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00003083 NewTy = S.Context.UnsignedLongTy;
3084 else
3085 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003086 break;
Eli Friedman73397492009-03-03 06:41:03 +00003087 case 96:
3088 NewTy = S.Context.LongDoubleTy;
3089 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00003090 case 128:
3091 if (!IntegerMode) {
3092 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
3093 return;
3094 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00003095 if (OldTy->isSignedIntegerType())
3096 NewTy = S.Context.Int128Ty;
3097 else
3098 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00003099 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00003100 }
3101
Eli Friedman73397492009-03-03 06:41:03 +00003102 if (ComplexMode) {
3103 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00003104 }
3105
3106 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00003107 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00003108 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00003109 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00003110 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00003111 cast<ValueDecl>(D)->setType(NewTy);
3112}
Chris Lattner0744e5f2008-06-29 00:23:49 +00003113
Chandler Carruth1b03c872011-07-02 00:01:44 +00003114static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00003115 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003116 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00003117 return;
Anders Carlssone896d982009-02-13 08:11:52 +00003118
Chandler Carruth87c44602011-07-01 23:49:12 +00003119 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00003120 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003121 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00003122 return;
3123 }
Mike Stumpbf916502009-07-24 19:02:52 +00003124
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003125 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00003126}
3127
Chandler Carruth1b03c872011-07-02 00:01:44 +00003128static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003129 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003130 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00003131 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003132
Mike Stumpbf916502009-07-24 19:02:52 +00003133
Chandler Carruth87c44602011-07-01 23:49:12 +00003134 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00003135 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003136 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00003137 return;
3138 }
Mike Stumpbf916502009-07-24 19:02:52 +00003139
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003140 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00003141}
3142
Chandler Carruth1b03c872011-07-02 00:01:44 +00003143static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
3144 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003145 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003146 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00003147 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003148
Chris Lattner7255a2d2010-06-22 00:03:40 +00003149
Chandler Carruth87c44602011-07-01 23:49:12 +00003150 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00003151 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003152 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003153 return;
3154 }
3155
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003156 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003157 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00003158}
3159
Chandler Carruth1b03c872011-07-02 00:01:44 +00003160static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003161 if (S.LangOpts.CUDA) {
3162 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00003163 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003164 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3165 return;
3166 }
3167
Chandler Carruth87c44602011-07-01 23:49:12 +00003168 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003169 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003170 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003171 return;
3172 }
3173
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003174 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003175 } else {
3176 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
3177 }
3178}
3179
Chandler Carruth1b03c872011-07-02 00:01:44 +00003180static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003181 if (S.LangOpts.CUDA) {
3182 // check the attribute arguments.
3183 if (Attr.getNumArgs() != 0) {
3184 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3185 return;
3186 }
3187
Chandler Carruth87c44602011-07-01 23:49:12 +00003188 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003189 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003190 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003191 return;
3192 }
3193
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003194 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003195 } else {
3196 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
3197 }
3198}
3199
Chandler Carruth1b03c872011-07-02 00:01:44 +00003200static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003201 if (S.LangOpts.CUDA) {
3202 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003203 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003204 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00003205
Chandler Carruth87c44602011-07-01 23:49:12 +00003206 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003207 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003208 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003209 return;
3210 }
3211
Chandler Carruth87c44602011-07-01 23:49:12 +00003212 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003213 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00003214 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00003215 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
3216 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3217 << FD->getType()
3218 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
3219 "void");
3220 } else {
3221 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
3222 << FD->getType();
3223 }
3224 return;
3225 }
3226
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003227 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003228 } else {
3229 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3230 }
3231}
3232
Chandler Carruth1b03c872011-07-02 00:01:44 +00003233static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003234 if (S.LangOpts.CUDA) {
3235 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003236 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003237 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003238
Peter Collingbourneced76712010-12-01 03:15:31 +00003239
Chandler Carruth87c44602011-07-01 23:49:12 +00003240 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003241 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003242 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003243 return;
3244 }
3245
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003246 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003247 } else {
3248 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3249 }
3250}
3251
Chandler Carruth1b03c872011-07-02 00:01:44 +00003252static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003253 if (S.LangOpts.CUDA) {
3254 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003255 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003256 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003257
Peter Collingbourneced76712010-12-01 03:15:31 +00003258
Chandler Carruth87c44602011-07-01 23:49:12 +00003259 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003260 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003261 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003262 return;
3263 }
3264
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003265 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003266 } else {
3267 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3268 }
3269}
3270
Chandler Carruth1b03c872011-07-02 00:01:44 +00003271static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003272 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003273 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003274 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003275
Chandler Carruth87c44602011-07-01 23:49:12 +00003276 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003277 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003278 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003279 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003280 return;
3281 }
Mike Stumpbf916502009-07-24 19:02:52 +00003282
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003283 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003284 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003285 return;
3286 }
Mike Stumpbf916502009-07-24 19:02:52 +00003287
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003288 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00003289}
3290
Chandler Carruth1b03c872011-07-02 00:01:44 +00003291static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003292 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003293
Chandler Carruth87c44602011-07-01 23:49:12 +00003294 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003295 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3296 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00003297 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00003298 return;
3299
Chandler Carruth87c44602011-07-01 23:49:12 +00003300 if (!isa<ObjCMethodDecl>(D)) {
3301 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3302 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003303 return;
3304 }
3305
Chandler Carruth87c44602011-07-01 23:49:12 +00003306 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00003307 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003308 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003309 return;
3310 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003311 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003312 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003313 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003314 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003315 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003316 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003317 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003318 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003319 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003320 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003321 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003322 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00003323 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003324 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003325 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003326 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003327 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003328 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003329 return;
3330 }
3331
Chris Lattner5f9e2722011-07-23 10:55:15 +00003332 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003333 PcsAttr::PCSType PCS;
3334 if (StrRef == "aapcs")
3335 PCS = PcsAttr::AAPCS;
3336 else if (StrRef == "aapcs-vfp")
3337 PCS = PcsAttr::AAPCS_VFP;
3338 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003339 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3340 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003341 return;
3342 }
3343
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003344 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003345 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003346 default:
3347 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003348 }
3349}
3350
Chandler Carruth1b03c872011-07-02 00:01:44 +00003351static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003352 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003353 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003354}
3355
John McCall711c52b2011-01-05 12:14:39 +00003356bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3357 if (attr.isInvalid())
3358 return true;
3359
Ted Kremenek831efae2011-04-15 05:49:29 +00003360 if ((attr.getNumArgs() != 0 &&
3361 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3362 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003363 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3364 attr.setInvalid();
3365 return true;
3366 }
3367
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003368 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3369 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003370 switch (attr.getKind()) {
3371 case AttributeList::AT_cdecl: CC = CC_C; break;
3372 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3373 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3374 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3375 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003376 case AttributeList::AT_pcs: {
3377 Expr *Arg = attr.getArg(0);
3378 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003379 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003380 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3381 << "pcs" << 1;
3382 attr.setInvalid();
3383 return true;
3384 }
3385
Chris Lattner5f9e2722011-07-23 10:55:15 +00003386 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003387 if (StrRef == "aapcs") {
3388 CC = CC_AAPCS;
3389 break;
3390 } else if (StrRef == "aapcs-vfp") {
3391 CC = CC_AAPCS_VFP;
3392 break;
3393 }
3394 // FALLS THROUGH
3395 }
David Blaikie7530c032012-01-17 06:56:22 +00003396 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003397 }
3398
3399 return false;
3400}
3401
Chandler Carruth1b03c872011-07-02 00:01:44 +00003402static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003403 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003404
3405 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003406 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003407 return;
3408
Chandler Carruth87c44602011-07-01 23:49:12 +00003409 if (!isa<ObjCMethodDecl>(D)) {
3410 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3411 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003412 return;
3413 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003414
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003415 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003416}
3417
3418/// Checks a regparm attribute, returning true if it is ill-formed and
3419/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003420bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3421 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003422 return true;
3423
Chandler Carruth87c44602011-07-01 23:49:12 +00003424 if (Attr.getNumArgs() != 1) {
3425 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3426 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003427 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003428 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003429
Chandler Carruth87c44602011-07-01 23:49:12 +00003430 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003431 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003432 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003433 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003434 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003435 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003436 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003437 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003438 }
3439
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003440 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003441 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003442 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003443 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003444 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003445 }
3446
John McCall711c52b2011-01-05 12:14:39 +00003447 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003448 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003449 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003450 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003451 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003452 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003453 }
3454
John McCall711c52b2011-01-05 12:14:39 +00003455 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003456}
3457
Chandler Carruth1b03c872011-07-02 00:01:44 +00003458static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003459 if (S.LangOpts.CUDA) {
3460 // check the attribute arguments.
3461 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003462 // FIXME: 0 is not okay.
3463 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003464 return;
3465 }
3466
Chandler Carruth87c44602011-07-01 23:49:12 +00003467 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003468 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003469 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003470 return;
3471 }
3472
3473 Expr *MaxThreadsExpr = Attr.getArg(0);
3474 llvm::APSInt MaxThreads(32);
3475 if (MaxThreadsExpr->isTypeDependent() ||
3476 MaxThreadsExpr->isValueDependent() ||
3477 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3478 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3479 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3480 return;
3481 }
3482
3483 llvm::APSInt MinBlocks(32);
3484 if (Attr.getNumArgs() > 1) {
3485 Expr *MinBlocksExpr = Attr.getArg(1);
3486 if (MinBlocksExpr->isTypeDependent() ||
3487 MinBlocksExpr->isValueDependent() ||
3488 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3489 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3490 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3491 return;
3492 }
3493 }
3494
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003495 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003496 MaxThreads.getZExtValue(),
3497 MinBlocks.getZExtValue()));
3498 } else {
3499 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3500 }
3501}
3502
Chris Lattner0744e5f2008-06-29 00:23:49 +00003503//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003504// Checker-specific attribute handlers.
3505//===----------------------------------------------------------------------===//
3506
John McCallc7ad3812011-01-25 03:31:58 +00003507static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003508 return type->isDependentType() ||
3509 type->isObjCObjectPointerType() ||
3510 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003511}
3512static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003513 return type->isDependentType() ||
3514 type->isPointerType() ||
3515 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003516}
3517
Chandler Carruth1b03c872011-07-02 00:01:44 +00003518static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003519 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003520 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003521 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003522 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003523 return;
3524 }
3525
3526 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003527 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003528 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3529 cf = false;
3530 } else {
3531 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3532 cf = true;
3533 }
3534
3535 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003536 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003537 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003538 return;
3539 }
3540
3541 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003542 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003543 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003544 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003545}
3546
Chandler Carruth1b03c872011-07-02 00:01:44 +00003547static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3548 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003549 if (!isa<ObjCMethodDecl>(D)) {
3550 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003551 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003552 return;
3553 }
3554
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003555 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003556}
3557
Chandler Carruth1b03c872011-07-02 00:01:44 +00003558static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3559 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003560
John McCallc7ad3812011-01-25 03:31:58 +00003561 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003562
Chandler Carruth87c44602011-07-01 23:49:12 +00003563 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003564 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003565 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003566 returnType = PD->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +00003567 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Chandler Carruth87c44602011-07-01 23:49:12 +00003568 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003569 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003570 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003571 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003572 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003573 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003574 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003575 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003576 return;
3577 }
Mike Stumpbf916502009-07-24 19:02:52 +00003578
John McCallc7ad3812011-01-25 03:31:58 +00003579 bool typeOK;
3580 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003581 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003582 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003583 case AttributeList::AT_ns_returns_autoreleased:
3584 case AttributeList::AT_ns_returns_retained:
3585 case AttributeList::AT_ns_returns_not_retained:
3586 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3587 cf = false;
3588 break;
3589
3590 case AttributeList::AT_cf_returns_retained:
3591 case AttributeList::AT_cf_returns_not_retained:
3592 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3593 cf = true;
3594 break;
3595 }
3596
3597 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003598 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003599 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003600 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003601 }
Mike Stumpbf916502009-07-24 19:02:52 +00003602
Chandler Carruth87c44602011-07-01 23:49:12 +00003603 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003604 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003605 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003606 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003607 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003608 S.Context));
3609 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003610 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003611 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003612 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003613 return;
3614 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003615 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003616 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003617 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003618 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003619 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003620 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003621 return;
3622 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003623 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003624 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003625 return;
3626 };
3627}
3628
John McCalldc7c5ad2011-07-22 08:53:00 +00003629static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3630 const AttributeList &attr) {
3631 SourceLocation loc = attr.getLoc();
3632
3633 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3634
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00003635 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00003636 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003637 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00003638 return;
3639 }
3640
3641 // Check that the method returns a normal pointer.
3642 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003643
3644 if (!resultType->isReferenceType() &&
3645 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003646 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3647 << SourceRange(loc)
3648 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3649
3650 // Drop the attribute.
3651 return;
3652 }
3653
3654 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003655 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003656}
3657
John McCall8dfac0b2011-09-30 05:12:12 +00003658/// Handle cf_audited_transfer and cf_unknown_transfer.
3659static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3660 if (!isa<FunctionDecl>(D)) {
3661 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003662 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00003663 return;
3664 }
3665
3666 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3667
3668 // Check whether there's a conflicting attribute already present.
3669 Attr *Existing;
3670 if (IsAudited) {
3671 Existing = D->getAttr<CFUnknownTransferAttr>();
3672 } else {
3673 Existing = D->getAttr<CFAuditedTransferAttr>();
3674 }
3675 if (Existing) {
3676 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3677 << A.getName()
3678 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3679 << A.getRange() << Existing->getRange();
3680 return;
3681 }
3682
3683 // All clear; add the attribute.
3684 if (IsAudited) {
3685 D->addAttr(
3686 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3687 } else {
3688 D->addAttr(
3689 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3690 }
3691}
3692
John McCallfe98da02011-09-29 07:17:38 +00003693static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3694 const AttributeList &Attr) {
3695 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3696 if (!RD || RD->isUnion()) {
3697 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003698 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00003699 }
3700
3701 IdentifierInfo *ParmName = Attr.getParameterName();
3702
3703 // In Objective-C, verify that the type names an Objective-C type.
3704 // We don't want to check this outside of ObjC because people sometimes
3705 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00003706 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00003707 // Check for an existing type with this name.
3708 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3709 Sema::LookupOrdinaryName);
3710 if (S.LookupName(R, Sc)) {
3711 NamedDecl *Target = R.getFoundDecl();
3712 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3713 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3714 S.Diag(Target->getLocStart(), diag::note_declared_at);
3715 }
3716 }
3717 }
3718
3719 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3720 ParmName));
3721}
3722
Chandler Carruth1b03c872011-07-02 00:01:44 +00003723static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3724 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003725 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003726
Chandler Carruth87c44602011-07-01 23:49:12 +00003727 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003728 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003729}
3730
Chandler Carruth1b03c872011-07-02 00:01:44 +00003731static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3732 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003733 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003734 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003735 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003736 return;
3737 }
3738
Chandler Carruth87c44602011-07-01 23:49:12 +00003739 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003740 QualType type = vd->getType();
3741
3742 if (!type->isDependentType() &&
3743 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003744 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003745 << type;
3746 return;
3747 }
3748
3749 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3750
3751 // If we have no lifetime yet, check the lifetime we're presumably
3752 // going to infer.
3753 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3754 lifetime = type->getObjCARCImplicitLifetime();
3755
3756 switch (lifetime) {
3757 case Qualifiers::OCL_None:
3758 assert(type->isDependentType() &&
3759 "didn't infer lifetime for non-dependent type?");
3760 break;
3761
3762 case Qualifiers::OCL_Weak: // meaningful
3763 case Qualifiers::OCL_Strong: // meaningful
3764 break;
3765
3766 case Qualifiers::OCL_ExplicitNone:
3767 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003768 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003769 << (lifetime == Qualifiers::OCL_Autoreleasing);
3770 break;
3771 }
3772
Chandler Carruth87c44602011-07-01 23:49:12 +00003773 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003774 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003775}
3776
Charles Davisf0122fe2010-02-16 18:27:26 +00003777static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
Aaron Ballman94287722012-02-23 22:46:33 +00003778 switch (Attr.getKind()) {
3779 default:
3780 return false;
3781 case AttributeList::AT_dllimport:
3782 case AttributeList::AT_dllexport:
3783 case AttributeList::AT_uuid:
3784 case AttributeList::AT_deprecated:
3785 case AttributeList::AT_noreturn:
3786 case AttributeList::AT_nothrow:
3787 case AttributeList::AT_naked:
3788 case AttributeList::AT_noinline:
3789 return true;
3790 }
Francois Pichet11542142010-12-19 06:50:37 +00003791}
3792
3793//===----------------------------------------------------------------------===//
3794// Microsoft specific attribute handlers.
3795//===----------------------------------------------------------------------===//
3796
Chandler Carruth1b03c872011-07-02 00:01:44 +00003797static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003798 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003799 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003800 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003801 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003802
Francois Pichet11542142010-12-19 06:50:37 +00003803 Expr *Arg = Attr.getArg(0);
3804 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003805 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003806 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3807 << "uuid" << 1;
3808 return;
3809 }
3810
Chris Lattner5f9e2722011-07-23 10:55:15 +00003811 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003812
3813 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3814 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003815
Francois Pichetd3d3be92010-12-20 01:41:49 +00003816 // Validate GUID length.
3817 if (IsCurly && StrRef.size() != 38) {
3818 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3819 return;
3820 }
3821 if (!IsCurly && StrRef.size() != 36) {
3822 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3823 return;
3824 }
3825
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003826 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00003827 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003828 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003829 if (IsCurly) // Skip the optional '{'
3830 ++I;
3831
3832 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003833 if (i == 8 || i == 13 || i == 18 || i == 23) {
3834 if (*I != '-') {
3835 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3836 return;
3837 }
3838 } else if (!isxdigit(*I)) {
3839 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3840 return;
3841 }
3842 I++;
3843 }
Francois Pichet11542142010-12-19 06:50:37 +00003844
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003845 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003846 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003847 } else
Francois Pichet11542142010-12-19 06:50:37 +00003848 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003849}
3850
John McCallc052dbb2012-05-22 21:28:12 +00003851static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3852 if (S.LangOpts.MicrosoftExt) {
3853 AttributeList::Kind Kind = Attr.getKind();
3854 if (Kind == AttributeList::AT_single_inheritance)
3855 D->addAttr(
3856 ::new (S.Context) SingleInheritanceAttr(Attr.getRange(), S.Context));
3857 else if (Kind == AttributeList::AT_multiple_inheritance)
3858 D->addAttr(
3859 ::new (S.Context) MultipleInheritanceAttr(Attr.getRange(), S.Context));
3860 else if (Kind == AttributeList::AT_virtual_inheritance)
3861 D->addAttr(
3862 ::new (S.Context) VirtualInheritanceAttr(Attr.getRange(), S.Context));
3863 } else
3864 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3865}
3866
3867static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
3868 if (S.LangOpts.MicrosoftExt) {
3869 AttributeList::Kind Kind = Attr.getKind();
3870 if (Kind == AttributeList::AT_ptr32)
3871 D->addAttr(
3872 ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context));
3873 else if (Kind == AttributeList::AT_ptr64)
3874 D->addAttr(
3875 ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context));
3876 else if (Kind == AttributeList::AT_w64)
3877 D->addAttr(
3878 ::new (S.Context) Win64Attr(Attr.getRange(), S.Context));
3879 } else
3880 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
3881}
3882
Ted Kremenekb71368d2009-05-09 02:44:38 +00003883//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003884// Top Level Sema Entry Points
3885//===----------------------------------------------------------------------===//
3886
Chandler Carruth1b03c872011-07-02 00:01:44 +00003887static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3888 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003889 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003890 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3891 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3892 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003893 default:
3894 break;
3895 }
3896}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003897
Chandler Carruth1b03c872011-07-02 00:01:44 +00003898static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3899 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003900 switch (Attr.getKind()) {
Michael Hane53ac8a2012-03-07 00:12:16 +00003901 case AttributeList::AT_ibaction: handleIBAction(S, D, Attr); break;
3902 case AttributeList::AT_iboutlet: handleIBOutlet(S, D, Attr); break;
3903 case AttributeList::AT_iboutletcollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003904 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003905 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003906 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003907 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003908 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003909 case AttributeList::AT_neon_vector_type:
3910 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003911 // Ignore these, these are type attributes, handled by
3912 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003913 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003914 case AttributeList::AT_device:
3915 case AttributeList::AT_host:
3916 case AttributeList::AT_overloadable:
3917 // Ignore, this is a non-inheritable attribute, handled
3918 // by ProcessNonInheritableDeclAttr.
3919 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003920 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3921 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Nuno Lopes587de5b2012-05-24 00:22:00 +00003922 case AttributeList::AT_alloc_size: handleAllocSizeAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003923 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003924 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003925 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003926 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3927 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3928 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003929 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003930 handleDependencyAttr (S, D, Attr); break;
3931 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3932 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3933 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00003934 case AttributeList::AT_deprecated:
3935 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated");
3936 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003937 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003938 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003939 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003940 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003941 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3942 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3943 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3944 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003945 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003946 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003947 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003948 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3949 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3950 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3951 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3952 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003953 case AttributeList::AT_ownership_returns:
3954 case AttributeList::AT_ownership_takes:
3955 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003956 handleOwnershipAttr (S, D, Attr); break;
Benjamin Krameree409a92012-05-12 21:10:52 +00003957 case AttributeList::AT_cold: handleColdAttr (S, D, Attr); break;
3958 case AttributeList::AT_hot: handleHotAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003959 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3960 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3961 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3962 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3963 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003964
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003965 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003966 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003967 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003968 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003969
John McCalldc7c5ad2011-07-22 08:53:00 +00003970 case AttributeList::AT_objc_returns_inner_pointer:
3971 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3972
John McCallfe98da02011-09-29 07:17:38 +00003973 case AttributeList::AT_ns_bridged:
3974 handleNSBridgedAttr(S, scope, D, Attr); break;
3975
John McCall8dfac0b2011-09-30 05:12:12 +00003976 case AttributeList::AT_cf_audited_transfer:
3977 case AttributeList::AT_cf_unknown_transfer:
3978 handleCFTransferAttr(S, D, Attr); break;
3979
Ted Kremenekb71368d2009-05-09 02:44:38 +00003980 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003981 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003982 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003983 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003984 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003985
3986 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003987 case AttributeList::AT_ns_returns_not_retained:
3988 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003989 case AttributeList::AT_ns_returns_retained:
3990 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003991 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003992
Michael Hane53ac8a2012-03-07 00:12:16 +00003993 case AttributeList::AT_reqd_work_group_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003994 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003995
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003996 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003997 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003998
Chandler Carruth1b03c872011-07-02 00:01:44 +00003999 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00004000 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
Benjamin Kramerbc3260d2012-05-16 12:19:08 +00004001 case AttributeList::AT_unavailable:
4002 handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable");
4003 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00004004 case AttributeList::AT_objc_arc_weak_reference_unavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00004005 handleArcWeakrefUnavailableAttr (S, D, Attr);
4006 break;
Patrick Beardb2f68202012-04-06 18:12:22 +00004007 case AttributeList::AT_objc_root_class:
4008 handleObjCRootClassAttr(S, D, Attr);
4009 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00004010 case AttributeList::AT_objc_requires_property_definitions:
4011 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00004012 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00004013 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00004014 case AttributeList::AT_returns_twice:
4015 handleReturnsTwiceAttr(S, D, Attr);
4016 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00004017 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
4018 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
4019 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00004020 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00004021 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
4022 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
4023 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00004024 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004025 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00004026 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00004027 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004028 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00004029 break;
John McCalld5313b02011-03-02 11:33:24 +00004030 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004031 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00004032 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00004033 case AttributeList::AT_NSObject: handleObjCNSObject (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00004034 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
4035 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
4036 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
4037 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
4038 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
4039 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
4040 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
4041 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00004042 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00004043 // Just ignore
4044 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00004045 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00004046 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00004047 break;
John McCall04a67a62010-02-05 21:31:56 +00004048 case AttributeList::AT_stdcall:
4049 case AttributeList::AT_cdecl:
4050 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00004051 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00004052 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00004053 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004054 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00004055 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00004056 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004057 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00004058 break;
John McCallc052dbb2012-05-22 21:28:12 +00004059
4060 // Microsoft attributes:
4061 case AttributeList::AT_ms_struct:
4062 handleMsStructAttr(S, D, Attr);
4063 break;
Francois Pichet11542142010-12-19 06:50:37 +00004064 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00004065 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00004066 break;
John McCallc052dbb2012-05-22 21:28:12 +00004067 case AttributeList::AT_single_inheritance:
4068 case AttributeList::AT_multiple_inheritance:
4069 case AttributeList::AT_virtual_inheritance:
4070 handleInheritanceAttr(S, D, Attr);
4071 break;
4072 case AttributeList::AT_w64:
4073 case AttributeList::AT_ptr32:
4074 case AttributeList::AT_ptr64:
4075 handlePortabilityAttr(S, D, Attr);
4076 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004077
4078 // Thread safety attributes:
4079 case AttributeList::AT_guarded_var:
4080 handleGuardedVarAttr(S, D, Attr);
4081 break;
4082 case AttributeList::AT_pt_guarded_var:
4083 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
4084 break;
4085 case AttributeList::AT_scoped_lockable:
4086 handleLockableAttr(S, D, Attr, /*scoped = */true);
4087 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00004088 case AttributeList::AT_no_address_safety_analysis:
4089 handleNoAddressSafetyAttr(S, D, Attr);
4090 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004091 case AttributeList::AT_no_thread_safety_analysis:
4092 handleNoThreadSafetyAttr(S, D, Attr);
4093 break;
4094 case AttributeList::AT_lockable:
4095 handleLockableAttr(S, D, Attr);
4096 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00004097 case AttributeList::AT_guarded_by:
4098 handleGuardedByAttr(S, D, Attr);
4099 break;
4100 case AttributeList::AT_pt_guarded_by:
4101 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
4102 break;
4103 case AttributeList::AT_exclusive_lock_function:
4104 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
4105 break;
4106 case AttributeList::AT_exclusive_locks_required:
4107 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
4108 break;
4109 case AttributeList::AT_exclusive_trylock_function:
4110 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
4111 break;
4112 case AttributeList::AT_lock_returned:
4113 handleLockReturnedAttr(S, D, Attr);
4114 break;
4115 case AttributeList::AT_locks_excluded:
4116 handleLocksExcludedAttr(S, D, Attr);
4117 break;
4118 case AttributeList::AT_shared_lock_function:
4119 handleLockFunAttr(S, D, Attr);
4120 break;
4121 case AttributeList::AT_shared_locks_required:
4122 handleLocksRequiredAttr(S, D, Attr);
4123 break;
4124 case AttributeList::AT_shared_trylock_function:
4125 handleTrylockFunAttr(S, D, Attr);
4126 break;
4127 case AttributeList::AT_unlock_function:
4128 handleUnlockFunAttr(S, D, Attr);
4129 break;
4130 case AttributeList::AT_acquired_before:
4131 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
4132 break;
4133 case AttributeList::AT_acquired_after:
4134 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
4135 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00004136
Chris Lattner803d0802008-06-29 00:43:07 +00004137 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00004138 // Ask target about the attribute.
4139 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
4140 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00004141 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
4142 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00004143 break;
4144 }
4145}
4146
Peter Collingbourne60700392011-01-21 02:08:45 +00004147/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
4148/// the attribute applies to decls. If the attribute is a type attribute, just
4149/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
4150/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00004151static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
4152 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00004153 bool NonInheritable, bool Inheritable) {
4154 if (Attr.isInvalid())
4155 return;
4156
4157 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
4158 // FIXME: Try to deal with other __declspec attributes!
4159 return;
4160
4161 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004162 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004163
4164 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00004165 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00004166}
4167
Chris Lattner803d0802008-06-29 00:43:07 +00004168/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
4169/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00004170void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00004171 const AttributeList *AttrList,
4172 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004173 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00004174 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola9b79fc92012-05-07 23:58:18 +00004175 }
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004176
4177 // GCC accepts
4178 // static int a9 __attribute__((weakref));
4179 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00004180 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004181 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00004182 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00004183 return;
Chris Lattner803d0802008-06-29 00:43:07 +00004184 }
4185}
4186
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00004187// Annotation attributes are the only attributes allowed after an access
4188// specifier.
4189bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
4190 const AttributeList *AttrList) {
4191 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
4192 if (l->getKind() == AttributeList::AT_annotate) {
4193 handleAnnotateAttr(*this, ASDecl, *l);
4194 } else {
4195 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
4196 return true;
4197 }
4198 }
4199
4200 return false;
4201}
4202
John McCalle82247a2011-10-01 05:17:03 +00004203/// checkUnusedDeclAttributes - Check a list of attributes to see if it
4204/// contains any decl attributes that we should warn about.
4205static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
4206 for ( ; A; A = A->getNext()) {
4207 // Only warn if the attribute is an unignored, non-type attribute.
4208 if (A->isUsedAsTypeAttr()) continue;
4209 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
4210
4211 if (A->getKind() == AttributeList::UnknownAttribute) {
4212 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
4213 << A->getName() << A->getRange();
4214 } else {
4215 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
4216 << A->getName() << A->getRange();
4217 }
4218 }
4219}
4220
4221/// checkUnusedDeclAttributes - Given a declarator which is not being
4222/// used to build a declaration, complain about any decl attributes
4223/// which might be lying around on it.
4224void Sema::checkUnusedDeclAttributes(Declarator &D) {
4225 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
4226 ::checkUnusedDeclAttributes(*this, D.getAttributes());
4227 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
4228 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
4229}
4230
Ryan Flynne25ff832009-07-30 03:15:39 +00004231/// DeclClonePragmaWeak - clone existing decl (maybe definition),
4232/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00004233NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
4234 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004235 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00004236 NamedDecl *NewD = 0;
4237 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00004238 FunctionDecl *NewFD;
4239 // FIXME: Missing call to CheckFunctionDeclaration().
4240 // FIXME: Mangling?
4241 // FIXME: Is the qualifier info correct?
4242 // FIXME: Is the DeclContext correct?
4243 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
4244 Loc, Loc, DeclarationName(II),
4245 FD->getType(), FD->getTypeSourceInfo(),
4246 SC_None, SC_None,
4247 false/*isInlineSpecified*/,
4248 FD->hasPrototype(),
4249 false/*isConstexprSpecified*/);
4250 NewD = NewFD;
4251
4252 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004253 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00004254
4255 // Fake up parameter variables; they are declared as if this were
4256 // a typedef.
4257 QualType FDTy = FD->getType();
4258 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
4259 SmallVector<ParmVarDecl*, 16> Params;
4260 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
4261 AE = FT->arg_type_end(); AI != AE; ++AI) {
4262 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
4263 Param->setScopeInfo(0, Params.size());
4264 Params.push_back(Param);
4265 }
David Blaikie4278c652011-09-21 18:16:56 +00004266 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00004267 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004268 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
4269 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00004270 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00004271 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00004272 VD->getStorageClass(),
4273 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00004274 if (VD->getQualifier()) {
4275 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004276 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00004277 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004278 }
4279 return NewD;
4280}
4281
4282/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
4283/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004284void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004285 if (W.getUsed()) return; // only do this once
4286 W.setUsed(true);
4287 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4288 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004289 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004290 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4291 NDId->getName()));
4292 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004293 WeakTopLevelDecl.push_back(NewD);
4294 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4295 // to insert Decl at TU scope, sorry.
4296 DeclContext *SavedContext = CurContext;
4297 CurContext = Context.getTranslationUnitDecl();
4298 PushOnScopeChains(NewD, S);
4299 CurContext = SavedContext;
4300 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00004301 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00004302 }
4303}
4304
Chris Lattner0744e5f2008-06-29 00:23:49 +00004305/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
4306/// it, apply them to D. This is a bit tricky because PD can have attributes
4307/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00004308void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
4309 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00004310 // It's valid to "forward-declare" #pragma weak, in which case we
4311 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00004312 if (Inheritable) {
4313 LoadExternalWeakUndeclaredIdentifiers();
4314 if (!WeakUndeclaredIdentifiers.empty()) {
4315 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
4316 if (IdentifierInfo *Id = ND->getIdentifier()) {
4317 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
4318 = WeakUndeclaredIdentifiers.find(Id);
4319 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
4320 WeakInfo W = I->second;
4321 DeclApplyPragmaWeak(S, ND, W);
4322 WeakUndeclaredIdentifiers[Id] = W;
4323 }
John McCalld4aff0e2010-10-27 00:59:00 +00004324 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004325 }
4326 }
4327 }
4328
Chris Lattner0744e5f2008-06-29 00:23:49 +00004329 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00004330 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00004331 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004332
Chris Lattner0744e5f2008-06-29 00:23:49 +00004333 // Walk the declarator structure, applying decl attributes that were in a type
4334 // position to the decl itself. This handles cases like:
4335 // int *__attr__(x)** D;
4336 // when X is a decl attribute.
4337 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
4338 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00004339 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004340
Chris Lattner0744e5f2008-06-29 00:23:49 +00004341 // Finally, apply any attributes on the decl itself.
4342 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00004343 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00004344}
John McCall54abf7d2009-11-04 02:18:39 +00004345
John McCallf85e1932011-06-15 23:02:42 +00004346/// Is the given declaration allowed to use a forbidden type?
4347static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4348 // Private ivars are always okay. Unfortunately, people don't
4349 // always properly make their ivars private, even in system headers.
4350 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00004351 // Function declarations in sys headers will be marked unavailable.
4352 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4353 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00004354 return false;
4355
4356 // Require it to be declared in a system header.
4357 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4358}
4359
4360/// Handle a delayed forbidden-type diagnostic.
4361static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4362 Decl *decl) {
4363 if (decl && isForbiddenTypeAllowed(S, decl)) {
4364 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4365 "this system declaration uses an unsupported type"));
4366 return;
4367 }
David Blaikie4e4d0842012-03-11 07:00:24 +00004368 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00004369 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4370 // FIXME. we may want to supress diagnostics for all
4371 // kind of forbidden type messages on unavailable functions.
4372 if (FD->hasAttr<UnavailableAttr>() &&
4373 diag.getForbiddenTypeDiagnostic() ==
4374 diag::err_arc_array_param_no_ownership) {
4375 diag.Triggered = true;
4376 return;
4377 }
4378 }
John McCallf85e1932011-06-15 23:02:42 +00004379
4380 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4381 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4382 diag.Triggered = true;
4383}
4384
John McCall92576642012-05-07 06:16:41 +00004385void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
4386 assert(DelayedDiagnostics.getCurrentPool());
John McCall13489672012-05-07 06:16:58 +00004387 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
John McCall92576642012-05-07 06:16:41 +00004388 DelayedDiagnostics.popWithoutEmitting(state);
John McCalleee1d542011-02-14 07:13:47 +00004389
John McCall92576642012-05-07 06:16:41 +00004390 // When delaying diagnostics to run in the context of a parsed
4391 // declaration, we only want to actually emit anything if parsing
4392 // succeeds.
4393 if (!decl) return;
John McCalleee1d542011-02-14 07:13:47 +00004394
John McCall92576642012-05-07 06:16:41 +00004395 // We emit all the active diagnostics in this pool or any of its
4396 // parents. In general, we'll get one pool for the decl spec
4397 // and a child pool for each declarator; in a decl group like:
4398 // deprecated_typedef foo, *bar, baz();
4399 // only the declarator pops will be passed decls. This is correct;
4400 // we really do need to consider delayed diagnostics from the decl spec
4401 // for each of the different declarations.
John McCall13489672012-05-07 06:16:58 +00004402 const DelayedDiagnosticPool *pool = &poppedPool;
John McCall92576642012-05-07 06:16:41 +00004403 do {
John McCall13489672012-05-07 06:16:58 +00004404 for (DelayedDiagnosticPool::pool_iterator
John McCall92576642012-05-07 06:16:41 +00004405 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
4406 // This const_cast is a bit lame. Really, Triggered should be mutable.
4407 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
John McCalleee1d542011-02-14 07:13:47 +00004408 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004409 continue;
4410
John McCalleee1d542011-02-14 07:13:47 +00004411 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004412 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00004413 // Don't bother giving deprecation diagnostics if the decl is invalid.
4414 if (!decl->isInvalidDecl())
John McCall92576642012-05-07 06:16:41 +00004415 HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004416 break;
4417
4418 case DelayedDiagnostic::Access:
John McCall92576642012-05-07 06:16:41 +00004419 HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004420 break;
John McCallf85e1932011-06-15 23:02:42 +00004421
4422 case DelayedDiagnostic::ForbiddenType:
John McCall92576642012-05-07 06:16:41 +00004423 handleDelayedForbiddenType(*this, diag, decl);
John McCallf85e1932011-06-15 23:02:42 +00004424 break;
John McCall2f514482010-01-27 03:50:35 +00004425 }
4426 }
John McCall92576642012-05-07 06:16:41 +00004427 } while ((pool = pool->getParent()));
John McCall54abf7d2009-11-04 02:18:39 +00004428}
4429
John McCall13489672012-05-07 06:16:58 +00004430/// Given a set of delayed diagnostics, re-emit them as if they had
4431/// been delayed in the current context instead of in the given pool.
4432/// Essentially, this just moves them to the current pool.
4433void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
4434 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
4435 assert(curPool && "re-emitting in undelayed context not supported");
4436 curPool->steal(pool);
4437}
4438
John McCall54abf7d2009-11-04 02:18:39 +00004439static bool isDeclDeprecated(Decl *D) {
4440 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004441 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004442 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004443 // A category implicitly has the availability of the interface.
4444 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4445 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004446 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4447 return false;
4448}
4449
John McCall9c3087b2010-08-26 02:13:20 +00004450void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004451 Decl *Ctx) {
4452 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004453 return;
4454
John McCall2f514482010-01-27 03:50:35 +00004455 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004456 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004457 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004458 << DD.getDeprecationDecl()->getDeclName()
4459 << DD.getDeprecationMessage();
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004460 else if (DD.getUnknownObjCClass()) {
4461 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4462 << DD.getDeprecationDecl()->getDeclName();
4463 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4464 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004465 else
4466 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004467 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004468}
4469
Chris Lattner5f9e2722011-07-23 10:55:15 +00004470void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004471 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004472 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004473 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004474 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004475 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4476 UnknownObjCClass,
4477 Message));
John McCall54abf7d2009-11-04 02:18:39 +00004478 return;
4479 }
4480
4481 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004482 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004483 return;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004484 if (!Message.empty()) {
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004485 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4486 << Message;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004487 Diag(D->getLocation(),
4488 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
4489 : diag::note_previous_decl) << D->getDeclName();
4490 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004491 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004492 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004493 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004494 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004495 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004496 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4497 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004498 }
John McCall54abf7d2009-11-04 02:18:39 +00004499}