blob: 77809e153f1043ab39aad0b8a05b601abd82eb50 [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
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000241///
242/// \brief Check if passed in Decl is a pointer type.
243/// Note that this function may produce an error message.
244/// \return true if the Decl is a pointer type; false otherwise
245///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000246static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
247 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000248 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000249 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000250 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000251 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
252 << Attr.getName()->getName() << QT;
253 } else {
254 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
255 << Attr.getName();
256 }
257 return false;
258}
259
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000260/// \brief Checks that the passed in QualType either is of RecordType or points
261/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000262static const RecordType *getRecordType(QualType QT) {
263 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000264 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000265
266 // Now check if we point to record type.
267 if (const PointerType *PT = QT->getAs<PointerType>())
268 return PT->getPointeeType()->getAs<RecordType>();
269
270 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000271}
272
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000273/// \brief Thread Safety Analysis: Checks that the passed in RecordType
274/// resolves to a lockable object. May flag an error.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000275static bool checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
276 const RecordType *RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000277 // Flag error if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000278 if (!RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000279 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_class)
280 << Attr.getName();
281 return false;
282 }
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000283 // Don't check for lockable if the class hasn't been defined yet.
284 if (RT->isIncompleteType())
285 return true;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000286 // Flag error if the type is not lockable.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000287 if (!RT->getDecl()->getAttr<LockableAttr>()) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000288 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
289 << Attr.getName();
290 return false;
291 }
292 return true;
293}
294
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000295/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
296/// from Sidx, resolve to a lockable object. May flag an error.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000297/// \param Sidx The attribute argument index to start checking with.
298/// \param ParamIdxOk Whether an argument can be indexing into a function
299/// parameter list.
300static bool checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
301 const AttributeList &Attr,
302 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000303 int Sidx = 0,
304 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000305 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000306 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000307
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000308 if (ArgExp->isTypeDependent()) {
309 // FIXME -- need to processs this again on template instantiation
310 Args.push_back(ArgExp);
311 continue;
312 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000313
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000314 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000315
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000316 // First see if we can just cast to record type, or point to record type.
317 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000318
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000319 // Now check if we index into a record type function param.
320 if(!RT && ParamIdxOk) {
321 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000322 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
323 if(FD && IL) {
324 unsigned int NumParams = FD->getNumParams();
325 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000326 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
327 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
328 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000329 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
330 << Attr.getName() << Idx + 1 << NumParams;
331 return false;
332 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000333 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
334 RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000335 }
336 }
337
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000338 if (!checkForLockableRecord(S, D, Attr, RT))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000339 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000340
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000341 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000342 }
343 return true;
344}
345
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000346//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000347// Attribute Implementations
348//===----------------------------------------------------------------------===//
349
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000350// FIXME: All this manual attribute parsing code is gross. At the
351// least add some helper functions to check most argument patterns (#
352// and types of args).
353
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000354static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
355 bool pointer = false) {
356 assert(!Attr.isInvalid());
357
358 if (!checkAttributeNumArgs(S, Attr, 0))
359 return;
360
361 // D must be either a member field or global (potentially shared) variable.
362 if (!mayBeSharedVariable(D)) {
363 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000364 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000365 return;
366 }
367
368 if (pointer && !checkIsPointer(S, D, Attr))
369 return;
370
371 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000372 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000373 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000374 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000375}
376
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000377static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000378 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000379 assert(!Attr.isInvalid());
380
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000381 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000382 return;
383
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000384 Expr *Arg = Attr.getArg(0);
385
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000386 // D must be either a member field or global (potentially shared) variable.
387 if (!mayBeSharedVariable(D)) {
388 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000389 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000390 return;
391 }
392
393 if (pointer && !checkIsPointer(S, D, Attr))
394 return;
395
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +0000396 if (!Arg->isTypeDependent()) {
397 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
398 return;
399 // FIXME -- semantic checks for dependent attributes
400 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000401
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000402 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000403 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000404 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000405 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000406 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000407}
408
409
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000410static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
411 bool scoped = false) {
412 assert(!Attr.isInvalid());
413
414 if (!checkAttributeNumArgs(S, Attr, 0))
415 return;
416
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000417 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000418 if (!isa<CXXRecordDecl>(D)) {
419 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
420 << Attr.getName() << ExpectedClass;
421 return;
422 }
423
424 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000425 D->addAttr(::new (S.Context) ScopedLockableAttr(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) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000428}
429
430static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
431 const AttributeList &Attr) {
432 assert(!Attr.isInvalid());
433
434 if (!checkAttributeNumArgs(S, Attr, 0))
435 return;
436
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000437 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
439 << Attr.getName() << ExpectedFunctionOrMethod;
440 return;
441 }
442
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000443 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000444 S.Context));
445}
446
Kostya Serebryany71efba02012-01-24 19:25:38 +0000447static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
448 const AttributeList &Attr) {
449 assert(!Attr.isInvalid());
450
451 if (!checkAttributeNumArgs(S, Attr, 0))
452 return;
453
454 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
455 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
456 << Attr.getName() << ExpectedFunctionOrMethod;
457 return;
458 }
459
460 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
461 S.Context));
462}
463
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000464static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
465 bool before) {
466 assert(!Attr.isInvalid());
467
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000468 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000469 return;
470
471 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000472 ValueDecl *VD = dyn_cast<ValueDecl>(D);
473 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000474 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000476 return;
477 }
478
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000479 // Check that this attribute only applies to lockable types
480 QualType QT = VD->getType();
481 if (!QT->isDependentType()) {
482 const RecordType *RT = getRecordType(QT);
483 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
484 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
485 << Attr.getName();
486 return;
487 }
488 }
489
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000490 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000491 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000492 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000493 return;
494
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000495 unsigned Size = Args.size();
496 assert(Size == Attr.getNumArgs());
497 Expr **StartArg = Size == 0 ? 0 : &Args[0];
498
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000499 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000500 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000501 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000502 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000503 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000504 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000505}
506
507static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000508 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000509 assert(!Attr.isInvalid());
510
511 // zero or more arguments ok
512
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000513 // check that the attribute is applied to a function
514 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000515 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
516 << Attr.getName() << ExpectedFunctionOrMethod;
517 return;
518 }
519
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000520 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000521 SmallVector<Expr*, 1> Args;
522 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000523 return;
524
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000525 unsigned Size = Args.size();
526 assert(Size == Attr.getNumArgs());
527 Expr **StartArg = Size == 0 ? 0 : &Args[0];
528
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000529 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000530 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000531 S.Context, StartArg,
532 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000533 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000534 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000535 S.Context, StartArg,
536 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000537}
538
539static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000540 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541 assert(!Attr.isInvalid());
542
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000543 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000544 return;
545
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000546
547 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000548 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
549 << Attr.getName() << ExpectedFunctionOrMethod;
550 return;
551 }
552
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000553 if (!isIntOrBool(Attr.getArg(0))) {
554 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
555 << Attr.getName();
556 return;
557 }
558
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000559 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000560 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000561 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000562 return;
563
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000564 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000565 Expr **StartArg = Size == 0 ? 0 : &Args[0];
566
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000567 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000568 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000569 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000570 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000571 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000572 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000573 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000574 S.Context,
575 Attr.getArg(0),
576 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000577}
578
579static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000580 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000581 assert(!Attr.isInvalid());
582
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000583 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000584 return;
585
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000586 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000587 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
588 << Attr.getName() << ExpectedFunctionOrMethod;
589 return;
590 }
591
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000592 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000593 SmallVector<Expr*, 1> Args;
594 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000595 return;
596
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000597 unsigned Size = Args.size();
598 assert(Size == Attr.getNumArgs());
599 Expr **StartArg = Size == 0 ? 0 : &Args[0];
600
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000601 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000602 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000603 S.Context, StartArg,
604 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000605 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000606 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000607 S.Context, StartArg,
608 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000609}
610
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000611static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000612 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000613 assert(!Attr.isInvalid());
614
615 // zero or more arguments ok
616
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000617 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000618 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
619 << Attr.getName() << ExpectedFunctionOrMethod;
620 return;
621 }
622
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000623 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000624 SmallVector<Expr*, 1> Args;
625 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000626 return;
627
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000628 unsigned Size = Args.size();
629 assert(Size == Attr.getNumArgs());
630 Expr **StartArg = Size == 0 ? 0 : &Args[0];
631
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000632 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000633 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000634}
635
636static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000637 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000638 assert(!Attr.isInvalid());
639
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000640 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000641 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000642 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000643
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000644 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000645 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
646 << Attr.getName() << ExpectedFunctionOrMethod;
647 return;
648 }
649
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000650 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000651 return;
652
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000653 // check that the argument is lockable object
654 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
655 return;
656
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000657 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000658}
659
660static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000661 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000662 assert(!Attr.isInvalid());
663
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000664 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 return;
666
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000667 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000668 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
669 << Attr.getName() << ExpectedFunctionOrMethod;
670 return;
671 }
672
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000673 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000674 SmallVector<Expr*, 1> Args;
675 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 return;
677
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000678 unsigned Size = Args.size();
679 assert(Size == Attr.getNumArgs());
680 Expr **StartArg = Size == 0 ? 0 : &Args[0];
681
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000682 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000683 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000684}
685
686
Chandler Carruth1b03c872011-07-02 00:01:44 +0000687static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
688 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000689 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000690 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000691 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000692 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000693 }
Mike Stumpbf916502009-07-24 19:02:52 +0000694
Chris Lattner6b6b5372008-06-26 18:38:35 +0000695 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000696
697 Expr *sizeExpr;
698
699 // Special case where the argument is a template id.
700 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000701 CXXScopeSpec SS;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000702 SourceLocation TemplateKWLoc;
John McCallf7a1a742009-11-24 19:00:30 +0000703 UnqualifiedId id;
704 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000705
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000706 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
707 false, false);
Douglas Gregor4ac01402011-06-15 16:02:29 +0000708 if (Size.isInvalid())
709 return;
710
711 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000712 } else {
713 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000714 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000715 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000716
Peter Collingbourne7a730022010-11-23 20:45:58 +0000717 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000718 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000719
720 // Instantiate/Install the vector type, and let Sema build the type for us.
721 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000722 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000723 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000724 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000725 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000726
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000727 // Remember this typedef decl, we will need it later for diagnostics.
728 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000729 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000730}
731
Chandler Carruth1b03c872011-07-02 00:01:44 +0000732static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000733 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000734 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000735 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000736
Chandler Carruth87c44602011-07-01 23:49:12 +0000737 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000738 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000739 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000740 // If the alignment is less than or equal to 8 bits, the packed attribute
741 // has no effect.
742 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000743 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000744 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000745 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000746 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000747 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000748 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000749 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000750}
751
Chandler Carruth1b03c872011-07-02 00:01:44 +0000752static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000753 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000754 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000755 else
756 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
757}
758
Chandler Carruth1b03c872011-07-02 00:01:44 +0000759static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000760 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000761 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000762 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000763
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000764 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000765 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000766 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000767 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000768 return;
769 }
770
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000771 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000772}
773
Ted Kremenek2f041d02011-09-29 07:02:25 +0000774static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
775 // The IBOutlet/IBOutletCollection attributes only apply to instance
776 // variables or properties of Objective-C classes. The outlet must also
777 // have an object reference type.
778 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
779 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000780 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000781 << Attr.getName() << VD->getType() << 0;
782 return false;
783 }
784 }
785 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
786 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000787 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000788 << Attr.getName() << PD->getType() << 1;
789 return false;
790 }
791 }
792 else {
793 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
794 return false;
795 }
Douglas Gregorf6b8b582012-03-14 16:55:17 +0000796
Ted Kremenek2f041d02011-09-29 07:02:25 +0000797 return true;
798}
799
Chandler Carruth1b03c872011-07-02 00:01:44 +0000800static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000801 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000802 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000803 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000804
805 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000806 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000807
Ted Kremenek2f041d02011-09-29 07:02:25 +0000808 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000809}
810
Chandler Carruth1b03c872011-07-02 00:01:44 +0000811static void handleIBOutletCollection(Sema &S, Decl *D,
812 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000813
814 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000815 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000816 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
817 return;
818 }
819
Ted Kremenek2f041d02011-09-29 07:02:25 +0000820 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000821 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000822
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000823 IdentifierInfo *II = Attr.getParameterName();
824 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000825 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000826
John McCallb3d87482010-08-24 05:47:05 +0000827 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000828 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000829 if (!TypeRep) {
830 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
831 return;
832 }
John McCallb3d87482010-08-24 05:47:05 +0000833 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000834 // Diagnose use of non-object type in iboutletcollection attribute.
835 // FIXME. Gnu attribute extension ignores use of builtin types in
836 // attributes. So, __attribute__((iboutletcollection(char))) will be
837 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000838 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000839 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
840 return;
841 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000842 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
843 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000844}
845
Chandler Carruthd309c812011-07-01 23:49:16 +0000846static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000847 if (const RecordType *UT = T->getAsUnionType())
848 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
849 RecordDecl *UD = UT->getDecl();
850 for (RecordDecl::field_iterator it = UD->field_begin(),
851 itend = UD->field_end(); it != itend; ++it) {
852 QualType QT = it->getType();
853 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
854 T = QT;
855 return;
856 }
857 }
858 }
859}
860
Chandler Carruth1b03c872011-07-02 00:01:44 +0000861static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000862 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
863 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000864 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000866 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000867 return;
868 }
Mike Stumpbf916502009-07-24 19:02:52 +0000869
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000870 // In C++ the implicit 'this' function parameter also counts, and they are
871 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000872 bool HasImplicitThisParam = isInstanceMethod(D);
873 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000874
875 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000876 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000877
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000878 for (AttributeList::arg_iterator I=Attr.arg_begin(),
879 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000880
881
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000882 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000883 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000884 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000885 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
886 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000887 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
888 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000889 return;
890 }
Mike Stumpbf916502009-07-24 19:02:52 +0000891
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000892 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000893
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000894 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000895 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000896 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000897 return;
898 }
Mike Stumpbf916502009-07-24 19:02:52 +0000899
Ted Kremenek465172f2008-07-21 22:09:15 +0000900 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000901 if (HasImplicitThisParam) {
902 if (x == 0) {
903 S.Diag(Attr.getLoc(),
904 diag::err_attribute_invalid_implicit_this_argument)
905 << "nonnull" << Ex->getSourceRange();
906 return;
907 }
908 --x;
909 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000910
911 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000912 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000913 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000914
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000915 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000916 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000917 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000918 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000919 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000920 }
Mike Stumpbf916502009-07-24 19:02:52 +0000921
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000922 NonNullArgs.push_back(x);
923 }
Mike Stumpbf916502009-07-24 19:02:52 +0000924
925 // If no arguments were specified to __attribute__((nonnull)) then all pointer
926 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000927 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000928 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
929 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000930 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000931 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000932 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000933 }
Mike Stumpbf916502009-07-24 19:02:52 +0000934
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000935 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000936 if (NonNullArgs.empty()) {
937 // Warn the trivial case only if attribute is not coming from a
938 // macro instantiation.
939 if (Attr.getLoc().isFileID())
940 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000941 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000942 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000943 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000944
945 unsigned* start = &NonNullArgs[0];
946 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000947 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000948 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000949 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000950}
951
Chandler Carruth1b03c872011-07-02 00:01:44 +0000952static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000953 // This attribute must be applied to a function declaration.
954 // The first argument to the attribute must be a string,
955 // the name of the resource, for example "malloc".
956 // The following arguments must be argument indexes, the arguments must be
957 // of integer type for Returns, otherwise of pointer type.
958 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000959 // after being held. free() should be __attribute((ownership_takes)), whereas
960 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000961
962 if (!AL.getParameterName()) {
963 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
964 << AL.getName()->getName() << 1;
965 return;
966 }
967 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000968 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000969 switch (AL.getKind()) {
970 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000971 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000972 if (AL.getNumArgs() < 1) {
973 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
974 return;
975 }
Jordy Rose2a479922010-08-12 08:54:03 +0000976 break;
977 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000978 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000979 if (AL.getNumArgs() < 1) {
980 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
981 return;
982 }
Jordy Rose2a479922010-08-12 08:54:03 +0000983 break;
984 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000985 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000986 if (AL.getNumArgs() > 1) {
987 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
988 << AL.getNumArgs() + 1;
989 return;
990 }
Jordy Rose2a479922010-08-12 08:54:03 +0000991 break;
992 default:
993 // This should never happen given how we are called.
994 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000995 }
996
Chandler Carruth87c44602011-07-01 23:49:12 +0000997 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000998 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
999 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001000 return;
1001 }
1002
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001003 // In C++ the implicit 'this' function parameter also counts, and they are
1004 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001005 bool HasImplicitThisParam = isInstanceMethod(D);
1006 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001007
Chris Lattner5f9e2722011-07-23 10:55:15 +00001008 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001009
1010 // Normalize the argument, __foo__ becomes foo.
1011 if (Module.startswith("__") && Module.endswith("__"))
1012 Module = Module.substr(2, Module.size() - 4);
1013
Chris Lattner5f9e2722011-07-23 10:55:15 +00001014 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001015
Jordy Rose2a479922010-08-12 08:54:03 +00001016 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1017 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001018
Peter Collingbourne7a730022010-11-23 20:45:58 +00001019 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001020 llvm::APSInt ArgNum(32);
1021 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1022 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1023 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1024 << AL.getName()->getName() << IdxExpr->getSourceRange();
1025 continue;
1026 }
1027
1028 unsigned x = (unsigned) ArgNum.getZExtValue();
1029
1030 if (x > NumArgs || x < 1) {
1031 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1032 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1033 continue;
1034 }
1035 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001036 if (HasImplicitThisParam) {
1037 if (x == 0) {
1038 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1039 << "ownership" << IdxExpr->getSourceRange();
1040 return;
1041 }
1042 --x;
1043 }
1044
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001045 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001046 case OwnershipAttr::Takes:
1047 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001048 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001049 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001050 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1051 // FIXME: Should also highlight argument in decl.
1052 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001053 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001054 << "pointer"
1055 << IdxExpr->getSourceRange();
1056 continue;
1057 }
1058 break;
1059 }
Sean Huntcf807c42010-08-18 23:23:40 +00001060 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001061 if (AL.getNumArgs() > 1) {
1062 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001063 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001064 llvm::APSInt ArgNum(32);
1065 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1066 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1067 S.Diag(AL.getLoc(), diag::err_ownership_type)
1068 << "ownership_returns" << "integer"
1069 << IdxExpr->getSourceRange();
1070 return;
1071 }
1072 }
1073 break;
1074 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001075 } // switch
1076
1077 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001078 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001079 i = D->specific_attr_begin<OwnershipAttr>(),
1080 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001081 i != e; ++i) {
1082 if ((*i)->getOwnKind() != K) {
1083 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1084 I!=E; ++I) {
1085 if (x == *I) {
1086 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1087 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001088 }
1089 }
1090 }
1091 }
1092 OwnershipArgs.push_back(x);
1093 }
1094
1095 unsigned* start = OwnershipArgs.data();
1096 unsigned size = OwnershipArgs.size();
1097 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001098
1099 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1100 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1101 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001102 }
Sean Huntcf807c42010-08-18 23:23:40 +00001103
Chandler Carruth87c44602011-07-01 23:49:12 +00001104 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001105 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001106}
1107
John McCall332bb2a2011-02-08 22:35:49 +00001108/// Whether this declaration has internal linkage for the purposes of
1109/// things that want to complain about things not have internal linkage.
1110static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1111 switch (D->getLinkage()) {
1112 case NoLinkage:
1113 case InternalLinkage:
1114 return true;
1115
1116 // Template instantiations that go from external to unique-external
1117 // shouldn't get diagnosed.
1118 case UniqueExternalLinkage:
1119 return true;
1120
1121 case ExternalLinkage:
1122 return false;
1123 }
1124 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001125}
1126
Chandler Carruth1b03c872011-07-02 00:01:44 +00001127static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001128 // Check the attribute arguments.
1129 if (Attr.getNumArgs() > 1) {
1130 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1131 return;
1132 }
1133
Chandler Carruth87c44602011-07-01 23:49:12 +00001134 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001135 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001136 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001137 return;
1138 }
1139
Chandler Carruth87c44602011-07-01 23:49:12 +00001140 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001141
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001142 // gcc rejects
1143 // class c {
1144 // static int a __attribute__((weakref ("v2")));
1145 // static int b() __attribute__((weakref ("f3")));
1146 // };
1147 // and ignores the attributes of
1148 // void f(void) {
1149 // static int a __attribute__((weakref ("v2")));
1150 // }
1151 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001152 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001153 if (!Ctx->isFileContext()) {
1154 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001155 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001156 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001157 }
1158
1159 // The GCC manual says
1160 //
1161 // At present, a declaration to which `weakref' is attached can only
1162 // be `static'.
1163 //
1164 // It also says
1165 //
1166 // Without a TARGET,
1167 // given as an argument to `weakref' or to `alias', `weakref' is
1168 // equivalent to `weak'.
1169 //
1170 // gcc 4.4.1 will accept
1171 // int a7 __attribute__((weakref));
1172 // as
1173 // int a7 __attribute__((weak));
1174 // This looks like a bug in gcc. We reject that for now. We should revisit
1175 // it if this behaviour is actually used.
1176
John McCall332bb2a2011-02-08 22:35:49 +00001177 if (!hasEffectivelyInternalLinkage(nd)) {
1178 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001179 return;
1180 }
1181
1182 // GCC rejects
1183 // static ((alias ("y"), weakref)).
1184 // Should we? How to check that weakref is before or after alias?
1185
1186 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001187 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001188 Arg = Arg->IgnoreParenCasts();
1189 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1190
Douglas Gregor5cee1192011-07-27 05:40:30 +00001191 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001192 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1193 << "weakref" << 1;
1194 return;
1195 }
1196 // GCC will accept anything as the argument of weakref. Should we
1197 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001198 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001199 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001200 }
1201
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001202 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001203}
1204
Chandler Carruth1b03c872011-07-02 00:01:44 +00001205static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001206 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001207 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001208 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001209 return;
1210 }
Mike Stumpbf916502009-07-24 19:02:52 +00001211
Peter Collingbourne7a730022010-11-23 20:45:58 +00001212 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001213 Arg = Arg->IgnoreParenCasts();
1214 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001215
Douglas Gregor5cee1192011-07-27 05:40:30 +00001216 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001217 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001218 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001219 return;
1220 }
Mike Stumpbf916502009-07-24 19:02:52 +00001221
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001222 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001223 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1224 return;
1225 }
1226
Chris Lattner6b6b5372008-06-26 18:38:35 +00001227 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001228
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001229 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001230 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001231}
1232
Chandler Carruth1b03c872011-07-02 00:01:44 +00001233static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001234 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001235 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001236 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001237
Chandler Carruth87c44602011-07-01 23:49:12 +00001238 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001239 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001240 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001241 return;
1242 }
1243
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001244 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001245}
1246
Chandler Carruth1b03c872011-07-02 00:01:44 +00001247static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1248 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001249 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001250 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001251 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1252 return;
1253 }
1254
Chandler Carruth87c44602011-07-01 23:49:12 +00001255 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001256 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001257 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001258 return;
1259 }
Mike Stumpbf916502009-07-24 19:02:52 +00001260
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001261 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001262}
1263
Chandler Carruth1b03c872011-07-02 00:01:44 +00001264static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001265 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001266 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001267 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1268 return;
1269 }
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Chandler Carruth87c44602011-07-01 23:49:12 +00001271 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001272 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001273 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001274 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001275 return;
1276 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001277 }
1278
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001279 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001280}
1281
Chandler Carruth1b03c872011-07-02 00:01:44 +00001282static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001283 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001284 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001285 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001286
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001287 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001288}
1289
Chandler Carruth1b03c872011-07-02 00:01:44 +00001290static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001291 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001292 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001293 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001294 else
1295 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001296 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001297}
1298
Chandler Carruth1b03c872011-07-02 00:01:44 +00001299static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001300 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001301 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001302 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001303 else
1304 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001305 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001306}
1307
Chandler Carruth1b03c872011-07-02 00:01:44 +00001308static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001309 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001310
1311 if (S.CheckNoReturnAttr(attr)) return;
1312
Chandler Carruth87c44602011-07-01 23:49:12 +00001313 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001314 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001315 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001316 return;
1317 }
1318
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001319 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001320}
1321
1322bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001323 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001324 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1325 attr.setInvalid();
1326 return true;
1327 }
1328
1329 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001330}
1331
Chandler Carruth1b03c872011-07-02 00:01:44 +00001332static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1333 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001334
1335 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1336 // because 'analyzer_noreturn' does not impact the type.
1337
Chandler Carruth1731e202011-07-11 23:30:35 +00001338 if(!checkAttributeNumArgs(S, Attr, 0))
1339 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001340
Chandler Carruth87c44602011-07-01 23:49:12 +00001341 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1342 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001343 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1344 && !VD->getType()->isFunctionPointerType())) {
1345 S.Diag(Attr.getLoc(),
1346 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1347 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001348 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001349 return;
1350 }
1351 }
1352
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001353 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001354}
1355
John Thompson35cc9622010-08-09 21:53:52 +00001356// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001357static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001358/*
1359 Returning a Vector Class in Registers
1360
Eric Christopherf48f3672010-12-01 22:13:54 +00001361 According to the PPU ABI specifications, a class with a single member of
1362 vector type is returned in memory when used as the return value of a function.
1363 This results in inefficient code when implementing vector classes. To return
1364 the value in a single vector register, add the vecreturn attribute to the
1365 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001366
1367 Example:
1368
1369 struct Vector
1370 {
1371 __vector float xyzw;
1372 } __attribute__((vecreturn));
1373
1374 Vector Add(Vector lhs, Vector rhs)
1375 {
1376 Vector result;
1377 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1378 return result; // This will be returned in a register
1379 }
1380*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001381 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001382 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001383 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001384 return;
1385 }
1386
Chandler Carruth87c44602011-07-01 23:49:12 +00001387 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001388 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1389 return;
1390 }
1391
Chandler Carruth87c44602011-07-01 23:49:12 +00001392 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001393 int count = 0;
1394
1395 if (!isa<CXXRecordDecl>(record)) {
1396 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1397 return;
1398 }
1399
1400 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1401 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1402 return;
1403 }
1404
Eric Christopherf48f3672010-12-01 22:13:54 +00001405 for (RecordDecl::field_iterator iter = record->field_begin();
1406 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001407 if ((count == 1) || !iter->getType()->isVectorType()) {
1408 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1409 return;
1410 }
1411 count++;
1412 }
1413
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001414 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001415}
1416
Chandler Carruth1b03c872011-07-02 00:01:44 +00001417static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001418 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001419 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001420 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001421 return;
1422 }
1423 // FIXME: Actually store the attribute on the declaration
1424}
1425
Chandler Carruth1b03c872011-07-02 00:01:44 +00001426static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001427 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001428 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001429 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001430 return;
1431 }
Mike Stumpbf916502009-07-24 19:02:52 +00001432
Chandler Carruth87c44602011-07-01 23:49:12 +00001433 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1434 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001436 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001437 return;
1438 }
Mike Stumpbf916502009-07-24 19:02:52 +00001439
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001440 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001441}
1442
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001443static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1444 const AttributeList &Attr) {
1445 // check the attribute arguments.
1446 if (Attr.hasParameterOrArguments()) {
1447 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1448 return;
1449 }
1450
1451 if (!isa<FunctionDecl>(D)) {
1452 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1453 << Attr.getName() << ExpectedFunction;
1454 return;
1455 }
1456
1457 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1458}
1459
Chandler Carruth1b03c872011-07-02 00:01:44 +00001460static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001461 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001462 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001463 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1464 return;
1465 }
Mike Stumpbf916502009-07-24 19:02:52 +00001466
Chandler Carruth87c44602011-07-01 23:49:12 +00001467 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001468 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001469 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1470 return;
1471 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001472 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001473 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001474 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001475 return;
1476 }
Mike Stumpbf916502009-07-24 19:02:52 +00001477
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001478 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001479}
1480
Chandler Carruth1b03c872011-07-02 00:01:44 +00001481static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001482 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001483 if (Attr.getNumArgs() > 1) {
1484 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001485 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001486 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001487
1488 int priority = 65535; // FIXME: Do not hardcode such constants.
1489 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001490 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001491 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001492 if (E->isTypeDependent() || E->isValueDependent() ||
1493 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001494 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001495 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001496 return;
1497 }
1498 priority = Idx.getZExtValue();
1499 }
Mike Stumpbf916502009-07-24 19:02:52 +00001500
Chandler Carruth87c44602011-07-01 23:49:12 +00001501 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001502 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001503 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001504 return;
1505 }
1506
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001507 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001508 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001509}
1510
Chandler Carruth1b03c872011-07-02 00:01:44 +00001511static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001512 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001513 if (Attr.getNumArgs() > 1) {
1514 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001515 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001516 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001517
1518 int priority = 65535; // FIXME: Do not hardcode such constants.
1519 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001520 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001521 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001522 if (E->isTypeDependent() || E->isValueDependent() ||
1523 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001524 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001525 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001526 return;
1527 }
1528 priority = Idx.getZExtValue();
1529 }
Mike Stumpbf916502009-07-24 19:02:52 +00001530
Chandler Carruth87c44602011-07-01 23:49:12 +00001531 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001532 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001533 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001534 return;
1535 }
1536
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001537 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001538 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001539}
1540
Chandler Carruth1b03c872011-07-02 00:01:44 +00001541static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001542 unsigned NumArgs = Attr.getNumArgs();
1543 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001544 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001545 return;
1546 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001547
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001548 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001549 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001550 if (NumArgs == 1) {
1551 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001552 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001553 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1554 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001555 return;
1556 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001557 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001558 }
Mike Stumpbf916502009-07-24 19:02:52 +00001559
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001560 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001561}
1562
Chandler Carruth1b03c872011-07-02 00:01:44 +00001563static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001564 unsigned NumArgs = Attr.getNumArgs();
1565 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001566 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001567 return;
1568 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001569
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001570 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001571 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001572 if (NumArgs == 1) {
1573 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001574 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001575 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001576 diag::err_attribute_not_string) << "unavailable";
1577 return;
1578 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001579 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001580 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001581 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001582}
1583
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001584static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1585 const AttributeList &Attr) {
1586 unsigned NumArgs = Attr.getNumArgs();
1587 if (NumArgs > 0) {
1588 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1589 return;
1590 }
1591
1592 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001593 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001594}
1595
Patrick Beardb2f68202012-04-06 18:12:22 +00001596static void handleObjCRootClassAttr(Sema &S, Decl *D,
1597 const AttributeList &Attr) {
1598 if (!isa<ObjCInterfaceDecl>(D)) {
1599 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1600 return;
1601 }
1602
1603 unsigned NumArgs = Attr.getNumArgs();
1604 if (NumArgs > 0) {
1605 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1606 return;
1607 }
1608
1609 D->addAttr(::new (S.Context) ObjCRootClassAttr(Attr.getRange(), S.Context));
1610}
1611
Ted Kremenek71207fc2012-01-05 22:47:47 +00001612static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001613 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001614 if (!isa<ObjCInterfaceDecl>(D)) {
1615 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1616 return;
1617 }
1618
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001619 unsigned NumArgs = Attr.getNumArgs();
1620 if (NumArgs > 0) {
1621 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1622 return;
1623 }
1624
Ted Kremenek71207fc2012-01-05 22:47:47 +00001625 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001626 Attr.getRange(), S.Context));
1627}
1628
Chandler Carruth1b03c872011-07-02 00:01:44 +00001629static void handleAvailabilityAttr(Sema &S, Decl *D,
1630 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001631 IdentifierInfo *Platform = Attr.getParameterName();
1632 SourceLocation PlatformLoc = Attr.getParameterLoc();
1633
Chris Lattner5f9e2722011-07-23 10:55:15 +00001634 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001635 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1636 if (PlatformName.empty()) {
1637 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1638 << Platform;
1639
1640 PlatformName = Platform->getName();
1641 }
1642
1643 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1644 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1645 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001646 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001647
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001648 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001649 // of these steps are needed).
1650 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001651 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001652 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1653 << 1 << PlatformName << Deprecated.Version.getAsString()
1654 << 0 << Introduced.Version.getAsString();
1655 return;
1656 }
1657
1658 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001659 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001660 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1661 << 2 << PlatformName << Obsoleted.Version.getAsString()
1662 << 0 << Introduced.Version.getAsString();
1663 return;
1664 }
1665
1666 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001667 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001668 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1669 << 2 << PlatformName << Obsoleted.Version.getAsString()
1670 << 1 << Deprecated.Version.getAsString();
1671 return;
1672 }
1673
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001674 StringRef Str;
1675 const StringLiteral *SE =
1676 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1677 if (SE)
1678 Str = SE->getString();
1679
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001680 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001681 Platform,
1682 Introduced.Version,
1683 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001684 Obsoleted.Version,
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001685 IsUnavailable,
1686 Str));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001687}
1688
Chandler Carruth1b03c872011-07-02 00:01:44 +00001689static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001690 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001691 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001692 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001693
Peter Collingbourne7a730022010-11-23 20:45:58 +00001694 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001695 Arg = Arg->IgnoreParenCasts();
1696 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001697
Douglas Gregor5cee1192011-07-27 05:40:30 +00001698 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001699 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001700 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001701 return;
1702 }
Mike Stumpbf916502009-07-24 19:02:52 +00001703
Chris Lattner5f9e2722011-07-23 10:55:15 +00001704 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001705 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001706
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001707 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001708 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001709 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001710 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001711 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001712 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00001713 else if (TypeStr == "protected") {
1714 // Complain about attempts to use protected visibility on targets
1715 // (like Darwin) that don't support it.
1716 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1717 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1718 type = VisibilityAttr::Default;
1719 } else {
1720 type = VisibilityAttr::Protected;
1721 }
1722 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00001723 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001724 return;
1725 }
Mike Stumpbf916502009-07-24 19:02:52 +00001726
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001727 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001728}
1729
Chandler Carruth1b03c872011-07-02 00:01:44 +00001730static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1731 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001732 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1733 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001734 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001735 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001736 return;
1737 }
1738
Chandler Carruth87c44602011-07-01 23:49:12 +00001739 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1740 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1741 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001742 << "objc_method_family" << 1;
1743 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001744 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001745 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001746 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001747 return;
1748 }
1749
Chris Lattner5f9e2722011-07-23 10:55:15 +00001750 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001751 ObjCMethodFamilyAttr::FamilyKind family;
1752 if (param == "none")
1753 family = ObjCMethodFamilyAttr::OMF_None;
1754 else if (param == "alloc")
1755 family = ObjCMethodFamilyAttr::OMF_alloc;
1756 else if (param == "copy")
1757 family = ObjCMethodFamilyAttr::OMF_copy;
1758 else if (param == "init")
1759 family = ObjCMethodFamilyAttr::OMF_init;
1760 else if (param == "mutableCopy")
1761 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1762 else if (param == "new")
1763 family = ObjCMethodFamilyAttr::OMF_new;
1764 else {
1765 // Just warn and ignore it. This is future-proof against new
1766 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001767 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001768 return;
1769 }
1770
John McCallf85e1932011-06-15 23:02:42 +00001771 if (family == ObjCMethodFamilyAttr::OMF_init &&
1772 !method->getResultType()->isObjCObjectPointerType()) {
1773 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1774 << method->getResultType();
1775 // Ignore the attribute.
1776 return;
1777 }
1778
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001779 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001780 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001781}
1782
Chandler Carruth1b03c872011-07-02 00:01:44 +00001783static void handleObjCExceptionAttr(Sema &S, Decl *D,
1784 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001785 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001786 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001787
Chris Lattner0db29ec2009-02-14 08:09:34 +00001788 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1789 if (OCI == 0) {
1790 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1791 return;
1792 }
Mike Stumpbf916502009-07-24 19:02:52 +00001793
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001794 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001795}
1796
Chandler Carruth1b03c872011-07-02 00:01:44 +00001797static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001798 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001799 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001800 return;
1801 }
Richard Smith162e1c12011-04-15 14:24:37 +00001802 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001803 QualType T = TD->getUnderlyingType();
1804 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001805 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001806 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1807 return;
1808 }
1809 }
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001810 else if (!isa<ObjCPropertyDecl>(D)) {
1811 // It is okay to include this attribute on properties, e.g.:
1812 //
1813 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
1814 //
1815 // In this case it follows tradition and suppresses an error in the above
1816 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00001817 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001818 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001819 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001820}
1821
Mike Stumpbf916502009-07-24 19:02:52 +00001822static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001823handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001824 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001825 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001826 return;
1827 }
1828
1829 if (!isa<FunctionDecl>(D)) {
1830 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1831 return;
1832 }
1833
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001834 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001835}
1836
Chandler Carruth1b03c872011-07-02 00:01:44 +00001837static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001838 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001839 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001840 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001841 return;
1842 }
Mike Stumpbf916502009-07-24 19:02:52 +00001843
Steve Naroff9eae5762008-09-18 16:44:58 +00001844 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001845 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001846 return;
1847 }
Mike Stumpbf916502009-07-24 19:02:52 +00001848
Sean Huntcf807c42010-08-18 23:23:40 +00001849 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001850 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001851 type = BlocksAttr::ByRef;
1852 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001853 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001854 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001855 return;
1856 }
Mike Stumpbf916502009-07-24 19:02:52 +00001857
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001858 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001859}
1860
Chandler Carruth1b03c872011-07-02 00:01:44 +00001861static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001862 // check the attribute arguments.
1863 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001864 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001865 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001866 }
1867
John McCall3323fad2011-09-09 07:56:05 +00001868 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001869 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001870 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001871 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001872 if (E->isTypeDependent() || E->isValueDependent() ||
1873 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001874 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001875 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001876 return;
1877 }
Mike Stumpbf916502009-07-24 19:02:52 +00001878
John McCall3323fad2011-09-09 07:56:05 +00001879 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001880 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1881 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001882 return;
1883 }
John McCall3323fad2011-09-09 07:56:05 +00001884
1885 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001886 }
1887
John McCall3323fad2011-09-09 07:56:05 +00001888 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001889 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001890 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001891 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001892 if (E->isTypeDependent() || E->isValueDependent() ||
1893 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001894 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001895 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001896 return;
1897 }
1898 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001899
John McCall3323fad2011-09-09 07:56:05 +00001900 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001901 // FIXME: This error message could be improved, it would be nice
1902 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001903 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1904 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001905 return;
1906 }
1907 }
1908
Chandler Carruth87c44602011-07-01 23:49:12 +00001909 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001910 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001911 if (isa<FunctionNoProtoType>(FT)) {
1912 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1913 return;
1914 }
Mike Stumpbf916502009-07-24 19:02:52 +00001915
Chris Lattner897cd902009-03-17 23:03:47 +00001916 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001917 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001918 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001919 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001920 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001921 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001922 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001923 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001924 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00001925 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1926 if (!BD->isVariadic()) {
1927 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
1928 return;
1929 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001930 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001931 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001932 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001933 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001934 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001935 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001936 int m = Ty->isFunctionPointerType() ? 0 : 1;
1937 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001938 return;
1939 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001940 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001941 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001942 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001943 return;
1944 }
Anders Carlsson77091822008-10-05 18:05:59 +00001945 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001946 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001947 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001948 return;
1949 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001950 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001951 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001952}
1953
Chandler Carruth1b03c872011-07-02 00:01:44 +00001954static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001955 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001956 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001957 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001958
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001959 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001960 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001961 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001962 return;
1963 }
Mike Stumpbf916502009-07-24 19:02:52 +00001964
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001965 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1966 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1967 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001968 return;
1969 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001970 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1971 if (MD->getResultType()->isVoidType()) {
1972 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1973 << Attr.getName() << 1;
1974 return;
1975 }
1976
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001977 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001978}
1979
Chandler Carruth1b03c872011-07-02 00:01:44 +00001980static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001981 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001982 if (Attr.hasParameterOrArguments()) {
1983 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001984 return;
1985 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001986
Chandler Carruth87c44602011-07-01 23:49:12 +00001987 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001988 if (isa<CXXRecordDecl>(D)) {
1989 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1990 return;
1991 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001992 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1993 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001994 return;
1995 }
1996
Chandler Carruth87c44602011-07-01 23:49:12 +00001997 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001998
1999 // 'weak' only applies to declarations with external linkage.
2000 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002001 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002002 return;
2003 }
Mike Stumpbf916502009-07-24 19:02:52 +00002004
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002005 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002006}
2007
Chandler Carruth1b03c872011-07-02 00:01:44 +00002008static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002009 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002010 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002011 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002012
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002013
2014 // weak_import only applies to variable & function declarations.
2015 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002016 if (!D->canBeWeakImported(isDef)) {
2017 if (isDef)
2018 S.Diag(Attr.getLoc(),
2019 diag::warn_attribute_weak_import_invalid_on_definition)
2020 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002021 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002022 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002023 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002024 // Nothing to warn about here.
2025 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002026 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002027 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002028
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002029 return;
2030 }
2031
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002032 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002033}
2034
Chandler Carruth1b03c872011-07-02 00:01:44 +00002035static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2036 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002037 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002038 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002039 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002040
2041 unsigned WGSize[3];
2042 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002043 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002044 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002045 if (E->isTypeDependent() || E->isValueDependent() ||
2046 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002047 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2048 << "reqd_work_group_size" << E->getSourceRange();
2049 return;
2050 }
2051 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2052 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002053 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002054 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002055 WGSize[2]));
2056}
2057
Chandler Carruth1b03c872011-07-02 00:01:44 +00002058static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002059 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002060 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002061 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002062
2063 // Make sure that there is a string literal as the sections's single
2064 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002065 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002066 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002067 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002068 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002069 return;
2070 }
Mike Stump1eb44332009-09-09 15:08:12 +00002071
Chris Lattner797c3c42009-08-10 19:03:04 +00002072 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002073 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002074 if (!Error.empty()) {
2075 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2076 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002077 return;
2078 }
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002080 // This attribute cannot be applied to local variables.
2081 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2082 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2083 return;
2084 }
2085
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002086 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002087 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002088}
2089
Chris Lattner6b6b5372008-06-26 18:38:35 +00002090
Chandler Carruth1b03c872011-07-02 00:01:44 +00002091static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002092 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002093 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002094 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002095 return;
2096 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002097
Chandler Carruth87c44602011-07-01 23:49:12 +00002098 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002099 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002100 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002101 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002102 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002103 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002104}
2105
Chandler Carruth1b03c872011-07-02 00:01:44 +00002106static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002107 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002108 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002109 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002110 return;
2111 }
Mike Stumpbf916502009-07-24 19:02:52 +00002112
Chandler Carruth87c44602011-07-01 23:49:12 +00002113 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002114 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002115 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002116 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002117 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002118 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002119}
2120
Chandler Carruth1b03c872011-07-02 00:01:44 +00002121static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002122 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002123 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002124 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002125
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002126 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002127}
2128
Chandler Carruth1b03c872011-07-02 00:01:44 +00002129static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002130 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002131 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2132 return;
2133 }
Mike Stumpbf916502009-07-24 19:02:52 +00002134
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002135 if (Attr.getNumArgs() != 0) {
2136 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2137 return;
2138 }
Mike Stumpbf916502009-07-24 19:02:52 +00002139
Chandler Carruth87c44602011-07-01 23:49:12 +00002140 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002141
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002142 if (!VD || !VD->hasLocalStorage()) {
2143 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2144 return;
2145 }
Mike Stumpbf916502009-07-24 19:02:52 +00002146
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002147 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002148 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002149 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002150 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2151 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002152 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002153 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002154 Attr.getParameterName();
2155 return;
2156 }
Mike Stumpbf916502009-07-24 19:02:52 +00002157
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002158 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2159 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002160 S.Diag(Attr.getParameterLoc(),
2161 diag::err_attribute_cleanup_arg_not_function)
2162 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002163 return;
2164 }
2165
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002166 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002167 S.Diag(Attr.getParameterLoc(),
2168 diag::err_attribute_cleanup_func_must_take_one_arg)
2169 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002170 return;
2171 }
Mike Stumpbf916502009-07-24 19:02:52 +00002172
Anders Carlsson89941c12009-02-07 23:16:50 +00002173 // We're currently more strict than GCC about what function types we accept.
2174 // If this ever proves to be a problem it should be easy to fix.
2175 QualType Ty = S.Context.getPointerType(VD->getType());
2176 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002177 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2178 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002179 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002180 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2181 Attr.getParameterName() << ParamTy << Ty;
2182 return;
2183 }
Mike Stumpbf916502009-07-24 19:02:52 +00002184
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002185 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002186 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002187}
2188
Mike Stumpbf916502009-07-24 19:02:52 +00002189/// Handle __attribute__((format_arg((idx)))) attribute based on
2190/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002191static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002192 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002193 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002194
Chandler Carruth87c44602011-07-01 23:49:12 +00002195 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002196 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002197 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002198 return;
2199 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002200
2201 // In C++ the implicit 'this' function parameter also counts, and they are
2202 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002203 bool HasImplicitThisParam = isInstanceMethod(D);
2204 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002205 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002206
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002207 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002208 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002209 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002210 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2211 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002212 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2213 << "format" << 2 << IdxExpr->getSourceRange();
2214 return;
2215 }
Mike Stumpbf916502009-07-24 19:02:52 +00002216
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002217 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2218 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2219 << "format" << 2 << IdxExpr->getSourceRange();
2220 return;
2221 }
Mike Stumpbf916502009-07-24 19:02:52 +00002222
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002223 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002224
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002225 if (HasImplicitThisParam) {
2226 if (ArgIdx == 0) {
2227 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2228 << "format_arg" << IdxExpr->getSourceRange();
2229 return;
2230 }
2231 ArgIdx--;
2232 }
2233
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002234 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002235 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002236
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002237 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2238 if (not_nsstring_type &&
2239 !isCFStringType(Ty, S.Context) &&
2240 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002241 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002242 // FIXME: Should highlight the actual expression that has the wrong type.
2243 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002244 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002245 << IdxExpr->getSourceRange();
2246 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002247 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002248 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002249 if (!isNSStringType(Ty, S.Context) &&
2250 !isCFStringType(Ty, S.Context) &&
2251 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002252 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002253 // FIXME: Should highlight the actual expression that has the wrong type.
2254 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002255 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002256 << IdxExpr->getSourceRange();
2257 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002258 }
2259
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002260 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002261 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002262}
2263
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002264enum FormatAttrKind {
2265 CFStringFormat,
2266 NSStringFormat,
2267 StrftimeFormat,
2268 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002269 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002270 InvalidFormat
2271};
2272
2273/// getFormatAttrKind - Map from format attribute names to supported format
2274/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002275static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002276 // Check for formats that get handled specially.
2277 if (Format == "NSString")
2278 return NSStringFormat;
2279 if (Format == "CFString")
2280 return CFStringFormat;
2281 if (Format == "strftime")
2282 return StrftimeFormat;
2283
2284 // Otherwise, check for supported formats.
2285 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
Jean-Daniel Dupas69d53842012-01-27 09:14:17 +00002286 Format == "strfmon" || Format == "cmn_err" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002287 Format == "zcmn_err" ||
2288 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002289 return SupportedFormat;
2290
Duncan Sandsbc525952010-03-23 14:44:19 +00002291 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2292 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002293 return IgnoredFormat;
2294
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002295 return InvalidFormat;
2296}
2297
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002298/// Handle __attribute__((init_priority(priority))) attributes based on
2299/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002300static void handleInitPriorityAttr(Sema &S, Decl *D,
2301 const AttributeList &Attr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002302 if (!S.getLangOpts().CPlusPlus) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002303 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2304 return;
2305 }
2306
Chandler Carruth87c44602011-07-01 23:49:12 +00002307 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002308 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2309 Attr.setInvalid();
2310 return;
2311 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002312 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002313 if (S.Context.getAsArrayType(T))
2314 T = S.Context.getBaseElementType(T);
2315 if (!T->getAs<RecordType>()) {
2316 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2317 Attr.setInvalid();
2318 return;
2319 }
2320
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002321 if (Attr.getNumArgs() != 1) {
2322 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2323 Attr.setInvalid();
2324 return;
2325 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002326 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002327
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002328 llvm::APSInt priority(32);
2329 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2330 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2331 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2332 << "init_priority" << priorityExpr->getSourceRange();
2333 Attr.setInvalid();
2334 return;
2335 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002336 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002337 if (prioritynum < 101 || prioritynum > 65535) {
2338 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2339 << priorityExpr->getSourceRange();
2340 Attr.setInvalid();
2341 return;
2342 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002343 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002344 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002345}
2346
Mike Stumpbf916502009-07-24 19:02:52 +00002347/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2348/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002349static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002350
Chris Lattner545dd342008-06-28 23:36:30 +00002351 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002352 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002353 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002354 return;
2355 }
2356
Chris Lattner545dd342008-06-28 23:36:30 +00002357 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002358 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002359 return;
2360 }
2361
Chandler Carruth87c44602011-07-01 23:49:12 +00002362 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002363 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002364 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002365 return;
2366 }
2367
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002368 // In C++ the implicit 'this' function parameter also counts, and they are
2369 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002370 bool HasImplicitThisParam = isInstanceMethod(D);
2371 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002372 unsigned FirstIdx = 1;
2373
Chris Lattner5f9e2722011-07-23 10:55:15 +00002374 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002375
2376 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002377 if (Format.startswith("__") && Format.endswith("__"))
2378 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002379
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002380 // Check for supported formats.
2381 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002382
2383 if (Kind == IgnoredFormat)
2384 return;
2385
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002386 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002387 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002388 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002389 return;
2390 }
2391
2392 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002393 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002394 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002395 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2396 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002397 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002398 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002399 return;
2400 }
2401
2402 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002403 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002404 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002405 return;
2406 }
2407
2408 // FIXME: Do we need to bounds check?
2409 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002410
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002411 if (HasImplicitThisParam) {
2412 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002413 S.Diag(Attr.getLoc(),
2414 diag::err_format_attribute_implicit_this_format_string)
2415 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002416 return;
2417 }
2418 ArgIdx--;
2419 }
Mike Stump1eb44332009-09-09 15:08:12 +00002420
Chris Lattner6b6b5372008-06-26 18:38:35 +00002421 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002422 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002423
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002424 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002425 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002426 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2427 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002428 return;
2429 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002430 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002431 // FIXME: do we need to check if the type is NSString*? What are the
2432 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002433 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002434 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002435 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2436 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002437 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002438 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002439 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002440 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002441 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002442 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2443 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002444 return;
2445 }
2446
2447 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002448 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002449 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002450 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2451 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002452 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002453 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002454 return;
2455 }
2456
2457 // check if the function is variadic if the 3rd argument non-zero
2458 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002459 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002460 ++NumArgs; // +1 for ...
2461 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002462 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002463 return;
2464 }
2465 }
2466
Chris Lattner3c73c412008-11-19 08:23:25 +00002467 // strftime requires FirstArg to be 0 because it doesn't read from any
2468 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002469 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002470 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002471 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2472 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002473 return;
2474 }
2475 // if 0 it disables parameter checking (to use with e.g. va_list)
2476 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002477 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002478 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002479 return;
2480 }
2481
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002482 // Check whether we already have an equivalent format attribute.
2483 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002484 i = D->specific_attr_begin<FormatAttr>(),
2485 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002486 i != e ; ++i) {
2487 FormatAttr *f = *i;
2488 if (f->getType() == Format &&
2489 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2490 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2491 // If we don't have a valid location for this attribute, adopt the
2492 // location.
2493 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002494 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002495 return;
2496 }
2497 }
2498
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002499 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002500 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002501 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002502}
2503
Chandler Carruth1b03c872011-07-02 00:01:44 +00002504static void handleTransparentUnionAttr(Sema &S, Decl *D,
2505 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002506 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002507 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002508 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002509
Chris Lattner6b6b5372008-06-26 18:38:35 +00002510
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002511 // Try to find the underlying union declaration.
2512 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002513 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002514 if (TD && TD->getUnderlyingType()->isUnionType())
2515 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2516 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002517 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002518
2519 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002520 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002521 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002522 return;
2523 }
2524
John McCall5e1cdac2011-10-07 06:10:15 +00002525 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002526 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002527 diag::warn_transparent_union_attribute_not_definition);
2528 return;
2529 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002530
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002531 RecordDecl::field_iterator Field = RD->field_begin(),
2532 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002533 if (Field == FieldEnd) {
2534 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2535 return;
2536 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002537
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002538 FieldDecl *FirstField = *Field;
2539 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002540 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002541 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002542 diag::warn_transparent_union_attribute_floating)
2543 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002544 return;
2545 }
2546
2547 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2548 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2549 for (; Field != FieldEnd; ++Field) {
2550 QualType FieldType = Field->getType();
2551 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2552 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2553 // Warn if we drop the attribute.
2554 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002555 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002556 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002557 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002558 diag::warn_transparent_union_attribute_field_size_align)
2559 << isSize << Field->getDeclName() << FieldBits;
2560 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002561 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002562 diag::note_transparent_union_first_field_size_align)
2563 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002564 return;
2565 }
2566 }
2567
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002568 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002569}
2570
Chandler Carruth1b03c872011-07-02 00:01:44 +00002571static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002572 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002573 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002574 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002575
Peter Collingbourne7a730022010-11-23 20:45:58 +00002576 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002577 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002578
Chris Lattner6b6b5372008-06-26 18:38:35 +00002579 // Make sure that there is a string literal as the annotation's single
2580 // argument.
2581 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002582 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002583 return;
2584 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002585
2586 // Don't duplicate annotations that are already set.
2587 for (specific_attr_iterator<AnnotateAttr>
2588 i = D->specific_attr_begin<AnnotateAttr>(),
2589 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2590 if ((*i)->getAnnotation() == SE->getString())
2591 return;
2592 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002593 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002594 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002595}
2596
Chandler Carruth1b03c872011-07-02 00:01:44 +00002597static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002598 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002599 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002600 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002601 return;
2602 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002603
2604 //FIXME: The C++0x version of this attribute has more limited applicabilty
2605 // than GNU's, and should error out when it is used to specify a
2606 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002607
Chris Lattner545dd342008-06-28 23:36:30 +00002608 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002609 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002610 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002611 }
Mike Stumpbf916502009-07-24 19:02:52 +00002612
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002613 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002614}
2615
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002616void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002617 // FIXME: Handle pack-expansions here.
2618 if (DiagnoseUnexpandedParameterPack(E))
2619 return;
2620
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002621 if (E->isTypeDependent() || E->isValueDependent()) {
2622 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002623 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002624 return;
2625 }
2626
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002627 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002628 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002629 llvm::APSInt Alignment(32);
Richard Smith282e7e62012-02-04 09:53:13 +00002630 ExprResult ICE =
2631 VerifyIntegerConstantExpression(E, &Alignment,
2632 PDiag(diag::err_attribute_argument_not_int) << "aligned",
2633 /*AllowFold*/ false);
2634 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00002635 return;
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002636 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002637 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2638 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002639 return;
2640 }
2641
Richard Smith282e7e62012-02-04 09:53:13 +00002642 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take()));
Sean Huntcf807c42010-08-18 23:23:40 +00002643}
2644
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002645void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002646 // FIXME: Cache the number on the Attr object if non-dependent?
2647 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002648 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002649 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002650}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002651
Chandler Carruthd309c812011-07-01 23:49:16 +00002652/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002653/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002654///
Mike Stumpbf916502009-07-24 19:02:52 +00002655/// Despite what would be logical, the mode attribute is a decl attribute, not a
2656/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2657/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002658static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002659 // This attribute isn't documented, but glibc uses it. It changes
2660 // the width of an int or unsigned int to the specified size.
2661
2662 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002663 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002664 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002665
Chris Lattnerfbf13472008-06-27 22:18:37 +00002666
2667 IdentifierInfo *Name = Attr.getParameterName();
2668 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002669 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002670 return;
2671 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002672
Chris Lattner5f9e2722011-07-23 10:55:15 +00002673 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002674
2675 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002676 if (Str.startswith("__") && Str.endswith("__"))
2677 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002678
2679 unsigned DestWidth = 0;
2680 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002681 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002682 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002683 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002684 switch (Str[0]) {
2685 case 'Q': DestWidth = 8; break;
2686 case 'H': DestWidth = 16; break;
2687 case 'S': DestWidth = 32; break;
2688 case 'D': DestWidth = 64; break;
2689 case 'X': DestWidth = 96; break;
2690 case 'T': DestWidth = 128; break;
2691 }
2692 if (Str[1] == 'F') {
2693 IntegerMode = false;
2694 } else if (Str[1] == 'C') {
2695 IntegerMode = false;
2696 ComplexMode = true;
2697 } else if (Str[1] != 'I') {
2698 DestWidth = 0;
2699 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002700 break;
2701 case 4:
2702 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2703 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002704 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002705 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002706 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002707 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002708 break;
2709 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002710 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002711 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002712 break;
2713 }
2714
2715 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002716 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002717 OldTy = TD->getUnderlyingType();
2718 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2719 OldTy = VD->getType();
2720 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002721 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002722 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002723 return;
2724 }
Eli Friedman73397492009-03-03 06:41:03 +00002725
John McCall183700f2009-09-21 23:43:11 +00002726 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002727 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2728 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002729 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002730 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2731 } else if (ComplexMode) {
2732 if (!OldTy->isComplexType())
2733 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2734 } else {
2735 if (!OldTy->isFloatingType())
2736 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2737 }
2738
Mike Stump390b4cc2009-05-16 07:39:55 +00002739 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2740 // and friends, at least with glibc.
2741 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2742 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002743 // FIXME: Make sure floating-point mappings are accurate
2744 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002745 QualType NewTy;
2746 switch (DestWidth) {
2747 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002748 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002749 return;
2750 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002751 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002752 return;
2753 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002754 if (!IntegerMode) {
2755 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2756 return;
2757 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002758 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002759 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002760 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002761 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002762 break;
2763 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002764 if (!IntegerMode) {
2765 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2766 return;
2767 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002768 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002769 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002770 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002771 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002772 break;
2773 case 32:
2774 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002775 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002776 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002777 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002778 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002779 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002780 break;
2781 case 64:
2782 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002783 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002784 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002785 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002786 NewTy = S.Context.LongTy;
2787 else
2788 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002789 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002790 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002791 NewTy = S.Context.UnsignedLongTy;
2792 else
2793 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002794 break;
Eli Friedman73397492009-03-03 06:41:03 +00002795 case 96:
2796 NewTy = S.Context.LongDoubleTy;
2797 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002798 case 128:
2799 if (!IntegerMode) {
2800 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2801 return;
2802 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002803 if (OldTy->isSignedIntegerType())
2804 NewTy = S.Context.Int128Ty;
2805 else
2806 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002807 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002808 }
2809
Eli Friedman73397492009-03-03 06:41:03 +00002810 if (ComplexMode) {
2811 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002812 }
2813
2814 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002815 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002816 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002817 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002818 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002819 cast<ValueDecl>(D)->setType(NewTy);
2820}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002821
Chandler Carruth1b03c872011-07-02 00:01:44 +00002822static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002823 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002824 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002825 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002826
Chandler Carruth87c44602011-07-01 23:49:12 +00002827 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002828 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002829 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002830 return;
2831 }
Mike Stumpbf916502009-07-24 19:02:52 +00002832
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002833 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002834}
2835
Chandler Carruth1b03c872011-07-02 00:01:44 +00002836static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002837 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002838 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002839 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002840
Mike Stumpbf916502009-07-24 19:02:52 +00002841
Chandler Carruth87c44602011-07-01 23:49:12 +00002842 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002843 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002844 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002845 return;
2846 }
Mike Stumpbf916502009-07-24 19:02:52 +00002847
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002848 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002849}
2850
Chandler Carruth1b03c872011-07-02 00:01:44 +00002851static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2852 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002853 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002854 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002855 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002856
Chris Lattner7255a2d2010-06-22 00:03:40 +00002857
Chandler Carruth87c44602011-07-01 23:49:12 +00002858 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002859 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002860 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002861 return;
2862 }
2863
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002864 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002865 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002866}
2867
Chandler Carruth1b03c872011-07-02 00:01:44 +00002868static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002869 if (S.LangOpts.CUDA) {
2870 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002871 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002872 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2873 return;
2874 }
2875
Chandler Carruth87c44602011-07-01 23:49:12 +00002876 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002877 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002878 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002879 return;
2880 }
2881
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002882 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002883 } else {
2884 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2885 }
2886}
2887
Chandler Carruth1b03c872011-07-02 00:01:44 +00002888static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002889 if (S.LangOpts.CUDA) {
2890 // check the attribute arguments.
2891 if (Attr.getNumArgs() != 0) {
2892 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2893 return;
2894 }
2895
Chandler Carruth87c44602011-07-01 23:49:12 +00002896 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002897 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002898 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002899 return;
2900 }
2901
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002902 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002903 } else {
2904 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2905 }
2906}
2907
Chandler Carruth1b03c872011-07-02 00:01:44 +00002908static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002909 if (S.LangOpts.CUDA) {
2910 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002911 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002912 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002913
Chandler Carruth87c44602011-07-01 23:49:12 +00002914 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002915 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002916 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002917 return;
2918 }
2919
Chandler Carruth87c44602011-07-01 23:49:12 +00002920 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002921 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002922 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002923 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2924 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2925 << FD->getType()
2926 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2927 "void");
2928 } else {
2929 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2930 << FD->getType();
2931 }
2932 return;
2933 }
2934
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002935 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002936 } else {
2937 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2938 }
2939}
2940
Chandler Carruth1b03c872011-07-02 00:01:44 +00002941static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002942 if (S.LangOpts.CUDA) {
2943 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002944 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002945 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002946
Peter Collingbourneced76712010-12-01 03:15:31 +00002947
Chandler Carruth87c44602011-07-01 23:49:12 +00002948 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002949 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002950 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002951 return;
2952 }
2953
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002954 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002955 } else {
2956 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2957 }
2958}
2959
Chandler Carruth1b03c872011-07-02 00:01:44 +00002960static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002961 if (S.LangOpts.CUDA) {
2962 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002963 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002964 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002965
Peter Collingbourneced76712010-12-01 03:15:31 +00002966
Chandler Carruth87c44602011-07-01 23:49:12 +00002967 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002968 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002969 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002970 return;
2971 }
2972
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002973 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002974 } else {
2975 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2976 }
2977}
2978
Chandler Carruth1b03c872011-07-02 00:01:44 +00002979static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002980 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002981 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002982 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002983
Chandler Carruth87c44602011-07-01 23:49:12 +00002984 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002985 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002986 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002987 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002988 return;
2989 }
Mike Stumpbf916502009-07-24 19:02:52 +00002990
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002991 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002992 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002993 return;
2994 }
Mike Stumpbf916502009-07-24 19:02:52 +00002995
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002996 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002997}
2998
Chandler Carruth1b03c872011-07-02 00:01:44 +00002999static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003000 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003001
Chandler Carruth87c44602011-07-01 23:49:12 +00003002 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00003003 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
3004 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00003005 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00003006 return;
3007
Chandler Carruth87c44602011-07-01 23:49:12 +00003008 if (!isa<ObjCMethodDecl>(D)) {
3009 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3010 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00003011 return;
3012 }
3013
Chandler Carruth87c44602011-07-01 23:49:12 +00003014 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00003015 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003016 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003017 return;
3018 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003019 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003020 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003021 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003022 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003023 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003024 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003025 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003026 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003027 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003028 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003029 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003030 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00003031 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003032 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003033 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003034 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003035 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003036 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003037 return;
3038 }
3039
Chris Lattner5f9e2722011-07-23 10:55:15 +00003040 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003041 PcsAttr::PCSType PCS;
3042 if (StrRef == "aapcs")
3043 PCS = PcsAttr::AAPCS;
3044 else if (StrRef == "aapcs-vfp")
3045 PCS = PcsAttr::AAPCS_VFP;
3046 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003047 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3048 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003049 return;
3050 }
3051
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003052 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003053 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003054 default:
3055 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003056 }
3057}
3058
Chandler Carruth1b03c872011-07-02 00:01:44 +00003059static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003060 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003061 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003062}
3063
John McCall711c52b2011-01-05 12:14:39 +00003064bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3065 if (attr.isInvalid())
3066 return true;
3067
Ted Kremenek831efae2011-04-15 05:49:29 +00003068 if ((attr.getNumArgs() != 0 &&
3069 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3070 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003071 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3072 attr.setInvalid();
3073 return true;
3074 }
3075
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003076 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3077 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003078 switch (attr.getKind()) {
3079 case AttributeList::AT_cdecl: CC = CC_C; break;
3080 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3081 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3082 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3083 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003084 case AttributeList::AT_pcs: {
3085 Expr *Arg = attr.getArg(0);
3086 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003087 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003088 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3089 << "pcs" << 1;
3090 attr.setInvalid();
3091 return true;
3092 }
3093
Chris Lattner5f9e2722011-07-23 10:55:15 +00003094 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003095 if (StrRef == "aapcs") {
3096 CC = CC_AAPCS;
3097 break;
3098 } else if (StrRef == "aapcs-vfp") {
3099 CC = CC_AAPCS_VFP;
3100 break;
3101 }
3102 // FALLS THROUGH
3103 }
David Blaikie7530c032012-01-17 06:56:22 +00003104 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003105 }
3106
3107 return false;
3108}
3109
Chandler Carruth1b03c872011-07-02 00:01:44 +00003110static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003111 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003112
3113 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003114 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003115 return;
3116
Chandler Carruth87c44602011-07-01 23:49:12 +00003117 if (!isa<ObjCMethodDecl>(D)) {
3118 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3119 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003120 return;
3121 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003122
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003123 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003124}
3125
3126/// Checks a regparm attribute, returning true if it is ill-formed and
3127/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003128bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3129 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003130 return true;
3131
Chandler Carruth87c44602011-07-01 23:49:12 +00003132 if (Attr.getNumArgs() != 1) {
3133 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3134 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003135 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003136 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003137
Chandler Carruth87c44602011-07-01 23:49:12 +00003138 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003139 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003140 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003141 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003142 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003143 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003144 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003145 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003146 }
3147
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003148 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003149 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003150 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003151 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003152 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003153 }
3154
John McCall711c52b2011-01-05 12:14:39 +00003155 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003156 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003157 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003158 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003159 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003160 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003161 }
3162
John McCall711c52b2011-01-05 12:14:39 +00003163 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003164}
3165
Chandler Carruth1b03c872011-07-02 00:01:44 +00003166static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003167 if (S.LangOpts.CUDA) {
3168 // check the attribute arguments.
3169 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003170 // FIXME: 0 is not okay.
3171 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003172 return;
3173 }
3174
Chandler Carruth87c44602011-07-01 23:49:12 +00003175 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003176 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003177 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003178 return;
3179 }
3180
3181 Expr *MaxThreadsExpr = Attr.getArg(0);
3182 llvm::APSInt MaxThreads(32);
3183 if (MaxThreadsExpr->isTypeDependent() ||
3184 MaxThreadsExpr->isValueDependent() ||
3185 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3186 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3187 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3188 return;
3189 }
3190
3191 llvm::APSInt MinBlocks(32);
3192 if (Attr.getNumArgs() > 1) {
3193 Expr *MinBlocksExpr = Attr.getArg(1);
3194 if (MinBlocksExpr->isTypeDependent() ||
3195 MinBlocksExpr->isValueDependent() ||
3196 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3197 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3198 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3199 return;
3200 }
3201 }
3202
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003203 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003204 MaxThreads.getZExtValue(),
3205 MinBlocks.getZExtValue()));
3206 } else {
3207 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3208 }
3209}
3210
Chris Lattner0744e5f2008-06-29 00:23:49 +00003211//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003212// Checker-specific attribute handlers.
3213//===----------------------------------------------------------------------===//
3214
John McCallc7ad3812011-01-25 03:31:58 +00003215static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003216 return type->isDependentType() ||
3217 type->isObjCObjectPointerType() ||
3218 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003219}
3220static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003221 return type->isDependentType() ||
3222 type->isPointerType() ||
3223 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003224}
3225
Chandler Carruth1b03c872011-07-02 00:01:44 +00003226static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003227 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003228 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003229 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003230 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003231 return;
3232 }
3233
3234 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003235 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003236 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3237 cf = false;
3238 } else {
3239 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3240 cf = true;
3241 }
3242
3243 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003244 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003245 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003246 return;
3247 }
3248
3249 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003250 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003251 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003252 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003253}
3254
Chandler Carruth1b03c872011-07-02 00:01:44 +00003255static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3256 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003257 if (!isa<ObjCMethodDecl>(D)) {
3258 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003259 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003260 return;
3261 }
3262
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003263 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003264}
3265
Chandler Carruth1b03c872011-07-02 00:01:44 +00003266static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3267 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003268
John McCallc7ad3812011-01-25 03:31:58 +00003269 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003270
Chandler Carruth87c44602011-07-01 23:49:12 +00003271 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003272 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003273 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003274 returnType = PD->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +00003275 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
Chandler Carruth87c44602011-07-01 23:49:12 +00003276 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003277 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003278 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003279 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003280 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003281 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003282 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003283 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003284 return;
3285 }
Mike Stumpbf916502009-07-24 19:02:52 +00003286
John McCallc7ad3812011-01-25 03:31:58 +00003287 bool typeOK;
3288 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003289 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003290 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003291 case AttributeList::AT_ns_returns_autoreleased:
3292 case AttributeList::AT_ns_returns_retained:
3293 case AttributeList::AT_ns_returns_not_retained:
3294 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3295 cf = false;
3296 break;
3297
3298 case AttributeList::AT_cf_returns_retained:
3299 case AttributeList::AT_cf_returns_not_retained:
3300 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3301 cf = true;
3302 break;
3303 }
3304
3305 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003306 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003307 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003308 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003309 }
Mike Stumpbf916502009-07-24 19:02:52 +00003310
Chandler Carruth87c44602011-07-01 23:49:12 +00003311 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003312 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003313 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003314 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003315 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003316 S.Context));
3317 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003318 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003319 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003320 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003321 return;
3322 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003323 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003324 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003325 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003326 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003327 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003328 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003329 return;
3330 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003331 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003332 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003333 return;
3334 };
3335}
3336
John McCalldc7c5ad2011-07-22 08:53:00 +00003337static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3338 const AttributeList &attr) {
3339 SourceLocation loc = attr.getLoc();
3340
3341 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3342
3343 if (!isa<ObjCMethodDecl>(method)) {
3344 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003345 << SourceRange(loc, loc) << attr.getName() << ExpectedMethod;
John McCalldc7c5ad2011-07-22 08:53:00 +00003346 return;
3347 }
3348
3349 // Check that the method returns a normal pointer.
3350 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003351
3352 if (!resultType->isReferenceType() &&
3353 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003354 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3355 << SourceRange(loc)
3356 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3357
3358 // Drop the attribute.
3359 return;
3360 }
3361
3362 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003363 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003364}
3365
John McCall8dfac0b2011-09-30 05:12:12 +00003366/// Handle cf_audited_transfer and cf_unknown_transfer.
3367static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3368 if (!isa<FunctionDecl>(D)) {
3369 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003370 << A.getRange() << A.getName() << ExpectedFunction;
John McCall8dfac0b2011-09-30 05:12:12 +00003371 return;
3372 }
3373
3374 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3375
3376 // Check whether there's a conflicting attribute already present.
3377 Attr *Existing;
3378 if (IsAudited) {
3379 Existing = D->getAttr<CFUnknownTransferAttr>();
3380 } else {
3381 Existing = D->getAttr<CFAuditedTransferAttr>();
3382 }
3383 if (Existing) {
3384 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3385 << A.getName()
3386 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3387 << A.getRange() << Existing->getRange();
3388 return;
3389 }
3390
3391 // All clear; add the attribute.
3392 if (IsAudited) {
3393 D->addAttr(
3394 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3395 } else {
3396 D->addAttr(
3397 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3398 }
3399}
3400
John McCallfe98da02011-09-29 07:17:38 +00003401static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3402 const AttributeList &Attr) {
3403 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3404 if (!RD || RD->isUnion()) {
3405 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003406 << Attr.getRange() << Attr.getName() << ExpectedStruct;
John McCallfe98da02011-09-29 07:17:38 +00003407 }
3408
3409 IdentifierInfo *ParmName = Attr.getParameterName();
3410
3411 // In Objective-C, verify that the type names an Objective-C type.
3412 // We don't want to check this outside of ObjC because people sometimes
3413 // do crazy C declarations of Objective-C types.
David Blaikie4e4d0842012-03-11 07:00:24 +00003414 if (ParmName && S.getLangOpts().ObjC1) {
John McCallfe98da02011-09-29 07:17:38 +00003415 // Check for an existing type with this name.
3416 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3417 Sema::LookupOrdinaryName);
3418 if (S.LookupName(R, Sc)) {
3419 NamedDecl *Target = R.getFoundDecl();
3420 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3421 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3422 S.Diag(Target->getLocStart(), diag::note_declared_at);
3423 }
3424 }
3425 }
3426
3427 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3428 ParmName));
3429}
3430
Chandler Carruth1b03c872011-07-02 00:01:44 +00003431static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3432 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003433 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003434
Chandler Carruth87c44602011-07-01 23:49:12 +00003435 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003436 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003437}
3438
Chandler Carruth1b03c872011-07-02 00:01:44 +00003439static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3440 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003441 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003442 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003443 << Attr.getRange() << Attr.getName() << ExpectedVariable;
John McCallf85e1932011-06-15 23:02:42 +00003444 return;
3445 }
3446
Chandler Carruth87c44602011-07-01 23:49:12 +00003447 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003448 QualType type = vd->getType();
3449
3450 if (!type->isDependentType() &&
3451 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003452 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003453 << type;
3454 return;
3455 }
3456
3457 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3458
3459 // If we have no lifetime yet, check the lifetime we're presumably
3460 // going to infer.
3461 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3462 lifetime = type->getObjCARCImplicitLifetime();
3463
3464 switch (lifetime) {
3465 case Qualifiers::OCL_None:
3466 assert(type->isDependentType() &&
3467 "didn't infer lifetime for non-dependent type?");
3468 break;
3469
3470 case Qualifiers::OCL_Weak: // meaningful
3471 case Qualifiers::OCL_Strong: // meaningful
3472 break;
3473
3474 case Qualifiers::OCL_ExplicitNone:
3475 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003476 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003477 << (lifetime == Qualifiers::OCL_Autoreleasing);
3478 break;
3479 }
3480
Chandler Carruth87c44602011-07-01 23:49:12 +00003481 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003482 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003483}
3484
Charles Davisf0122fe2010-02-16 18:27:26 +00003485static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
Aaron Ballman94287722012-02-23 22:46:33 +00003486 switch (Attr.getKind()) {
3487 default:
3488 return false;
3489 case AttributeList::AT_dllimport:
3490 case AttributeList::AT_dllexport:
3491 case AttributeList::AT_uuid:
3492 case AttributeList::AT_deprecated:
3493 case AttributeList::AT_noreturn:
3494 case AttributeList::AT_nothrow:
3495 case AttributeList::AT_naked:
3496 case AttributeList::AT_noinline:
3497 return true;
3498 }
Francois Pichet11542142010-12-19 06:50:37 +00003499}
3500
3501//===----------------------------------------------------------------------===//
3502// Microsoft specific attribute handlers.
3503//===----------------------------------------------------------------------===//
3504
Chandler Carruth1b03c872011-07-02 00:01:44 +00003505static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003506 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003507 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003508 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003509 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003510
Francois Pichet11542142010-12-19 06:50:37 +00003511 Expr *Arg = Attr.getArg(0);
3512 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003513 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003514 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3515 << "uuid" << 1;
3516 return;
3517 }
3518
Chris Lattner5f9e2722011-07-23 10:55:15 +00003519 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003520
3521 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3522 StrRef.back() == '}';
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003523
Francois Pichetd3d3be92010-12-20 01:41:49 +00003524 // Validate GUID length.
3525 if (IsCurly && StrRef.size() != 38) {
3526 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3527 return;
3528 }
3529 if (!IsCurly && StrRef.size() != 36) {
3530 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3531 return;
3532 }
3533
Douglas Gregorf6b8b582012-03-14 16:55:17 +00003534 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
Francois Pichetd3d3be92010-12-20 01:41:49 +00003535 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003536 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003537 if (IsCurly) // Skip the optional '{'
3538 ++I;
3539
3540 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003541 if (i == 8 || i == 13 || i == 18 || i == 23) {
3542 if (*I != '-') {
3543 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3544 return;
3545 }
3546 } else if (!isxdigit(*I)) {
3547 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3548 return;
3549 }
3550 I++;
3551 }
Francois Pichet11542142010-12-19 06:50:37 +00003552
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003553 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003554 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003555 } else
Francois Pichet11542142010-12-19 06:50:37 +00003556 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003557}
3558
Ted Kremenekb71368d2009-05-09 02:44:38 +00003559//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003560// Top Level Sema Entry Points
3561//===----------------------------------------------------------------------===//
3562
Chandler Carruth1b03c872011-07-02 00:01:44 +00003563static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3564 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003565 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003566 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3567 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3568 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003569 default:
3570 break;
3571 }
3572}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003573
Chandler Carruth1b03c872011-07-02 00:01:44 +00003574static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3575 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003576 switch (Attr.getKind()) {
Michael Hane53ac8a2012-03-07 00:12:16 +00003577 case AttributeList::AT_ibaction: handleIBAction(S, D, Attr); break;
3578 case AttributeList::AT_iboutlet: handleIBOutlet(S, D, Attr); break;
3579 case AttributeList::AT_iboutletcollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003580 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003581 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003582 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003583 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003584 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003585 case AttributeList::AT_neon_vector_type:
3586 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003587 // Ignore these, these are type attributes, handled by
3588 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003589 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003590 case AttributeList::AT_device:
3591 case AttributeList::AT_host:
3592 case AttributeList::AT_overloadable:
3593 // Ignore, this is a non-inheritable attribute, handled
3594 // by ProcessNonInheritableDeclAttr.
3595 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003596 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3597 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003598 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003600 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003601 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3602 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3603 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003604 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003605 handleDependencyAttr (S, D, Attr); break;
3606 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3607 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3608 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3609 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3610 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003611 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003612 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003613 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003614 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3615 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3616 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3617 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003618 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003619 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003620 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003621 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3622 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3623 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3624 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3625 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003626 case AttributeList::AT_ownership_returns:
3627 case AttributeList::AT_ownership_takes:
3628 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003629 handleOwnershipAttr (S, D, Attr); break;
3630 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3631 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3632 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3633 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3634 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003635
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003636 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003637 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003638 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003639 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003640
John McCalldc7c5ad2011-07-22 08:53:00 +00003641 case AttributeList::AT_objc_returns_inner_pointer:
3642 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3643
John McCallfe98da02011-09-29 07:17:38 +00003644 case AttributeList::AT_ns_bridged:
3645 handleNSBridgedAttr(S, scope, D, Attr); break;
3646
John McCall8dfac0b2011-09-30 05:12:12 +00003647 case AttributeList::AT_cf_audited_transfer:
3648 case AttributeList::AT_cf_unknown_transfer:
3649 handleCFTransferAttr(S, D, Attr); break;
3650
Ted Kremenekb71368d2009-05-09 02:44:38 +00003651 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003652 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003653 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003654 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003655 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003656
3657 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003658 case AttributeList::AT_ns_returns_not_retained:
3659 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003660 case AttributeList::AT_ns_returns_retained:
3661 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003662 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003663
Michael Hane53ac8a2012-03-07 00:12:16 +00003664 case AttributeList::AT_reqd_work_group_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003665 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003666
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003667 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003668 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003669
Chandler Carruth1b03c872011-07-02 00:01:44 +00003670 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003671 case AttributeList::AT_ms_struct: handleMsStructAttr (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003672 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3673 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003674 case AttributeList::AT_objc_arc_weak_reference_unavailable:
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003675 handleArcWeakrefUnavailableAttr (S, D, Attr);
3676 break;
Patrick Beardb2f68202012-04-06 18:12:22 +00003677 case AttributeList::AT_objc_root_class:
3678 handleObjCRootClassAttr(S, D, Attr);
3679 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00003680 case AttributeList::AT_objc_requires_property_definitions:
3681 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00003682 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003683 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003684 case AttributeList::AT_returns_twice:
3685 handleReturnsTwiceAttr(S, D, Attr);
3686 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003687 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3688 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3689 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003690 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003691 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3692 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3693 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003694 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003695 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003696 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003697 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003698 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003699 break;
John McCalld5313b02011-03-02 11:33:24 +00003700 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003701 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003702 break;
Michael Hane53ac8a2012-03-07 00:12:16 +00003703 case AttributeList::AT_NSObject: handleObjCNSObject (S, D, Attr); break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003704 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3705 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3706 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3707 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3708 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3709 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3710 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3711 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003712 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003713 // Just ignore
3714 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003715 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003716 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003717 break;
John McCall04a67a62010-02-05 21:31:56 +00003718 case AttributeList::AT_stdcall:
3719 case AttributeList::AT_cdecl:
3720 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003721 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003722 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003723 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003724 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003725 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003726 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003727 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003728 break;
Francois Pichet11542142010-12-19 06:50:37 +00003729 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003730 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003731 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003732
3733 // Thread safety attributes:
3734 case AttributeList::AT_guarded_var:
3735 handleGuardedVarAttr(S, D, Attr);
3736 break;
3737 case AttributeList::AT_pt_guarded_var:
3738 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3739 break;
3740 case AttributeList::AT_scoped_lockable:
3741 handleLockableAttr(S, D, Attr, /*scoped = */true);
3742 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00003743 case AttributeList::AT_no_address_safety_analysis:
3744 handleNoAddressSafetyAttr(S, D, Attr);
3745 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003746 case AttributeList::AT_no_thread_safety_analysis:
3747 handleNoThreadSafetyAttr(S, D, Attr);
3748 break;
3749 case AttributeList::AT_lockable:
3750 handleLockableAttr(S, D, Attr);
3751 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003752 case AttributeList::AT_guarded_by:
3753 handleGuardedByAttr(S, D, Attr);
3754 break;
3755 case AttributeList::AT_pt_guarded_by:
3756 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3757 break;
3758 case AttributeList::AT_exclusive_lock_function:
3759 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3760 break;
3761 case AttributeList::AT_exclusive_locks_required:
3762 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3763 break;
3764 case AttributeList::AT_exclusive_trylock_function:
3765 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3766 break;
3767 case AttributeList::AT_lock_returned:
3768 handleLockReturnedAttr(S, D, Attr);
3769 break;
3770 case AttributeList::AT_locks_excluded:
3771 handleLocksExcludedAttr(S, D, Attr);
3772 break;
3773 case AttributeList::AT_shared_lock_function:
3774 handleLockFunAttr(S, D, Attr);
3775 break;
3776 case AttributeList::AT_shared_locks_required:
3777 handleLocksRequiredAttr(S, D, Attr);
3778 break;
3779 case AttributeList::AT_shared_trylock_function:
3780 handleTrylockFunAttr(S, D, Attr);
3781 break;
3782 case AttributeList::AT_unlock_function:
3783 handleUnlockFunAttr(S, D, Attr);
3784 break;
3785 case AttributeList::AT_acquired_before:
3786 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3787 break;
3788 case AttributeList::AT_acquired_after:
3789 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3790 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003791
Chris Lattner803d0802008-06-29 00:43:07 +00003792 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003793 // Ask target about the attribute.
3794 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3795 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003796 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3797 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003798 break;
3799 }
3800}
3801
Peter Collingbourne60700392011-01-21 02:08:45 +00003802/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3803/// the attribute applies to decls. If the attribute is a type attribute, just
3804/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3805/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003806static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3807 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003808 bool NonInheritable, bool Inheritable) {
3809 if (Attr.isInvalid())
3810 return;
3811
3812 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3813 // FIXME: Try to deal with other __declspec attributes!
3814 return;
3815
3816 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003817 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003818
3819 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003820 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003821}
3822
Chris Lattner803d0802008-06-29 00:43:07 +00003823/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3824/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003825void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003826 const AttributeList *AttrList,
3827 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003828 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003829 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003830 }
3831
3832 // GCC accepts
3833 // static int a9 __attribute__((weakref));
3834 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003835 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003836 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003837 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003838 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003839 }
3840}
3841
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003842// Annotation attributes are the only attributes allowed after an access
3843// specifier.
3844bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3845 const AttributeList *AttrList) {
3846 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3847 if (l->getKind() == AttributeList::AT_annotate) {
3848 handleAnnotateAttr(*this, ASDecl, *l);
3849 } else {
3850 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3851 return true;
3852 }
3853 }
3854
3855 return false;
3856}
3857
John McCalle82247a2011-10-01 05:17:03 +00003858/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3859/// contains any decl attributes that we should warn about.
3860static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3861 for ( ; A; A = A->getNext()) {
3862 // Only warn if the attribute is an unignored, non-type attribute.
3863 if (A->isUsedAsTypeAttr()) continue;
3864 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3865
3866 if (A->getKind() == AttributeList::UnknownAttribute) {
3867 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3868 << A->getName() << A->getRange();
3869 } else {
3870 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3871 << A->getName() << A->getRange();
3872 }
3873 }
3874}
3875
3876/// checkUnusedDeclAttributes - Given a declarator which is not being
3877/// used to build a declaration, complain about any decl attributes
3878/// which might be lying around on it.
3879void Sema::checkUnusedDeclAttributes(Declarator &D) {
3880 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3881 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3882 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3883 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3884}
3885
Ryan Flynne25ff832009-07-30 03:15:39 +00003886/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3887/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003888NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3889 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003890 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003891 NamedDecl *NewD = 0;
3892 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003893 FunctionDecl *NewFD;
3894 // FIXME: Missing call to CheckFunctionDeclaration().
3895 // FIXME: Mangling?
3896 // FIXME: Is the qualifier info correct?
3897 // FIXME: Is the DeclContext correct?
3898 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3899 Loc, Loc, DeclarationName(II),
3900 FD->getType(), FD->getTypeSourceInfo(),
3901 SC_None, SC_None,
3902 false/*isInlineSpecified*/,
3903 FD->hasPrototype(),
3904 false/*isConstexprSpecified*/);
3905 NewD = NewFD;
3906
3907 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003908 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003909
3910 // Fake up parameter variables; they are declared as if this were
3911 // a typedef.
3912 QualType FDTy = FD->getType();
3913 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3914 SmallVector<ParmVarDecl*, 16> Params;
3915 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3916 AE = FT->arg_type_end(); AI != AE; ++AI) {
3917 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3918 Param->setScopeInfo(0, Params.size());
3919 Params.push_back(Param);
3920 }
David Blaikie4278c652011-09-21 18:16:56 +00003921 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003922 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003923 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3924 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003925 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003926 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003927 VD->getStorageClass(),
3928 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003929 if (VD->getQualifier()) {
3930 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003931 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003932 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003933 }
3934 return NewD;
3935}
3936
3937/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3938/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003939void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003940 if (W.getUsed()) return; // only do this once
3941 W.setUsed(true);
3942 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3943 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003944 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003945 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3946 NDId->getName()));
3947 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003948 WeakTopLevelDecl.push_back(NewD);
3949 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3950 // to insert Decl at TU scope, sorry.
3951 DeclContext *SavedContext = CurContext;
3952 CurContext = Context.getTranslationUnitDecl();
3953 PushOnScopeChains(NewD, S);
3954 CurContext = SavedContext;
3955 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003956 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003957 }
3958}
3959
Chris Lattner0744e5f2008-06-29 00:23:49 +00003960/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3961/// it, apply them to D. This is a bit tricky because PD can have attributes
3962/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003963void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3964 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003965 // It's valid to "forward-declare" #pragma weak, in which case we
3966 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003967 if (Inheritable) {
3968 LoadExternalWeakUndeclaredIdentifiers();
3969 if (!WeakUndeclaredIdentifiers.empty()) {
3970 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3971 if (IdentifierInfo *Id = ND->getIdentifier()) {
3972 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3973 = WeakUndeclaredIdentifiers.find(Id);
3974 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3975 WeakInfo W = I->second;
3976 DeclApplyPragmaWeak(S, ND, W);
3977 WeakUndeclaredIdentifiers[Id] = W;
3978 }
John McCalld4aff0e2010-10-27 00:59:00 +00003979 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003980 }
3981 }
3982 }
3983
Chris Lattner0744e5f2008-06-29 00:23:49 +00003984 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003985 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003986 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003987
Chris Lattner0744e5f2008-06-29 00:23:49 +00003988 // Walk the declarator structure, applying decl attributes that were in a type
3989 // position to the decl itself. This handles cases like:
3990 // int *__attr__(x)** D;
3991 // when X is a decl attribute.
3992 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3993 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003994 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003995
Chris Lattner0744e5f2008-06-29 00:23:49 +00003996 // Finally, apply any attributes on the decl itself.
3997 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003998 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003999}
John McCall54abf7d2009-11-04 02:18:39 +00004000
John McCallf85e1932011-06-15 23:02:42 +00004001/// Is the given declaration allowed to use a forbidden type?
4002static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
4003 // Private ivars are always okay. Unfortunately, people don't
4004 // always properly make their ivars private, even in system headers.
4005 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00004006 // Function declarations in sys headers will be marked unavailable.
4007 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
4008 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00004009 return false;
4010
4011 // Require it to be declared in a system header.
4012 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
4013}
4014
4015/// Handle a delayed forbidden-type diagnostic.
4016static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4017 Decl *decl) {
4018 if (decl && isForbiddenTypeAllowed(S, decl)) {
4019 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4020 "this system declaration uses an unsupported type"));
4021 return;
4022 }
David Blaikie4e4d0842012-03-11 07:00:24 +00004023 if (S.getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian175fb102011-10-03 22:11:57 +00004024 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4025 // FIXME. we may want to supress diagnostics for all
4026 // kind of forbidden type messages on unavailable functions.
4027 if (FD->hasAttr<UnavailableAttr>() &&
4028 diag.getForbiddenTypeDiagnostic() ==
4029 diag::err_arc_array_param_no_ownership) {
4030 diag.Triggered = true;
4031 return;
4032 }
4033 }
John McCallf85e1932011-06-15 23:02:42 +00004034
4035 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4036 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4037 diag.Triggered = true;
4038}
4039
John McCalleee1d542011-02-14 07:13:47 +00004040// This duplicates a vector push_back but hides the need to know the
4041// size of the type.
4042void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
4043 assert(StackSize <= StackCapacity);
4044
4045 // Grow the stack if necessary.
4046 if (StackSize == StackCapacity) {
4047 unsigned newCapacity = 2 * StackCapacity + 2;
4048 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
4049 const char *oldBuffer = (const char*) Stack;
4050
4051 if (StackCapacity)
4052 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
4053
4054 delete[] oldBuffer;
4055 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
4056 StackCapacity = newCapacity;
4057 }
4058
4059 assert(StackSize < StackCapacity);
4060 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00004061}
4062
John McCalleee1d542011-02-14 07:13:47 +00004063void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
4064 Decl *decl) {
4065 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00004066
John McCalleee1d542011-02-14 07:13:47 +00004067 // Check the invariants.
4068 assert(DD.StackSize >= state.SavedStackSize);
4069 assert(state.SavedStackSize >= DD.ActiveStackBase);
4070 assert(DD.ParsingDepth > 0);
4071
4072 // Drop the parsing depth.
4073 DD.ParsingDepth--;
4074
4075 // If there are no active diagnostics, we're done.
4076 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00004077 return;
4078
John McCall2f514482010-01-27 03:50:35 +00004079 // We only want to actually emit delayed diagnostics when we
4080 // successfully parsed a decl.
John McCalle8c904f2012-01-26 20:04:03 +00004081 if (decl) {
John McCalleee1d542011-02-14 07:13:47 +00004082 // We emit all the active diagnostics, not just those starting
4083 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00004084 // decl spec and another for each declarator; in a decl group like:
4085 // deprecated_typedef foo, *bar, baz();
4086 // only the declarator pops will be passed decls. This is correct;
4087 // we really do need to consider delayed diagnostics from the decl spec
4088 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00004089 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4090 DelayedDiagnostic &diag = DD.Stack[i];
4091 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004092 continue;
4093
John McCalleee1d542011-02-14 07:13:47 +00004094 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004095 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00004096 // Don't bother giving deprecation diagnostics if the decl is invalid.
4097 if (!decl->isInvalidDecl())
4098 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004099 break;
4100
4101 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00004102 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004103 break;
John McCallf85e1932011-06-15 23:02:42 +00004104
4105 case DelayedDiagnostic::ForbiddenType:
4106 handleDelayedForbiddenType(S, diag, decl);
4107 break;
John McCall2f514482010-01-27 03:50:35 +00004108 }
4109 }
4110 }
4111
John McCall58e6f342010-03-16 05:22:47 +00004112 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00004113 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00004114 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00004115
John McCalleee1d542011-02-14 07:13:47 +00004116 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00004117}
4118
4119static bool isDeclDeprecated(Decl *D) {
4120 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004121 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004122 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004123 // A category implicitly has the availability of the interface.
4124 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4125 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004126 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4127 return false;
4128}
4129
John McCall9c3087b2010-08-26 02:13:20 +00004130void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004131 Decl *Ctx) {
4132 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004133 return;
4134
John McCall2f514482010-01-27 03:50:35 +00004135 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004136 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004137 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004138 << DD.getDeprecationDecl()->getDeclName()
4139 << DD.getDeprecationMessage();
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004140 else if (DD.getUnknownObjCClass()) {
4141 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4142 << DD.getDeprecationDecl()->getDeclName();
4143 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4144 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004145 else
4146 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004147 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004148}
4149
Chris Lattner5f9e2722011-07-23 10:55:15 +00004150void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004151 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004152 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004153 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004154 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004155 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4156 UnknownObjCClass,
4157 Message));
John McCall54abf7d2009-11-04 02:18:39 +00004158 return;
4159 }
4160
4161 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004162 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004163 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004164 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004165 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4166 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004167 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004168 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004169 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004170 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004171 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004172 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4173 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004174 }
John McCall54abf7d2009-11-04 02:18:39 +00004175}