blob: 37edeff0ecd0ad28e12d3b5775350899b386aa5c [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,
38 ExpectedParameterOrMethod,
39 ExpectedFunctionMethodOrBlock,
40 ExpectedClassOrVirtualMethod,
41 ExpectedFunctionMethodOrParameter,
42 ExpectedClass,
43 ExpectedVirtualMethod,
44 ExpectedClassMember,
45 ExpectedVariable,
46 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000047 ExpectedVariableFunctionOrLabel,
48 ExpectedFieldOrGlobalVar
John McCall883cc2c2011-03-02 12:29:23 +000049};
50
Chris Lattnere5c5ee12008-06-29 00:16:31 +000051//===----------------------------------------------------------------------===//
52// Helper functions
53//===----------------------------------------------------------------------===//
54
Chandler Carruth87c44602011-07-01 23:49:12 +000055static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000056 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000057 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000058 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000059 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000060 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000061 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000062 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000063 Ty = decl->getUnderlyingType();
64 else
65 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000066
Chris Lattner6b6b5372008-06-26 18:38:35 +000067 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000068 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000069 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000070 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000071
John McCall183700f2009-09-21 23:43:11 +000072 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000073}
74
Daniel Dunbar35682492008-09-26 04:12:28 +000075// FIXME: We should provide an abstraction around a method or function
76// to provide the following bits of information.
77
Nuno Lopesd20254f2009-12-20 23:11:08 +000078/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000079/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000080static bool isFunction(const Decl *D) {
81 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000082}
83
84/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000085/// type (function or function-typed variable) or an Objective-C
86/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000087static bool isFunctionOrMethod(const Decl *D) {
88 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000089}
90
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000091/// isFunctionOrMethodOrBlock - Return true if the given decl has function
92/// type (function or function-typed variable) or an Objective-C
93/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000094static bool isFunctionOrMethodOrBlock(const Decl *D) {
95 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000096 return true;
97 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +000098 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000099 QualType Ty = V->getType();
100 return Ty->isBlockPointerType();
101 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000102 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000103}
104
John McCall711c52b2011-01-05 12:14:39 +0000105/// Return true if the given decl has a declarator that should have
106/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000107static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000108 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000109 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
110 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000111}
112
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000113/// hasFunctionProto - Return true if the given decl has a argument
114/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000115/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000116static bool hasFunctionProto(const Decl *D) {
117 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000118 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000119 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000120 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000121 return true;
122 }
123}
124
125/// getFunctionOrMethodNumArgs - Return number of function or method
126/// arguments. It is an error to call this on a K&R function (use
127/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000128static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
129 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000130 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000131 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000132 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000133 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000134}
135
Chandler Carruth87c44602011-07-01 23:49:12 +0000136static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
137 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000138 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000139 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000140 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000141
Chandler Carruth87c44602011-07-01 23:49:12 +0000142 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000143}
144
Chandler Carruth87c44602011-07-01 23:49:12 +0000145static QualType getFunctionOrMethodResultType(const Decl *D) {
146 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000147 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000148 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000149}
150
Chandler Carruth87c44602011-07-01 23:49:12 +0000151static bool isFunctionOrMethodVariadic(const Decl *D) {
152 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000153 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000154 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000155 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000156 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000157 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000158 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000159 }
160}
161
Chandler Carruth87c44602011-07-01 23:49:12 +0000162static bool isInstanceMethod(const Decl *D) {
163 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000164 return MethodDecl->isInstance();
165 return false;
166}
167
Chris Lattner6b6b5372008-06-26 18:38:35 +0000168static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000169 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000170 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000171 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000172
John McCall506b57e2010-05-17 21:00:27 +0000173 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
174 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000175 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000176
John McCall506b57e2010-05-17 21:00:27 +0000177 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000178
Chris Lattner6b6b5372008-06-26 18:38:35 +0000179 // FIXME: Should we walk the chain of classes?
180 return ClsName == &Ctx.Idents.get("NSString") ||
181 ClsName == &Ctx.Idents.get("NSMutableString");
182}
183
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000184static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000185 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000186 if (!PT)
187 return false;
188
Ted Kremenek6217b802009-07-29 21:53:49 +0000189 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000190 if (!RT)
191 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000192
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000193 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000194 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000195 return false;
196
197 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
198}
199
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000200/// \brief Check if the attribute has exactly as many args as Num. May
201/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000202static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
203 unsigned int Num) {
204 if (Attr.getNumArgs() != Num) {
205 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
206 return false;
207 }
208
209 return true;
210}
211
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000212
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000213/// \brief Check if the attribute has at least as many args as Num. May
214/// output an error.
215static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
216 unsigned int Num) {
217 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000218 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
219 return false;
220 }
221
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000222 return true;
223}
224
225///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000226/// \brief Check if passed in Decl is a field or potentially shared global var
227/// \return true if the Decl is a field or potentially shared global variable
228///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000229static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000230 if (isa<FieldDecl>(D))
231 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000232 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000233 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
234
235 return false;
236}
237
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000238/// \brief Check if the passed-in expression is of type int or bool.
239static bool isIntOrBool(Expr *Exp) {
240 QualType QT = Exp->getType();
241 return QT->isBooleanType() || QT->isIntegerType();
242}
243
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000244///
245/// \brief Check if passed in Decl is a pointer type.
246/// Note that this function may produce an error message.
247/// \return true if the Decl is a pointer type; false otherwise
248///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000249static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
250 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000251 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000252 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000253 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000254 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
255 << Attr.getName()->getName() << QT;
256 } else {
257 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
258 << Attr.getName();
259 }
260 return false;
261}
262
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000263/// \brief Checks that the passed in QualType either is of RecordType or points
264/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000265static const RecordType *getRecordType(QualType QT) {
266 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000267 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000268
269 // Now check if we point to record type.
270 if (const PointerType *PT = QT->getAs<PointerType>())
271 return PT->getPointeeType()->getAs<RecordType>();
272
273 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000274}
275
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000276/// \brief Thread Safety Analysis: Checks that the passed in RecordType
277/// resolves to a lockable object. May flag an error.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000278static bool checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
279 const RecordType *RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000280 // Flag error if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000281 if (!RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000282 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_class)
283 << Attr.getName();
284 return false;
285 }
DeLesley Hutchins634b2932012-02-16 17:15:51 +0000286 // Don't check for lockable if the class hasn't been defined yet.
287 if (RT->isIncompleteType())
288 return true;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000289 // Flag error if the type is not lockable.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000290 if (!RT->getDecl()->getAttr<LockableAttr>()) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000291 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
292 << Attr.getName();
293 return false;
294 }
295 return true;
296}
297
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000298/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
299/// from Sidx, resolve to a lockable object. May flag an error.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000300/// \param Sidx The attribute argument index to start checking with.
301/// \param ParamIdxOk Whether an argument can be indexing into a function
302/// parameter list.
303static bool checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
304 const AttributeList &Attr,
305 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000306 int Sidx = 0,
307 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000308 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000309 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000310
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000311 if (ArgExp->isTypeDependent()) {
312 // FIXME -- need to processs this again on template instantiation
313 Args.push_back(ArgExp);
314 continue;
315 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000316
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000317 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000318
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000319 // First see if we can just cast to record type, or point to record type.
320 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000321
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000322 // Now check if we index into a record type function param.
323 if(!RT && ParamIdxOk) {
324 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000325 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
326 if(FD && IL) {
327 unsigned int NumParams = FD->getNumParams();
328 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000329 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
330 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
331 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000332 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
333 << Attr.getName() << Idx + 1 << NumParams;
334 return false;
335 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000336 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
337 RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000338 }
339 }
340
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000341 if (!checkForLockableRecord(S, D, Attr, RT))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000342 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000343
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000344 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000345 }
346 return true;
347}
348
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000349//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000350// Attribute Implementations
351//===----------------------------------------------------------------------===//
352
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000353// FIXME: All this manual attribute parsing code is gross. At the
354// least add some helper functions to check most argument patterns (#
355// and types of args).
356
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000357static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
358 bool pointer = false) {
359 assert(!Attr.isInvalid());
360
361 if (!checkAttributeNumArgs(S, Attr, 0))
362 return;
363
364 // D must be either a member field or global (potentially shared) variable.
365 if (!mayBeSharedVariable(D)) {
366 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000367 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000368 return;
369 }
370
371 if (pointer && !checkIsPointer(S, D, Attr))
372 return;
373
374 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000375 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000376 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000377 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000378}
379
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000380static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000381 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000382 assert(!Attr.isInvalid());
383
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000384 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000385 return;
386
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000387 Expr *Arg = Attr.getArg(0);
388
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000389 // D must be either a member field or global (potentially shared) variable.
390 if (!mayBeSharedVariable(D)) {
391 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000392 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000393 return;
394 }
395
396 if (pointer && !checkIsPointer(S, D, Attr))
397 return;
398
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +0000399 if (!Arg->isTypeDependent()) {
400 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
401 return;
402 // FIXME -- semantic checks for dependent attributes
403 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000404
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000405 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000406 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000407 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000408 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000409 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000410}
411
412
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000413static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
414 bool scoped = false) {
415 assert(!Attr.isInvalid());
416
417 if (!checkAttributeNumArgs(S, Attr, 0))
418 return;
419
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000420 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000421 if (!isa<CXXRecordDecl>(D)) {
422 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
423 << Attr.getName() << ExpectedClass;
424 return;
425 }
426
427 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000428 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000429 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000430 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000431}
432
433static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
434 const AttributeList &Attr) {
435 assert(!Attr.isInvalid());
436
437 if (!checkAttributeNumArgs(S, Attr, 0))
438 return;
439
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000440 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000441 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
442 << Attr.getName() << ExpectedFunctionOrMethod;
443 return;
444 }
445
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000446 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000447 S.Context));
448}
449
Kostya Serebryany71efba02012-01-24 19:25:38 +0000450static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
451 const AttributeList &Attr) {
452 assert(!Attr.isInvalid());
453
454 if (!checkAttributeNumArgs(S, Attr, 0))
455 return;
456
457 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
458 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
459 << Attr.getName() << ExpectedFunctionOrMethod;
460 return;
461 }
462
463 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
464 S.Context));
465}
466
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000467static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
468 bool before) {
469 assert(!Attr.isInvalid());
470
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000471 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000472 return;
473
474 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 ValueDecl *VD = dyn_cast<ValueDecl>(D);
476 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000477 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000478 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000479 return;
480 }
481
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000482 // Check that this attribute only applies to lockable types
483 QualType QT = VD->getType();
484 if (!QT->isDependentType()) {
485 const RecordType *RT = getRecordType(QT);
486 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
487 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
488 << Attr.getName();
489 return;
490 }
491 }
492
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000493 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000494 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000495 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000496 return;
497
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000498 unsigned Size = Args.size();
499 assert(Size == Attr.getNumArgs());
500 Expr **StartArg = Size == 0 ? 0 : &Args[0];
501
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000502 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000503 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000504 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000505 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000506 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000507 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000508}
509
510static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000511 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000512 assert(!Attr.isInvalid());
513
514 // zero or more arguments ok
515
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000516 // check that the attribute is applied to a function
517 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000518 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
519 << Attr.getName() << ExpectedFunctionOrMethod;
520 return;
521 }
522
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000523 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000524 SmallVector<Expr*, 1> Args;
525 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000526 return;
527
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000528 unsigned Size = Args.size();
529 assert(Size == Attr.getNumArgs());
530 Expr **StartArg = Size == 0 ? 0 : &Args[0];
531
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000532 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000533 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000534 S.Context, StartArg,
535 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000536 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000537 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000538 S.Context, StartArg,
539 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000540}
541
542static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000543 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000544 assert(!Attr.isInvalid());
545
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000546 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000547 return;
548
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000549
550 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000551 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
552 << Attr.getName() << ExpectedFunctionOrMethod;
553 return;
554 }
555
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000556 if (!isIntOrBool(Attr.getArg(0))) {
557 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
558 << Attr.getName();
559 return;
560 }
561
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000562 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000563 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000564 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000565 return;
566
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000567 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000568 Expr **StartArg = Size == 0 ? 0 : &Args[0];
569
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000570 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000571 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000572 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000573 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000574 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000575 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000576 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000577 S.Context,
578 Attr.getArg(0),
579 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000580}
581
582static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000583 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000584 assert(!Attr.isInvalid());
585
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000586 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000587 return;
588
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000589 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000590 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
591 << Attr.getName() << ExpectedFunctionOrMethod;
592 return;
593 }
594
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000595 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000596 SmallVector<Expr*, 1> Args;
597 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000598 return;
599
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000600 unsigned Size = Args.size();
601 assert(Size == Attr.getNumArgs());
602 Expr **StartArg = Size == 0 ? 0 : &Args[0];
603
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000604 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000605 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000606 S.Context, StartArg,
607 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000608 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000609 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000610 S.Context, StartArg,
611 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000612}
613
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000614static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000615 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000616 assert(!Attr.isInvalid());
617
618 // zero or more arguments ok
619
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000620 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000621 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
622 << Attr.getName() << ExpectedFunctionOrMethod;
623 return;
624 }
625
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000626 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000627 SmallVector<Expr*, 1> Args;
628 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000629 return;
630
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000631 unsigned Size = Args.size();
632 assert(Size == Attr.getNumArgs());
633 Expr **StartArg = Size == 0 ? 0 : &Args[0];
634
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000635 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000636 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000637}
638
639static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000640 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000641 assert(!Attr.isInvalid());
642
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000643 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000644 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000645 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000646
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000647 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000648 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
649 << Attr.getName() << ExpectedFunctionOrMethod;
650 return;
651 }
652
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000653 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000654 return;
655
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000656 // check that the argument is lockable object
657 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
658 return;
659
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000660 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000661}
662
663static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000664 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 assert(!Attr.isInvalid());
666
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000667 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000668 return;
669
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000670 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000671 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
672 << Attr.getName() << ExpectedFunctionOrMethod;
673 return;
674 }
675
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000677 SmallVector<Expr*, 1> Args;
678 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000679 return;
680
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000681 unsigned Size = Args.size();
682 assert(Size == Attr.getNumArgs());
683 Expr **StartArg = Size == 0 ? 0 : &Args[0];
684
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000685 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000686 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000687}
688
689
Chandler Carruth1b03c872011-07-02 00:01:44 +0000690static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
691 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000692 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000693 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000694 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000695 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000696 }
Mike Stumpbf916502009-07-24 19:02:52 +0000697
Chris Lattner6b6b5372008-06-26 18:38:35 +0000698 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000699
700 Expr *sizeExpr;
701
702 // Special case where the argument is a template id.
703 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000704 CXXScopeSpec SS;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000705 SourceLocation TemplateKWLoc;
John McCallf7a1a742009-11-24 19:00:30 +0000706 UnqualifiedId id;
707 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000708
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000709 ExprResult Size = S.ActOnIdExpression(scope, SS, TemplateKWLoc, id,
710 false, false);
Douglas Gregor4ac01402011-06-15 16:02:29 +0000711 if (Size.isInvalid())
712 return;
713
714 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000715 } else {
716 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000717 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000718 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000719
Peter Collingbourne7a730022010-11-23 20:45:58 +0000720 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000721 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000722
723 // Instantiate/Install the vector type, and let Sema build the type for us.
724 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000725 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000726 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000727 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000728 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000729
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000730 // Remember this typedef decl, we will need it later for diagnostics.
731 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000732 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000733}
734
Chandler Carruth1b03c872011-07-02 00:01:44 +0000735static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000736 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000737 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000738 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000739
Chandler Carruth87c44602011-07-01 23:49:12 +0000740 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000741 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000742 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000743 // If the alignment is less than or equal to 8 bits, the packed attribute
744 // has no effect.
745 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000746 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000747 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000748 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000749 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000750 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000751 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000752 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000753}
754
Chandler Carruth1b03c872011-07-02 00:01:44 +0000755static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000756 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000757 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000758 else
759 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
760}
761
Chandler Carruth1b03c872011-07-02 00:01:44 +0000762static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000763 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000764 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000765 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000766
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000767 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000768 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000769 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000770 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000771 return;
772 }
773
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000774 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000775}
776
Ted Kremenek2f041d02011-09-29 07:02:25 +0000777static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
778 // The IBOutlet/IBOutletCollection attributes only apply to instance
779 // variables or properties of Objective-C classes. The outlet must also
780 // have an object reference type.
781 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
782 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000783 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000784 << Attr.getName() << VD->getType() << 0;
785 return false;
786 }
787 }
788 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
789 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000790 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000791 << Attr.getName() << PD->getType() << 1;
792 return false;
793 }
794 }
795 else {
796 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
797 return false;
798 }
799
800 return true;
801}
802
Chandler Carruth1b03c872011-07-02 00:01:44 +0000803static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000804 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000805 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000806 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000807
808 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000809 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000810
Ted Kremenek2f041d02011-09-29 07:02:25 +0000811 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000812}
813
Chandler Carruth1b03c872011-07-02 00:01:44 +0000814static void handleIBOutletCollection(Sema &S, Decl *D,
815 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000816
817 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000818 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000819 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
820 return;
821 }
822
Ted Kremenek2f041d02011-09-29 07:02:25 +0000823 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000824 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000825
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000826 IdentifierInfo *II = Attr.getParameterName();
827 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000828 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000829
John McCallb3d87482010-08-24 05:47:05 +0000830 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000831 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000832 if (!TypeRep) {
833 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
834 return;
835 }
John McCallb3d87482010-08-24 05:47:05 +0000836 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000837 // Diagnose use of non-object type in iboutletcollection attribute.
838 // FIXME. Gnu attribute extension ignores use of builtin types in
839 // attributes. So, __attribute__((iboutletcollection(char))) will be
840 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000841 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000842 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
843 return;
844 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000845 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
846 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000847}
848
Chandler Carruthd309c812011-07-01 23:49:16 +0000849static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000850 if (const RecordType *UT = T->getAsUnionType())
851 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
852 RecordDecl *UD = UT->getDecl();
853 for (RecordDecl::field_iterator it = UD->field_begin(),
854 itend = UD->field_end(); it != itend; ++it) {
855 QualType QT = it->getType();
856 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
857 T = QT;
858 return;
859 }
860 }
861 }
862}
863
Chandler Carruth1b03c872011-07-02 00:01:44 +0000864static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000865 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
866 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000867 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000868 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000869 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000870 return;
871 }
Mike Stumpbf916502009-07-24 19:02:52 +0000872
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000873 // In C++ the implicit 'this' function parameter also counts, and they are
874 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000875 bool HasImplicitThisParam = isInstanceMethod(D);
876 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000877
878 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000879 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000880
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000881 for (AttributeList::arg_iterator I=Attr.arg_begin(),
882 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000883
884
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000885 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000886 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000887 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000888 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
889 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000890 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
891 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000892 return;
893 }
Mike Stumpbf916502009-07-24 19:02:52 +0000894
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000895 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000896
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000897 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000898 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000899 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000900 return;
901 }
Mike Stumpbf916502009-07-24 19:02:52 +0000902
Ted Kremenek465172f2008-07-21 22:09:15 +0000903 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000904 if (HasImplicitThisParam) {
905 if (x == 0) {
906 S.Diag(Attr.getLoc(),
907 diag::err_attribute_invalid_implicit_this_argument)
908 << "nonnull" << Ex->getSourceRange();
909 return;
910 }
911 --x;
912 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000913
914 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000915 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000916 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000917
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000918 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000919 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000920 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000921 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000922 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000923 }
Mike Stumpbf916502009-07-24 19:02:52 +0000924
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000925 NonNullArgs.push_back(x);
926 }
Mike Stumpbf916502009-07-24 19:02:52 +0000927
928 // If no arguments were specified to __attribute__((nonnull)) then all pointer
929 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000930 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000931 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
932 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000933 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000934 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000935 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000936 }
Mike Stumpbf916502009-07-24 19:02:52 +0000937
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000938 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000939 if (NonNullArgs.empty()) {
940 // Warn the trivial case only if attribute is not coming from a
941 // macro instantiation.
942 if (Attr.getLoc().isFileID())
943 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000944 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000945 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000946 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000947
948 unsigned* start = &NonNullArgs[0];
949 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000950 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000951 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000952 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000953}
954
Chandler Carruth1b03c872011-07-02 00:01:44 +0000955static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000956 // This attribute must be applied to a function declaration.
957 // The first argument to the attribute must be a string,
958 // the name of the resource, for example "malloc".
959 // The following arguments must be argument indexes, the arguments must be
960 // of integer type for Returns, otherwise of pointer type.
961 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000962 // after being held. free() should be __attribute((ownership_takes)), whereas
963 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000964
965 if (!AL.getParameterName()) {
966 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
967 << AL.getName()->getName() << 1;
968 return;
969 }
970 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000971 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000972 switch (AL.getKind()) {
973 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000974 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000975 if (AL.getNumArgs() < 1) {
976 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
977 return;
978 }
Jordy Rose2a479922010-08-12 08:54:03 +0000979 break;
980 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000981 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000982 if (AL.getNumArgs() < 1) {
983 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
984 return;
985 }
Jordy Rose2a479922010-08-12 08:54:03 +0000986 break;
987 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000988 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000989 if (AL.getNumArgs() > 1) {
990 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
991 << AL.getNumArgs() + 1;
992 return;
993 }
Jordy Rose2a479922010-08-12 08:54:03 +0000994 break;
995 default:
996 // This should never happen given how we are called.
997 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000998 }
999
Chandler Carruth87c44602011-07-01 23:49:12 +00001000 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +00001001 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
1002 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001003 return;
1004 }
1005
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001006 // In C++ the implicit 'this' function parameter also counts, and they are
1007 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001008 bool HasImplicitThisParam = isInstanceMethod(D);
1009 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001010
Chris Lattner5f9e2722011-07-23 10:55:15 +00001011 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001012
1013 // Normalize the argument, __foo__ becomes foo.
1014 if (Module.startswith("__") && Module.endswith("__"))
1015 Module = Module.substr(2, Module.size() - 4);
1016
Chris Lattner5f9e2722011-07-23 10:55:15 +00001017 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001018
Jordy Rose2a479922010-08-12 08:54:03 +00001019 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1020 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001021
Peter Collingbourne7a730022010-11-23 20:45:58 +00001022 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001023 llvm::APSInt ArgNum(32);
1024 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1025 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1026 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1027 << AL.getName()->getName() << IdxExpr->getSourceRange();
1028 continue;
1029 }
1030
1031 unsigned x = (unsigned) ArgNum.getZExtValue();
1032
1033 if (x > NumArgs || x < 1) {
1034 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1035 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1036 continue;
1037 }
1038 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001039 if (HasImplicitThisParam) {
1040 if (x == 0) {
1041 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1042 << "ownership" << IdxExpr->getSourceRange();
1043 return;
1044 }
1045 --x;
1046 }
1047
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001048 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001049 case OwnershipAttr::Takes:
1050 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001051 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001052 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001053 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1054 // FIXME: Should also highlight argument in decl.
1055 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001056 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001057 << "pointer"
1058 << IdxExpr->getSourceRange();
1059 continue;
1060 }
1061 break;
1062 }
Sean Huntcf807c42010-08-18 23:23:40 +00001063 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001064 if (AL.getNumArgs() > 1) {
1065 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001066 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001067 llvm::APSInt ArgNum(32);
1068 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1069 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1070 S.Diag(AL.getLoc(), diag::err_ownership_type)
1071 << "ownership_returns" << "integer"
1072 << IdxExpr->getSourceRange();
1073 return;
1074 }
1075 }
1076 break;
1077 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001078 } // switch
1079
1080 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001081 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001082 i = D->specific_attr_begin<OwnershipAttr>(),
1083 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001084 i != e; ++i) {
1085 if ((*i)->getOwnKind() != K) {
1086 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1087 I!=E; ++I) {
1088 if (x == *I) {
1089 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1090 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001091 }
1092 }
1093 }
1094 }
1095 OwnershipArgs.push_back(x);
1096 }
1097
1098 unsigned* start = OwnershipArgs.data();
1099 unsigned size = OwnershipArgs.size();
1100 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001101
1102 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1103 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1104 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001105 }
Sean Huntcf807c42010-08-18 23:23:40 +00001106
Chandler Carruth87c44602011-07-01 23:49:12 +00001107 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001108 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001109}
1110
John McCall332bb2a2011-02-08 22:35:49 +00001111/// Whether this declaration has internal linkage for the purposes of
1112/// things that want to complain about things not have internal linkage.
1113static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1114 switch (D->getLinkage()) {
1115 case NoLinkage:
1116 case InternalLinkage:
1117 return true;
1118
1119 // Template instantiations that go from external to unique-external
1120 // shouldn't get diagnosed.
1121 case UniqueExternalLinkage:
1122 return true;
1123
1124 case ExternalLinkage:
1125 return false;
1126 }
1127 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001128}
1129
Chandler Carruth1b03c872011-07-02 00:01:44 +00001130static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001131 // Check the attribute arguments.
1132 if (Attr.getNumArgs() > 1) {
1133 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1134 return;
1135 }
1136
Chandler Carruth87c44602011-07-01 23:49:12 +00001137 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001138 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001139 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001140 return;
1141 }
1142
Chandler Carruth87c44602011-07-01 23:49:12 +00001143 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001144
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001145 // gcc rejects
1146 // class c {
1147 // static int a __attribute__((weakref ("v2")));
1148 // static int b() __attribute__((weakref ("f3")));
1149 // };
1150 // and ignores the attributes of
1151 // void f(void) {
1152 // static int a __attribute__((weakref ("v2")));
1153 // }
1154 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001155 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001156 if (!Ctx->isFileContext()) {
1157 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001158 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001159 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001160 }
1161
1162 // The GCC manual says
1163 //
1164 // At present, a declaration to which `weakref' is attached can only
1165 // be `static'.
1166 //
1167 // It also says
1168 //
1169 // Without a TARGET,
1170 // given as an argument to `weakref' or to `alias', `weakref' is
1171 // equivalent to `weak'.
1172 //
1173 // gcc 4.4.1 will accept
1174 // int a7 __attribute__((weakref));
1175 // as
1176 // int a7 __attribute__((weak));
1177 // This looks like a bug in gcc. We reject that for now. We should revisit
1178 // it if this behaviour is actually used.
1179
John McCall332bb2a2011-02-08 22:35:49 +00001180 if (!hasEffectivelyInternalLinkage(nd)) {
1181 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001182 return;
1183 }
1184
1185 // GCC rejects
1186 // static ((alias ("y"), weakref)).
1187 // Should we? How to check that weakref is before or after alias?
1188
1189 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001190 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001191 Arg = Arg->IgnoreParenCasts();
1192 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1193
Douglas Gregor5cee1192011-07-27 05:40:30 +00001194 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001195 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1196 << "weakref" << 1;
1197 return;
1198 }
1199 // GCC will accept anything as the argument of weakref. Should we
1200 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001201 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001202 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001203 }
1204
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001205 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001206}
1207
Chandler Carruth1b03c872011-07-02 00:01:44 +00001208static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001209 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001210 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001211 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001212 return;
1213 }
Mike Stumpbf916502009-07-24 19:02:52 +00001214
Peter Collingbourne7a730022010-11-23 20:45:58 +00001215 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001216 Arg = Arg->IgnoreParenCasts();
1217 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001218
Douglas Gregor5cee1192011-07-27 05:40:30 +00001219 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001220 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001221 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001222 return;
1223 }
Mike Stumpbf916502009-07-24 19:02:52 +00001224
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001225 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001226 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1227 return;
1228 }
1229
Chris Lattner6b6b5372008-06-26 18:38:35 +00001230 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001231
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001232 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001233 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001234}
1235
Chandler Carruth1b03c872011-07-02 00:01:44 +00001236static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001237 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001238 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001239 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001240
Chandler Carruth87c44602011-07-01 23:49:12 +00001241 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001242 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001243 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001244 return;
1245 }
1246
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001247 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001248}
1249
Chandler Carruth1b03c872011-07-02 00:01:44 +00001250static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1251 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001252 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001253 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001254 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1255 return;
1256 }
1257
Chandler Carruth87c44602011-07-01 23:49:12 +00001258 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001259 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001260 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001261 return;
1262 }
Mike Stumpbf916502009-07-24 19:02:52 +00001263
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001264 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001265}
1266
Chandler Carruth1b03c872011-07-02 00:01:44 +00001267static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001268 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001269 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001270 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1271 return;
1272 }
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Chandler Carruth87c44602011-07-01 23:49:12 +00001274 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001275 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001276 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001277 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001278 return;
1279 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001280 }
1281
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001282 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001283}
1284
Chandler Carruth1b03c872011-07-02 00:01:44 +00001285static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001286 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001287 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001288 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001289
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001290 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001291}
1292
Chandler Carruth1b03c872011-07-02 00:01:44 +00001293static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001294 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001295 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001296 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001297 else
1298 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001299 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001300}
1301
Chandler Carruth1b03c872011-07-02 00:01:44 +00001302static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001303 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001304 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001305 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001306 else
1307 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001308 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001309}
1310
Chandler Carruth1b03c872011-07-02 00:01:44 +00001311static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001312 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001313
1314 if (S.CheckNoReturnAttr(attr)) return;
1315
Chandler Carruth87c44602011-07-01 23:49:12 +00001316 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001317 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001318 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001319 return;
1320 }
1321
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001322 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001323}
1324
1325bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001326 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001327 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1328 attr.setInvalid();
1329 return true;
1330 }
1331
1332 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001333}
1334
Chandler Carruth1b03c872011-07-02 00:01:44 +00001335static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1336 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001337
1338 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1339 // because 'analyzer_noreturn' does not impact the type.
1340
Chandler Carruth1731e202011-07-11 23:30:35 +00001341 if(!checkAttributeNumArgs(S, Attr, 0))
1342 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001343
Chandler Carruth87c44602011-07-01 23:49:12 +00001344 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1345 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001346 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1347 && !VD->getType()->isFunctionPointerType())) {
1348 S.Diag(Attr.getLoc(),
1349 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1350 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001351 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001352 return;
1353 }
1354 }
1355
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001356 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001357}
1358
John Thompson35cc9622010-08-09 21:53:52 +00001359// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001360static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001361/*
1362 Returning a Vector Class in Registers
1363
Eric Christopherf48f3672010-12-01 22:13:54 +00001364 According to the PPU ABI specifications, a class with a single member of
1365 vector type is returned in memory when used as the return value of a function.
1366 This results in inefficient code when implementing vector classes. To return
1367 the value in a single vector register, add the vecreturn attribute to the
1368 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001369
1370 Example:
1371
1372 struct Vector
1373 {
1374 __vector float xyzw;
1375 } __attribute__((vecreturn));
1376
1377 Vector Add(Vector lhs, Vector rhs)
1378 {
1379 Vector result;
1380 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1381 return result; // This will be returned in a register
1382 }
1383*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001384 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001385 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001386 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001387 return;
1388 }
1389
Chandler Carruth87c44602011-07-01 23:49:12 +00001390 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001391 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1392 return;
1393 }
1394
Chandler Carruth87c44602011-07-01 23:49:12 +00001395 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001396 int count = 0;
1397
1398 if (!isa<CXXRecordDecl>(record)) {
1399 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1400 return;
1401 }
1402
1403 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1404 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1405 return;
1406 }
1407
Eric Christopherf48f3672010-12-01 22:13:54 +00001408 for (RecordDecl::field_iterator iter = record->field_begin();
1409 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001410 if ((count == 1) || !iter->getType()->isVectorType()) {
1411 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1412 return;
1413 }
1414 count++;
1415 }
1416
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001417 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001418}
1419
Chandler Carruth1b03c872011-07-02 00:01:44 +00001420static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001421 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001422 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001423 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001424 return;
1425 }
1426 // FIXME: Actually store the attribute on the declaration
1427}
1428
Chandler Carruth1b03c872011-07-02 00:01:44 +00001429static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001430 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001431 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001432 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001433 return;
1434 }
Mike Stumpbf916502009-07-24 19:02:52 +00001435
Chandler Carruth87c44602011-07-01 23:49:12 +00001436 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1437 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001439 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001440 return;
1441 }
Mike Stumpbf916502009-07-24 19:02:52 +00001442
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001443 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001444}
1445
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001446static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1447 const AttributeList &Attr) {
1448 // check the attribute arguments.
1449 if (Attr.hasParameterOrArguments()) {
1450 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1451 return;
1452 }
1453
1454 if (!isa<FunctionDecl>(D)) {
1455 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1456 << Attr.getName() << ExpectedFunction;
1457 return;
1458 }
1459
1460 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1461}
1462
Chandler Carruth1b03c872011-07-02 00:01:44 +00001463static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001464 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001465 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001466 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1467 return;
1468 }
Mike Stumpbf916502009-07-24 19:02:52 +00001469
Chandler Carruth87c44602011-07-01 23:49:12 +00001470 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001471 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001472 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1473 return;
1474 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001475 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001476 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001477 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001478 return;
1479 }
Mike Stumpbf916502009-07-24 19:02:52 +00001480
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001481 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001482}
1483
Chandler Carruth1b03c872011-07-02 00:01:44 +00001484static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001485 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001486 if (Attr.getNumArgs() > 1) {
1487 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001488 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001489 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001490
1491 int priority = 65535; // FIXME: Do not hardcode such constants.
1492 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001493 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001494 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001495 if (E->isTypeDependent() || E->isValueDependent() ||
1496 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001497 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001498 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001499 return;
1500 }
1501 priority = Idx.getZExtValue();
1502 }
Mike Stumpbf916502009-07-24 19:02:52 +00001503
Chandler Carruth87c44602011-07-01 23:49:12 +00001504 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001505 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001506 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001507 return;
1508 }
1509
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001510 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001511 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001512}
1513
Chandler Carruth1b03c872011-07-02 00:01:44 +00001514static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001515 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001516 if (Attr.getNumArgs() > 1) {
1517 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001518 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001519 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001520
1521 int priority = 65535; // FIXME: Do not hardcode such constants.
1522 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001523 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001524 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001525 if (E->isTypeDependent() || E->isValueDependent() ||
1526 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001527 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001528 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001529 return;
1530 }
1531 priority = Idx.getZExtValue();
1532 }
Mike Stumpbf916502009-07-24 19:02:52 +00001533
Chandler Carruth87c44602011-07-01 23:49:12 +00001534 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001535 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001536 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001537 return;
1538 }
1539
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001540 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001541 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001542}
1543
Chandler Carruth1b03c872011-07-02 00:01:44 +00001544static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001545 unsigned NumArgs = Attr.getNumArgs();
1546 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001547 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001548 return;
1549 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001550
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001551 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001552 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001553 if (NumArgs == 1) {
1554 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001555 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001556 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1557 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001558 return;
1559 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001560 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001561 }
Mike Stumpbf916502009-07-24 19:02:52 +00001562
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001563 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001564}
1565
Chandler Carruth1b03c872011-07-02 00:01:44 +00001566static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001567 unsigned NumArgs = Attr.getNumArgs();
1568 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001569 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001570 return;
1571 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001572
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001573 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001574 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001575 if (NumArgs == 1) {
1576 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001577 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001578 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001579 diag::err_attribute_not_string) << "unavailable";
1580 return;
1581 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001582 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001583 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001584 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001585}
1586
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001587static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1588 const AttributeList &Attr) {
1589 unsigned NumArgs = Attr.getNumArgs();
1590 if (NumArgs > 0) {
1591 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1592 return;
1593 }
1594
1595 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001596 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001597}
1598
Ted Kremenek71207fc2012-01-05 22:47:47 +00001599static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001600 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001601 if (!isa<ObjCInterfaceDecl>(D)) {
1602 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1603 return;
1604 }
1605
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001606 unsigned NumArgs = Attr.getNumArgs();
1607 if (NumArgs > 0) {
1608 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1609 return;
1610 }
1611
Ted Kremenek71207fc2012-01-05 22:47:47 +00001612 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001613 Attr.getRange(), S.Context));
1614}
1615
Chandler Carruth1b03c872011-07-02 00:01:44 +00001616static void handleAvailabilityAttr(Sema &S, Decl *D,
1617 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001618 IdentifierInfo *Platform = Attr.getParameterName();
1619 SourceLocation PlatformLoc = Attr.getParameterLoc();
1620
Chris Lattner5f9e2722011-07-23 10:55:15 +00001621 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001622 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1623 if (PlatformName.empty()) {
1624 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1625 << Platform;
1626
1627 PlatformName = Platform->getName();
1628 }
1629
1630 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1631 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1632 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001633 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001634
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001635 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001636 // of these steps are needed).
1637 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001638 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001639 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1640 << 1 << PlatformName << Deprecated.Version.getAsString()
1641 << 0 << Introduced.Version.getAsString();
1642 return;
1643 }
1644
1645 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001646 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001647 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1648 << 2 << PlatformName << Obsoleted.Version.getAsString()
1649 << 0 << Introduced.Version.getAsString();
1650 return;
1651 }
1652
1653 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001654 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001655 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1656 << 2 << PlatformName << Obsoleted.Version.getAsString()
1657 << 1 << Deprecated.Version.getAsString();
1658 return;
1659 }
1660
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001661 StringRef Str;
1662 const StringLiteral *SE =
1663 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1664 if (SE)
1665 Str = SE->getString();
1666
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001667 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001668 Platform,
1669 Introduced.Version,
1670 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001671 Obsoleted.Version,
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001672 IsUnavailable,
1673 Str));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001674}
1675
Chandler Carruth1b03c872011-07-02 00:01:44 +00001676static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001677 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001678 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001679 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001680
Peter Collingbourne7a730022010-11-23 20:45:58 +00001681 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001682 Arg = Arg->IgnoreParenCasts();
1683 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001684
Douglas Gregor5cee1192011-07-27 05:40:30 +00001685 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001686 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001687 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001688 return;
1689 }
Mike Stumpbf916502009-07-24 19:02:52 +00001690
Chris Lattner5f9e2722011-07-23 10:55:15 +00001691 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001692 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001693
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001694 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001695 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001696 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001697 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001698 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001699 type = VisibilityAttr::Hidden; // FIXME
John McCall41887602012-01-29 01:20:30 +00001700 else if (TypeStr == "protected") {
1701 // Complain about attempts to use protected visibility on targets
1702 // (like Darwin) that don't support it.
1703 if (!S.Context.getTargetInfo().hasProtectedVisibility()) {
1704 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility);
1705 type = VisibilityAttr::Default;
1706 } else {
1707 type = VisibilityAttr::Protected;
1708 }
1709 } else {
Chris Lattner08631c52008-11-23 21:45:46 +00001710 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001711 return;
1712 }
Mike Stumpbf916502009-07-24 19:02:52 +00001713
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001714 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001715}
1716
Chandler Carruth1b03c872011-07-02 00:01:44 +00001717static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1718 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001719 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1720 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001721 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001722 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001723 return;
1724 }
1725
Chandler Carruth87c44602011-07-01 23:49:12 +00001726 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1727 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1728 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001729 << "objc_method_family" << 1;
1730 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001731 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001732 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001733 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001734 return;
1735 }
1736
Chris Lattner5f9e2722011-07-23 10:55:15 +00001737 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001738 ObjCMethodFamilyAttr::FamilyKind family;
1739 if (param == "none")
1740 family = ObjCMethodFamilyAttr::OMF_None;
1741 else if (param == "alloc")
1742 family = ObjCMethodFamilyAttr::OMF_alloc;
1743 else if (param == "copy")
1744 family = ObjCMethodFamilyAttr::OMF_copy;
1745 else if (param == "init")
1746 family = ObjCMethodFamilyAttr::OMF_init;
1747 else if (param == "mutableCopy")
1748 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1749 else if (param == "new")
1750 family = ObjCMethodFamilyAttr::OMF_new;
1751 else {
1752 // Just warn and ignore it. This is future-proof against new
1753 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001754 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001755 return;
1756 }
1757
John McCallf85e1932011-06-15 23:02:42 +00001758 if (family == ObjCMethodFamilyAttr::OMF_init &&
1759 !method->getResultType()->isObjCObjectPointerType()) {
1760 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1761 << method->getResultType();
1762 // Ignore the attribute.
1763 return;
1764 }
1765
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001766 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001767 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001768}
1769
Chandler Carruth1b03c872011-07-02 00:01:44 +00001770static void handleObjCExceptionAttr(Sema &S, Decl *D,
1771 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001772 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001773 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001774
Chris Lattner0db29ec2009-02-14 08:09:34 +00001775 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1776 if (OCI == 0) {
1777 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1778 return;
1779 }
Mike Stumpbf916502009-07-24 19:02:52 +00001780
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001781 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001782}
1783
Chandler Carruth1b03c872011-07-02 00:01:44 +00001784static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001785 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001786 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001787 return;
1788 }
Richard Smith162e1c12011-04-15 14:24:37 +00001789 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001790 QualType T = TD->getUnderlyingType();
1791 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001792 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001793 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1794 return;
1795 }
1796 }
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001797 else if (!isa<ObjCPropertyDecl>(D)) {
1798 // It is okay to include this attribute on properties, e.g.:
1799 //
1800 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
1801 //
1802 // In this case it follows tradition and suppresses an error in the above
1803 // case.
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00001804 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Ted Kremenekf6e88d72012-03-01 01:40:32 +00001805 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001806 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001807}
1808
Mike Stumpbf916502009-07-24 19:02:52 +00001809static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001810handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001811 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001812 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001813 return;
1814 }
1815
1816 if (!isa<FunctionDecl>(D)) {
1817 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1818 return;
1819 }
1820
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001821 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001822}
1823
Chandler Carruth1b03c872011-07-02 00:01:44 +00001824static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001825 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001826 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001827 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001828 return;
1829 }
Mike Stumpbf916502009-07-24 19:02:52 +00001830
Steve Naroff9eae5762008-09-18 16:44:58 +00001831 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001832 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001833 return;
1834 }
Mike Stumpbf916502009-07-24 19:02:52 +00001835
Sean Huntcf807c42010-08-18 23:23:40 +00001836 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001837 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001838 type = BlocksAttr::ByRef;
1839 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001840 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001841 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001842 return;
1843 }
Mike Stumpbf916502009-07-24 19:02:52 +00001844
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001845 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001846}
1847
Chandler Carruth1b03c872011-07-02 00:01:44 +00001848static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001849 // check the attribute arguments.
1850 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001851 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001852 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001853 }
1854
John McCall3323fad2011-09-09 07:56:05 +00001855 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001856 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001857 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001858 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001859 if (E->isTypeDependent() || E->isValueDependent() ||
1860 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001861 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001862 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001863 return;
1864 }
Mike Stumpbf916502009-07-24 19:02:52 +00001865
John McCall3323fad2011-09-09 07:56:05 +00001866 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001867 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1868 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001869 return;
1870 }
John McCall3323fad2011-09-09 07:56:05 +00001871
1872 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001873 }
1874
John McCall3323fad2011-09-09 07:56:05 +00001875 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001876 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001877 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001878 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001879 if (E->isTypeDependent() || E->isValueDependent() ||
1880 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001881 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001882 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001883 return;
1884 }
1885 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001886
John McCall3323fad2011-09-09 07:56:05 +00001887 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001888 // FIXME: This error message could be improved, it would be nice
1889 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001890 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1891 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001892 return;
1893 }
1894 }
1895
Chandler Carruth87c44602011-07-01 23:49:12 +00001896 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001897 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001898 if (isa<FunctionNoProtoType>(FT)) {
1899 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1900 return;
1901 }
Mike Stumpbf916502009-07-24 19:02:52 +00001902
Chris Lattner897cd902009-03-17 23:03:47 +00001903 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001904 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001905 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001906 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001907 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001908 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001909 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001910 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001911 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00001912 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1913 if (!BD->isVariadic()) {
1914 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
1915 return;
1916 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001917 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001918 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001919 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001920 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001921 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001922 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001923 int m = Ty->isFunctionPointerType() ? 0 : 1;
1924 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001925 return;
1926 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001927 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001928 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001929 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001930 return;
1931 }
Anders Carlsson77091822008-10-05 18:05:59 +00001932 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001933 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001934 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001935 return;
1936 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001937 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001938 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001939}
1940
Chandler Carruth1b03c872011-07-02 00:01:44 +00001941static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001942 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001943 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001944 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001945
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001946 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001947 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001948 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001949 return;
1950 }
Mike Stumpbf916502009-07-24 19:02:52 +00001951
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001952 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1953 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1954 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001955 return;
1956 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001957 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1958 if (MD->getResultType()->isVoidType()) {
1959 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1960 << Attr.getName() << 1;
1961 return;
1962 }
1963
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001964 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001965}
1966
Chandler Carruth1b03c872011-07-02 00:01:44 +00001967static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001968 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001969 if (Attr.hasParameterOrArguments()) {
1970 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001971 return;
1972 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001973
Chandler Carruth87c44602011-07-01 23:49:12 +00001974 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001975 if (isa<CXXRecordDecl>(D)) {
1976 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1977 return;
1978 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001979 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1980 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001981 return;
1982 }
1983
Chandler Carruth87c44602011-07-01 23:49:12 +00001984 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001985
1986 // 'weak' only applies to declarations with external linkage.
1987 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001988 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001989 return;
1990 }
Mike Stumpbf916502009-07-24 19:02:52 +00001991
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001992 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001993}
1994
Chandler Carruth1b03c872011-07-02 00:01:44 +00001995static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001996 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001997 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001998 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001999
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002000
2001 // weak_import only applies to variable & function declarations.
2002 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00002003 if (!D->canBeWeakImported(isDef)) {
2004 if (isDef)
2005 S.Diag(Attr.getLoc(),
2006 diag::warn_attribute_weak_import_invalid_on_definition)
2007 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00002008 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002009 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00002010 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00002011 // Nothing to warn about here.
2012 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00002013 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002014 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002015
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002016 return;
2017 }
2018
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002019 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002020}
2021
Chandler Carruth1b03c872011-07-02 00:01:44 +00002022static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2023 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002024 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002025 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002026 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002027
2028 unsigned WGSize[3];
2029 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002030 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002031 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002032 if (E->isTypeDependent() || E->isValueDependent() ||
2033 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002034 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2035 << "reqd_work_group_size" << E->getSourceRange();
2036 return;
2037 }
2038 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2039 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002040 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002041 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002042 WGSize[2]));
2043}
2044
Chandler Carruth1b03c872011-07-02 00:01:44 +00002045static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002046 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002047 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002048 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002049
2050 // Make sure that there is a string literal as the sections's single
2051 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002052 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002053 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002054 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002055 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002056 return;
2057 }
Mike Stump1eb44332009-09-09 15:08:12 +00002058
Chris Lattner797c3c42009-08-10 19:03:04 +00002059 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002060 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002061 if (!Error.empty()) {
2062 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2063 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002064 return;
2065 }
Mike Stump1eb44332009-09-09 15:08:12 +00002066
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002067 // This attribute cannot be applied to local variables.
2068 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2069 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2070 return;
2071 }
2072
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002073 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002074 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002075}
2076
Chris Lattner6b6b5372008-06-26 18:38:35 +00002077
Chandler Carruth1b03c872011-07-02 00:01:44 +00002078static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002079 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002080 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002081 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002082 return;
2083 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002084
Chandler Carruth87c44602011-07-01 23:49:12 +00002085 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002086 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002087 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002088 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002089 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002090 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002091}
2092
Chandler Carruth1b03c872011-07-02 00:01:44 +00002093static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002094 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002095 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002096 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002097 return;
2098 }
Mike Stumpbf916502009-07-24 19:02:52 +00002099
Chandler Carruth87c44602011-07-01 23:49:12 +00002100 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002101 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002102 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002103 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002104 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002105 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002106}
2107
Chandler Carruth1b03c872011-07-02 00:01:44 +00002108static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002109 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002110 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002111 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002112
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002113 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002114}
2115
Chandler Carruth1b03c872011-07-02 00:01:44 +00002116static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002117 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002118 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2119 return;
2120 }
Mike Stumpbf916502009-07-24 19:02:52 +00002121
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002122 if (Attr.getNumArgs() != 0) {
2123 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2124 return;
2125 }
Mike Stumpbf916502009-07-24 19:02:52 +00002126
Chandler Carruth87c44602011-07-01 23:49:12 +00002127 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002128
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002129 if (!VD || !VD->hasLocalStorage()) {
2130 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2131 return;
2132 }
Mike Stumpbf916502009-07-24 19:02:52 +00002133
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002134 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002135 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002136 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002137 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2138 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002139 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002140 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002141 Attr.getParameterName();
2142 return;
2143 }
Mike Stumpbf916502009-07-24 19:02:52 +00002144
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002145 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2146 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002147 S.Diag(Attr.getParameterLoc(),
2148 diag::err_attribute_cleanup_arg_not_function)
2149 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002150 return;
2151 }
2152
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002153 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002154 S.Diag(Attr.getParameterLoc(),
2155 diag::err_attribute_cleanup_func_must_take_one_arg)
2156 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002157 return;
2158 }
Mike Stumpbf916502009-07-24 19:02:52 +00002159
Anders Carlsson89941c12009-02-07 23:16:50 +00002160 // We're currently more strict than GCC about what function types we accept.
2161 // If this ever proves to be a problem it should be easy to fix.
2162 QualType Ty = S.Context.getPointerType(VD->getType());
2163 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002164 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2165 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002166 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002167 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2168 Attr.getParameterName() << ParamTy << Ty;
2169 return;
2170 }
Mike Stumpbf916502009-07-24 19:02:52 +00002171
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002172 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Eli Friedman5f2987c2012-02-02 03:46:19 +00002173 S.MarkFunctionReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002174}
2175
Mike Stumpbf916502009-07-24 19:02:52 +00002176/// Handle __attribute__((format_arg((idx)))) attribute based on
2177/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002178static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002179 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002180 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002181
Chandler Carruth87c44602011-07-01 23:49:12 +00002182 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002183 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002184 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002185 return;
2186 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002187
2188 // In C++ the implicit 'this' function parameter also counts, and they are
2189 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002190 bool HasImplicitThisParam = isInstanceMethod(D);
2191 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002192 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002193
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002194 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002195 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002196 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002197 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2198 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002199 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2200 << "format" << 2 << IdxExpr->getSourceRange();
2201 return;
2202 }
Mike Stumpbf916502009-07-24 19:02:52 +00002203
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002204 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2205 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2206 << "format" << 2 << IdxExpr->getSourceRange();
2207 return;
2208 }
Mike Stumpbf916502009-07-24 19:02:52 +00002209
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002210 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002211
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002212 if (HasImplicitThisParam) {
2213 if (ArgIdx == 0) {
2214 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2215 << "format_arg" << IdxExpr->getSourceRange();
2216 return;
2217 }
2218 ArgIdx--;
2219 }
2220
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002221 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002222 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002223
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002224 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2225 if (not_nsstring_type &&
2226 !isCFStringType(Ty, S.Context) &&
2227 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002228 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002229 // FIXME: Should highlight the actual expression that has the wrong type.
2230 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002231 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002232 << IdxExpr->getSourceRange();
2233 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002234 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002235 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002236 if (!isNSStringType(Ty, S.Context) &&
2237 !isCFStringType(Ty, S.Context) &&
2238 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002239 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002240 // FIXME: Should highlight the actual expression that has the wrong type.
2241 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002242 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002243 << IdxExpr->getSourceRange();
2244 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002245 }
2246
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002247 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002248 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002249}
2250
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002251enum FormatAttrKind {
2252 CFStringFormat,
2253 NSStringFormat,
2254 StrftimeFormat,
2255 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002256 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002257 InvalidFormat
2258};
2259
2260/// getFormatAttrKind - Map from format attribute names to supported format
2261/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002262static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002263 // Check for formats that get handled specially.
2264 if (Format == "NSString")
2265 return NSStringFormat;
2266 if (Format == "CFString")
2267 return CFStringFormat;
2268 if (Format == "strftime")
2269 return StrftimeFormat;
2270
2271 // Otherwise, check for supported formats.
2272 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
Jean-Daniel Dupas69d53842012-01-27 09:14:17 +00002273 Format == "strfmon" || Format == "cmn_err" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002274 Format == "zcmn_err" ||
2275 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002276 return SupportedFormat;
2277
Duncan Sandsbc525952010-03-23 14:44:19 +00002278 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2279 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002280 return IgnoredFormat;
2281
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002282 return InvalidFormat;
2283}
2284
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002285/// Handle __attribute__((init_priority(priority))) attributes based on
2286/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002287static void handleInitPriorityAttr(Sema &S, Decl *D,
2288 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002289 if (!S.getLangOptions().CPlusPlus) {
2290 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2291 return;
2292 }
2293
Chandler Carruth87c44602011-07-01 23:49:12 +00002294 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002295 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2296 Attr.setInvalid();
2297 return;
2298 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002299 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002300 if (S.Context.getAsArrayType(T))
2301 T = S.Context.getBaseElementType(T);
2302 if (!T->getAs<RecordType>()) {
2303 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2304 Attr.setInvalid();
2305 return;
2306 }
2307
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002308 if (Attr.getNumArgs() != 1) {
2309 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2310 Attr.setInvalid();
2311 return;
2312 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002313 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002314
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002315 llvm::APSInt priority(32);
2316 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2317 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2318 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2319 << "init_priority" << priorityExpr->getSourceRange();
2320 Attr.setInvalid();
2321 return;
2322 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002323 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002324 if (prioritynum < 101 || prioritynum > 65535) {
2325 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2326 << priorityExpr->getSourceRange();
2327 Attr.setInvalid();
2328 return;
2329 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002330 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002331 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002332}
2333
Mike Stumpbf916502009-07-24 19:02:52 +00002334/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2335/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002336static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002337
Chris Lattner545dd342008-06-28 23:36:30 +00002338 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002339 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002340 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002341 return;
2342 }
2343
Chris Lattner545dd342008-06-28 23:36:30 +00002344 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002345 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002346 return;
2347 }
2348
Chandler Carruth87c44602011-07-01 23:49:12 +00002349 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002350 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002351 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002352 return;
2353 }
2354
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002355 // In C++ the implicit 'this' function parameter also counts, and they are
2356 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002357 bool HasImplicitThisParam = isInstanceMethod(D);
2358 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002359 unsigned FirstIdx = 1;
2360
Chris Lattner5f9e2722011-07-23 10:55:15 +00002361 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002362
2363 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002364 if (Format.startswith("__") && Format.endswith("__"))
2365 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002366
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002367 // Check for supported formats.
2368 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002369
2370 if (Kind == IgnoredFormat)
2371 return;
2372
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002373 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002374 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002375 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002376 return;
2377 }
2378
2379 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002380 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002381 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002382 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2383 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002384 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002385 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002386 return;
2387 }
2388
2389 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002390 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002391 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002392 return;
2393 }
2394
2395 // FIXME: Do we need to bounds check?
2396 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002397
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002398 if (HasImplicitThisParam) {
2399 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002400 S.Diag(Attr.getLoc(),
2401 diag::err_format_attribute_implicit_this_format_string)
2402 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002403 return;
2404 }
2405 ArgIdx--;
2406 }
Mike Stump1eb44332009-09-09 15:08:12 +00002407
Chris Lattner6b6b5372008-06-26 18:38:35 +00002408 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002409 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002410
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002411 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002412 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002413 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2414 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002415 return;
2416 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002417 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002418 // FIXME: do we need to check if the type is NSString*? What are the
2419 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002420 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002421 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002422 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2423 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002424 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002425 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002426 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002427 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002428 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002429 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2430 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002431 return;
2432 }
2433
2434 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002435 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002436 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002437 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2438 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002439 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002440 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002441 return;
2442 }
2443
2444 // check if the function is variadic if the 3rd argument non-zero
2445 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002446 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002447 ++NumArgs; // +1 for ...
2448 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002449 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002450 return;
2451 }
2452 }
2453
Chris Lattner3c73c412008-11-19 08:23:25 +00002454 // strftime requires FirstArg to be 0 because it doesn't read from any
2455 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002456 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002457 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002458 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2459 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002460 return;
2461 }
2462 // if 0 it disables parameter checking (to use with e.g. va_list)
2463 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002464 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002465 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002466 return;
2467 }
2468
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002469 // Check whether we already have an equivalent format attribute.
2470 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002471 i = D->specific_attr_begin<FormatAttr>(),
2472 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002473 i != e ; ++i) {
2474 FormatAttr *f = *i;
2475 if (f->getType() == Format &&
2476 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2477 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2478 // If we don't have a valid location for this attribute, adopt the
2479 // location.
2480 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002481 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002482 return;
2483 }
2484 }
2485
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002486 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002487 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002488 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002489}
2490
Chandler Carruth1b03c872011-07-02 00:01:44 +00002491static void handleTransparentUnionAttr(Sema &S, Decl *D,
2492 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002493 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002494 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002495 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002496
Chris Lattner6b6b5372008-06-26 18:38:35 +00002497
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002498 // Try to find the underlying union declaration.
2499 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002500 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002501 if (TD && TD->getUnderlyingType()->isUnionType())
2502 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2503 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002504 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002505
2506 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002507 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002508 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002509 return;
2510 }
2511
John McCall5e1cdac2011-10-07 06:10:15 +00002512 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002513 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002514 diag::warn_transparent_union_attribute_not_definition);
2515 return;
2516 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002517
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002518 RecordDecl::field_iterator Field = RD->field_begin(),
2519 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002520 if (Field == FieldEnd) {
2521 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2522 return;
2523 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002524
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002525 FieldDecl *FirstField = *Field;
2526 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002527 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002528 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002529 diag::warn_transparent_union_attribute_floating)
2530 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002531 return;
2532 }
2533
2534 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2535 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2536 for (; Field != FieldEnd; ++Field) {
2537 QualType FieldType = Field->getType();
2538 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2539 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2540 // Warn if we drop the attribute.
2541 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002542 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002543 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002544 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002545 diag::warn_transparent_union_attribute_field_size_align)
2546 << isSize << Field->getDeclName() << FieldBits;
2547 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002548 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002549 diag::note_transparent_union_first_field_size_align)
2550 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002551 return;
2552 }
2553 }
2554
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002555 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002556}
2557
Chandler Carruth1b03c872011-07-02 00:01:44 +00002558static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002559 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002560 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002561 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002562
Peter Collingbourne7a730022010-11-23 20:45:58 +00002563 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002564 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002565
Chris Lattner6b6b5372008-06-26 18:38:35 +00002566 // Make sure that there is a string literal as the annotation's single
2567 // argument.
2568 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002569 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002570 return;
2571 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002572
2573 // Don't duplicate annotations that are already set.
2574 for (specific_attr_iterator<AnnotateAttr>
2575 i = D->specific_attr_begin<AnnotateAttr>(),
2576 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2577 if ((*i)->getAnnotation() == SE->getString())
2578 return;
2579 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002580 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002581 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002582}
2583
Chandler Carruth1b03c872011-07-02 00:01:44 +00002584static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002585 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002586 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002587 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002588 return;
2589 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002590
2591 //FIXME: The C++0x version of this attribute has more limited applicabilty
2592 // than GNU's, and should error out when it is used to specify a
2593 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002594
Chris Lattner545dd342008-06-28 23:36:30 +00002595 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002596 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002597 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002598 }
Mike Stumpbf916502009-07-24 19:02:52 +00002599
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002600 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002601}
2602
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002603void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002604 // FIXME: Handle pack-expansions here.
2605 if (DiagnoseUnexpandedParameterPack(E))
2606 return;
2607
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002608 if (E->isTypeDependent() || E->isValueDependent()) {
2609 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002610 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002611 return;
2612 }
2613
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002614 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002615 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002616 llvm::APSInt Alignment(32);
Richard Smith282e7e62012-02-04 09:53:13 +00002617 ExprResult ICE =
2618 VerifyIntegerConstantExpression(E, &Alignment,
2619 PDiag(diag::err_attribute_argument_not_int) << "aligned",
2620 /*AllowFold*/ false);
2621 if (ICE.isInvalid())
Chris Lattner49e2d342008-06-28 23:50:44 +00002622 return;
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002623 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002624 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2625 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002626 return;
2627 }
2628
Richard Smith282e7e62012-02-04 09:53:13 +00002629 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, ICE.take()));
Sean Huntcf807c42010-08-18 23:23:40 +00002630}
2631
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002632void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002633 // FIXME: Cache the number on the Attr object if non-dependent?
2634 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002635 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002636 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002637}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002638
Chandler Carruthd309c812011-07-01 23:49:16 +00002639/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002640/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002641///
Mike Stumpbf916502009-07-24 19:02:52 +00002642/// Despite what would be logical, the mode attribute is a decl attribute, not a
2643/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2644/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002645static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002646 // This attribute isn't documented, but glibc uses it. It changes
2647 // the width of an int or unsigned int to the specified size.
2648
2649 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002650 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002651 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002652
Chris Lattnerfbf13472008-06-27 22:18:37 +00002653
2654 IdentifierInfo *Name = Attr.getParameterName();
2655 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002656 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002657 return;
2658 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002659
Chris Lattner5f9e2722011-07-23 10:55:15 +00002660 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002661
2662 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002663 if (Str.startswith("__") && Str.endswith("__"))
2664 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002665
2666 unsigned DestWidth = 0;
2667 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002668 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002669 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002670 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002671 switch (Str[0]) {
2672 case 'Q': DestWidth = 8; break;
2673 case 'H': DestWidth = 16; break;
2674 case 'S': DestWidth = 32; break;
2675 case 'D': DestWidth = 64; break;
2676 case 'X': DestWidth = 96; break;
2677 case 'T': DestWidth = 128; break;
2678 }
2679 if (Str[1] == 'F') {
2680 IntegerMode = false;
2681 } else if (Str[1] == 'C') {
2682 IntegerMode = false;
2683 ComplexMode = true;
2684 } else if (Str[1] != 'I') {
2685 DestWidth = 0;
2686 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002687 break;
2688 case 4:
2689 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2690 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002691 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002692 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002693 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002694 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002695 break;
2696 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002697 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002698 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002699 break;
2700 }
2701
2702 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002703 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002704 OldTy = TD->getUnderlyingType();
2705 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2706 OldTy = VD->getType();
2707 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002708 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002709 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002710 return;
2711 }
Eli Friedman73397492009-03-03 06:41:03 +00002712
John McCall183700f2009-09-21 23:43:11 +00002713 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002714 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2715 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002716 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002717 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2718 } else if (ComplexMode) {
2719 if (!OldTy->isComplexType())
2720 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2721 } else {
2722 if (!OldTy->isFloatingType())
2723 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2724 }
2725
Mike Stump390b4cc2009-05-16 07:39:55 +00002726 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2727 // and friends, at least with glibc.
2728 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2729 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002730 // FIXME: Make sure floating-point mappings are accurate
2731 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002732 QualType NewTy;
2733 switch (DestWidth) {
2734 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002735 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002736 return;
2737 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002738 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002739 return;
2740 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002741 if (!IntegerMode) {
2742 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2743 return;
2744 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002745 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002746 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002747 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002748 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002749 break;
2750 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002751 if (!IntegerMode) {
2752 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2753 return;
2754 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002755 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002756 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002757 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002758 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002759 break;
2760 case 32:
2761 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002762 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002763 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002764 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002765 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002766 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002767 break;
2768 case 64:
2769 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002770 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002771 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002772 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002773 NewTy = S.Context.LongTy;
2774 else
2775 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002776 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002777 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002778 NewTy = S.Context.UnsignedLongTy;
2779 else
2780 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002781 break;
Eli Friedman73397492009-03-03 06:41:03 +00002782 case 96:
2783 NewTy = S.Context.LongDoubleTy;
2784 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002785 case 128:
2786 if (!IntegerMode) {
2787 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2788 return;
2789 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002790 if (OldTy->isSignedIntegerType())
2791 NewTy = S.Context.Int128Ty;
2792 else
2793 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002794 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002795 }
2796
Eli Friedman73397492009-03-03 06:41:03 +00002797 if (ComplexMode) {
2798 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002799 }
2800
2801 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002802 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002803 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002804 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002805 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002806 cast<ValueDecl>(D)->setType(NewTy);
2807}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002808
Chandler Carruth1b03c872011-07-02 00:01:44 +00002809static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002810 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002811 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002812 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002813
Chandler Carruth87c44602011-07-01 23:49:12 +00002814 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002815 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002816 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002817 return;
2818 }
Mike Stumpbf916502009-07-24 19:02:52 +00002819
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002820 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002821}
2822
Chandler Carruth1b03c872011-07-02 00:01:44 +00002823static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002824 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002825 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002826 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002827
Mike Stumpbf916502009-07-24 19:02:52 +00002828
Chandler Carruth87c44602011-07-01 23:49:12 +00002829 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002830 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002831 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002832 return;
2833 }
Mike Stumpbf916502009-07-24 19:02:52 +00002834
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002835 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002836}
2837
Chandler Carruth1b03c872011-07-02 00:01:44 +00002838static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2839 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002840 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002841 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002842 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002843
Chris Lattner7255a2d2010-06-22 00:03:40 +00002844
Chandler Carruth87c44602011-07-01 23:49:12 +00002845 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002846 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002847 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002848 return;
2849 }
2850
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002851 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002852 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002853}
2854
Chandler Carruth1b03c872011-07-02 00:01:44 +00002855static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002856 if (S.LangOpts.CUDA) {
2857 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002858 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002859 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2860 return;
2861 }
2862
Chandler Carruth87c44602011-07-01 23:49:12 +00002863 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002864 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002865 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002866 return;
2867 }
2868
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002869 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002870 } else {
2871 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2872 }
2873}
2874
Chandler Carruth1b03c872011-07-02 00:01:44 +00002875static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002876 if (S.LangOpts.CUDA) {
2877 // check the attribute arguments.
2878 if (Attr.getNumArgs() != 0) {
2879 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2880 return;
2881 }
2882
Chandler Carruth87c44602011-07-01 23:49:12 +00002883 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002884 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002885 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002886 return;
2887 }
2888
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002889 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002890 } else {
2891 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2892 }
2893}
2894
Chandler Carruth1b03c872011-07-02 00:01:44 +00002895static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002896 if (S.LangOpts.CUDA) {
2897 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002898 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002899 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002900
Chandler Carruth87c44602011-07-01 23:49:12 +00002901 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002902 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002903 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002904 return;
2905 }
2906
Chandler Carruth87c44602011-07-01 23:49:12 +00002907 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002908 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002909 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002910 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2911 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2912 << FD->getType()
2913 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2914 "void");
2915 } else {
2916 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2917 << FD->getType();
2918 }
2919 return;
2920 }
2921
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002922 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002923 } else {
2924 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2925 }
2926}
2927
Chandler Carruth1b03c872011-07-02 00:01:44 +00002928static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002929 if (S.LangOpts.CUDA) {
2930 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002931 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002932 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002933
Peter Collingbourneced76712010-12-01 03:15:31 +00002934
Chandler Carruth87c44602011-07-01 23:49:12 +00002935 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002936 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002937 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002938 return;
2939 }
2940
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002941 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002942 } else {
2943 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2944 }
2945}
2946
Chandler Carruth1b03c872011-07-02 00:01:44 +00002947static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002948 if (S.LangOpts.CUDA) {
2949 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002950 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002951 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002952
Peter Collingbourneced76712010-12-01 03:15:31 +00002953
Chandler Carruth87c44602011-07-01 23:49:12 +00002954 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002955 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002956 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002957 return;
2958 }
2959
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002960 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002961 } else {
2962 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2963 }
2964}
2965
Chandler Carruth1b03c872011-07-02 00:01:44 +00002966static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002967 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002968 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002969 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002970
Chandler Carruth87c44602011-07-01 23:49:12 +00002971 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002972 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002973 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002974 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002975 return;
2976 }
Mike Stumpbf916502009-07-24 19:02:52 +00002977
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002978 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002979 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002980 return;
2981 }
Mike Stumpbf916502009-07-24 19:02:52 +00002982
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002983 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002984}
2985
Chandler Carruth1b03c872011-07-02 00:01:44 +00002986static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002987 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002988
Chandler Carruth87c44602011-07-01 23:49:12 +00002989 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002990 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2991 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002992 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002993 return;
2994
Chandler Carruth87c44602011-07-01 23:49:12 +00002995 if (!isa<ObjCMethodDecl>(D)) {
2996 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2997 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002998 return;
2999 }
3000
Chandler Carruth87c44602011-07-01 23:49:12 +00003001 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00003002 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003003 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003004 return;
3005 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003006 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003007 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003008 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003009 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00003010 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00003011 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003012 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00003013 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00003014 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003015 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00003016 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003017 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00003018 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003019 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003020 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003021 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003022 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003023 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003024 return;
3025 }
3026
Chris Lattner5f9e2722011-07-23 10:55:15 +00003027 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003028 PcsAttr::PCSType PCS;
3029 if (StrRef == "aapcs")
3030 PCS = PcsAttr::AAPCS;
3031 else if (StrRef == "aapcs-vfp")
3032 PCS = PcsAttr::AAPCS_VFP;
3033 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003034 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3035 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003036 return;
3037 }
3038
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003039 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003040 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003041 default:
3042 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003043 }
3044}
3045
Chandler Carruth1b03c872011-07-02 00:01:44 +00003046static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003047 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003048 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003049}
3050
John McCall711c52b2011-01-05 12:14:39 +00003051bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3052 if (attr.isInvalid())
3053 return true;
3054
Ted Kremenek831efae2011-04-15 05:49:29 +00003055 if ((attr.getNumArgs() != 0 &&
3056 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3057 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003058 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3059 attr.setInvalid();
3060 return true;
3061 }
3062
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003063 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3064 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003065 switch (attr.getKind()) {
3066 case AttributeList::AT_cdecl: CC = CC_C; break;
3067 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3068 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3069 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3070 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003071 case AttributeList::AT_pcs: {
3072 Expr *Arg = attr.getArg(0);
3073 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003074 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003075 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3076 << "pcs" << 1;
3077 attr.setInvalid();
3078 return true;
3079 }
3080
Chris Lattner5f9e2722011-07-23 10:55:15 +00003081 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003082 if (StrRef == "aapcs") {
3083 CC = CC_AAPCS;
3084 break;
3085 } else if (StrRef == "aapcs-vfp") {
3086 CC = CC_AAPCS_VFP;
3087 break;
3088 }
3089 // FALLS THROUGH
3090 }
David Blaikie7530c032012-01-17 06:56:22 +00003091 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003092 }
3093
3094 return false;
3095}
3096
Chandler Carruth1b03c872011-07-02 00:01:44 +00003097static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003098 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003099
3100 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003101 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003102 return;
3103
Chandler Carruth87c44602011-07-01 23:49:12 +00003104 if (!isa<ObjCMethodDecl>(D)) {
3105 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3106 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003107 return;
3108 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003109
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003110 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003111}
3112
3113/// Checks a regparm attribute, returning true if it is ill-formed and
3114/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003115bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3116 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003117 return true;
3118
Chandler Carruth87c44602011-07-01 23:49:12 +00003119 if (Attr.getNumArgs() != 1) {
3120 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3121 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003122 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003123 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003124
Chandler Carruth87c44602011-07-01 23:49:12 +00003125 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003126 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003127 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003128 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003129 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003130 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003131 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003132 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003133 }
3134
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003135 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003136 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003137 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003138 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003139 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003140 }
3141
John McCall711c52b2011-01-05 12:14:39 +00003142 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003143 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003144 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003145 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003146 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003147 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003148 }
3149
John McCall711c52b2011-01-05 12:14:39 +00003150 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003151}
3152
Chandler Carruth1b03c872011-07-02 00:01:44 +00003153static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003154 if (S.LangOpts.CUDA) {
3155 // check the attribute arguments.
3156 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003157 // FIXME: 0 is not okay.
3158 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003159 return;
3160 }
3161
Chandler Carruth87c44602011-07-01 23:49:12 +00003162 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003163 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003164 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003165 return;
3166 }
3167
3168 Expr *MaxThreadsExpr = Attr.getArg(0);
3169 llvm::APSInt MaxThreads(32);
3170 if (MaxThreadsExpr->isTypeDependent() ||
3171 MaxThreadsExpr->isValueDependent() ||
3172 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3173 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3174 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3175 return;
3176 }
3177
3178 llvm::APSInt MinBlocks(32);
3179 if (Attr.getNumArgs() > 1) {
3180 Expr *MinBlocksExpr = Attr.getArg(1);
3181 if (MinBlocksExpr->isTypeDependent() ||
3182 MinBlocksExpr->isValueDependent() ||
3183 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3184 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3185 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3186 return;
3187 }
3188 }
3189
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003190 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003191 MaxThreads.getZExtValue(),
3192 MinBlocks.getZExtValue()));
3193 } else {
3194 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3195 }
3196}
3197
Chris Lattner0744e5f2008-06-29 00:23:49 +00003198//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003199// Checker-specific attribute handlers.
3200//===----------------------------------------------------------------------===//
3201
John McCallc7ad3812011-01-25 03:31:58 +00003202static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003203 return type->isDependentType() ||
3204 type->isObjCObjectPointerType() ||
3205 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003206}
3207static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003208 return type->isDependentType() ||
3209 type->isPointerType() ||
3210 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003211}
3212
Chandler Carruth1b03c872011-07-02 00:01:44 +00003213static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003214 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003215 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003216 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003217 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003218 return;
3219 }
3220
3221 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003222 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003223 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3224 cf = false;
3225 } else {
3226 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3227 cf = true;
3228 }
3229
3230 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003231 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003232 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003233 return;
3234 }
3235
3236 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003237 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003238 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003239 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003240}
3241
Chandler Carruth1b03c872011-07-02 00:01:44 +00003242static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3243 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003244 if (!isa<ObjCMethodDecl>(D)) {
3245 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003246 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003247 return;
3248 }
3249
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003250 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003251}
3252
Chandler Carruth1b03c872011-07-02 00:01:44 +00003253static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3254 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003255
John McCallc7ad3812011-01-25 03:31:58 +00003256 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003257
Chandler Carruth87c44602011-07-01 23:49:12 +00003258 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003259 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003260 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003261 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003262 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3263 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003264 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003265 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003266 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003267 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003268 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003269 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003270 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003271 return;
3272 }
Mike Stumpbf916502009-07-24 19:02:52 +00003273
John McCallc7ad3812011-01-25 03:31:58 +00003274 bool typeOK;
3275 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003276 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003277 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003278 case AttributeList::AT_ns_returns_autoreleased:
3279 case AttributeList::AT_ns_returns_retained:
3280 case AttributeList::AT_ns_returns_not_retained:
3281 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3282 cf = false;
3283 break;
3284
3285 case AttributeList::AT_cf_returns_retained:
3286 case AttributeList::AT_cf_returns_not_retained:
3287 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3288 cf = true;
3289 break;
3290 }
3291
3292 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003293 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003294 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003295 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003296 }
Mike Stumpbf916502009-07-24 19:02:52 +00003297
Chandler Carruth87c44602011-07-01 23:49:12 +00003298 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003299 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003300 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003301 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003302 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003303 S.Context));
3304 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003305 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003306 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003307 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003308 return;
3309 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003310 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003311 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003312 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003313 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003314 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003315 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003316 return;
3317 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003318 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003319 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003320 return;
3321 };
3322}
3323
John McCalldc7c5ad2011-07-22 08:53:00 +00003324static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3325 const AttributeList &attr) {
3326 SourceLocation loc = attr.getLoc();
3327
3328 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3329
3330 if (!isa<ObjCMethodDecl>(method)) {
3331 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3332 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3333 return;
3334 }
3335
3336 // Check that the method returns a normal pointer.
3337 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003338
3339 if (!resultType->isReferenceType() &&
3340 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003341 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3342 << SourceRange(loc)
3343 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3344
3345 // Drop the attribute.
3346 return;
3347 }
3348
3349 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003350 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003351}
3352
John McCall8dfac0b2011-09-30 05:12:12 +00003353/// Handle cf_audited_transfer and cf_unknown_transfer.
3354static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3355 if (!isa<FunctionDecl>(D)) {
3356 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3357 << A.getRange() << A.getName() << 0 /*function*/;
3358 return;
3359 }
3360
3361 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3362
3363 // Check whether there's a conflicting attribute already present.
3364 Attr *Existing;
3365 if (IsAudited) {
3366 Existing = D->getAttr<CFUnknownTransferAttr>();
3367 } else {
3368 Existing = D->getAttr<CFAuditedTransferAttr>();
3369 }
3370 if (Existing) {
3371 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3372 << A.getName()
3373 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3374 << A.getRange() << Existing->getRange();
3375 return;
3376 }
3377
3378 // All clear; add the attribute.
3379 if (IsAudited) {
3380 D->addAttr(
3381 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3382 } else {
3383 D->addAttr(
3384 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3385 }
3386}
3387
John McCallfe98da02011-09-29 07:17:38 +00003388static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3389 const AttributeList &Attr) {
3390 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3391 if (!RD || RD->isUnion()) {
3392 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3393 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3394 }
3395
3396 IdentifierInfo *ParmName = Attr.getParameterName();
3397
3398 // In Objective-C, verify that the type names an Objective-C type.
3399 // We don't want to check this outside of ObjC because people sometimes
3400 // do crazy C declarations of Objective-C types.
3401 if (ParmName && S.getLangOptions().ObjC1) {
3402 // Check for an existing type with this name.
3403 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3404 Sema::LookupOrdinaryName);
3405 if (S.LookupName(R, Sc)) {
3406 NamedDecl *Target = R.getFoundDecl();
3407 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3408 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3409 S.Diag(Target->getLocStart(), diag::note_declared_at);
3410 }
3411 }
3412 }
3413
3414 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3415 ParmName));
3416}
3417
Chandler Carruth1b03c872011-07-02 00:01:44 +00003418static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3419 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003420 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003421
Chandler Carruth87c44602011-07-01 23:49:12 +00003422 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003423 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003424}
3425
Chandler Carruth1b03c872011-07-02 00:01:44 +00003426static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3427 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003428 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003429 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003430 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003431 return;
3432 }
3433
Chandler Carruth87c44602011-07-01 23:49:12 +00003434 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003435 QualType type = vd->getType();
3436
3437 if (!type->isDependentType() &&
3438 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003439 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003440 << type;
3441 return;
3442 }
3443
3444 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3445
3446 // If we have no lifetime yet, check the lifetime we're presumably
3447 // going to infer.
3448 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3449 lifetime = type->getObjCARCImplicitLifetime();
3450
3451 switch (lifetime) {
3452 case Qualifiers::OCL_None:
3453 assert(type->isDependentType() &&
3454 "didn't infer lifetime for non-dependent type?");
3455 break;
3456
3457 case Qualifiers::OCL_Weak: // meaningful
3458 case Qualifiers::OCL_Strong: // meaningful
3459 break;
3460
3461 case Qualifiers::OCL_ExplicitNone:
3462 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003463 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003464 << (lifetime == Qualifiers::OCL_Autoreleasing);
3465 break;
3466 }
3467
Chandler Carruth87c44602011-07-01 23:49:12 +00003468 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003469 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003470}
3471
Charles Davisf0122fe2010-02-16 18:27:26 +00003472static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
Aaron Ballman94287722012-02-23 22:46:33 +00003473 switch (Attr.getKind()) {
3474 default:
3475 return false;
3476 case AttributeList::AT_dllimport:
3477 case AttributeList::AT_dllexport:
3478 case AttributeList::AT_uuid:
3479 case AttributeList::AT_deprecated:
3480 case AttributeList::AT_noreturn:
3481 case AttributeList::AT_nothrow:
3482 case AttributeList::AT_naked:
3483 case AttributeList::AT_noinline:
3484 return true;
3485 }
Francois Pichet11542142010-12-19 06:50:37 +00003486}
3487
3488//===----------------------------------------------------------------------===//
3489// Microsoft specific attribute handlers.
3490//===----------------------------------------------------------------------===//
3491
Chandler Carruth1b03c872011-07-02 00:01:44 +00003492static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003493 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003494 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003495 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003496 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003497
Francois Pichet11542142010-12-19 06:50:37 +00003498 Expr *Arg = Attr.getArg(0);
3499 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003500 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003501 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3502 << "uuid" << 1;
3503 return;
3504 }
3505
Chris Lattner5f9e2722011-07-23 10:55:15 +00003506 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003507
3508 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3509 StrRef.back() == '}';
3510
3511 // Validate GUID length.
3512 if (IsCurly && StrRef.size() != 38) {
3513 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3514 return;
3515 }
3516 if (!IsCurly && StrRef.size() != 36) {
3517 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3518 return;
3519 }
3520
3521 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3522 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003523 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003524 if (IsCurly) // Skip the optional '{'
3525 ++I;
3526
3527 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003528 if (i == 8 || i == 13 || i == 18 || i == 23) {
3529 if (*I != '-') {
3530 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3531 return;
3532 }
3533 } else if (!isxdigit(*I)) {
3534 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3535 return;
3536 }
3537 I++;
3538 }
Francois Pichet11542142010-12-19 06:50:37 +00003539
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003540 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003541 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003542 } else
Francois Pichet11542142010-12-19 06:50:37 +00003543 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003544}
3545
Ted Kremenekb71368d2009-05-09 02:44:38 +00003546//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003547// Top Level Sema Entry Points
3548//===----------------------------------------------------------------------===//
3549
Chandler Carruth1b03c872011-07-02 00:01:44 +00003550static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3551 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003552 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003553 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3554 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3555 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003556 default:
3557 break;
3558 }
3559}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003560
Chandler Carruth1b03c872011-07-02 00:01:44 +00003561static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3562 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003563 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003564 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3565 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003566 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003567 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003568 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003569 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003570 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003571 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003572 case AttributeList::AT_neon_vector_type:
3573 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003574 // Ignore these, these are type attributes, handled by
3575 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003576 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003577 case AttributeList::AT_device:
3578 case AttributeList::AT_host:
3579 case AttributeList::AT_overloadable:
3580 // Ignore, this is a non-inheritable attribute, handled
3581 // by ProcessNonInheritableDeclAttr.
3582 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003583 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3584 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003585 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003586 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003587 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003588 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3589 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3590 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003591 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003592 handleDependencyAttr (S, D, Attr); break;
3593 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3594 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3595 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3596 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3597 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003598 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003600 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003601 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3602 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3603 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3604 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003605 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003606 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003607 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003608 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3609 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3610 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3611 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3612 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003613 case AttributeList::AT_ownership_returns:
3614 case AttributeList::AT_ownership_takes:
3615 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003616 handleOwnershipAttr (S, D, Attr); break;
3617 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3618 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3619 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3620 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3621 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003622
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003623 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003624 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003625 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003626 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003627
John McCalldc7c5ad2011-07-22 08:53:00 +00003628 case AttributeList::AT_objc_returns_inner_pointer:
3629 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3630
John McCallfe98da02011-09-29 07:17:38 +00003631 case AttributeList::AT_ns_bridged:
3632 handleNSBridgedAttr(S, scope, D, Attr); break;
3633
John McCall8dfac0b2011-09-30 05:12:12 +00003634 case AttributeList::AT_cf_audited_transfer:
3635 case AttributeList::AT_cf_unknown_transfer:
3636 handleCFTransferAttr(S, D, Attr); break;
3637
Ted Kremenekb71368d2009-05-09 02:44:38 +00003638 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003639 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003640 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003641 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003642 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003643
3644 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003645 case AttributeList::AT_ns_returns_not_retained:
3646 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003647 case AttributeList::AT_ns_returns_retained:
3648 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003649 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003650
Nate Begeman6f3d8382009-06-26 06:32:41 +00003651 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003652 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003653
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003654 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003655 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003656
Chandler Carruth1b03c872011-07-02 00:01:44 +00003657 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3658 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3659 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3660 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003661 case AttributeList::AT_arc_weakref_unavailable:
3662 handleArcWeakrefUnavailableAttr (S, D, Attr);
3663 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00003664 case AttributeList::AT_objc_requires_property_definitions:
3665 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00003666 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003667 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003668 case AttributeList::AT_returns_twice:
3669 handleReturnsTwiceAttr(S, D, Attr);
3670 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003671 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3672 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3673 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003674 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003675 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3676 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3677 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003678 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003679 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003680 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003681 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003682 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003683 break;
John McCalld5313b02011-03-02 11:33:24 +00003684 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003685 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003686 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003687 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3688 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3689 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3690 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3691 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3692 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3693 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3694 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3695 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003696 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003697 // Just ignore
3698 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003699 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003700 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003701 break;
John McCall04a67a62010-02-05 21:31:56 +00003702 case AttributeList::AT_stdcall:
3703 case AttributeList::AT_cdecl:
3704 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003705 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003706 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003707 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003708 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003709 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003710 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003711 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003712 break;
Francois Pichet11542142010-12-19 06:50:37 +00003713 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003714 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003715 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003716
3717 // Thread safety attributes:
3718 case AttributeList::AT_guarded_var:
3719 handleGuardedVarAttr(S, D, Attr);
3720 break;
3721 case AttributeList::AT_pt_guarded_var:
3722 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3723 break;
3724 case AttributeList::AT_scoped_lockable:
3725 handleLockableAttr(S, D, Attr, /*scoped = */true);
3726 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00003727 case AttributeList::AT_no_address_safety_analysis:
3728 handleNoAddressSafetyAttr(S, D, Attr);
3729 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003730 case AttributeList::AT_no_thread_safety_analysis:
3731 handleNoThreadSafetyAttr(S, D, Attr);
3732 break;
3733 case AttributeList::AT_lockable:
3734 handleLockableAttr(S, D, Attr);
3735 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003736 case AttributeList::AT_guarded_by:
3737 handleGuardedByAttr(S, D, Attr);
3738 break;
3739 case AttributeList::AT_pt_guarded_by:
3740 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3741 break;
3742 case AttributeList::AT_exclusive_lock_function:
3743 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3744 break;
3745 case AttributeList::AT_exclusive_locks_required:
3746 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3747 break;
3748 case AttributeList::AT_exclusive_trylock_function:
3749 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3750 break;
3751 case AttributeList::AT_lock_returned:
3752 handleLockReturnedAttr(S, D, Attr);
3753 break;
3754 case AttributeList::AT_locks_excluded:
3755 handleLocksExcludedAttr(S, D, Attr);
3756 break;
3757 case AttributeList::AT_shared_lock_function:
3758 handleLockFunAttr(S, D, Attr);
3759 break;
3760 case AttributeList::AT_shared_locks_required:
3761 handleLocksRequiredAttr(S, D, Attr);
3762 break;
3763 case AttributeList::AT_shared_trylock_function:
3764 handleTrylockFunAttr(S, D, Attr);
3765 break;
3766 case AttributeList::AT_unlock_function:
3767 handleUnlockFunAttr(S, D, Attr);
3768 break;
3769 case AttributeList::AT_acquired_before:
3770 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3771 break;
3772 case AttributeList::AT_acquired_after:
3773 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3774 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003775
Chris Lattner803d0802008-06-29 00:43:07 +00003776 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003777 // Ask target about the attribute.
3778 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3779 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003780 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3781 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003782 break;
3783 }
3784}
3785
Peter Collingbourne60700392011-01-21 02:08:45 +00003786/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3787/// the attribute applies to decls. If the attribute is a type attribute, just
3788/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3789/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003790static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3791 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003792 bool NonInheritable, bool Inheritable) {
3793 if (Attr.isInvalid())
3794 return;
3795
3796 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3797 // FIXME: Try to deal with other __declspec attributes!
3798 return;
3799
3800 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003801 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003802
3803 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003804 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003805}
3806
Chris Lattner803d0802008-06-29 00:43:07 +00003807/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3808/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003809void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003810 const AttributeList *AttrList,
3811 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003812 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003813 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003814 }
3815
3816 // GCC accepts
3817 // static int a9 __attribute__((weakref));
3818 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003819 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003820 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003821 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003822 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003823 }
3824}
3825
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003826// Annotation attributes are the only attributes allowed after an access
3827// specifier.
3828bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3829 const AttributeList *AttrList) {
3830 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3831 if (l->getKind() == AttributeList::AT_annotate) {
3832 handleAnnotateAttr(*this, ASDecl, *l);
3833 } else {
3834 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3835 return true;
3836 }
3837 }
3838
3839 return false;
3840}
3841
John McCalle82247a2011-10-01 05:17:03 +00003842/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3843/// contains any decl attributes that we should warn about.
3844static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3845 for ( ; A; A = A->getNext()) {
3846 // Only warn if the attribute is an unignored, non-type attribute.
3847 if (A->isUsedAsTypeAttr()) continue;
3848 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3849
3850 if (A->getKind() == AttributeList::UnknownAttribute) {
3851 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3852 << A->getName() << A->getRange();
3853 } else {
3854 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3855 << A->getName() << A->getRange();
3856 }
3857 }
3858}
3859
3860/// checkUnusedDeclAttributes - Given a declarator which is not being
3861/// used to build a declaration, complain about any decl attributes
3862/// which might be lying around on it.
3863void Sema::checkUnusedDeclAttributes(Declarator &D) {
3864 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3865 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3866 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3867 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3868}
3869
Ryan Flynne25ff832009-07-30 03:15:39 +00003870/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3871/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003872NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3873 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003874 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003875 NamedDecl *NewD = 0;
3876 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003877 FunctionDecl *NewFD;
3878 // FIXME: Missing call to CheckFunctionDeclaration().
3879 // FIXME: Mangling?
3880 // FIXME: Is the qualifier info correct?
3881 // FIXME: Is the DeclContext correct?
3882 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3883 Loc, Loc, DeclarationName(II),
3884 FD->getType(), FD->getTypeSourceInfo(),
3885 SC_None, SC_None,
3886 false/*isInlineSpecified*/,
3887 FD->hasPrototype(),
3888 false/*isConstexprSpecified*/);
3889 NewD = NewFD;
3890
3891 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003892 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003893
3894 // Fake up parameter variables; they are declared as if this were
3895 // a typedef.
3896 QualType FDTy = FD->getType();
3897 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3898 SmallVector<ParmVarDecl*, 16> Params;
3899 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3900 AE = FT->arg_type_end(); AI != AE; ++AI) {
3901 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3902 Param->setScopeInfo(0, Params.size());
3903 Params.push_back(Param);
3904 }
David Blaikie4278c652011-09-21 18:16:56 +00003905 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003906 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003907 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3908 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003909 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003910 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003911 VD->getStorageClass(),
3912 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003913 if (VD->getQualifier()) {
3914 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003915 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003916 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003917 }
3918 return NewD;
3919}
3920
3921/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3922/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003923void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003924 if (W.getUsed()) return; // only do this once
3925 W.setUsed(true);
3926 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3927 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003928 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003929 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3930 NDId->getName()));
3931 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003932 WeakTopLevelDecl.push_back(NewD);
3933 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3934 // to insert Decl at TU scope, sorry.
3935 DeclContext *SavedContext = CurContext;
3936 CurContext = Context.getTranslationUnitDecl();
3937 PushOnScopeChains(NewD, S);
3938 CurContext = SavedContext;
3939 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003940 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003941 }
3942}
3943
Chris Lattner0744e5f2008-06-29 00:23:49 +00003944/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3945/// it, apply them to D. This is a bit tricky because PD can have attributes
3946/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003947void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3948 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003949 // It's valid to "forward-declare" #pragma weak, in which case we
3950 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003951 if (Inheritable) {
3952 LoadExternalWeakUndeclaredIdentifiers();
3953 if (!WeakUndeclaredIdentifiers.empty()) {
3954 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3955 if (IdentifierInfo *Id = ND->getIdentifier()) {
3956 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3957 = WeakUndeclaredIdentifiers.find(Id);
3958 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3959 WeakInfo W = I->second;
3960 DeclApplyPragmaWeak(S, ND, W);
3961 WeakUndeclaredIdentifiers[Id] = W;
3962 }
John McCalld4aff0e2010-10-27 00:59:00 +00003963 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003964 }
3965 }
3966 }
3967
Chris Lattner0744e5f2008-06-29 00:23:49 +00003968 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003969 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003970 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003971
Chris Lattner0744e5f2008-06-29 00:23:49 +00003972 // Walk the declarator structure, applying decl attributes that were in a type
3973 // position to the decl itself. This handles cases like:
3974 // int *__attr__(x)** D;
3975 // when X is a decl attribute.
3976 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3977 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003978 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003979
Chris Lattner0744e5f2008-06-29 00:23:49 +00003980 // Finally, apply any attributes on the decl itself.
3981 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003982 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003983}
John McCall54abf7d2009-11-04 02:18:39 +00003984
John McCallf85e1932011-06-15 23:02:42 +00003985/// Is the given declaration allowed to use a forbidden type?
3986static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3987 // Private ivars are always okay. Unfortunately, people don't
3988 // always properly make their ivars private, even in system headers.
3989 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00003990 // Function declarations in sys headers will be marked unavailable.
3991 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3992 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00003993 return false;
3994
3995 // Require it to be declared in a system header.
3996 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3997}
3998
3999/// Handle a delayed forbidden-type diagnostic.
4000static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
4001 Decl *decl) {
4002 if (decl && isForbiddenTypeAllowed(S, decl)) {
4003 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
4004 "this system declaration uses an unsupported type"));
4005 return;
4006 }
Fariborz Jahanian175fb102011-10-03 22:11:57 +00004007 if (S.getLangOptions().ObjCAutoRefCount)
4008 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
4009 // FIXME. we may want to supress diagnostics for all
4010 // kind of forbidden type messages on unavailable functions.
4011 if (FD->hasAttr<UnavailableAttr>() &&
4012 diag.getForbiddenTypeDiagnostic() ==
4013 diag::err_arc_array_param_no_ownership) {
4014 diag.Triggered = true;
4015 return;
4016 }
4017 }
John McCallf85e1932011-06-15 23:02:42 +00004018
4019 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
4020 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
4021 diag.Triggered = true;
4022}
4023
John McCalleee1d542011-02-14 07:13:47 +00004024// This duplicates a vector push_back but hides the need to know the
4025// size of the type.
4026void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
4027 assert(StackSize <= StackCapacity);
4028
4029 // Grow the stack if necessary.
4030 if (StackSize == StackCapacity) {
4031 unsigned newCapacity = 2 * StackCapacity + 2;
4032 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
4033 const char *oldBuffer = (const char*) Stack;
4034
4035 if (StackCapacity)
4036 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
4037
4038 delete[] oldBuffer;
4039 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
4040 StackCapacity = newCapacity;
4041 }
4042
4043 assert(StackSize < StackCapacity);
4044 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00004045}
4046
John McCalleee1d542011-02-14 07:13:47 +00004047void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
4048 Decl *decl) {
4049 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00004050
John McCalleee1d542011-02-14 07:13:47 +00004051 // Check the invariants.
4052 assert(DD.StackSize >= state.SavedStackSize);
4053 assert(state.SavedStackSize >= DD.ActiveStackBase);
4054 assert(DD.ParsingDepth > 0);
4055
4056 // Drop the parsing depth.
4057 DD.ParsingDepth--;
4058
4059 // If there are no active diagnostics, we're done.
4060 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00004061 return;
4062
John McCall2f514482010-01-27 03:50:35 +00004063 // We only want to actually emit delayed diagnostics when we
4064 // successfully parsed a decl.
John McCalle8c904f2012-01-26 20:04:03 +00004065 if (decl) {
John McCalleee1d542011-02-14 07:13:47 +00004066 // We emit all the active diagnostics, not just those starting
4067 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00004068 // decl spec and another for each declarator; in a decl group like:
4069 // deprecated_typedef foo, *bar, baz();
4070 // only the declarator pops will be passed decls. This is correct;
4071 // we really do need to consider delayed diagnostics from the decl spec
4072 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00004073 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4074 DelayedDiagnostic &diag = DD.Stack[i];
4075 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004076 continue;
4077
John McCalleee1d542011-02-14 07:13:47 +00004078 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004079 case DelayedDiagnostic::Deprecation:
John McCalle8c904f2012-01-26 20:04:03 +00004080 // Don't bother giving deprecation diagnostics if the decl is invalid.
4081 if (!decl->isInvalidDecl())
4082 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004083 break;
4084
4085 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00004086 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004087 break;
John McCallf85e1932011-06-15 23:02:42 +00004088
4089 case DelayedDiagnostic::ForbiddenType:
4090 handleDelayedForbiddenType(S, diag, decl);
4091 break;
John McCall2f514482010-01-27 03:50:35 +00004092 }
4093 }
4094 }
4095
John McCall58e6f342010-03-16 05:22:47 +00004096 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00004097 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00004098 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00004099
John McCalleee1d542011-02-14 07:13:47 +00004100 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00004101}
4102
4103static bool isDeclDeprecated(Decl *D) {
4104 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004105 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004106 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004107 // A category implicitly has the availability of the interface.
4108 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4109 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004110 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4111 return false;
4112}
4113
John McCall9c3087b2010-08-26 02:13:20 +00004114void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004115 Decl *Ctx) {
4116 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004117 return;
4118
John McCall2f514482010-01-27 03:50:35 +00004119 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004120 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004121 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004122 << DD.getDeprecationDecl()->getDeclName()
4123 << DD.getDeprecationMessage();
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004124 else if (DD.getUnknownObjCClass()) {
4125 Diag(DD.Loc, diag::warn_deprecated_fwdclass_message)
4126 << DD.getDeprecationDecl()->getDeclName();
4127 Diag(DD.getUnknownObjCClass()->getLocation(), diag::note_forward_class);
4128 }
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004129 else
4130 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004131 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004132}
4133
Chris Lattner5f9e2722011-07-23 10:55:15 +00004134void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004135 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004136 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004137 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004138 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
Fariborz Jahanianb0a66152012-03-02 21:50:02 +00004139 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D,
4140 UnknownObjCClass,
4141 Message));
John McCall54abf7d2009-11-04 02:18:39 +00004142 return;
4143 }
4144
4145 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004146 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004147 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004148 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004149 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4150 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004151 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004152 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004153 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004154 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004155 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004156 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4157 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004158 }
John McCall54abf7d2009-11-04 02:18:39 +00004159}