blob: 3706bb8c8c96962bfa845375b86adf053aec6a4d [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"
John McCall384aff82010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000018#include "clang/AST/DeclTemplate.h"
Daniel Dunbaracc5f3e2008-08-11 06:23:49 +000019#include "clang/AST/DeclObjC.h"
20#include "clang/AST/Expr.h"
John McCallf85e1932011-06-15 23:02:42 +000021#include "clang/Basic/SourceManager.h"
Chris Lattnerfbf13472008-06-27 22:18:37 +000022#include "clang/Basic/TargetInfo.h"
John McCall19510852010-08-20 18:27:03 +000023#include "clang/Sema/DeclSpec.h"
John McCall9c3087b2010-08-26 02:13:20 +000024#include "clang/Sema/DelayedDiagnostic.h"
John McCallfe98da02011-09-29 07:17:38 +000025#include "clang/Sema/Lookup.h"
Chris Lattner797c3c42009-08-10 19:03:04 +000026#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000027using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000028using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000029
John McCall883cc2c2011-03-02 12:29:23 +000030/// These constants match the enumerated choices of
31/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000032enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000033 ExpectedFunction,
34 ExpectedUnion,
35 ExpectedVariableOrFunction,
36 ExpectedFunctionOrMethod,
37 ExpectedParameter,
John McCall883cc2c2011-03-02 12:29:23 +000038 ExpectedFunctionMethodOrBlock,
John McCall883cc2c2011-03-02 12:29:23 +000039 ExpectedFunctionMethodOrParameter,
40 ExpectedClass,
John McCall883cc2c2011-03-02 12:29:23 +000041 ExpectedVariable,
42 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000043 ExpectedVariableFunctionOrLabel,
Douglas Gregorf6b8b582012-03-14 16:55:17 +000044 ExpectedFieldOrGlobalVar,
45 ExpectedStruct
John McCall883cc2c2011-03-02 12:29:23 +000046};
47
Chris Lattnere5c5ee12008-06-29 00:16:31 +000048//===----------------------------------------------------------------------===//
49// Helper functions
50//===----------------------------------------------------------------------===//
51
Chandler Carruth87c44602011-07-01 23:49:12 +000052static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000053 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000054 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000055 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000056 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000057 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000058 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000059 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000060 Ty = decl->getUnderlyingType();
61 else
62 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000063
Chris Lattner6b6b5372008-06-26 18:38:35 +000064 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000065 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000066 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000067 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000068
John McCall183700f2009-09-21 23:43:11 +000069 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000070}
71
Daniel Dunbar35682492008-09-26 04:12:28 +000072// FIXME: We should provide an abstraction around a method or function
73// to provide the following bits of information.
74
Nuno Lopesd20254f2009-12-20 23:11:08 +000075/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000076/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000077static bool isFunction(const Decl *D) {
78 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000079}
80
81/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000082/// type (function or function-typed variable) or an Objective-C
83/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000084static bool isFunctionOrMethod(const Decl *D) {
85 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000086}
87
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000088/// isFunctionOrMethodOrBlock - Return true if the given decl has function
89/// type (function or function-typed variable) or an Objective-C
90/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000091static bool isFunctionOrMethodOrBlock(const Decl *D) {
92 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000093 return true;
94 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +000095 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000096 QualType Ty = V->getType();
97 return Ty->isBlockPointerType();
98 }
Chandler Carruth87c44602011-07-01 23:49:12 +000099 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000100}
101
John McCall711c52b2011-01-05 12:14:39 +0000102/// Return true if the given decl has a declarator that should have
103/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000104static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000105 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000106 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
107 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000108}
109
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000110/// hasFunctionProto - Return true if the given decl has a argument
111/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000112/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000113static bool hasFunctionProto(const Decl *D) {
114 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000115 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000116 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000117 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000118 return true;
119 }
120}
121
122/// getFunctionOrMethodNumArgs - Return number of function or method
123/// arguments. It is an error to call this on a K&R function (use
124/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000125static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
126 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000127 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000128 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000129 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000130 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000131}
132
Chandler Carruth87c44602011-07-01 23:49:12 +0000133static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
134 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000135 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000136 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000137 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000138
Chandler Carruth87c44602011-07-01 23:49:12 +0000139 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000140}
141
Chandler Carruth87c44602011-07-01 23:49:12 +0000142static QualType getFunctionOrMethodResultType(const Decl *D) {
143 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000144 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000145 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000146}
147
Chandler Carruth87c44602011-07-01 23:49:12 +0000148static bool isFunctionOrMethodVariadic(const Decl *D) {
149 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000150 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000151 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000152 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000153 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000154 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000155 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000156 }
157}
158
Chandler Carruth87c44602011-07-01 23:49:12 +0000159static bool isInstanceMethod(const Decl *D) {
160 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000161 return MethodDecl->isInstance();
162 return false;
163}
164
Chris Lattner6b6b5372008-06-26 18:38:35 +0000165static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000166 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000167 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000168 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000169
John McCall506b57e2010-05-17 21:00:27 +0000170 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
171 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000172 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000173
John McCall506b57e2010-05-17 21:00:27 +0000174 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000175
Chris Lattner6b6b5372008-06-26 18:38:35 +0000176 // FIXME: Should we walk the chain of classes?
177 return ClsName == &Ctx.Idents.get("NSString") ||
178 ClsName == &Ctx.Idents.get("NSMutableString");
179}
180
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000181static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000182 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000183 if (!PT)
184 return false;
185
Ted Kremenek6217b802009-07-29 21:53:49 +0000186 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000187 if (!RT)
188 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000189
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000190 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000191 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192 return false;
193
194 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
195}
196
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000197/// \brief Check if the attribute has exactly as many args as Num. May
198/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000199static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
200 unsigned int Num) {
201 if (Attr.getNumArgs() != Num) {
202 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
203 return false;
204 }
205
206 return true;
207}
208
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000209
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000210/// \brief Check if the attribute has at least as many args as Num. May
211/// output an error.
212static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
213 unsigned int Num) {
214 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000215 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
216 return false;
217 }
218
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000219 return true;
220}
221
222///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000223/// \brief Check if passed in Decl is a field or potentially shared global var
224/// \return true if the Decl is a field or potentially shared global variable
225///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000226static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000227 if (isa<FieldDecl>(D))
228 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000229 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000230 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
231
232 return false;
233}
234
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000235/// \brief Check if the passed-in expression is of type int or bool.
236static bool isIntOrBool(Expr *Exp) {
237 QualType QT = Exp->getType();
238 return QT->isBooleanType() || QT->isIntegerType();
239}
240
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000241
242// Check to see if the type is a smart pointer of some kind. We assume
243// it's a smart pointer if it defines both operator-> and operator*.
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000244static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
245 DeclContextLookupConstResult Res1 = RT->getDecl()->lookup(
246 S.Context.DeclarationNames.getCXXOperatorName(OO_Star));
247 if (Res1.first == Res1.second)
248 return false;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000249
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000250 DeclContextLookupConstResult Res2 = RT->getDecl()->lookup(
251 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow));
252 if (Res2.first == Res2.second)
253 return false;
254
255 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000256}
257
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000258/// \brief Check if passed in Decl is a pointer type.
259/// Note that this function may produce an error message.
260/// \return true if the Decl is a pointer type; false otherwise
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000261static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
262 const AttributeList &Attr) {
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000263 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000264 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000265 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000266 return true;
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000267
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000268 if (const RecordType *RT = QT->getAs<RecordType>()) {
269 // If it's an incomplete type, it could be a smart pointer; skip it.
270 // (We don't want to force template instantiation if we can avoid it,
271 // since that would alter the order in which templates are instantiated.)
272 if (RT->isIncompleteType())
273 return true;
274
275 if (threadSafetyCheckIsSmartPointer(S, RT))
276 return true;
277 }
DeLesley Hutchinsaed9ea32012-04-23 18:39:55 +0000278
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000279 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000280 << Attr.getName()->getName() << QT;
281 } else {
282 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
283 << Attr.getName();
284 }
285 return false;
286}
287
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000288/// \brief Checks that the passed in QualType either is of RecordType or points
289/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000290static const RecordType *getRecordType(QualType QT) {
291 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000292 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000293
294 // Now check if we point to record type.
295 if (const PointerType *PT = QT->getAs<PointerType>())
296 return PT->getPointeeType()->getAs<RecordType>();
297
298 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000299}
300
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000301/// \brief Thread Safety Analysis: Checks that the passed in RecordType
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000302/// resolves to a lockable object.
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000303static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
304 QualType Ty) {
305 const RecordType *RT = getRecordType(Ty);
306
307 // Warn if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000308 if (!RT) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000309 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000310 << Attr.getName() << Ty.getAsString();
311 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000312 }
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000313
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000314 // Don't check for lockable if the class hasn't been defined yet.
315 if (RT->isIncompleteType())
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000316 return;
DeLesley Hutchins60f20242012-05-02 22:18:42 +0000317
318 // Allow smart pointers to be used as lockable objects.
319 // FIXME -- Check the type that the smart pointer points to.
320 if (threadSafetyCheckIsSmartPointer(S, RT))
321 return;
322
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000323 // Warn if the type is not lockable.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000324 if (!RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000325 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000326 << Attr.getName() << Ty.getAsString();
327 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000328 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000329}
330
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000331/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000332/// from Sidx, resolve to a lockable object.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000333/// \param Sidx The attribute argument index to start checking with.
334/// \param ParamIdxOk Whether an argument can be indexing into a function
335/// parameter list.
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000336static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000337 const AttributeList &Attr,
338 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000339 int Sidx = 0,
340 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000341 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000342 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000343
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000344 if (ArgExp->isTypeDependent()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000345 // FIXME -- need to check this again on template instantiation
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000346 Args.push_back(ArgExp);
347 continue;
348 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000349
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000350 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
351 // Ignore empty strings without warnings
352 if (StrLit->getLength() == 0)
353 continue;
354
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000355 // We allow constant strings to be used as a placeholder for expressions
356 // that are not valid C++ syntax, but warn that they are ignored.
357 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) <<
358 Attr.getName();
359 continue;
360 }
361
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000362 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000363
DeLesley Hutchins79747e02012-04-23 16:45:01 +0000364 // A pointer to member expression of the form &MyClass::mu is treated
365 // specially -- we need to look at the type of the member.
366 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp))
367 if (UOp->getOpcode() == UO_AddrOf)
368 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
369 if (DRE->getDecl()->isCXXInstanceMember())
370 ArgTy = DRE->getDecl()->getType();
371
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000372 // First see if we can just cast to record type, or point to record type.
373 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000374
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000375 // Now check if we index into a record type function param.
376 if(!RT && ParamIdxOk) {
377 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000378 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
379 if(FD && IL) {
380 unsigned int NumParams = FD->getNumParams();
381 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000382 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
383 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
384 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000385 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
386 << Attr.getName() << Idx + 1 << NumParams;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000387 continue;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000388 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000389 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000390 }
391 }
392
DeLesley Hutchins83cad452012-04-06 20:02:30 +0000393 checkForLockableRecord(S, D, Attr, ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000394
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000395 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000396 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000397}
398
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000399//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000400// Attribute Implementations
401//===----------------------------------------------------------------------===//
402
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000403// FIXME: All this manual attribute parsing code is gross. At the
404// least add some helper functions to check most argument patterns (#
405// and types of args).
406
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000407static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
408 bool pointer = false) {
409 assert(!Attr.isInvalid());
410
411 if (!checkAttributeNumArgs(S, Attr, 0))
412 return;
413
414 // D must be either a member field or global (potentially shared) variable.
415 if (!mayBeSharedVariable(D)) {
416 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000417 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000418 return;
419 }
420
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000421 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000422 return;
423
424 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000425 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000426 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000427 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000428}
429
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000430static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000431 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000432 assert(!Attr.isInvalid());
433
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000434 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000435 return;
436
437 // D must be either a member field or global (potentially shared) variable.
438 if (!mayBeSharedVariable(D)) {
439 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000440 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000441 return;
442 }
443
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000444 if (pointer && !threadSafetyCheckIsPointer(S, D, Attr))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000445 return;
446
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000447 SmallVector<Expr*, 1> Args;
448 // check that all arguments are lockable objects
449 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
450 unsigned Size = Args.size();
451 if (Size != 1)
452 return;
453 Expr *Arg = Args[0];
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000454
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000455 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000456 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000457 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000458 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000459 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000460}
461
462
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000463static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
464 bool scoped = false) {
465 assert(!Attr.isInvalid());
466
467 if (!checkAttributeNumArgs(S, Attr, 0))
468 return;
469
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000470 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000471 if (!isa<CXXRecordDecl>(D)) {
472 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
473 << Attr.getName() << ExpectedClass;
474 return;
475 }
476
477 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000478 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000479 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000480 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000481}
482
483static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
484 const AttributeList &Attr) {
485 assert(!Attr.isInvalid());
486
487 if (!checkAttributeNumArgs(S, Attr, 0))
488 return;
489
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000490 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000491 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
492 << Attr.getName() << ExpectedFunctionOrMethod;
493 return;
494 }
495
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000496 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000497 S.Context));
498}
499
Kostya Serebryany71efba02012-01-24 19:25:38 +0000500static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000501 const AttributeList &Attr) {
Kostya Serebryany71efba02012-01-24 19:25:38 +0000502 assert(!Attr.isInvalid());
503
504 if (!checkAttributeNumArgs(S, Attr, 0))
505 return;
506
507 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
508 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
509 << Attr.getName() << ExpectedFunctionOrMethod;
510 return;
511 }
512
513 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
514 S.Context));
515}
516
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000517static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
518 bool before) {
519 assert(!Attr.isInvalid());
520
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000521 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000522 return;
523
524 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000525 ValueDecl *VD = dyn_cast<ValueDecl>(D);
526 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000527 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000528 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000529 return;
530 }
531
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000532 // Check that this attribute only applies to lockable types.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000533 QualType QT = VD->getType();
534 if (!QT->isDependentType()) {
535 const RecordType *RT = getRecordType(QT);
536 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000537 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000538 << Attr.getName();
539 return;
540 }
541 }
542
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000543 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000544 // Check that all arguments are lockable objects.
545 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000546 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000547 if (Size == 0)
548 return;
549 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000550
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000551 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000552 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000553 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000554 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000555 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000556 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000557}
558
559static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000560 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000561 assert(!Attr.isInvalid());
562
563 // zero or more arguments ok
564
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000565 // check that the attribute is applied to a function
566 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000567 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
568 << Attr.getName() << ExpectedFunctionOrMethod;
569 return;
570 }
571
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000572 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000573 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000574 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000575 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000576 Expr **StartArg = Size == 0 ? 0 : &Args[0];
577
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000578 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000579 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000580 S.Context, StartArg,
581 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000582 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000583 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000584 S.Context, StartArg,
585 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000586}
587
588static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000589 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000590 assert(!Attr.isInvalid());
591
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000592 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000593 return;
594
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000595 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000596 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
597 << Attr.getName() << ExpectedFunctionOrMethod;
598 return;
599 }
600
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000601 if (!isIntOrBool(Attr.getArg(0))) {
602 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
603 << Attr.getName();
604 return;
605 }
606
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000607 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000608 // check that all arguments are lockable objects
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000609 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000610 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000611 Expr **StartArg = Size == 0 ? 0 : &Args[0];
612
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000613 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000614 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000615 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000616 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000617 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000618 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000619 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000620 S.Context,
621 Attr.getArg(0),
622 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000623}
624
625static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000626 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000627 assert(!Attr.isInvalid());
628
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000629 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000630 return;
631
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000632 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000633 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
634 << Attr.getName() << ExpectedFunctionOrMethod;
635 return;
636 }
637
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000638 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000639 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000640 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000641 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000642 if (Size == 0)
643 return;
644 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000645
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000646 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000647 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000648 S.Context, StartArg,
649 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000650 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000651 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000652 S.Context, StartArg,
653 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000654}
655
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000656static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000658 assert(!Attr.isInvalid());
659
660 // zero or more arguments ok
661
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000662 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000663 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
664 << Attr.getName() << ExpectedFunctionOrMethod;
665 return;
666 }
667
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000668 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000669 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000670 checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000671 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000672 Expr **StartArg = Size == 0 ? 0 : &Args[0];
673
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000674 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000675 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000676}
677
678static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000679 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000680 assert(!Attr.isInvalid());
681
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000682 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000683 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000684 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000685
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000686 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000687 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
688 << Attr.getName() << ExpectedFunctionOrMethod;
689 return;
690 }
691
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000692 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000693 return;
694
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000695 // check that the argument is lockable object
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000696 SmallVector<Expr*, 1> Args;
697 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
698 unsigned Size = Args.size();
699 if (Size == 0)
700 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000701
DeLesley Hutchinsf26efd72012-05-02 17:38:37 +0000702 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context,
703 Args[0]));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000704}
705
706static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000707 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000708 assert(!Attr.isInvalid());
709
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000710 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000711 return;
712
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000713 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000714 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
715 << Attr.getName() << ExpectedFunctionOrMethod;
716 return;
717 }
718
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000719 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000720 SmallVector<Expr*, 1> Args;
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000721 checkAttrArgsAreLockableObjs(S, D, Attr, Args);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000722 unsigned Size = Args.size();
DeLesley Hutchinsae519c42012-04-19 16:10:44 +0000723 if (Size == 0)
724 return;
725 Expr **StartArg = &Args[0];
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000726
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000727 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000728 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000729}
730
731
Chandler Carruth1b03c872011-07-02 00:01:44 +0000732static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
733 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000734 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000735 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000736 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000737 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000738 }
Mike Stumpbf916502009-07-24 19:02:52 +0000739
Chris Lattner6b6b5372008-06-26 18:38:35 +0000740 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000741
742 Expr *sizeExpr;
743
744 // Special case where the argument is a template id.
745 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000746 CXXScopeSpec SS;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000747 SourceLocation TemplateKWLoc;
John McCallf7a1a742009-11-24 19:00:30 +0000748 UnqualifiedId id;
749 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000750
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000751 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
752 false, false);
Douglas Gregor4ac01402011-06-15 16:02:29 +0000753 if (Size.isInvalid())
754 return;
755
756 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000757 } else {
758 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000759 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000760 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000761
Peter Collingbourne7a730022010-11-23 20:45:58 +0000762 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000763 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000764
765 // Instantiate/Install the vector type, and let Sema build the type for us.
766 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000767 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000768 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000769 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000770 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000771
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000772 // Remember this typedef decl, we will need it later for diagnostics.
773 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000774 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000775}
776
Chandler Carruth1b03c872011-07-02 00:01:44 +0000777static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000778 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000779 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000780 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000781
Chandler Carruth87c44602011-07-01 23:49:12 +0000782 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000783 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000784 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000785 // If the alignment is less than or equal to 8 bits, the packed attribute
786 // has no effect.
787 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000788 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000789 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000790 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000791 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000792 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000793 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000794 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000795}
796
Chandler Carruth1b03c872011-07-02 00:01:44 +0000797static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000798 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000799 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000800 else
801 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
802}
803
Chandler Carruth1b03c872011-07-02 00:01:44 +0000804static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000805 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000806 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000807 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000808
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000809 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000810 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000811 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000812 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000813 return;
814 }
815
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000816 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000817}
818
Ted Kremenek2f041d02011-09-29 07:02:25 +0000819static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
820 // The IBOutlet/IBOutletCollection attributes only apply to instance
821 // variables or properties of Objective-C classes. The outlet must also
822 // have an object reference type.
823 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
824 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000825 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000826 << Attr.getName() << VD->getType() << 0;
827 return false;
828 }
829 }
830 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
831 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000832 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000833 << Attr.getName() << PD->getType() << 1;
834 return false;
835 }
836 }
837 else {
838 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
839 return false;
840 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000841
Ted Kremenek2f041d02011-09-29 07:02:25 +0000842 return true;
843}
844
Chandler Carruth1b03c872011-07-02 00:01:44 +0000845static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000846 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000847 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000848 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000849
850 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000851 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000852
Ted Kremenek2f041d02011-09-29 07:02:25 +0000853 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000854}
855
Chandler Carruth1b03c872011-07-02 00:01:44 +0000856static void handleIBOutletCollection(Sema &S, Decl *D,
857 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000858
859 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000860 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000861 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
862 return;
863 }
864
Ted Kremenek2f041d02011-09-29 07:02:25 +0000865 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000866 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000867
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000868 IdentifierInfo *II = Attr.getParameterName();
869 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000870 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000871
John McCallb3d87482010-08-24 05:47:05 +0000872 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000873 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000874 if (!TypeRep) {
875 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
876 return;
877 }
John McCallb3d87482010-08-24 05:47:05 +0000878 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000879 // Diagnose use of non-object type in iboutletcollection attribute.
880 // FIXME. Gnu attribute extension ignores use of builtin types in
881 // attributes. So, __attribute__((iboutletcollection(char))) will be
882 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000883 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000884 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
885 return;
886 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000887 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
888 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000889}
890
Chandler Carruthd309c812011-07-01 23:49:16 +0000891static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000892 if (const RecordType *UT = T->getAsUnionType())
893 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
894 RecordDecl *UD = UT->getDecl();
895 for (RecordDecl::field_iterator it = UD->field_begin(),
896 itend = UD->field_end(); it != itend; ++it) {
897 QualType QT = it->getType();
898 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
899 T = QT;
900 return;
901 }
902 }
903 }
904}
905
Chandler Carruth1b03c872011-07-02 00:01:44 +0000906static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000907 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
908 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000909 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000910 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000911 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000912 return;
913 }
Mike Stumpbf916502009-07-24 19:02:52 +0000914
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000915 // In C++ the implicit 'this' function parameter also counts, and they are
916 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000917 bool HasImplicitThisParam = isInstanceMethod(D);
918 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000919
920 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000921 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000922
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000923 for (AttributeList::arg_iterator I=Attr.arg_begin(),
924 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000925
926
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000927 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000928 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000929 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000930 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
931 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000932 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
933 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000934 return;
935 }
Mike Stumpbf916502009-07-24 19:02:52 +0000936
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000937 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000938
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000939 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000940 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000941 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000942 return;
943 }
Mike Stumpbf916502009-07-24 19:02:52 +0000944
Ted Kremenek465172f2008-07-21 22:09:15 +0000945 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000946 if (HasImplicitThisParam) {
947 if (x == 0) {
948 S.Diag(Attr.getLoc(),
949 diag::err_attribute_invalid_implicit_this_argument)
950 << "nonnull" << Ex->getSourceRange();
951 return;
952 }
953 --x;
954 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000955
956 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000957 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000958 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000959
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000960 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000961 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000962 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000963 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000964 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000965 }
Mike Stumpbf916502009-07-24 19:02:52 +0000966
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000967 NonNullArgs.push_back(x);
968 }
Mike Stumpbf916502009-07-24 19:02:52 +0000969
970 // If no arguments were specified to __attribute__((nonnull)) then all pointer
971 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000972 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000973 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
974 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000975 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000976 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000977 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000978 }
Mike Stumpbf916502009-07-24 19:02:52 +0000979
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000980 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000981 if (NonNullArgs.empty()) {
982 // Warn the trivial case only if attribute is not coming from a
983 // macro instantiation.
984 if (Attr.getLoc().isFileID())
985 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000986 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000987 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000988 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000989
990 unsigned* start = &NonNullArgs[0];
991 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000992 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000993 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000994 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000995}
996
Chandler Carruth1b03c872011-07-02 00:01:44 +0000997static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000998 // This attribute must be applied to a function declaration.
999 // The first argument to the attribute must be a string,
1000 // the name of the resource, for example "malloc".
1001 // The following arguments must be argument indexes, the arguments must be
1002 // of integer type for Returns, otherwise of pointer type.
1003 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +00001004 // after being held. free() should be __attribute((ownership_takes)), whereas
1005 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001006
1007 if (!AL.getParameterName()) {
1008 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
1009 << AL.getName()->getName() << 1;
1010 return;
1011 }
1012 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +00001013 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +00001014 switch (AL.getKind()) {
1015 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +00001016 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001017 if (AL.getNumArgs() < 1) {
1018 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1019 return;
1020 }
Jordy Rose2a479922010-08-12 08:54:03 +00001021 break;
1022 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +00001023 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001024 if (AL.getNumArgs() < 1) {
1025 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1026 return;
1027 }
Jordy Rose2a479922010-08-12 08:54:03 +00001028 break;
1029 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +00001030 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001031 if (AL.getNumArgs() > 1) {
1032 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
1033 << AL.getNumArgs() + 1;
1034 return;
1035 }
Jordy Rose2a479922010-08-12 08:54:03 +00001036 break;
1037 default:
1038 // This should never happen given how we are called.
1039 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001040 }
1041
Chandler Carruth87c44602011-07-01 23:49:12 +00001042 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001043 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1044 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001045 return;
1046 }
1047
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001048 // In C++ the implicit 'this' function parameter also counts, and they are
1049 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001050 bool HasImplicitThisParam = isInstanceMethod(D);
1051 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001052
Chris Lattner5f9e2722011-07-23 10:55:15 +00001053 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001054
1055 // Normalize the argument, __foo__ becomes foo.
1056 if (Module.startswith("__") && Module.endswith("__"))
1057 Module = Module.substr(2, Module.size() - 4);
1058
Chris Lattner5f9e2722011-07-23 10:55:15 +00001059 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001060
Jordy Rose2a479922010-08-12 08:54:03 +00001061 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1062 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001063
Peter Collingbourne7a730022010-11-23 20:45:58 +00001064 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001065 llvm::APSInt ArgNum(32);
1066 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1067 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1068 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1069 << AL.getName()->getName() << IdxExpr->getSourceRange();
1070 continue;
1071 }
1072
1073 unsigned x = (unsigned) ArgNum.getZExtValue();
1074
1075 if (x > NumArgs || x < 1) {
1076 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1077 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1078 continue;
1079 }
1080 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001081 if (HasImplicitThisParam) {
1082 if (x == 0) {
1083 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1084 << "ownership" << IdxExpr->getSourceRange();
1085 return;
1086 }
1087 --x;
1088 }
1089
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001090 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001091 case OwnershipAttr::Takes:
1092 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001093 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001094 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001095 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1096 // FIXME: Should also highlight argument in decl.
1097 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001098 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001099 << "pointer"
1100 << IdxExpr->getSourceRange();
1101 continue;
1102 }
1103 break;
1104 }
Sean Huntcf807c42010-08-18 23:23:40 +00001105 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001106 if (AL.getNumArgs() > 1) {
1107 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001108 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001109 llvm::APSInt ArgNum(32);
1110 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1111 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1112 S.Diag(AL.getLoc(), diag::err_ownership_type)
1113 << "ownership_returns" << "integer"
1114 << IdxExpr->getSourceRange();
1115 return;
1116 }
1117 }
1118 break;
1119 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001120 } // switch
1121
1122 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001123 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001124 i = D->specific_attr_begin<OwnershipAttr>(),
1125 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001126 i != e; ++i) {
1127 if ((*i)->getOwnKind() != K) {
1128 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1129 I!=E; ++I) {
1130 if (x == *I) {
1131 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1132 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001133 }
1134 }
1135 }
1136 }
1137 OwnershipArgs.push_back(x);
1138 }
1139
1140 unsigned* start = OwnershipArgs.data();
1141 unsigned size = OwnershipArgs.size();
1142 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001143
1144 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1145 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1146 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001147 }
Sean Huntcf807c42010-08-18 23:23:40 +00001148
Chandler Carruth87c44602011-07-01 23:49:12 +00001149 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001150 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001151}
1152
John McCall332bb2a2011-02-08 22:35:49 +00001153/// Whether this declaration has internal linkage for the purposes of
1154/// things that want to complain about things not have internal linkage.
1155static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1156 switch (D->getLinkage()) {
1157 case NoLinkage:
1158 case InternalLinkage:
1159 return true;
1160
1161 // Template instantiations that go from external to unique-external
1162 // shouldn't get diagnosed.
1163 case UniqueExternalLinkage:
1164 return true;
1165
1166 case ExternalLinkage:
1167 return false;
1168 }
1169 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001170}
1171
Chandler Carruth1b03c872011-07-02 00:01:44 +00001172static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001173 // Check the attribute arguments.
1174 if (Attr.getNumArgs() > 1) {
1175 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1176 return;
1177 }
1178
Chandler Carruth87c44602011-07-01 23:49:12 +00001179 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001180 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001181 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001182 return;
1183 }
1184
Chandler Carruth87c44602011-07-01 23:49:12 +00001185 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001186
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001187 // gcc rejects
1188 // class c {
1189 // static int a __attribute__((weakref ("v2")));
1190 // static int b() __attribute__((weakref ("f3")));
1191 // };
1192 // and ignores the attributes of
1193 // void f(void) {
1194 // static int a __attribute__((weakref ("v2")));
1195 // }
1196 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001197 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001198 if (!Ctx->isFileContext()) {
1199 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001200 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001201 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001202 }
1203
1204 // The GCC manual says
1205 //
1206 // At present, a declaration to which `weakref' is attached can only
1207 // be `static'.
1208 //
1209 // It also says
1210 //
1211 // Without a TARGET,
1212 // given as an argument to `weakref' or to `alias', `weakref' is
1213 // equivalent to `weak'.
1214 //
1215 // gcc 4.4.1 will accept
1216 // int a7 __attribute__((weakref));
1217 // as
1218 // int a7 __attribute__((weak));
1219 // This looks like a bug in gcc. We reject that for now. We should revisit
1220 // it if this behaviour is actually used.
1221
John McCall332bb2a2011-02-08 22:35:49 +00001222 if (!hasEffectivelyInternalLinkage(nd)) {
1223 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001224 return;
1225 }
1226
1227 // GCC rejects
1228 // static ((alias ("y"), weakref)).
1229 // Should we? How to check that weakref is before or after alias?
1230
1231 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001232 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001233 Arg = Arg->IgnoreParenCasts();
1234 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1235
Douglas Gregor5cee1192011-07-27 05:40:30 +00001236 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001237 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1238 << "weakref" << 1;
1239 return;
1240 }
1241 // GCC will accept anything as the argument of weakref. Should we
1242 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001243 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001244 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001245 }
1246
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001247 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001248}
1249
Chandler Carruth1b03c872011-07-02 00:01:44 +00001250static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001251 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001252 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001253 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001254 return;
1255 }
Mike Stumpbf916502009-07-24 19:02:52 +00001256
Peter Collingbourne7a730022010-11-23 20:45:58 +00001257 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001258 Arg = Arg->IgnoreParenCasts();
1259 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001260
Douglas Gregor5cee1192011-07-27 05:40:30 +00001261 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001262 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001263 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001264 return;
1265 }
Mike Stumpbf916502009-07-24 19:02:52 +00001266
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001267 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001268 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1269 return;
1270 }
1271
Chris Lattner6b6b5372008-06-26 18:38:35 +00001272 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001273
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001274 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001275 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001276}
1277
Chandler Carruth1b03c872011-07-02 00:01:44 +00001278static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001279 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001280 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001281 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001282
Chandler Carruth87c44602011-07-01 23:49:12 +00001283 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001284 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001285 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001286 return;
1287 }
1288
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001289 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001290}
1291
Chandler Carruth1b03c872011-07-02 00:01:44 +00001292static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1293 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001294 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001295 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001296 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1297 return;
1298 }
1299
Chandler Carruth87c44602011-07-01 23:49:12 +00001300 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001301 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001302 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001303 return;
1304 }
Mike Stumpbf916502009-07-24 19:02:52 +00001305
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001306 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001307}
1308
Chandler Carruth1b03c872011-07-02 00:01:44 +00001309static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001310 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001311 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001312 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1313 return;
1314 }
Mike Stump1eb44332009-09-09 15:08:12 +00001315
Chandler Carruth87c44602011-07-01 23:49:12 +00001316 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001317 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001318 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001319 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001320 return;
1321 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001322 }
1323
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001324 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001325}
1326
Chandler Carruth1b03c872011-07-02 00:01:44 +00001327static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001328 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001329 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001330 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001331
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001332 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001333}
1334
Chandler Carruth1b03c872011-07-02 00:01:44 +00001335static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001336 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001337 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001338 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001339 else
1340 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001341 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001342}
1343
Chandler Carruth1b03c872011-07-02 00:01:44 +00001344static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001345 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001346 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001347 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001348 else
1349 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001350 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001351}
1352
Chandler Carruth1b03c872011-07-02 00:01:44 +00001353static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001354 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001355
1356 if (S.CheckNoReturnAttr(attr)) return;
1357
Chandler Carruth87c44602011-07-01 23:49:12 +00001358 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001359 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001360 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001361 return;
1362 }
1363
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001364 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001365}
1366
1367bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001368 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001369 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1370 attr.setInvalid();
1371 return true;
1372 }
1373
1374 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001375}
1376
Chandler Carruth1b03c872011-07-02 00:01:44 +00001377static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1378 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001379
1380 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1381 // because 'analyzer_noreturn' does not impact the type.
1382
Chandler Carruth1731e202011-07-11 23:30:35 +00001383 if(!checkAttributeNumArgs(S, Attr, 0))
1384 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001385
Chandler Carruth87c44602011-07-01 23:49:12 +00001386 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1387 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001388 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1389 && !VD->getType()->isFunctionPointerType())) {
1390 S.Diag(Attr.getLoc(),
1391 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1392 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001393 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001394 return;
1395 }
1396 }
1397
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001398 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001399}
1400
John Thompson35cc9622010-08-09 21:53:52 +00001401// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001402static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001403/*
1404 Returning a Vector Class in Registers
1405
Eric Christopherf48f3672010-12-01 22:13:54 +00001406 According to the PPU ABI specifications, a class with a single member of
1407 vector type is returned in memory when used as the return value of a function.
1408 This results in inefficient code when implementing vector classes. To return
1409 the value in a single vector register, add the vecreturn attribute to the
1410 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001411
1412 Example:
1413
1414 struct Vector
1415 {
1416 __vector float xyzw;
1417 } __attribute__((vecreturn));
1418
1419 Vector Add(Vector lhs, Vector rhs)
1420 {
1421 Vector result;
1422 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1423 return result; // This will be returned in a register
1424 }
1425*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001426 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001427 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001428 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001429 return;
1430 }
1431
Chandler Carruth87c44602011-07-01 23:49:12 +00001432 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001433 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1434 return;
1435 }
1436
Chandler Carruth87c44602011-07-01 23:49:12 +00001437 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001438 int count = 0;
1439
1440 if (!isa<CXXRecordDecl>(record)) {
1441 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1442 return;
1443 }
1444
1445 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1446 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1447 return;
1448 }
1449
Eric Christopherf48f3672010-12-01 22:13:54 +00001450 for (RecordDecl::field_iterator iter = record->field_begin();
1451 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001452 if ((count == 1) || !iter->getType()->isVectorType()) {
1453 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1454 return;
1455 }
1456 count++;
1457 }
1458
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001459 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001460}
1461
Chandler Carruth1b03c872011-07-02 00:01:44 +00001462static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001463 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001464 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001465 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001466 return;
1467 }
1468 // FIXME: Actually store the attribute on the declaration
1469}
1470
Chandler Carruth1b03c872011-07-02 00:01:44 +00001471static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001472 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001473 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001474 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001475 return;
1476 }
Mike Stumpbf916502009-07-24 19:02:52 +00001477
Chandler Carruth87c44602011-07-01 23:49:12 +00001478 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1479 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001480 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001481 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001482 return;
1483 }
Mike Stumpbf916502009-07-24 19:02:52 +00001484
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001485 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001486}
1487
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001488static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1489 const AttributeList &Attr) {
1490 // check the attribute arguments.
1491 if (Attr.hasParameterOrArguments()) {
1492 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1493 return;
1494 }
1495
1496 if (!isa<FunctionDecl>(D)) {
1497 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1498 << Attr.getName() << ExpectedFunction;
1499 return;
1500 }
1501
1502 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1503}
1504
Chandler Carruth1b03c872011-07-02 00:01:44 +00001505static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001506 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001507 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001508 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1509 return;
1510 }
Mike Stumpbf916502009-07-24 19:02:52 +00001511
Chandler Carruth87c44602011-07-01 23:49:12 +00001512 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001513 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001514 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1515 return;
1516 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001517 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001518 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001519 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001520 return;
1521 }
Mike Stumpbf916502009-07-24 19:02:52 +00001522
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001523 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001524}
1525
Chandler Carruth1b03c872011-07-02 00:01:44 +00001526static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001527 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001528 if (Attr.getNumArgs() > 1) {
1529 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001530 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001531 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001532
1533 int priority = 65535; // FIXME: Do not hardcode such constants.
1534 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001535 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001536 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001537 if (E->isTypeDependent() || E->isValueDependent() ||
1538 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001539 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001540 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001541 return;
1542 }
1543 priority = Idx.getZExtValue();
1544 }
Mike Stumpbf916502009-07-24 19:02:52 +00001545
Chandler Carruth87c44602011-07-01 23:49:12 +00001546 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001547 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001548 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001549 return;
1550 }
1551
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001552 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001553 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001554}
1555
Chandler Carruth1b03c872011-07-02 00:01:44 +00001556static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001557 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001558 if (Attr.getNumArgs() > 1) {
1559 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001560 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001561 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001562
1563 int priority = 65535; // FIXME: Do not hardcode such constants.
1564 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001565 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001566 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001567 if (E->isTypeDependent() || E->isValueDependent() ||
1568 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001569 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001570 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001571 return;
1572 }
1573 priority = Idx.getZExtValue();
1574 }
Mike Stumpbf916502009-07-24 19:02:52 +00001575
Chandler Carruth87c44602011-07-01 23:49:12 +00001576 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001577 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001578 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001579 return;
1580 }
1581
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001582 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001583 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001584}
1585
Chandler Carruth1b03c872011-07-02 00:01:44 +00001586static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001587 unsigned NumArgs = Attr.getNumArgs();
1588 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001589 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001590 return;
1591 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001592
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001593 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001594 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001595 if (NumArgs == 1) {
1596 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001597 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001598 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1599 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001600 return;
1601 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001602 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001603 }
Mike Stumpbf916502009-07-24 19:02:52 +00001604
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001605 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001606}
1607
Chandler Carruth1b03c872011-07-02 00:01:44 +00001608static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001609 unsigned NumArgs = Attr.getNumArgs();
1610 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001611 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001612 return;
1613 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001614
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001615 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001616 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001617 if (NumArgs == 1) {
1618 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001619 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001620 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001621 diag::err_attribute_not_string) << "unavailable";
1622 return;
1623 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001624 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001625 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001626 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001627}
1628
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001629static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1630 const AttributeList &Attr) {
1631 unsigned NumArgs = Attr.getNumArgs();
1632 if (NumArgs > 0) {
1633 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1634 return;
1635 }
1636
1637 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001638 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001639}
1640
Patrick Beardb2f68202012-04-06 18:12:22 +00001641static void handleObjCRootClassAttr(Sema &S, Decl *D,
1642 const AttributeList &Attr) {
1643 if (!isa<ObjCInterfaceDecl>(D)) {
1644 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1645 return;
1646 }
1647
1648 unsigned NumArgs = Attr.getNumArgs();
1649 if (NumArgs > 0) {
1650 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1651 return;
1652 }
1653
1654 D->addAttr(::new (S.Context) ObjCRootClassAttr(Attr.getRange(), S.Context));
1655}
1656
Ted Kremenek71207fc2012-01-05 22:47:47 +00001657static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001658 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001659 if (!isa<ObjCInterfaceDecl>(D)) {
1660 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1661 return;
1662 }
1663
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001664 unsigned NumArgs = Attr.getNumArgs();
1665 if (NumArgs > 0) {
1666 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1667 return;
1668 }
1669
Ted Kremenek71207fc2012-01-05 22:47:47 +00001670 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001671 Attr.getRange(), S.Context));
1672}
1673
Chandler Carruth1b03c872011-07-02 00:01:44 +00001674static void handleAvailabilityAttr(Sema &S, Decl *D,
1675 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001676 IdentifierInfo *Platform = Attr.getParameterName();
1677 SourceLocation PlatformLoc = Attr.getParameterLoc();
1678
Chris Lattner5f9e2722011-07-23 10:55:15 +00001679 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001680 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1681 if (PlatformName.empty()) {
1682 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1683 << Platform;
1684
1685 PlatformName = Platform->getName();
1686 }
1687
1688 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1689 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1690 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001691 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001692
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001693 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001694 // of these steps are needed).
1695 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001696 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001697 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1698 << 1 << PlatformName << Deprecated.Version.getAsString()
1699 << 0 << Introduced.Version.getAsString();
1700 return;
1701 }
1702
1703 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001704 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001705 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1706 << 2 << PlatformName << Obsoleted.Version.getAsString()
1707 << 0 << Introduced.Version.getAsString();
1708 return;
1709 }
1710
1711 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001712 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001713 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1714 << 2 << PlatformName << Obsoleted.Version.getAsString()
1715 << 1 << Deprecated.Version.getAsString();
1716 return;
1717 }
1718
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001719 StringRef Str;
1720 const StringLiteral *SE =
1721 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1722 if (SE)
1723 Str = SE->getString();
1724
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001725 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001726 Platform,
1727 Introduced.Version,
1728 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001729 Obsoleted.Version,
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001730 IsUnavailable,
1731 Str));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001732}
1733
Chandler Carruth1b03c872011-07-02 00:01:44 +00001734static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001735 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001736 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001737 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001738
Peter Collingbourne7a730022010-11-23 20:45:58 +00001739 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001740 Arg = Arg->IgnoreParenCasts();
1741 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001742
Douglas Gregor5cee1192011-07-27 05:40:30 +00001743 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001744 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001745 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001746 return;
1747 }
Mike Stumpbf916502009-07-24 19:02:52 +00001748
Chris Lattner5f9e2722011-07-23 10:55:15 +00001749 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001750 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001751
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001752 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001753 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001754 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001755 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001756 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001757 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00001758 else if (TypeStr == "protected") {
1759 // Complain about attempts to use protected visibility on targets
1760 // (like Darwin) that don't support it.
1761 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1762 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1763 type = VisibilityAttr::Default;
1764 } else {
1765 type = VisibilityAttr::Protected;
1766 }
1767 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00001768 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001769 return;
1770 }
Mike Stumpbf916502009-07-24 19:02:52 +00001771
Rafael Espindola548d17c2012-05-02 20:36:57 +00001772 // Find the last Decl that has an attribute.
1773 VisibilityAttr *PrevAttr;
1774 assert(D->redecls_begin() == D);
1775 for (Decl::redecl_iterator I = D->redecls_begin(), E = D->redecls_end();
1776 I != E; ++I) {
1777 PrevAttr = I->getAttr<VisibilityAttr>() ;
1778 if (PrevAttr)
1779 break;
1780 }
Rafael Espindola4e31b4d2012-05-01 20:58:29 +00001781
Rafael Espindola45a0b262012-04-26 01:26:03 +00001782 if (PrevAttr) {
1783 VisibilityAttr::VisibilityType PrevVisibility = PrevAttr->getVisibility();
1784 if (PrevVisibility != type) {
1785 S.Diag(Attr.getLoc(), diag::err_mismatched_visibilit);
1786 S.Diag(PrevAttr->getLocation(), diag::note_previous_attribute);
1787 return;
1788 }
1789 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001790 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001791}
1792
Chandler Carruth1b03c872011-07-02 00:01:44 +00001793static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1794 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001795 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1796 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001797 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001798 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001799 return;
1800 }
1801
Chandler Carruth87c44602011-07-01 23:49:12 +00001802 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1803 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1804 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001805 << "objc_method_family" << 1;
1806 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001807 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001808 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001809 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001810 return;
1811 }
1812
Chris Lattner5f9e2722011-07-23 10:55:15 +00001813 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001814 ObjCMethodFamilyAttr::FamilyKind family;
1815 if (param == "none")
1816 family = ObjCMethodFamilyAttr::OMF_None;
1817 else if (param == "alloc")
1818 family = ObjCMethodFamilyAttr::OMF_alloc;
1819 else if (param == "copy")
1820 family = ObjCMethodFamilyAttr::OMF_copy;
1821 else if (param == "init")
1822 family = ObjCMethodFamilyAttr::OMF_init;
1823 else if (param == "mutableCopy")
1824 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1825 else if (param == "new")
1826 family = ObjCMethodFamilyAttr::OMF_new;
1827 else {
1828 // Just warn and ignore it. This is future-proof against new
1829 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001830 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001831 return;
1832 }
1833
John McCallf85e1932011-06-15 23:02:42 +00001834 if (family == ObjCMethodFamilyAttr::OMF_init &&
1835 !method->getResultType()->isObjCObjectPointerType()) {
1836 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1837 << method->getResultType();
1838 // Ignore the attribute.
1839 return;
1840 }
1841
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001842 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001843 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001844}
1845
Chandler Carruth1b03c872011-07-02 00:01:44 +00001846static void handleObjCExceptionAttr(Sema &S, Decl *D,
1847 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001848 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001849 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001850
Chris Lattner0db29ec2009-02-14 08:09:34 +00001851 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1852 if (OCI == 0) {
1853 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1854 return;
1855 }
Mike Stumpbf916502009-07-24 19:02:52 +00001856
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001857 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001858}
1859
Chandler Carruth1b03c872011-07-02 00:01:44 +00001860static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001861 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001862 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001863 return;
1864 }
Richard Smith162e1c12011-04-15 14:24:37 +00001865 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001866 QualType T = TD->getUnderlyingType();
1867 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001868 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001869 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1870 return;
1871 }
1872 }
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001873 else if (!isa<ObjCPropertyDecl>(D)) {
1874 // It is okay to include this attribute on properties, e.g.:
1875 //
1876 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
1877 //
1878 // In this case it follows tradition and suppresses an error in the above
1879 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00001880 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001881 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001882 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001883}
1884
Mike Stumpbf916502009-07-24 19:02:52 +00001885static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001886handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001887 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001888 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001889 return;
1890 }
1891
1892 if (!isa<FunctionDecl>(D)) {
1893 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1894 return;
1895 }
1896
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001897 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001898}
1899
Chandler Carruth1b03c872011-07-02 00:01:44 +00001900static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001901 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001902 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001903 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001904 return;
1905 }
Mike Stumpbf916502009-07-24 19:02:52 +00001906
Steve Naroff9eae5762008-09-18 16:44:58 +00001907 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001908 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001909 return;
1910 }
Mike Stumpbf916502009-07-24 19:02:52 +00001911
Sean Huntcf807c42010-08-18 23:23:40 +00001912 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001913 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001914 type = BlocksAttr::ByRef;
1915 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001916 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001917 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001918 return;
1919 }
Mike Stumpbf916502009-07-24 19:02:52 +00001920
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001921 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001922}
1923
Chandler Carruth1b03c872011-07-02 00:01:44 +00001924static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001925 // check the attribute arguments.
1926 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001927 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001928 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001929 }
1930
John McCall3323fad2011-09-09 07:56:05 +00001931 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001932 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001933 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001934 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001935 if (E->isTypeDependent() || E->isValueDependent() ||
1936 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001937 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001938 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001939 return;
1940 }
Mike Stumpbf916502009-07-24 19:02:52 +00001941
John McCall3323fad2011-09-09 07:56:05 +00001942 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001943 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1944 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001945 return;
1946 }
John McCall3323fad2011-09-09 07:56:05 +00001947
1948 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001949 }
1950
John McCall3323fad2011-09-09 07:56:05 +00001951 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001952 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001953 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001954 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001955 if (E->isTypeDependent() || E->isValueDependent() ||
1956 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001957 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001958 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001959 return;
1960 }
1961 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001962
John McCall3323fad2011-09-09 07:56:05 +00001963 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001964 // FIXME: This error message could be improved, it would be nice
1965 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001966 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1967 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001968 return;
1969 }
1970 }
1971
Chandler Carruth87c44602011-07-01 23:49:12 +00001972 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001973 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001974 if (isa<FunctionNoProtoType>(FT)) {
1975 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1976 return;
1977 }
Mike Stumpbf916502009-07-24 19:02:52 +00001978
Chris Lattner897cd902009-03-17 23:03:47 +00001979 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001980 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001981 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001982 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001983 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001984 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001985 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001986 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001987 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00001988 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1989 if (!BD->isVariadic()) {
1990 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
1991 return;
1992 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001993 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001994 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001995 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001996 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001997 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001998 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001999 int m = Ty->isFunctionPointerType() ? 0 : 1;
2000 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002001 return;
2002 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002003 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002004 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002005 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00002006 return;
2007 }
Anders Carlsson77091822008-10-05 18:05:59 +00002008 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002009 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002010 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00002011 return;
2012 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002013 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00002014 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00002015}
2016
Chandler Carruth1b03c872011-07-02 00:01:44 +00002017static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00002018 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002019 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00002020 return;
Chris Lattner026dc962009-02-14 07:37:35 +00002021
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002022 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00002023 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002024 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00002025 return;
2026 }
Mike Stumpbf916502009-07-24 19:02:52 +00002027
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002028 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
2029 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2030 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00002031 return;
2032 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00002033 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
2034 if (MD->getResultType()->isVoidType()) {
2035 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
2036 << Attr.getName() << 1;
2037 return;
2038 }
2039
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002040 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00002041}
2042
Chandler Carruth1b03c872011-07-02 00:01:44 +00002043static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002044 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00002045 if (Attr.hasParameterOrArguments()) {
2046 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002047 return;
2048 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002049
Chandler Carruth87c44602011-07-01 23:49:12 +00002050 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00002051 if (isa<CXXRecordDecl>(D)) {
2052 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
2053 return;
2054 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002055 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2056 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00002057 return;
2058 }
2059
Chandler Carruth87c44602011-07-01 23:49:12 +00002060 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00002061
2062 // 'weak' only applies to declarations with external linkage.
2063 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002064 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002065 return;
2066 }
Mike Stumpbf916502009-07-24 19:02:52 +00002067
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002068 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002069}
2070
Chandler Carruth1b03c872011-07-02 00:01:44 +00002071static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002072 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002073 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002074 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002075
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002076
2077 // weak_import only applies to variable & function declarations.
2078 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002079 if (!D->canBeWeakImported(isDef)) {
2080 if (isDef)
2081 S.Diag(Attr.getLoc(),
2082 diag::warn_attribute_weak_import_invalid_on_definition)
2083 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002084 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002085 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002086 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002087 // Nothing to warn about here.
2088 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002089 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002090 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002091
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002092 return;
2093 }
2094
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002095 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002096}
2097
Chandler Carruth1b03c872011-07-02 00:01:44 +00002098static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2099 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002100 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002101 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002102 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002103
2104 unsigned WGSize[3];
2105 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002106 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002107 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002108 if (E->isTypeDependent() || E->isValueDependent() ||
2109 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002110 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2111 << "reqd_work_group_size" << E->getSourceRange();
2112 return;
2113 }
2114 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2115 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002116 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002117 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002118 WGSize[2]));
2119}
2120
Chandler Carruth1b03c872011-07-02 00:01:44 +00002121static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002122 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002123 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002124 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002125
2126 // Make sure that there is a string literal as the sections's single
2127 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002128 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002129 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002130 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002131 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002132 return;
2133 }
Mike Stump1eb44332009-09-09 15:08:12 +00002134
Chris Lattner797c3c42009-08-10 19:03:04 +00002135 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002136 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002137 if (!Error.empty()) {
2138 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2139 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002140 return;
2141 }
Mike Stump1eb44332009-09-09 15:08:12 +00002142
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002143 // This attribute cannot be applied to local variables.
2144 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2145 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2146 return;
2147 }
2148
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002149 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002150 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002151}
2152
Chris Lattner6b6b5372008-06-26 18:38:35 +00002153
Chandler Carruth1b03c872011-07-02 00:01:44 +00002154static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002155 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002156 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002157 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002158 return;
2159 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002160
Chandler Carruth87c44602011-07-01 23:49:12 +00002161 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002162 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002163 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002164 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002165 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002166 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002167}
2168
Chandler Carruth1b03c872011-07-02 00:01:44 +00002169static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002170 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002171 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002172 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002173 return;
2174 }
Mike Stumpbf916502009-07-24 19:02:52 +00002175
Chandler Carruth87c44602011-07-01 23:49:12 +00002176 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002177 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002178 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002179 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002180 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002181 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002182}
2183
Chandler Carruth1b03c872011-07-02 00:01:44 +00002184static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002185 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002186 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002187 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002188
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002189 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002190}
2191
Chandler Carruth1b03c872011-07-02 00:01:44 +00002192static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002193 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002194 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2195 return;
2196 }
Mike Stumpbf916502009-07-24 19:02:52 +00002197
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002198 if (Attr.getNumArgs() != 0) {
2199 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2200 return;
2201 }
Mike Stumpbf916502009-07-24 19:02:52 +00002202
Chandler Carruth87c44602011-07-01 23:49:12 +00002203 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002204
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002205 if (!VD || !VD->hasLocalStorage()) {
2206 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2207 return;
2208 }
Mike Stumpbf916502009-07-24 19:02:52 +00002209
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002210 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002211 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002212 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002213 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2214 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002215 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002216 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002217 Attr.getParameterName();
2218 return;
2219 }
Mike Stumpbf916502009-07-24 19:02:52 +00002220
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002221 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2222 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002223 S.Diag(Attr.getParameterLoc(),
2224 diag::err_attribute_cleanup_arg_not_function)
2225 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002226 return;
2227 }
2228
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002229 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002230 S.Diag(Attr.getParameterLoc(),
2231 diag::err_attribute_cleanup_func_must_take_one_arg)
2232 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002233 return;
2234 }
Mike Stumpbf916502009-07-24 19:02:52 +00002235
Anders Carlsson89941c12009-02-07 23:16:50 +00002236 // We're currently more strict than GCC about what function types we accept.
2237 // If this ever proves to be a problem it should be easy to fix.
2238 QualType Ty = S.Context.getPointerType(VD->getType());
2239 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002240 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2241 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002242 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002243 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2244 Attr.getParameterName() << ParamTy << Ty;
2245 return;
2246 }
Mike Stumpbf916502009-07-24 19:02:52 +00002247
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002248 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002249 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002250}
2251
Mike Stumpbf916502009-07-24 19:02:52 +00002252/// Handle __attribute__((format_arg((idx)))) attribute based on
2253/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002254static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002255 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002256 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002257
Chandler Carruth87c44602011-07-01 23:49:12 +00002258 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002259 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002260 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002261 return;
2262 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002263
2264 // In C++ the implicit 'this' function parameter also counts, and they are
2265 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002266 bool HasImplicitThisParam = isInstanceMethod(D);
2267 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002268 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002269
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002270 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002271 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002272 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002273 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2274 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002275 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2276 << "format" << 2 << IdxExpr->getSourceRange();
2277 return;
2278 }
Mike Stumpbf916502009-07-24 19:02:52 +00002279
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002280 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2281 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2282 << "format" << 2 << IdxExpr->getSourceRange();
2283 return;
2284 }
Mike Stumpbf916502009-07-24 19:02:52 +00002285
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002286 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002287
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002288 if (HasImplicitThisParam) {
2289 if (ArgIdx == 0) {
2290 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2291 << "format_arg" << IdxExpr->getSourceRange();
2292 return;
2293 }
2294 ArgIdx--;
2295 }
2296
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002297 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002298 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002299
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002300 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2301 if (not_nsstring_type &&
2302 !isCFStringType(Ty, S.Context) &&
2303 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002304 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002305 // FIXME: Should highlight the actual expression that has the wrong type.
2306 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002307 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002308 << IdxExpr->getSourceRange();
2309 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002310 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002311 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002312 if (!isNSStringType(Ty, S.Context) &&
2313 !isCFStringType(Ty, S.Context) &&
2314 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002315 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002316 // FIXME: Should highlight the actual expression that has the wrong type.
2317 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002318 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002319 << IdxExpr->getSourceRange();
2320 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002321 }
2322
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002323 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002324 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002325}
2326
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002327enum FormatAttrKind {
2328 CFStringFormat,
2329 NSStringFormat,
2330 StrftimeFormat,
2331 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002332 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002333 InvalidFormat
2334};
2335
2336/// getFormatAttrKind - Map from format attribute names to supported format
2337/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002338static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002339 // Check for formats that get handled specially.
2340 if (Format == "NSString")
2341 return NSStringFormat;
2342 if (Format == "CFString")
2343 return CFStringFormat;
2344 if (Format == "strftime")
2345 return StrftimeFormat;
2346
2347 // Otherwise, check for supported formats.
2348 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
Jean-Daniel Dupas69d53842012-01-27 09:14:17 +00002349 Format == "strfmon" || Format == "cmn_err" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002350 Format == "zcmn_err" ||
2351 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002352 return SupportedFormat;
2353
Duncan Sandsbc525952010-03-23 14:44:19 +00002354 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2355 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002356 return IgnoredFormat;
2357
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002358 return InvalidFormat;
2359}
2360
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002361/// Handle __attribute__((init_priority(priority))) attributes based on
2362/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002363static void handleInitPriorityAttr(Sema &S, Decl *D,
2364 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002365 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002366 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2367 return;
2368 }
2369
Chandler Carruth87c44602011-07-01 23:49:12 +00002370 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002371 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2372 Attr.setInvalid();
2373 return;
2374 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002375 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002376 if (S.Context.getAsArrayType(T))
2377 T = S.Context.getBaseElementType(T);
2378 if (!T->getAs<RecordType>()) {
2379 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2380 Attr.setInvalid();
2381 return;
2382 }
2383
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002384 if (Attr.getNumArgs() != 1) {
2385 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2386 Attr.setInvalid();
2387 return;
2388 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002389 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002390
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002391 llvm::APSInt priority(32);
2392 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2393 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2394 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2395 << "init_priority" << priorityExpr->getSourceRange();
2396 Attr.setInvalid();
2397 return;
2398 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002399 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002400 if (prioritynum < 101 || prioritynum > 65535) {
2401 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2402 << priorityExpr->getSourceRange();
2403 Attr.setInvalid();
2404 return;
2405 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002406 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002407 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002408}
2409
Mike Stumpbf916502009-07-24 19:02:52 +00002410/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2411/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002412static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002413
Chris Lattner545dd342008-06-28 23:36:30 +00002414 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002415 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002416 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002417 return;
2418 }
2419
Chris Lattner545dd342008-06-28 23:36:30 +00002420 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002421 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002422 return;
2423 }
2424
Chandler Carruth87c44602011-07-01 23:49:12 +00002425 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002426 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002427 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002428 return;
2429 }
2430
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002431 // In C++ the implicit 'this' function parameter also counts, and they are
2432 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002433 bool HasImplicitThisParam = isInstanceMethod(D);
2434 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002435 unsigned FirstIdx = 1;
2436
Chris Lattner5f9e2722011-07-23 10:55:15 +00002437 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002438
2439 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002440 if (Format.startswith("__") && Format.endswith("__"))
2441 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002442
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002443 // Check for supported formats.
2444 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002445
2446 if (Kind == IgnoredFormat)
2447 return;
2448
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002449 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002450 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002451 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002452 return;
2453 }
2454
2455 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002456 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002457 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002458 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2459 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002460 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002461 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002462 return;
2463 }
2464
2465 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002466 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002467 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002468 return;
2469 }
2470
2471 // FIXME: Do we need to bounds check?
2472 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002473
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002474 if (HasImplicitThisParam) {
2475 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002476 S.Diag(Attr.getLoc(),
2477 diag::err_format_attribute_implicit_this_format_string)
2478 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002479 return;
2480 }
2481 ArgIdx--;
2482 }
Mike Stump1eb44332009-09-09 15:08:12 +00002483
Chris Lattner6b6b5372008-06-26 18:38:35 +00002484 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002485 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002486
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002487 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002488 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002489 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2490 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002491 return;
2492 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002493 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002494 // FIXME: do we need to check if the type is NSString*? What are the
2495 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002496 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002497 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002498 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2499 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002500 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002501 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002502 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002503 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002504 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002505 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2506 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002507 return;
2508 }
2509
2510 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002511 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002512 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002513 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2514 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002515 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002516 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002517 return;
2518 }
2519
2520 // check if the function is variadic if the 3rd argument non-zero
2521 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002522 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002523 ++NumArgs; // +1 for ...
2524 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002525 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002526 return;
2527 }
2528 }
2529
Chris Lattner3c73c412008-11-19 08:23:25 +00002530 // strftime requires FirstArg to be 0 because it doesn't read from any
2531 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002532 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002533 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002534 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2535 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002536 return;
2537 }
2538 // if 0 it disables parameter checking (to use with e.g. va_list)
2539 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002540 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002541 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002542 return;
2543 }
2544
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002545 // Check whether we already have an equivalent format attribute.
2546 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002547 i = D->specific_attr_begin<FormatAttr>(),
2548 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002549 i != e ; ++i) {
2550 FormatAttr *f = *i;
2551 if (f->getType() == Format &&
2552 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2553 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2554 // If we don't have a valid location for this attribute, adopt the
2555 // location.
2556 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002557 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002558 return;
2559 }
2560 }
2561
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002562 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002563 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002564 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002565}
2566
Chandler Carruth1b03c872011-07-02 00:01:44 +00002567static void handleTransparentUnionAttr(Sema &S, Decl *D,
2568 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002569 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002570 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002571 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002572
Chris Lattner6b6b5372008-06-26 18:38:35 +00002573
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002574 // Try to find the underlying union declaration.
2575 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002576 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002577 if (TD && TD->getUnderlyingType()->isUnionType())
2578 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2579 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002580 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002581
2582 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002583 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002584 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002585 return;
2586 }
2587
John McCall5e1cdac2011-10-07 06:10:15 +00002588 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002589 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002590 diag::warn_transparent_union_attribute_not_definition);
2591 return;
2592 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002593
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002594 RecordDecl::field_iterator Field = RD->field_begin(),
2595 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002596 if (Field == FieldEnd) {
2597 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2598 return;
2599 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002600
David Blaikie262bc182012-04-30 02:36:29 +00002601 FieldDecl *FirstField = &*Field;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002602 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002603 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002604 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002605 diag::warn_transparent_union_attribute_floating)
2606 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002607 return;
2608 }
2609
2610 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2611 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2612 for (; Field != FieldEnd; ++Field) {
2613 QualType FieldType = Field->getType();
2614 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2615 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2616 // Warn if we drop the attribute.
2617 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002618 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002619 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002620 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002621 diag::warn_transparent_union_attribute_field_size_align)
2622 << isSize << Field->getDeclName() << FieldBits;
2623 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002624 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002625 diag::note_transparent_union_first_field_size_align)
2626 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002627 return;
2628 }
2629 }
2630
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002631 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002632}
2633
Chandler Carruth1b03c872011-07-02 00:01:44 +00002634static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002635 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002636 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002637 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002638
Peter Collingbourne7a730022010-11-23 20:45:58 +00002639 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002640 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002641
Chris Lattner6b6b5372008-06-26 18:38:35 +00002642 // Make sure that there is a string literal as the annotation's single
2643 // argument.
2644 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002645 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002646 return;
2647 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002648
2649 // Don't duplicate annotations that are already set.
2650 for (specific_attr_iterator<AnnotateAttr>
2651 i = D->specific_attr_begin<AnnotateAttr>(),
2652 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2653 if ((*i)->getAnnotation() == SE->getString())
2654 return;
2655 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002656 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002657 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002658}
2659
Chandler Carruth1b03c872011-07-02 00:01:44 +00002660static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002661 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002662 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002663 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002664 return;
2665 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002666
2667 //FIXME: The C++0x version of this attribute has more limited applicabilty
2668 // than GNU's, and should error out when it is used to specify a
2669 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002670
Chris Lattner545dd342008-06-28 23:36:30 +00002671 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002672 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002673 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002674 }
Mike Stumpbf916502009-07-24 19:02:52 +00002675
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002676 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002677}
2678
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002679void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002680 // FIXME: Handle pack-expansions here.
2681 if (DiagnoseUnexpandedParameterPack(E))
2682 return;
2683
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002684 if (E->isTypeDependent() || E->isValueDependent()) {
2685 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002686 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002687 return;
2688 }
2689
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002690 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002691 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002692 llvm::APSInt Alignment(32);
Richard Smith282e7e62012-02-04 09:53:13 +00002693 ExprResult ICE =
2694 VerifyIntegerConstantExpression(E, &Alignment,
2695 PDiag(diag::err_attribute_argument_not_int) << "aligned",
2696 /*AllowFold*/ false);
2697 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00002698 return;
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002699 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002700 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2701 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002702 return;
2703 }
2704
Richard Smith282e7e62012-02-04 09:53:13 +00002705 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take()));
Sean Huntcf807c42010-08-18 23:23:40 +00002706}
2707
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002708void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002709 // FIXME: Cache the number on the Attr object if non-dependent?
2710 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002711 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002712 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002713}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002714
Chandler Carruthd309c812011-07-01 23:49:16 +00002715/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002716/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002717///
Mike Stumpbf916502009-07-24 19:02:52 +00002718/// Despite what would be logical, the mode attribute is a decl attribute, not a
2719/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2720/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002721static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002722 // This attribute isn't documented, but glibc uses it. It changes
2723 // the width of an int or unsigned int to the specified size.
2724
2725 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002726 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002727 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002728
Chris Lattnerfbf13472008-06-27 22:18:37 +00002729
2730 IdentifierInfo *Name = Attr.getParameterName();
2731 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002732 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002733 return;
2734 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002735
Chris Lattner5f9e2722011-07-23 10:55:15 +00002736 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002737
2738 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002739 if (Str.startswith("__") && Str.endswith("__"))
2740 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002741
2742 unsigned DestWidth = 0;
2743 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002744 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002745 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002746 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002747 switch (Str[0]) {
2748 case 'Q': DestWidth = 8; break;
2749 case 'H': DestWidth = 16; break;
2750 case 'S': DestWidth = 32; break;
2751 case 'D': DestWidth = 64; break;
2752 case 'X': DestWidth = 96; break;
2753 case 'T': DestWidth = 128; break;
2754 }
2755 if (Str[1] == 'F') {
2756 IntegerMode = false;
2757 } else if (Str[1] == 'C') {
2758 IntegerMode = false;
2759 ComplexMode = true;
2760 } else if (Str[1] != 'I') {
2761 DestWidth = 0;
2762 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002763 break;
2764 case 4:
2765 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2766 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002767 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002768 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002769 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002770 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002771 break;
2772 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002773 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002774 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002775 break;
2776 }
2777
2778 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002779 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002780 OldTy = TD->getUnderlyingType();
2781 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2782 OldTy = VD->getType();
2783 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002784 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002785 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002786 return;
2787 }
Eli Friedman73397492009-03-03 06:41:03 +00002788
John McCall183700f2009-09-21 23:43:11 +00002789 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002790 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2791 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002792 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002793 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2794 } else if (ComplexMode) {
2795 if (!OldTy->isComplexType())
2796 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2797 } else {
2798 if (!OldTy->isFloatingType())
2799 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2800 }
2801
Mike Stump390b4cc2009-05-16 07:39:55 +00002802 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2803 // and friends, at least with glibc.
2804 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2805 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002806 // FIXME: Make sure floating-point mappings are accurate
2807 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002808 QualType NewTy;
2809 switch (DestWidth) {
2810 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002811 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002812 return;
2813 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002814 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002815 return;
2816 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002817 if (!IntegerMode) {
2818 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2819 return;
2820 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002821 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002822 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002823 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002824 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002825 break;
2826 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002827 if (!IntegerMode) {
2828 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2829 return;
2830 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002831 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002832 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002833 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002834 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002835 break;
2836 case 32:
2837 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002838 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002839 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002840 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002841 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002842 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002843 break;
2844 case 64:
2845 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002846 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002847 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002848 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002849 NewTy = S.Context.LongTy;
2850 else
2851 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002852 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002853 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002854 NewTy = S.Context.UnsignedLongTy;
2855 else
2856 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002857 break;
Eli Friedman73397492009-03-03 06:41:03 +00002858 case 96:
2859 NewTy = S.Context.LongDoubleTy;
2860 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002861 case 128:
2862 if (!IntegerMode) {
2863 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2864 return;
2865 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002866 if (OldTy->isSignedIntegerType())
2867 NewTy = S.Context.Int128Ty;
2868 else
2869 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002870 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002871 }
2872
Eli Friedman73397492009-03-03 06:41:03 +00002873 if (ComplexMode) {
2874 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002875 }
2876
2877 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002878 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002879 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002880 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002881 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002882 cast<ValueDecl>(D)->setType(NewTy);
2883}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002884
Chandler Carruth1b03c872011-07-02 00:01:44 +00002885static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002886 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002887 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002888 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002889
Chandler Carruth87c44602011-07-01 23:49:12 +00002890 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002891 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002892 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002893 return;
2894 }
Mike Stumpbf916502009-07-24 19:02:52 +00002895
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002896 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002897}
2898
Chandler Carruth1b03c872011-07-02 00:01:44 +00002899static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002900 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002901 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002902 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002903
Mike Stumpbf916502009-07-24 19:02:52 +00002904
Chandler Carruth87c44602011-07-01 23:49:12 +00002905 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002906 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002907 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002908 return;
2909 }
Mike Stumpbf916502009-07-24 19:02:52 +00002910
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002911 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002912}
2913
Chandler Carruth1b03c872011-07-02 00:01:44 +00002914static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2915 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002916 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002917 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002918 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002919
Chris Lattner7255a2d2010-06-22 00:03:40 +00002920
Chandler Carruth87c44602011-07-01 23:49:12 +00002921 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002922 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002923 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002924 return;
2925 }
2926
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002927 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002928 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002929}
2930
Chandler Carruth1b03c872011-07-02 00:01:44 +00002931static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002932 if (S.LangOpts.CUDA) {
2933 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002934 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002935 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2936 return;
2937 }
2938
Chandler Carruth87c44602011-07-01 23:49:12 +00002939 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002940 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002941 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002942 return;
2943 }
2944
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002945 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002946 } else {
2947 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2948 }
2949}
2950
Chandler Carruth1b03c872011-07-02 00:01:44 +00002951static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002952 if (S.LangOpts.CUDA) {
2953 // check the attribute arguments.
2954 if (Attr.getNumArgs() != 0) {
2955 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2956 return;
2957 }
2958
Chandler Carruth87c44602011-07-01 23:49:12 +00002959 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002960 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002961 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002962 return;
2963 }
2964
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002965 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002966 } else {
2967 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2968 }
2969}
2970
Chandler Carruth1b03c872011-07-02 00:01:44 +00002971static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002972 if (S.LangOpts.CUDA) {
2973 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002974 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002975 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002976
Chandler Carruth87c44602011-07-01 23:49:12 +00002977 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002978 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002979 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002980 return;
2981 }
2982
Chandler Carruth87c44602011-07-01 23:49:12 +00002983 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002984 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002985 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002986 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2987 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2988 << FD->getType()
2989 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2990 "void");
2991 } else {
2992 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2993 << FD->getType();
2994 }
2995 return;
2996 }
2997
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002998 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002999 } else {
3000 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
3001 }
3002}
3003
Chandler Carruth1b03c872011-07-02 00:01:44 +00003004static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003005 if (S.LangOpts.CUDA) {
3006 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003007 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003008 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003009
Peter Collingbourneced76712010-12-01 03:15:31 +00003010
Chandler Carruth87c44602011-07-01 23:49:12 +00003011 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003012 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003013 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00003014 return;
3015 }
3016
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003017 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003018 } else {
3019 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
3020 }
3021}
3022
Chandler Carruth1b03c872011-07-02 00:01:44 +00003023static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003024 if (S.LangOpts.CUDA) {
3025 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003026 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00003027 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003028
Peter Collingbourneced76712010-12-01 03:15:31 +00003029
Chandler Carruth87c44602011-07-01 23:49:12 +00003030 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00003031 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003032 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00003033 return;
3034 }
3035
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003036 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00003037 } else {
3038 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
3039 }
3040}
3041
Chandler Carruth1b03c872011-07-02 00:01:44 +00003042static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00003043 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003044 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00003045 return;
Mike Stumpbf916502009-07-24 19:02:52 +00003046
Chandler Carruth87c44602011-07-01 23:49:12 +00003047 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00003048 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00003049 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003050 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00003051 return;
3052 }
Mike Stumpbf916502009-07-24 19:02:52 +00003053
Douglas Gregor0130f3c2009-10-27 21:01:01 +00003054 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00003055 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00003056 return;
3057 }
Mike Stumpbf916502009-07-24 19:02:52 +00003058
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003059 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00003060}
3061
Chandler Carruth1b03c872011-07-02 00:01:44 +00003062static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003063 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003064
Chandler Carruth87c44602011-07-01 23:49:12 +00003065 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003066 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3067 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00003068 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00003069 return;
3070
Chandler Carruth87c44602011-07-01 23:49:12 +00003071 if (!isa<ObjCMethodDecl>(D)) {
3072 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3073 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003074 return;
3075 }
3076
Chandler Carruth87c44602011-07-01 23:49:12 +00003077 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00003078 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003079 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003080 return;
3081 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003082 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003083 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003084 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003085 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003086 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003087 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003088 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003089 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003090 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003091 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003092 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003093 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00003094 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003095 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003096 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003097 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003098 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003099 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003100 return;
3101 }
3102
Chris Lattner5f9e2722011-07-23 10:55:15 +00003103 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003104 PcsAttr::PCSType PCS;
3105 if (StrRef == "aapcs")
3106 PCS = PcsAttr::AAPCS;
3107 else if (StrRef == "aapcs-vfp")
3108 PCS = PcsAttr::AAPCS_VFP;
3109 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003110 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3111 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003112 return;
3113 }
3114
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003115 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003116 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003117 default:
3118 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003119 }
3120}
3121
Chandler Carruth1b03c872011-07-02 00:01:44 +00003122static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003123 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003124 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003125}
3126
John McCall711c52b2011-01-05 12:14:39 +00003127bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3128 if (attr.isInvalid())
3129 return true;
3130
Ted Kremenek831efae2011-04-15 05:49:29 +00003131 if ((attr.getNumArgs() != 0 &&
3132 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3133 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003134 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3135 attr.setInvalid();
3136 return true;
3137 }
3138
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003139 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3140 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003141 switch (attr.getKind()) {
3142 case AttributeList::AT_cdecl: CC = CC_C; break;
3143 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3144 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3145 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3146 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003147 case AttributeList::AT_pcs: {
3148 Expr *Arg = attr.getArg(0);
3149 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003150 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003151 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3152 << "pcs" << 1;
3153 attr.setInvalid();
3154 return true;
3155 }
3156
Chris Lattner5f9e2722011-07-23 10:55:15 +00003157 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003158 if (StrRef == "aapcs") {
3159 CC = CC_AAPCS;
3160 break;
3161 } else if (StrRef == "aapcs-vfp") {
3162 CC = CC_AAPCS_VFP;
3163 break;
3164 }
3165 // FALLS THROUGH
3166 }
David Blaikie7530c032012-01-17 06:56:22 +00003167 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003168 }
3169
3170 return false;
3171}
3172
Chandler Carruth1b03c872011-07-02 00:01:44 +00003173static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003174 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003175
3176 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003177 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003178 return;
3179
Chandler Carruth87c44602011-07-01 23:49:12 +00003180 if (!isa<ObjCMethodDecl>(D)) {
3181 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3182 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003183 return;
3184 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003185
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003186 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003187}
3188
3189/// Checks a regparm attribute, returning true if it is ill-formed and
3190/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003191bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3192 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003193 return true;
3194
Chandler Carruth87c44602011-07-01 23:49:12 +00003195 if (Attr.getNumArgs() != 1) {
3196 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3197 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003198 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003199 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003200
Chandler Carruth87c44602011-07-01 23:49:12 +00003201 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003202 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003203 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003204 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003205 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003206 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003207 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003208 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003209 }
3210
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003211 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003212 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003213 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003214 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003215 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003216 }
3217
John McCall711c52b2011-01-05 12:14:39 +00003218 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003219 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003220 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003221 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003222 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003223 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003224 }
3225
John McCall711c52b2011-01-05 12:14:39 +00003226 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003227}
3228
Chandler Carruth1b03c872011-07-02 00:01:44 +00003229static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003230 if (S.LangOpts.CUDA) {
3231 // check the attribute arguments.
3232 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003233 // FIXME: 0 is not okay.
3234 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003235 return;
3236 }
3237
Chandler Carruth87c44602011-07-01 23:49:12 +00003238 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003239 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003240 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003241 return;
3242 }
3243
3244 Expr *MaxThreadsExpr = Attr.getArg(0);
3245 llvm::APSInt MaxThreads(32);
3246 if (MaxThreadsExpr->isTypeDependent() ||
3247 MaxThreadsExpr->isValueDependent() ||
3248 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3249 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3250 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3251 return;
3252 }
3253
3254 llvm::APSInt MinBlocks(32);
3255 if (Attr.getNumArgs() > 1) {
3256 Expr *MinBlocksExpr = Attr.getArg(1);
3257 if (MinBlocksExpr->isTypeDependent() ||
3258 MinBlocksExpr->isValueDependent() ||
3259 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3260 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3261 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3262 return;
3263 }
3264 }
3265
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003266 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003267 MaxThreads.getZExtValue(),
3268 MinBlocks.getZExtValue()));
3269 } else {
3270 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3271 }
3272}
3273
Chris Lattner0744e5f2008-06-29 00:23:49 +00003274//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003275// Checker-specific attribute handlers.
3276//===----------------------------------------------------------------------===//
3277
John McCallc7ad3812011-01-25 03:31:58 +00003278static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003279 return type->isDependentType() ||
3280 type->isObjCObjectPointerType() ||
3281 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003282}
3283static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003284 return type->isDependentType() ||
3285 type->isPointerType() ||
3286 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003287}
3288
Chandler Carruth1b03c872011-07-02 00:01:44 +00003289static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003290 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003291 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003292 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003293 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003294 return;
3295 }
3296
3297 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003298 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003299 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3300 cf = false;
3301 } else {
3302 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3303 cf = true;
3304 }
3305
3306 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003307 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003308 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003309 return;
3310 }
3311
3312 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003313 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003314 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003315 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003316}
3317
Chandler Carruth1b03c872011-07-02 00:01:44 +00003318static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3319 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003320 if (!isa<ObjCMethodDecl>(D)) {
3321 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003322 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003323 return;
3324 }
3325
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003326 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003327}
3328
Chandler Carruth1b03c872011-07-02 00:01:44 +00003329static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3330 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003331
John McCallc7ad3812011-01-25 03:31:58 +00003332 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003333
Chandler Carruth87c44602011-07-01 23:49:12 +00003334 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003335 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003336 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003337 returnType = PD->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +00003338 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Chandler Carruth87c44602011-07-01 23:49:12 +00003339 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003340 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003341 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003342 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003343 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003344 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003345 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003346 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003347 return;
3348 }
Mike Stumpbf916502009-07-24 19:02:52 +00003349
John McCallc7ad3812011-01-25 03:31:58 +00003350 bool typeOK;
3351 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003352 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003353 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003354 case AttributeList::AT_ns_returns_autoreleased:
3355 case AttributeList::AT_ns_returns_retained:
3356 case AttributeList::AT_ns_returns_not_retained:
3357 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3358 cf = false;
3359 break;
3360
3361 case AttributeList::AT_cf_returns_retained:
3362 case AttributeList::AT_cf_returns_not_retained:
3363 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3364 cf = true;
3365 break;
3366 }
3367
3368 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003369 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003370 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003371 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003372 }
Mike Stumpbf916502009-07-24 19:02:52 +00003373
Chandler Carruth87c44602011-07-01 23:49:12 +00003374 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003375 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003376 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003377 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003378 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003379 S.Context));
3380 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003381 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003382 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003383 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003384 return;
3385 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003386 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003387 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003388 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003389 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003390 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003391 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003392 return;
3393 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003394 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003395 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003396 return;
3397 };
3398}
3399
John McCalldc7c5ad2011-07-22 08:53:00 +00003400static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3401 const AttributeList &attr) {
3402 SourceLocation loc = attr.getLoc();
3403
3404 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3405
Fariborz Jahanian94d55d72012-04-21 17:51:44 +00003406 if (!method) {
Fariborz Jahanian0e78afb2012-04-20 22:00:46 +00003407 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003408 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00003409 return;
3410 }
3411
3412 // Check that the method returns a normal pointer.
3413 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003414
3415 if (!resultType->isReferenceType() &&
3416 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003417 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3418 << SourceRange(loc)
3419 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3420
3421 // Drop the attribute.
3422 return;
3423 }
3424
3425 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003426 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003427}
3428
John McCall8dfac0b2011-09-30 05:12:12 +00003429/// Handle cf_audited_transfer and cf_unknown_transfer.
3430static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3431 if (!isa<FunctionDecl>(D)) {
3432 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003433 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00003434 return;
3435 }
3436
3437 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3438
3439 // Check whether there's a conflicting attribute already present.
3440 Attr *Existing;
3441 if (IsAudited) {
3442 Existing = D->getAttr<CFUnknownTransferAttr>();
3443 } else {
3444 Existing = D->getAttr<CFAuditedTransferAttr>();
3445 }
3446 if (Existing) {
3447 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3448 << A.getName()
3449 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3450 << A.getRange() << Existing->getRange();
3451 return;
3452 }
3453
3454 // All clear; add the attribute.
3455 if (IsAudited) {
3456 D->addAttr(
3457 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3458 } else {
3459 D->addAttr(
3460 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3461 }
3462}
3463
John McCallfe98da02011-09-29 07:17:38 +00003464static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3465 const AttributeList &Attr) {
3466 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3467 if (!RD || RD->isUnion()) {
3468 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003469 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00003470 }
3471
3472 IdentifierInfo *ParmName = Attr.getParameterName();
3473
3474 // In Objective-C, verify that the type names an Objective-C type.
3475 // We don't want to check this outside of ObjC because people sometimes
3476 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00003477 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00003478 // Check for an existing type with this name.
3479 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3480 Sema::LookupOrdinaryName);
3481 if (S.LookupName(R, Sc)) {
3482 NamedDecl *Target = R.getFoundDecl();
3483 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3484 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3485 S.Diag(Target->getLocStart(), diag::note_declared_at);
3486 }
3487 }
3488 }
3489
3490 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3491 ParmName));
3492}
3493
Chandler Carruth1b03c872011-07-02 00:01:44 +00003494static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3495 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003496 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003497
Chandler Carruth87c44602011-07-01 23:49:12 +00003498 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003499 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003500}
3501
Chandler Carruth1b03c872011-07-02 00:01:44 +00003502static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3503 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003504 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003505 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003506 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003507 return;
3508 }
3509
Chandler Carruth87c44602011-07-01 23:49:12 +00003510 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003511 QualType type = vd->getType();
3512
3513 if (!type->isDependentType() &&
3514 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003515 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003516 << type;
3517 return;
3518 }
3519
3520 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3521
3522 // If we have no lifetime yet, check the lifetime we're presumably
3523 // going to infer.
3524 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3525 lifetime = type->getObjCARCImplicitLifetime();
3526
3527 switch (lifetime) {
3528 case Qualifiers::OCL_None:
3529 assert(type->isDependentType() &&
3530 "didn't infer lifetime for non-dependent type?");
3531 break;
3532
3533 case Qualifiers::OCL_Weak: // meaningful
3534 case Qualifiers::OCL_Strong: // meaningful
3535 break;
3536
3537 case Qualifiers::OCL_ExplicitNone:
3538 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003539 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003540 << (lifetime == Qualifiers::OCL_Autoreleasing);
3541 break;
3542 }
3543
Chandler Carruth87c44602011-07-01 23:49:12 +00003544 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003545 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003546}
3547
Charles Davisf0122fe2010-02-16 18:27:26 +00003548static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
Aaron Ballman94287722012-02-23 22:46:33 +00003549 switch (Attr.getKind()) {
3550 default:
3551 return false;
3552 case AttributeList::AT_dllimport:
3553 case AttributeList::AT_dllexport:
3554 case AttributeList::AT_uuid:
3555 case AttributeList::AT_deprecated:
3556 case AttributeList::AT_noreturn:
3557 case AttributeList::AT_nothrow:
3558 case AttributeList::AT_naked:
3559 case AttributeList::AT_noinline:
3560 return true;
3561 }
Francois Pichet11542142010-12-19 06:50:37 +00003562}
3563
3564//===----------------------------------------------------------------------===//
3565// Microsoft specific attribute handlers.
3566//===----------------------------------------------------------------------===//
3567
Chandler Carruth1b03c872011-07-02 00:01:44 +00003568static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003569 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003570 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003571 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003572 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003573
Francois Pichet11542142010-12-19 06:50:37 +00003574 Expr *Arg = Attr.getArg(0);
3575 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003576 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003577 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3578 << "uuid" << 1;
3579 return;
3580 }
3581
Chris Lattner5f9e2722011-07-23 10:55:15 +00003582 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003583
3584 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3585 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003586
Francois Pichetd3d3be92010-12-20 01:41:49 +00003587 // Validate GUID length.
3588 if (IsCurly && StrRef.size() != 38) {
3589 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3590 return;
3591 }
3592 if (!IsCurly && StrRef.size() != 36) {
3593 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3594 return;
3595 }
3596
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003597 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00003598 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003599 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003600 if (IsCurly) // Skip the optional '{'
3601 ++I;
3602
3603 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003604 if (i == 8 || i == 13 || i == 18 || i == 23) {
3605 if (*I != '-') {
3606 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3607 return;
3608 }
3609 } else if (!isxdigit(*I)) {
3610 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3611 return;
3612 }
3613 I++;
3614 }
Francois Pichet11542142010-12-19 06:50:37 +00003615
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003616 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003617 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003618 } else
Francois Pichet11542142010-12-19 06:50:37 +00003619 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003620}
3621
Ted Kremenekb71368d2009-05-09 02:44:38 +00003622//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003623// Top Level Sema Entry Points
3624//===----------------------------------------------------------------------===//
3625
Chandler Carruth1b03c872011-07-02 00:01:44 +00003626static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3627 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003628 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003629 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3630 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3631 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003632 default:
3633 break;
3634 }
3635}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003636
Chandler Carruth1b03c872011-07-02 00:01:44 +00003637static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3638 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003639 switch (Attr.getKind()) {
Michael Hane53ac8a2012-03-07 00:12:16 +00003640 case AttributeList::AT_ibaction: handleIBAction(S, D, Attr); break;
3641 case AttributeList::AT_iboutlet: handleIBOutlet(S, D, Attr); break;
3642 case AttributeList::AT_iboutletcollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003643 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003644 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003645 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003646 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003647 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003648 case AttributeList::AT_neon_vector_type:
3649 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003650 // Ignore these, these are type attributes, handled by
3651 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003652 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003653 case AttributeList::AT_device:
3654 case AttributeList::AT_host:
3655 case AttributeList::AT_overloadable:
3656 // Ignore, this is a non-inheritable attribute, handled
3657 // by ProcessNonInheritableDeclAttr.
3658 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003659 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3660 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003661 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003662 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003663 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003664 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3665 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3666 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003667 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003668 handleDependencyAttr (S, D, Attr); break;
3669 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3670 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3671 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3672 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3673 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003674 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003675 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003676 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003677 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3678 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3679 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3680 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003681 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003682 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003683 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003684 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3685 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3686 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3687 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3688 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003689 case AttributeList::AT_ownership_returns:
3690 case AttributeList::AT_ownership_takes:
3691 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003692 handleOwnershipAttr (S, D, Attr); break;
3693 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3694 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3695 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3696 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3697 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003698
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003699 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003700 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003701 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003702 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003703
John McCalldc7c5ad2011-07-22 08:53:00 +00003704 case AttributeList::AT_objc_returns_inner_pointer:
3705 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3706
John McCallfe98da02011-09-29 07:17:38 +00003707 case AttributeList::AT_ns_bridged:
3708 handleNSBridgedAttr(S, scope, D, Attr); break;
3709
John McCall8dfac0b2011-09-30 05:12:12 +00003710 case AttributeList::AT_cf_audited_transfer:
3711 case AttributeList::AT_cf_unknown_transfer:
3712 handleCFTransferAttr(S, D, Attr); break;
3713
Ted Kremenekb71368d2009-05-09 02:44:38 +00003714 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003715 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003716 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003717 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003718 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003719
3720 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003721 case AttributeList::AT_ns_returns_not_retained:
3722 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003723 case AttributeList::AT_ns_returns_retained:
3724 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003725 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003726
Michael Hane53ac8a2012-03-07 00:12:16 +00003727 case AttributeList::AT_reqd_work_group_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003728 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003729
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003730 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003731 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003732
Chandler Carruth1b03c872011-07-02 00:01:44 +00003733 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003734 case AttributeList::AT_ms_struct: handleMsStructAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003735 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3736 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003737 case AttributeList::AT_objc_arc_weak_reference_unavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003738 handleArcWeakrefUnavailableAttr (S, D, Attr);
3739 break;
Patrick Beardb2f68202012-04-06 18:12:22 +00003740 case AttributeList::AT_objc_root_class:
3741 handleObjCRootClassAttr(S, D, Attr);
3742 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00003743 case AttributeList::AT_objc_requires_property_definitions:
3744 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00003745 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003746 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003747 case AttributeList::AT_returns_twice:
3748 handleReturnsTwiceAttr(S, D, Attr);
3749 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003750 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3751 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3752 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003753 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003754 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3755 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3756 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003757 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003758 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003759 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003760 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003761 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003762 break;
John McCalld5313b02011-03-02 11:33:24 +00003763 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003764 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003765 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003766 case AttributeList::AT_NSObject: handleObjCNSObject (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003767 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3768 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3769 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3770 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3771 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3772 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3773 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3774 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003775 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003776 // Just ignore
3777 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003778 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003779 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003780 break;
John McCall04a67a62010-02-05 21:31:56 +00003781 case AttributeList::AT_stdcall:
3782 case AttributeList::AT_cdecl:
3783 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003784 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003785 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003786 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003787 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003788 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003789 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003790 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003791 break;
Francois Pichet11542142010-12-19 06:50:37 +00003792 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003793 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003794 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003795
3796 // Thread safety attributes:
3797 case AttributeList::AT_guarded_var:
3798 handleGuardedVarAttr(S, D, Attr);
3799 break;
3800 case AttributeList::AT_pt_guarded_var:
3801 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3802 break;
3803 case AttributeList::AT_scoped_lockable:
3804 handleLockableAttr(S, D, Attr, /*scoped = */true);
3805 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00003806 case AttributeList::AT_no_address_safety_analysis:
3807 handleNoAddressSafetyAttr(S, D, Attr);
3808 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003809 case AttributeList::AT_no_thread_safety_analysis:
3810 handleNoThreadSafetyAttr(S, D, Attr);
3811 break;
3812 case AttributeList::AT_lockable:
3813 handleLockableAttr(S, D, Attr);
3814 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003815 case AttributeList::AT_guarded_by:
3816 handleGuardedByAttr(S, D, Attr);
3817 break;
3818 case AttributeList::AT_pt_guarded_by:
3819 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3820 break;
3821 case AttributeList::AT_exclusive_lock_function:
3822 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3823 break;
3824 case AttributeList::AT_exclusive_locks_required:
3825 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3826 break;
3827 case AttributeList::AT_exclusive_trylock_function:
3828 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3829 break;
3830 case AttributeList::AT_lock_returned:
3831 handleLockReturnedAttr(S, D, Attr);
3832 break;
3833 case AttributeList::AT_locks_excluded:
3834 handleLocksExcludedAttr(S, D, Attr);
3835 break;
3836 case AttributeList::AT_shared_lock_function:
3837 handleLockFunAttr(S, D, Attr);
3838 break;
3839 case AttributeList::AT_shared_locks_required:
3840 handleLocksRequiredAttr(S, D, Attr);
3841 break;
3842 case AttributeList::AT_shared_trylock_function:
3843 handleTrylockFunAttr(S, D, Attr);
3844 break;
3845 case AttributeList::AT_unlock_function:
3846 handleUnlockFunAttr(S, D, Attr);
3847 break;
3848 case AttributeList::AT_acquired_before:
3849 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3850 break;
3851 case AttributeList::AT_acquired_after:
3852 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3853 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003854
Chris Lattner803d0802008-06-29 00:43:07 +00003855 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003856 // Ask target about the attribute.
3857 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3858 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003859 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3860 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003861 break;
3862 }
3863}
3864
Peter Collingbourne60700392011-01-21 02:08:45 +00003865/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3866/// the attribute applies to decls. If the attribute is a type attribute, just
3867/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3868/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003869static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3870 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003871 bool NonInheritable, bool Inheritable) {
3872 if (Attr.isInvalid())
3873 return;
3874
3875 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3876 // FIXME: Try to deal with other __declspec attributes!
3877 return;
3878
3879 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003880 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003881
3882 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003883 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003884}
3885
Chris Lattner803d0802008-06-29 00:43:07 +00003886/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3887/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003888void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003889 const AttributeList *AttrList,
3890 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003891 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003892 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003893 }
3894
3895 // GCC accepts
3896 // static int a9 __attribute__((weakref));
3897 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003898 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003899 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003900 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003901 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003902 }
3903}
3904
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003905// Annotation attributes are the only attributes allowed after an access
3906// specifier.
3907bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3908 const AttributeList *AttrList) {
3909 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3910 if (l->getKind() == AttributeList::AT_annotate) {
3911 handleAnnotateAttr(*this, ASDecl, *l);
3912 } else {
3913 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3914 return true;
3915 }
3916 }
3917
3918 return false;
3919}
3920
John McCalle82247a2011-10-01 05:17:03 +00003921/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3922/// contains any decl attributes that we should warn about.
3923static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3924 for ( ; A; A = A->getNext()) {
3925 // Only warn if the attribute is an unignored, non-type attribute.
3926 if (A->isUsedAsTypeAttr()) continue;
3927 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3928
3929 if (A->getKind() == AttributeList::UnknownAttribute) {
3930 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3931 << A->getName() << A->getRange();
3932 } else {
3933 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3934 << A->getName() << A->getRange();
3935 }
3936 }
3937}
3938
3939/// checkUnusedDeclAttributes - Given a declarator which is not being
3940/// used to build a declaration, complain about any decl attributes
3941/// which might be lying around on it.
3942void Sema::checkUnusedDeclAttributes(Declarator &D) {
3943 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3944 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3945 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3946 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3947}
3948
Ryan Flynne25ff832009-07-30 03:15:39 +00003949/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3950/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003951NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3952 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003953 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003954 NamedDecl *NewD = 0;
3955 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003956 FunctionDecl *NewFD;
3957 // FIXME: Missing call to CheckFunctionDeclaration().
3958 // FIXME: Mangling?
3959 // FIXME: Is the qualifier info correct?
3960 // FIXME: Is the DeclContext correct?
3961 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3962 Loc, Loc, DeclarationName(II),
3963 FD->getType(), FD->getTypeSourceInfo(),
3964 SC_None, SC_None,
3965 false/*isInlineSpecified*/,
3966 FD->hasPrototype(),
3967 false/*isConstexprSpecified*/);
3968 NewD = NewFD;
3969
3970 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003971 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003972
3973 // Fake up parameter variables; they are declared as if this were
3974 // a typedef.
3975 QualType FDTy = FD->getType();
3976 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3977 SmallVector<ParmVarDecl*, 16> Params;
3978 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3979 AE = FT->arg_type_end(); AI != AE; ++AI) {
3980 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3981 Param->setScopeInfo(0, Params.size());
3982 Params.push_back(Param);
3983 }
David Blaikie4278c652011-09-21 18:16:56 +00003984 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003985 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003986 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3987 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003988 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003989 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003990 VD->getStorageClass(),
3991 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003992 if (VD->getQualifier()) {
3993 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003994 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003995 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003996 }
3997 return NewD;
3998}
3999
4000/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
4001/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00004002void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004003 if (W.getUsed()) return; // only do this once
4004 W.setUsed(true);
4005 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
4006 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00004007 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00004008 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
4009 NDId->getName()));
4010 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00004011 WeakTopLevelDecl.push_back(NewD);
4012 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
4013 // to insert Decl at TU scope, sorry.
4014 DeclContext *SavedContext = CurContext;
4015 CurContext = Context.getTranslationUnitDecl();
4016 PushOnScopeChains(NewD, S);
4017 CurContext = SavedContext;
4018 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00004019 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00004020 }
4021}
4022
Chris Lattner0744e5f2008-06-29 00:23:49 +00004023/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
4024/// it, apply them to D. This is a bit tricky because PD can have attributes
4025/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00004026void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
4027 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00004028 // It's valid to "forward-declare" #pragma weak, in which case we
4029 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00004030 if (Inheritable) {
4031 LoadExternalWeakUndeclaredIdentifiers();
4032 if (!WeakUndeclaredIdentifiers.empty()) {
4033 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
4034 if (IdentifierInfo *Id = ND->getIdentifier()) {
4035 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
4036 = WeakUndeclaredIdentifiers.find(Id);
4037 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
4038 WeakInfo W = I->second;
4039 DeclApplyPragmaWeak(S, ND, W);
4040 WeakUndeclaredIdentifiers[Id] = W;
4041 }
John McCalld4aff0e2010-10-27 00:59:00 +00004042 }
Ryan Flynne25ff832009-07-30 03:15:39 +00004043 }
4044 }
4045 }
4046
Chris Lattner0744e5f2008-06-29 00:23:49 +00004047 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00004048 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00004049 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004050
Chris Lattner0744e5f2008-06-29 00:23:49 +00004051 // Walk the declarator structure, applying decl attributes that were in a type
4052 // position to the decl itself. This handles cases like:
4053 // int *__attr__(x)** D;
4054 // when X is a decl attribute.
4055 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
4056 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00004057 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00004058
Chris Lattner0744e5f2008-06-29 00:23:49 +00004059 // Finally, apply any attributes on the decl itself.
4060 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00004061 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00004062}
John McCall54abf7d2009-11-04 02:18:39 +00004063
John McCallf85e1932011-06-15 23:02:42 +00004064/// Is the given declaration allowed to use a forbidden type?
4065static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4066 // Private ivars are always okay. Unfortunately, people don't
4067 // always properly make their ivars private, even in system headers.
4068 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00004069 // Function declarations in sys headers will be marked unavailable.
4070 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4071 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00004072 return false;
4073
4074 // Require it to be declared in a system header.
4075 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4076}
4077
4078/// Handle a delayed forbidden-type diagnostic.
4079static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4080 Decl *decl) {
4081 if (decl && isForbiddenTypeAllowed(S, decl)) {
4082 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4083 "this system declaration uses an unsupported type"));
4084 return;
4085 }
David Blaikie4e4d0842012-03-11 07:00:24 +00004086 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00004087 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4088 // FIXME. we may want to supress diagnostics for all
4089 // kind of forbidden type messages on unavailable functions.
4090 if (FD->hasAttr<UnavailableAttr>() &&
4091 diag.getForbiddenTypeDiagnostic() ==
4092 diag::err_arc_array_param_no_ownership) {
4093 diag.Triggered = true;
4094 return;
4095 }
4096 }
John McCallf85e1932011-06-15 23:02:42 +00004097
4098 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4099 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4100 diag.Triggered = true;
4101}
4102
John McCalleee1d542011-02-14 07:13:47 +00004103// This duplicates a vector push_back but hides the need to know the
4104// size of the type.
4105void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
4106 assert(StackSize <= StackCapacity);
4107
4108 // Grow the stack if necessary.
4109 if (StackSize == StackCapacity) {
4110 unsigned newCapacity = 2 * StackCapacity + 2;
4111 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
4112 const char *oldBuffer = (const char*) Stack;
4113
4114 if (StackCapacity)
4115 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
4116
4117 delete[] oldBuffer;
4118 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
4119 StackCapacity = newCapacity;
4120 }
4121
4122 assert(StackSize < StackCapacity);
4123 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00004124}
4125
John McCalleee1d542011-02-14 07:13:47 +00004126void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
4127 Decl *decl) {
4128 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00004129
John McCalleee1d542011-02-14 07:13:47 +00004130 // Check the invariants.
4131 assert(DD.StackSize >= state.SavedStackSize);
4132 assert(state.SavedStackSize >= DD.ActiveStackBase);
4133 assert(DD.ParsingDepth > 0);
4134
4135 // Drop the parsing depth.
4136 DD.ParsingDepth--;
4137
4138 // If there are no active diagnostics, we're done.
4139 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00004140 return;
4141
John McCall2f514482010-01-27 03:50:35 +00004142 // We only want to actually emit delayed diagnostics when we
4143 // successfully parsed a decl.
John McCalle8c904f2012-01-26 20:04:03 +00004144 if (decl) {
John McCalleee1d542011-02-14 07:13:47 +00004145 // We emit all the active diagnostics, not just those starting
4146 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00004147 // decl spec and another for each declarator; in a decl group like:
4148 // deprecated_typedef foo, *bar, baz();
4149 // only the declarator pops will be passed decls. This is correct;
4150 // we really do need to consider delayed diagnostics from the decl spec
4151 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00004152 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4153 DelayedDiagnostic &diag = DD.Stack[i];
4154 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004155 continue;
4156
John McCalleee1d542011-02-14 07:13:47 +00004157 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004158 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00004159 // Don't bother giving deprecation diagnostics if the decl is invalid.
4160 if (!decl->isInvalidDecl())
4161 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004162 break;
4163
4164 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00004165 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004166 break;
John McCallf85e1932011-06-15 23:02:42 +00004167
4168 case DelayedDiagnostic::ForbiddenType:
4169 handleDelayedForbiddenType(S, diag, decl);
4170 break;
John McCall2f514482010-01-27 03:50:35 +00004171 }
4172 }
4173 }
4174
John McCall58e6f342010-03-16 05:22:47 +00004175 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00004176 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00004177 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00004178
John McCalleee1d542011-02-14 07:13:47 +00004179 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00004180}
4181
4182static bool isDeclDeprecated(Decl *D) {
4183 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004184 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004185 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004186 // A category implicitly has the availability of the interface.
4187 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4188 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004189 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4190 return false;
4191}
4192
John McCall9c3087b2010-08-26 02:13:20 +00004193void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004194 Decl *Ctx) {
4195 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004196 return;
4197
John McCall2f514482010-01-27 03:50:35 +00004198 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004199 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004200 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004201 << DD.getDeprecationDecl()->getDeclName()
4202 << DD.getDeprecationMessage();
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004203 else if (DD.getUnknownObjCClass()) {
4204 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4205 << DD.getDeprecationDecl()->getDeclName();
4206 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4207 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004208 else
4209 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004210 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004211}
4212
Chris Lattner5f9e2722011-07-23 10:55:15 +00004213void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004214 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004215 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004216 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004217 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004218 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4219 UnknownObjCClass,
4220 Message));
John McCall54abf7d2009-11-04 02:18:39 +00004221 return;
4222 }
4223
4224 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004225 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004226 return;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004227 if (!Message.empty()) {
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004228 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4229 << Message;
Fariborz Jahaniand6724362012-04-23 20:30:52 +00004230 Diag(D->getLocation(),
4231 isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at
4232 : diag::note_previous_decl) << D->getDeclName();
4233 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004234 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004235 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004236 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004237 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004238 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004239 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4240 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004241 }
John McCall54abf7d2009-11-04 02:18:39 +00004242}